'editfck', 'Width' => '100%', 'Height' => '400', 'BaseImagePath' => 'http://'.$_SERVER[HTTP_HOST], 'BasePath' =>'/wiki/pub/fckeditor/FCKeditor/', 'UserFilesPath' => '/wiki/uploads/', 'ToolBar'=> 'PmWiki', 'EditorAreaCSS' => '/wiki/pub/fckeditor/pm_fckstyles.css', 'StylesXmlPath' => '/wiki/pub/fckeditor/pm_fckstyles.xml', 'CustomConfigurationsPath' => '/wiki/pub/fckeditor/pm_fckconfig.js', 'TextTranslation' => array(summary => 'Summary:', author => 'Author:', minor => 'This is a minor edit', editfck => "WysIsWyg Edit") )); SDVA($HandleActions,array($PmFCK['EditFckAction'] => 'HandleEditFck')); SDVA($HandleAuth,array($PmFCK['EditFckAction'] => 'edit')); SDVA($MarkupToDisable, array(count($MarkupToDisable) =>'if', 'redirect', 'include', 'nogroupfooter', 'nogroupheader', 'groupheader', 'groupfooter', 'noright', 'noleft', 'notitle', 'nofooter', 'noaction', 'spacewikiwords', 'messages', 'linebreaks', 'linkwikiwords', 'noheader', 'varindex', 'pagelist', 'searchresults', 'input', 'comment', 'title')); function HandleEditFck($pagename, $auth = 'edit') { global $IsPagePosted, $EditFields, $ChangeSummary, $EditFunctions, $EnablePost, $EnablePostAuthorRequired, $FmtV, $Now, $EditRedirectFmt, $Author, $PageEditForm, $HandleEditFmt, $PageStartFmt, $PageEditFmt, $PageEndFmt,$PmFCK,$MarkupToDisable,$MarkupTable,$MarkupRules,$MessagesFmt; SDV($EditRedirectFmt, '$FullName'); if (@$_POST['cancel']) { Redirect(FmtPageName($EditRedirectFmt, $pagename)); return; } Lock(2); $IsPagePosted = false; $page = RetrieveAuthPage($pagename, $auth, true); if (!$page) Abort("?cannot edit $pagename"); PCache($pagename,$page); $new = $page; if (isset($_POST['FCKeditor1'])) $new['text']=HTMLToMarkups($pagename,str_replace("\r",'',stripmagic($_POST['FCKeditor1']))); $new['csum'] = $ChangeSummary; if ($ChangeSummary) $new["csum:$Now"] = $ChangeSummary; $EnablePost &= preg_grep('/^post/', array_keys(@$_POST)); // $Editfunctions if (IsEnabled($EnablePostAuthorRequired,0)) { RequireAuthor($pagename, $page, $new); } SaveAttributes($pagename,$page,$new); PostPage($pagename,$page,$new); PostRecentChanges($pagename,$page,$new); Lock(0); if ($IsPagePosted && !@$_POST['postedit']) { Redirect(FmtPageName($EditRedirectFmt, $pagename)); return; } $FmtV['$DiffClassMinor'] = (@$_POST['diffclass']=='minor') ? "checked='checked'" : ''; $FmtV['$EditText'] = str_replace('$','$',htmlspecialchars(@$new['text'],ENT_NOQUOTES)); $FmtV['$EditBaseTime'] = $Now; /* if (@$PageEditForm) { $form = ReadPage(FmtPageName($PageEditForm, $pagename), READPAGE_CURRENT); // $FmtV['$EditForm'] = MarkupToHTML($pagename, $form['text']); }*/ // Config $oFCKeditor = new FCKeditor('FCKeditor1'); $oFCKeditor->Config['EditorAreaCSS'] = $PmFCK['EditorAreaCSS']; $oFCKeditor->Config['StylesXmlPath'] = $PmFCK['StylesXmlPath']; $oFCKeditor->Config['CustomConfigurationsPath'] = $PmFCK['CustomConfigurationsPath']; $oFCKeditor->BasePath = $PmFCK['BasePath']; $oFCKeditor->Width = $PmFCK['Width']; $oFCKeditor->Height = $PmFCK['Height'] ; $oFCKeditor->Config['ToolBar'] = $PmFCK['ToolBar']; $TmpMarkupTable=$MarkupTable; // Disable selected markups during the conversion $TmpMarkupRules=$MarkupRules; DisableMarkup($MarkupToDisable); $html= MarkupToHTML($pagename,$new['text']); // Convert Wiki Markups to normal HTML, using the standard fonction $html = preg_replace("/]*)><\/div>/i", "",$html); // Remove some stuff that causes problem when translating from HTML to Wiki after the edit $html = preg_replace("/]*)><\/p>/i", "",$html); $MarkupTable=$TmpMarkupTable; // Restore the markups for the page to be properly displayed $MarkupRules=$TmpMarkupRules; $oFCKeditor->Value = $html; $PageEditFmt= "

$[Editing {\$FullName}]

".$MessagesFmt[0]." ".$oFCKeditor->CreateHtml(). "
".$PmFCK['TextTranslation']['summary']."
".$PmFCK['TextTranslation']['author']." ".$PmFCK['TextTranslation']['minor']."
"; SDV($HandleEditFmt, array(&$PageStartFmt, &$PageEditFmt , &$PageEndFmt)); PrintFmt($pagename, $HandleEditFmt); // } function HTMLToMarkups($pagename,$html) { global $HTML_Markups,$ScriptUrl; // Delete all the \r\n ibetween markups to avoid problem when converting table markups // This has to be done before replacement of non-block markups, which mays produces compulsory \r\n inside a cell for example $html = preg_replace_callback("/([ ]*<[\/]{0,1}(table|thead|tbody|tr|th|td){1}[^>]*>[\r\n]*)/i", "LinesBreaksRemove" ,$html ); // Replacement of all non-block markups foreach ($HTML_Markups as $markup => $attributes) { if (isset($attributes['alias'])) $attributes=$HTML_Markups[$attributes['alias']]; if (@$attributes['type'] == 'single') $html = preg_replace("/<$markup([^>]*)>/i", @$attributes['start'], $html); if (@$attributes['type'] == 'noattr') $html = preg_replace("/<$markup([^>]*)>(.*?)<\/$markup>/i", @$attributes['start']."$2".@$attributes['end'], $html); if (@$attributes['type'] == 'attr') { preg_match_all("/<$markup(([ ]*[a-zA-Z]+=[\"'](.*?)[\"'])*?)[ ]*>(.*?)<\/$markup>/i", $html , $matches); // [ ]?([a-zA-Z]+='(.+?)') $strmatch = $matches[0]; $markup_attr = $matches[1]; $markup_txt = $matches[4]; $i=0; while ($i]+?)[\"']/",$markup_attr[$i],$attr_match); list($tmp,$markup_listattr,$markup_listparam)=$attr_match; $j=0; $attrisset=0; while ($j markup - nothing else !! { preg_match_all("/(.*?)<\/a>/i", $html , $matches); // [ ]?([a-zA-Z]+='(.+?)') $strmatch = $matches[0]; $markup_attr = $matches[1]; $markup_txt = $matches[4]; $i=0; while ($i]+?)[\"|']/",$markup_attr[$i],$attr_match); list($tmp,$markup_listattr,$markup_listparam)=$attr_match; $j=0; while ($j local link eregi("[a-z]+[/\.]{1}[a-z]+$",$linkparam['href'],$page); // Check if the link as a text description or if it's just the pagename if ($page[0]==trim($markup_txt[$i])) $wikilink=$attributes['normal']['start'].$page[0].$attributes['normal']['end']; else $wikilink=$attributes['normal']['start'].$page[0].$attributes['normal']['middle'].$markup_txt[$i].$attributes['normal']['end']; // Normal Url } else $wikilink=$attributes['normal']['start'].$linkparam['href'].$attributes['normal']['middle'].$markup_txt[$i].$attributes['normal']['end']; // Normal Url } else if (isset($linkparam['name']) || isset($linkparam['id'])) { // Anchor $linkparam['name'] = ($linkparam['name']!='') ? $linkparam['name']:$linkparam['id']; if (trim($markup_txt[$i])!="") $wikilink = $attributes['anchor']['middle'] . $markup_txt[$i]; $wikilink = $attributes['anchor']['start'].$linkparam['name'].$wikilink.$attributes['anchor']['end']; } else { /* Unknow ? - do nothing */ } if (@$linkparam['target']=='_blank') $wikilink = @$attributes['newwin']['start']. $wikilink . @$attributes['newwin']['end']; $html=str_replace($strmatch[$i],$wikilink,$html); $i++; } } // End of "if (@$attributes['type'] == 'link')" } // List markups $html = preg_replace_callback("/([ ]*<[\/]{0,1}(ul|ol|li){1}>?)/i", "ListMarkupReplace" ,$html ); // Table markups $html = preg_replace_callback("/[ ]*<([\/]{0,1})(table|tr|th|td)([^>]*)>/i", "TableMarkupReplace" ,$html ); // Img markups $html = preg_replace_callback("/[ ]*]*)>/i", "ImgMarkupReplace" ,$html ); // Avoid space to become too present $html = str_replace(" ", " ",$html); // Remove non recognized markups $html = strip_tags ($html); return $html; } SDV($ListDepth,0); SDV($BulletType,''); function ListMarkupReplace($matches) { global $ListDepth,$BulletType; $ret_html=''; $ListBullets = array( 'ul' => '*', 'ol' => '#', 'dl' => ':'); switch (trim($matches[0])){ case "
  • ": $ret_html=str_repeat($BulletType, $ListDepth); break; case "
  • ": $ret_html=""; break; case "
      ": $ListDepth++; $BulletType = $ListBullets['ul']; break; case "
        ": $ListDepth++; $BulletType = $ListBullets['ol']; break; case "
        ": $ListDepth++; $BulletType = $ListBullets['dl']; break; case "
    ": $ListDepth--; break; case "": $ListDepth--; break; case "": $ListDepth--; break; } return $ret_html; } SDV($NewLineCreated,0); // Set to 1 if a
    has just been matched, to display a (:cellnr:) instead of a (:cellr:) function TableMarkupReplace($matches) { global $HTML_Markups,$NewLineCreated; $ret_html=''; $opclose=$matches[1]; $markup=$matches[2]; $params=$matches[3]; if (trim($params)!="" && $opclose != "/") { preg_match_all("/([a-zA-Z]+?)=[\"|']([^\"'>]+?)[\"|']/",$params,$attr_match); $i=0; while ($i$attr_val) { if (in_array($attr_name,$HTML_Markups[$markup]['autorizedparam'])) $wikiparam.=" $attr_name=$attr_val"; } } else $wikiparam=""; if ($opclose=="") { switch ($markup) { case "table": $ret_html="(:table$wikiparam:)\r\n"; break; case "tr": $NewLineCreated=1; break; case "th": $ret_html= ($NewLineCreated==1) ? "(:cellnr$wikiparam:)" : "(:cell$wikiparam:)"; $NewLineCreated=0; break; case "td": $ret_html= ($NewLineCreated==1) ? "(:cellnr$wikiparam:)" : "(:cell$wikiparam:)"; $NewLineCreated=0; break; } } else { switch ($markup) { case "table": $ret_html="(:tableend:)\r\n"; break; case "th": $ret_html="\r\n"; break; case "td": $ret_html="\r\n"; break; } } return $ret_html; } function ImgMarkupReplace($matches) { global $HTML_Markups,$PmFCK; $ret_html=''; preg_match_all("/([a-zA-Z]+?)=[\"|']([^\"'>]+?)[\"|']/",$matches[1],$attr_match); $i=0; while ($i$attr_val) { if (in_array($attr_name,$HTML_Markups['img']['autorizedparam'])) $wikiparam.=" $attr_name=$attr_val"; } $wikialt = ($listattr['alt']!='') ? "\"$listattr[alt]\"":''; $wikiparam=trim($wikiparam); $ret_html="%$wikiparam%$wikisrc$wikialt"; } return $ret_html; } function LinesBreaksRemove($matches) { return str_replace("\r\n","",trim($matches[0])); } /* $HTML_Markups : type attribute - noattr : direct replacement - the markup doesn't have significant attributes - attr : replacement may change depending of markup attributes (ex class, style) - single : it's a single markup. There isn't an openning markup and a closing one with some stuff between */ $HTML_Markups = array( 'b' => array( 'start' => "'''", 'end' => "'''" , 'type' => 'noattr'), 'strong' => array( 'alias' => 'b' ), 'i' => array( 'start' => "''", 'end' => "''", 'type' => 'noattr' ), 'em' => array( 'alias' => 'i' ), 'tt' => array( 'start' => '@@', 'end' => '@@', 'type' => 'noattr' ), 'code' => array( 'alias' => 'tt' ), 'small' => array( 'start' => "'+", 'end' => "+'", 'type' => 'noattr' ), 'big' => array( 'start' => "'-", 'end' => "-'", 'type' => 'noattr' ), 'sup' => array( 'start' => "'^", 'end' => "^'", 'type' => 'noattr' ), 'sub' => array( 'start' => "'_", 'end' => "_'", 'type' => 'noattr' ), 'ins' => array( 'start' => '{+', 'end' => '+}', 'type' => 'noattr' ), 'u' => array( 'alias' => 'ins'), 'del' => array( 'start' => '{-', 'end' => '-}', 'type' => 'noattr' ), 'strike' => array( 'alias' => 'del'), 'p' => array( 'type' => 'attr', 'attr_class' => array( 'vspace' => array ('start' => "", 'end' => "\r\n\r\n"), 'default' => array ('start' => '%p class=$param%', 'end' => "%%\r\n\r\n")), 'attr_align' => array( 'justify' => array ('start' => "%block text-align=justify%", 'end' => "%%\r\n\r\n"), 'center' => array ('start' => "%block text-align=center%", 'end' => "%%\r\n\r\n"), 'right' => array ('start' => "%block text-align=right%", 'end' => "%%\r\n\r\n"), 'default' => array ('start' => "", 'end' => "\r\n\r\n")), 'attr_style' => array ('text-align: center;' => array ('start' => "%block text-align=center%", 'end' => "%%\r\n\r\n"), 'default' => array ('start' => "", 'end' => "\r\n\r\n")), 'no_attr_def' => array( 'start' => "", 'end' => "\r\n\r\n")), 'div' => array( 'type' => 'attr', 'attr_class' => array( 'vspace' => array ('start' => "", 'end' => "\r\n\r\n"), 'default' => array ('start' => "", 'end' => "\r\n\r\n")), 'attr_align' => array( 'justify' => array ('start' => "%block text-align=justify%", 'end' => "%%\r\n\r\n"), 'center' => array ('start' => "%block text-align=center%", 'end' => "%%\r\n\r\n"), 'right' => array ('start' => "%block text-align=right%", 'end' => "%%\r\n\r\n"), 'default' => array ('start' => "", 'end' => "\r\n\r\n")), 'no_attr_def' => array( 'start' => "", 'end' => "\r\n\r\n")), 'span' => array( 'type' => 'attr', 'attr_class' => array( 'wikiword' => array ('start' => "", 'end' => ""), 'default' => array ('start' => '%class=$param%', 'end' => "%%")), 'attr_style' => array( 'font-size: 144%;' => array ('start' => "[++", 'end' => "++]"), // Need to translate the 'font-size: 120%;' => array ('start' => "[+", 'end' => "+]"), // size markups of PmWiki 'font-size: 83%;' => array ('start' => "[-", 'end' => "-]"), // 'font-size: 69%;' => array ('start' => "[--", 'end' => "--]"), // 'default' => array ('start' => "", 'end' => "")), 'no_attr_def' => array( 'start' => "", 'end' => "")), 'font' => array( 'type' => 'attr', 'attr_size' => array( '1' => array ('start' => "[--", 'end' => "--]"), // Need to translate the size '2' => array ('start' => "[-", 'end' => "-]"), // bar of FCKEditor '3' => array ('start' => "", 'end' => "-]"), '4' => array ('start' => "[+", 'end' => "+]"), '5' => array ('start' => "[++", 'end' => "++]"), 'default' => array ('start' => "", 'end' => "")), 'no_attr_def' => array( 'start' => "", 'end' => "")), 'h1' => array( 'start' => '! ' , 'end' =>"\r\n", 'type' => 'noattr' ), 'h2' => array( 'start' => '!! ' , 'end' =>"\r\n", 'type' => 'noattr' ), 'h3' => array( 'start' => '!!! ' , 'end' =>"\r\n", 'type' => 'noattr' ), 'h4' => array( 'start' => '!!!! ' , 'end' =>"\r\n", 'type' => 'noattr' ), 'h5' => array( 'start' => '!!!!! ' , 'end' =>"\r\n", 'type' => 'noattr' ), 'h6' => array( 'start' => '!!!!!! ' , 'end' =>"\r\n", 'type' => 'noattr' ), 'br' => array( 'start' => "\\\\\\\r\n", 'type' => 'single' ), 'hr' => array( 'start' => '----' , 'type' => 'single' ), 'a' => array( 'type' => 'link', 'normal' => array('start' => '[[', 'middle' =>'|', 'end' =>']]'), // standard link [[link|text]] 'raw_url' => array('start' => '', 'middle' =>'', 'end' =>''), // only an url 'newwin' => array('start' => '%newwin%'), // add %newwin% is target='_blank' is found 'anchor' => array('start' => '[[#', 'middle' =>'|', 'end' =>']]')), // anchor link [[#anchor]] or [[#anchor|text]] 'table' => array( 'type' => 'block', 'autorizedparam' => array('border', 'bordercolor', 'cellspacing', 'cellpadding', 'width', 'bgcolor', 'align', 'summary')), 'td' => array( 'type' => 'block', 'autorizedparam' => array('align', 'valign', 'colspan', 'rowspan', 'bgcolor', 'width')), 'tbody' => array( 'start' => "", 'end' => "" , 'type' => 'noattr'), // "Unuseful" Markups : not translated in PmWiki 'thead' => array( 'start' => "", 'end' => "" , 'type' => 'noattr'), 'tbody' => array( 'start' => "", 'end' => "" , 'type' => 'noattr'), 'img' => array( 'type' => 'block', 'autorizedparam' => array('width', 'height', 'border', 'vspace', 'hspace')) ); ?> Picowireless Wiki: PicoWireless/Painel Controlo
    PicoWireless

    Painel Controlo

    Historial de PicoWireless.PainelControlo

    Ver edies de menor importncia - Ver alteraes no contedo

    23-11-2009, 11:18 PM por Nuno Mendes -
    Linha 72 foi alterada de:
    ||! %newwin% [[http://172.16.0.2/ | 172.16.0.2]] || Senao / Engenius 400mw+8dbi || Bairro do Sol || DigitalChip || .2.0 - .3.254 || 00:02:6f:48:d3:d3 || AP+WDS ||
    para:
    ||! %newwin% [[http://172.16.0.2/ | 172.16.0.2]] || Senao / Engenius 630mw+8dbi || Bairro do Sol || DigitalChip || .2.0 - .3.254 || 00:02:6F:50:AE:B1 || AP+WDS ||
    Linhas 74-76 foram alteradas de:
    ||! %newwin% [[http://172.16.0.5/ | 172.16.0.5]] || Cisco 1200 50mw || Bairro do Sol || DigitalChip || || || ||
    ||! %newwin% [[http://172.16.0.6/ | 172.16.0.6]] || D-Link Dwl-2100AP 30mw || Bairro do Sol || DigitalChip || || || ||
    ||! %newwin% [[http://172.16.0.7/ | 172.16.0.7]] || D-Link Dwl-2100AP 30mw || Bairro do Sol || DigitalChip || || || ||
    para:
    ||! %newwin% [[http://xxx.xxx.xxx.xxx/ | xxx.xxx.xxx.xxx]] || Cisco 1200 50mw || Bairro do Sol || DigitalChip || || || ||
    ||! %newwin% [[http://xxx.xxx.xxx.xxx/ | xxx.xxx.xxx.xxx]] || D-Link Dwl-2100AP 30mw || Bairro do Sol || DigitalChip || || || ||
    ||! %newwin% [[http://xxx.xxx.xxx.xxx/ | xxx.xxx.xxx.xxx]] || D-Link Dwl-2100AP 30mw || Bairro do Sol || DigitalChip || || || ||
    23-11-2009, 11:14 PM por Nuno Mendes -
    Linhas 55-56 foram alteradas de:
    || 172.16.0.3 || proxy.picowireless.net || Ubuntu Server || %newwin% [[https://proxy.picowireless.net:10000 | proxy]] %newwin% [[http://proxy.picowireless.net | radius]]|| ||
    || 172.16.0.7 || ifolder.picowireless.net || Suse || %newwin% [[https://ifolder.picowireless.net/ifolder/ | ifolder]] %newwin% [[https://ifolder.picowireless.net/admin/ | admin]]|| ||
    para:
    || 172.16.0.3 || proxy.picowireless.net || Ubuntu Server || %newwin% [[https://proxy.picowireless.net:10000 | proxy]] %newwin% [[http://proxy.picowireless.net | radius]] || ||
    || 172.16.0.7 || ifolder.picowireless.net || Suse || %newwin% [[https://ifolder.picowireless.net/ifolder/ | ifolder]] %newwin% [[https://ifolder.picowireless.net/admin/ | admin]] || ||
    23-11-2009, 11:13 PM por Nuno Mendes -
    Linhas 55-56 foram acrescentadas:
    || 172.16.0.3 || proxy.picowireless.net || Ubuntu Server || %newwin% [[https://proxy.picowireless.net:10000 | proxy]] %newwin% [[http://proxy.picowireless.net | radius]]|| ||
    || 172.16.0.7 || ifolder.picowireless.net || Suse || %newwin% [[https://ifolder.picowireless.net/ifolder/ | ifolder]] %newwin% [[https://ifolder.picowireless.net/admin/ | admin]]|| ||
    10-06-2009, 06:25 PM por Nuno Mendes -
    Linha 80 foi alterada de:
    ||! %newwin% [[http://172.16.1.6/ | 172.16.1.6]] || SMC 100mw+5dbi || Rua || Judite Pereira || || 00:13:f7:0a:33:30 || Repetidor ||
    para:
    ||! %newwin% [[http://172.16.1.6/ | 172.16.1.6]] || SMC WEBT 100mw+5dbi || Rua || Judite Pereira || || 00:13:f7:0a:33:30 || Repetidor ||
    10-06-2009, 06:13 PM por Nuno Mendes -
    Linha 80 foi alterada de:
    ||! %newwin% [[http://172.16.1.6/ | 172.16.1.6]] || || || || || || AP+WDS ||
    para:
    ||! %newwin% [[http://172.16.1.6/ | 172.16.1.6]] || SMC 100mw+5dbi || Rua || Judite Pereira || || 00:13:f7:0a:33:30 || Repetidor ||
    28-02-2009, 05:10 PM por Nuno Mendes -
    Linha 78 foi alterada de:
    ||! %newwin% [[http://172.16.1.4/ | 172.16.1.4]] || Pheenet WAP-654G 200mw+8dbi || S. Paio || David Cunha || 00:1a:50:00:30:48 || 00:1a:50:00:2a:1b || AP+WDS ||
    para:
    ||! %newwin% [[http://172.16.1.4/ | 172.16.1.4]] || Pheenet WAP-654G 200mw+8dbi || S. Paio || David Cunha || || 00:1a:50:00:30:48 || AP+WDS ||
    28-02-2009, 04:49 PM por Nuno Mendes -
    Linha 78 foi alterada de:
    ||! %newwin% [[http://172.16.1.5/ | 172.16.1.5]] || Pheenet WAP-654G 200mw+8dbi || S. Paio || David Cunha || 00:1a:50:00:30:48 || 00:1a:50:00:2a:1b || AP+WDS ||
    para:
    ||! %newwin% [[http://172.16.1.4/ | 172.16.1.4]] || Pheenet WAP-654G 200mw+8dbi || S. Paio || David Cunha || 00:1a:50:00:30:48 || 00:1a:50:00:2a:1b || AP+WDS ||
    28-02-2009, 04:48 PM por Nuno Mendes -
    Linha 78 foi alterada de:
    ||! %newwin% [[http://172.16.1.4/ | 172.16.1.4]] || Pheenet WAP-654G 200mw+8dbi || Marinhas || Rui Mota || || || AP+WDS ||
    para:
    ||! %newwin% [[http://172.16.1.5/ | 172.16.1.5]] || Pheenet WAP-654G 200mw+8dbi || S. Paio || David Cunha || 00:1a:50:00:30:48 || 00:1a:50:00:2a:1b || AP+WDS ||
    Linha 80 foi eliminada:
    ||! %newwin% [[http://172.16.1.10/ | 172.16.1.2]] || Pheenet WAP-654G 200mw || S. Paio || David Cunha || 00:1a:50:00:30:48 || 00:1a:50:00:2a:1b || AP+WDS ||
    28-02-2009, 04:46 PM por Nuno Mendes -
    Linha 81 foi acrescentada:
    ||! %newwin% [[http://172.16.1.10/ | 172.16.1.2]] || Pheenet WAP-654G 200mw || S. Paio || David Cunha || 00:1a:50:00:30:48 || 00:1a:50:00:2a:1b || AP+WDS ||
    24-10-2008, 01:18 AM por Nuno Mendes -
    Linha 56 foi alterada de:
    || 172.16.0.10 || servidor1.picowireless.net || Ubuntu Server 6.06 || %newwin% [[http://172.16.0.10:81 | ispconfig]] %newwin% [[https://172.16.0.10:10000 | webmin]] %newwin% [[http://172.16.0.10:9090 | openfire]] %newwin% [[http://www.picowireless.net/webmail/ | webmail]] || Openfire ||
    para:
    || 172.16.0.10 || servidor1.picowireless.net || Ubuntu Server 6.06 || %newwin% [[http://172.16.0.10:8080 | ispconfig]] %newwin% [[https://172.16.0.10:10000 | webmin]] %newwin% [[http://172.16.0.10:9090 | openfire]] %newwin% [[http://www.picowireless.net/webmail/ | webmail]] || Openfire ||
    26-02-2008, 10:52 PM por Nuno Mendes -
    Linha 79 foi alterada de:
    ||! %newwin% [[http://172.16.1.5/ | 172.16.1.5]] || Edimax EW-7206APg 177mw+4dbi || Mouriz || Pimenta || || 00:0e:2e:eb:c5:3f || AP+WDS ||
    para:
    ||! %newwin% [[http://172.16.1.5/ | 172.16.1.5]] || Edimax EW-7206APg 150mw+4dbi || Mouriz || Pimenta || || 00:0e:2e:eb:c5:3f || AP+WDS ||
    26-02-2008, 10:14 PM por Nuno Mendes -
    Linha 79 foi alterada de:
    ||! %newwin% [[http://172.16.1.5/ | 172.16.1.5]] || Edimax EW-7206APg 177mw || Mouriz || Pimenta || || 00:0e:2e:eb:c5:3f || AP+WDS ||
    para:
    ||! %newwin% [[http://172.16.1.5/ | 172.16.1.5]] || Edimax EW-7206APg 177mw+4dbi || Mouriz || Pimenta || || 00:0e:2e:eb:c5:3f || AP+WDS ||
    26-02-2008, 10:13 PM por Nuno Mendes -
    Linha 79 foi alterada de:
    ||! %newwin% [[http://172.16.1.5/ | 172.16.1.5]] || Fon 21000A/B/C 40mw || Mouriz || Pimenta || || 00:19:84:23:ee:69 || AP+WDS ||
    para:
    ||! %newwin% [[http://172.16.1.5/ | 172.16.1.5]] || Edimax EW-7206APg 177mw || Mouriz || Pimenta || || 00:0e:2e:eb:c5:3f || AP+WDS ||
    20-02-2008, 07:10 PM por Nuno Mendes -
    Linha 79 foi alterada de:
    ||! %newwin% [[http://172.16.1.5/ | 172.16.1.5]] || Fon 21000A/B/C || Mouriz || Pimenta || || 00:19:84:23:ee:69 || AP+WDS ||
    para:
    ||! %newwin% [[http://172.16.1.5/ | 172.16.1.5]] || Fon 21000A/B/C 40mw || Mouriz || Pimenta || || 00:19:84:23:ee:69 || AP+WDS ||
    20-02-2008, 06:58 PM por Nuno Mendes -
    Linhas 72-74 foram alteradas de:
    ||! %newwin% [[http://172.16.0.5/ | 172.16.0.5]] || Cisco 1200 50mw || Bairro do Sol || DigitalChip || || ||
    ||! %newwin% [[http://172.16.0.6/ | 172.16.0.6]] || D-Link Dwl-2100AP 30mw || Bairro do Sol || DigitalChip || || ||
    ||! %newwin% [[http://172.16.0.7/ | 172.16.0.7]] || D-Link Dwl-2100AP 30mw || Bairro do Sol || DigitalChip || || ||
    para:
    ||! %newwin% [[http://172.16.0.5/ | 172.16.0.5]] || Cisco 1200 50mw || Bairro do Sol || DigitalChip || || || ||
    ||! %newwin% [[http://172.16.0.6/ | 172.16.0.6]] || D-Link Dwl-2100AP 30mw || Bairro do Sol || DigitalChip || || || ||
    ||! %newwin% [[http://172.16.0.7/ | 172.16.0.7]] || D-Link Dwl-2100AP 30mw || Bairro do Sol || DigitalChip || || || ||
    20-02-2008, 06:57 PM por Nuno Mendes -
    Linhas 69-71 foram alteradas de:
    para:
    Linhas 75-80 foram alteradas de:
    para:
    20-02-2008, 06:56 PM por Nuno Mendes -
    Linha 77 foi alterada de:
    para:
    Linha 79 foi alterada de:
    ||! %newwin% [[http://172.16.1.5/ | 172.16.1.5]] || Fon 21000A/B/C || Mouriz || Pimenta || || AP Repeater ||
    para:
    ||! %newwin% [[http://172.16.1.5/ | 172.16.1.5]] || Fon 21000A/B/C || Mouriz || Pimenta || || 00:19:84:23:ee:69 AP+WDS ||
    20-02-2008, 05:57 PM por Nuno Mendes -
    Linha 79 foi alterada de:
    ||! %newwin% [[http://172.16.1.5/ | 172.16.1.5]] || || || || || AP+WDS ?? ||
    para:
    ||! %newwin% [[http://172.16.1.5/ | 172.16.1.5]] || Fon 21000A/B/C || Mouriz || Pimenta || || AP Repeater ||
    15-02-2008, 07:39 PM por Nuno Mendes -
    Linhas 79-80 foram acrescentadas:
    ||! %newwin% [[http://172.16.1.5/ | 172.16.1.5]] || || || || || AP+WDS ?? ||
    ||! %newwin% [[http://172.16.1.6/ | 172.16.1.6]] || || || || || AP+WDS ?? ||
    15-02-2008, 07:37 PM por Nuno Mendes -
    Linhas 77-78 foram alteradas de:
    para:
    15-02-2008, 07:37 PM por Nuno Mendes -
    Linha 75 foi acrescentada:
    Linha 76 foi eliminada:
    12-02-2008, 08:32 PM por Nuno Mendes -
    Linhas 87-88 foram alteradas de:
    %newwin% [[http://www.ubuntuforums.org/EnemyTerritory | Cliente: Wolfenstein Enemy Territory no Ubuntu]]\\
    para:
    %newwin% [[http://www.ubuntugames.org/EnemyTerritory | Cliente: Wolfenstein Enemy Territory no Ubuntu]]\\
    12-02-2008, 08:31 PM por Nuno Mendes -
    Linhas 86-88 foram alteradas de:
    %newwin% [[http://forums.srcds.com/viewtopic/3245 | Installing HLDS CounterStrike & Team Fortress 2]]
    %newwin% [[http://www.ubuntuforums.org/EnemyTerritory | Wolfenstein Enemy Territory no Ubuntu]]
    para:
    %newwin% [[http://forums.srcds.com/viewtopic/3245 | Servidor: Installing HLDS CounterStrike & Team Fortress 2]]\\
    %newwin% [[http://www.ubuntuforums.org/EnemyTerritory | Cliente: Wolfenstein Enemy Territory no Ubuntu]]\\
    12-02-2008, 08:31 PM por Nuno Mendes -
    Linhas 87-88 foram alteradas de:
    para:
    %newwin% [[http://www.ubuntuforums.org/EnemyTerritory | Wolfenstein Enemy Territory no Ubuntu]]
    11-02-2008, 03:06 PM por Nuno Mendes -
    Linhas 77-79 foram alteradas de:
    para:
    11-02-2008, 03:05 PM por Nuno Mendes -
    Linha 76 foi alterada de:
    para:
    11-02-2008, 03:04 PM por Nuno Mendes -
    Linha 75 foi alterada de:
    ||! %newwin% [[http://172.16.4.1/ | 172.16.4.1]] || Pheenet WAP-654GP 200mw || Mouriz || Pedro Gama || .4.10 - .4.254 || 00:1a:50:00:2a:1b AP+WDS ||
    para:
    ||! %newwin% [[http://172.16.1.2/ | 172.16.1.2]] || Pheenet WAP-654GP 200mw || Mouriz || Pedro Gama || || 00:1a:50:00:2a:1b AP+WDS ||
    07-02-2008, 12:56 AM por Nuno Mendes -
    Linha 71 foi alterada de:
    para:
    Linhas 73-74 foram alteradas de:
    ||! %newwin% [[http://172.16.0.6/ | 172.16.0.6]] || D-Link Dwl-2100AP 60mw || Bairro do Sol || DigitalChip || || ||
    ||! %newwin% [[http://172.16.0.7/ | 172.16.0.7]] || D-Link Dwl-2100AP 60mw || Bairro do Sol || DigitalChip || || ||
    para:
    ||! %newwin% [[http://172.16.0.6/ | 172.16.0.6]] || D-Link Dwl-2100AP 30mw || Bairro do Sol || DigitalChip || || ||
    ||! %newwin% [[http://172.16.0.7/ | 172.16.0.7]] || D-Link Dwl-2100AP 30mw || Bairro do Sol || DigitalChip || || ||
    Linha 76 foi alterada de:
    para:
    05-02-2008, 07:35 PM por Nuno Mendes -
    Linha 79 foi alterada de:
    para:
    05-02-2008, 07:32 PM por Nuno Mendes -
    Linha 79 foi acrescentada:
    03-02-2008, 04:36 PM por Nuno Mendes -
    Linha 21 foi alterada de:
    para:
    * [[ClientesWireless | Clientes PicoWireless.net]]
    03-02-2008, 04:36 PM por Nuno Mendes -
    Linha 19 foi alterada de:
    '''modems e routers'''
    para:
    '''clientes wireless'''
    Linhas 21-25 foram acrescentadas:

    \\

    '''modems e routers'''
    ----
    02-02-2008, 08:42 PM por Nuno Mendes -
    Linha 59 foi alterada de:
    para:
    02-02-2008, 08:42 PM por Nuno Mendes -
    Linha 59 foi alterada de:
    '''pontos de acesso''' canal 2 @ 2,4Ghz
    para:
    02-02-2008, 08:41 PM por Nuno Mendes -
    Linha 59 foi alterada de:
    '''pontos de acesso'''
    para:
    '''pontos de acesso''' canal 2 @ 2,4Ghz
    02-02-2008, 08:40 PM por Nuno Mendes -
    Linhas 65-73 foram alteradas de:
    para:
    02-02-2008, 08:38 PM por Nuno Mendes -
    Linhas 65-66 foram alteradas de:
    para:
    ||! %newwin% [[http://172.16.0.2/ | 172.16.0.2]] || Senao / Engenius || Bairro do Sol || DigitalChip || .2.0 - .3.254 || 00:02:6f:48:d3:d3 AP+WDS ||
    Linhas 70-73 foram alteradas de:
    ||! %newwin% [[http://172.16.4.1/ | 172.16.4.1]] || Pheenet WAP-654GP || Mouriz || Pedro Gama || .4.10 - .4.254 || 00:1a:50:00:2a:1b WDS ||
    para:
    02-02-2008, 08:31 PM por Nuno Mendes -
    Linha 65 foi alterada de:
    ||! %newwin% [[http://172.16.0.2/ | 172.16.0.2]] || Senao / Engenius || Bairro do Sol || DigitalChip || .2.0 - .3.254 || 00:02:6f:48:d3:d3 ||
    para:
    ||! %newwin% [[http://172.16.0.2/ | 172.16.0.2]] || Senao / Engenius || Bairro do Sol || DigitalChip || .2.0 - .3.254 || 00:02:6f:48:d3:d3 WDS ||
    Linha 71 foi alterada de:
    ||! %newwin% [[http://172.16.4.1/ | 172.16.4.1]] || Pheenet WAP-654GP || Mouriz || Pedro Gama || .4.10 - .4.254 || 00:1a:50:00:2a:1b ||
    para:
    ||! %newwin% [[http://172.16.4.1/ | 172.16.4.1]] || Pheenet WAP-654GP || Mouriz || Pedro Gama || .4.10 - .4.254 || 00:1a:50:00:2a:1b WDS ||
    02-02-2008, 08:31 PM por Nuno Mendes -
    Linhas 64-71 foram alteradas de:
    para:
    30-01-2008, 06:50 PM por Nuno Mendes -
    Linhas 2-8 foram eliminadas:
    (:input e_form:)[[#top]](:e_guibuttons:)\\

    [[{$Name}?action=editfck|Editer en mode visuel]]\\

    (:input e_textarea:)\\\

    30-01-2008, 06:42 PM por Nuno Mendes -
    Linhas 3-7 foram alteradas de:
    (:input e_form:)[[#top]](:e_guibuttons:)\\

    (:input e_textarea:)\\

    para:
    (:input e_form:)[[#top]](:e_guibuttons:)\\

    [[{$Name}?action=editfck|Editer en mode visuel]]\\

    (:input e_textarea:)\\\

    30-01-2008, 06:42 PM por Nuno Mendes -
    Linhas 3-7 foram acrescentadas:
    (:input e_form:)[[#top]](:e_guibuttons:)\\

    (:input e_textarea:)\\

    27-01-2008, 07:08 PM por Admin -
    Linhas 7-8 foram alteradas de:
    para:
    27-01-2008, 07:08 PM por Admin -
    Linhas 8-9 foram acrescentadas:
    27-01-2008, 07:06 PM por Admin -
    Linhas 6-10 foram acrescentadas:
    Linhas 16-18 foram alteradas de:
    para:
    27-01-2008, 07:05 PM por Admin -
    Linhas 11-12 foram alteradas de:

    (:if auth admin:)* You're logged in as admin
    para:
    27-01-2008, 07:04 PM por Admin -
    Linha 12 foi acrescentada:
    (:if auth admin:)* You're logged in as admin
    Linhas 68-69 foram alteradas de:
    (:if auth admin:)* You're logged in as admin
    para:
    Linhas 74-75 foram alteradas de:
    (:ifend:)
    para:

    (:ifend:)
    27-01-2008, 07:03 PM por Admin -
    Linhas 67-68 foram alteradas de:
    para:
    (:if auth admin:)* You're logged in as admin
    Linhas 73-74 foram alteradas de:
    %newwin% [[http://forums.srcds.com/viewtopic/3245 | Installing HLDS CounterStrike & Team Fortress 2]]
    para:
    %newwin% [[http://forums.srcds.com/viewtopic/3245 | Installing HLDS CounterStrike & Team Fortress 2]]
    (:ifend:)
    25-01-2008, 11:42 AM por Admin -
    Linha 9 foi alterada de:
    %newwin% [[https://www.google.com/adsense/login/en_US/ | Google Adsense - www.picowireless.net]]\\
    para:
    %newwin% [[https://www.google.com/adsense/login/en_US/ | Google AdSense - www.picowireless.net & digitalchip.myftp.biz]]\\
    25-01-2008, 11:35 AM por Admin -
    Linha 9 foi acrescentada:
    %newwin% [[https://www.google.com/adsense/login/en_US/ | Google Adsense - www.picowireless.net]]\\
    23-01-2008, 09:18 PM por Admin -
    Linha 8 foi acrescentada:
    %newwin% [[https://www.google.com/analytics/home/ | Google Analytics - www.picowireless.net]]\\
    Linhas 10-13 foram alteradas de:
    %newwin% [[https://www.google.com/analytics/home/ | Google Analytics - www.picowireless.net]]
    \\
    \\
    para:
    23-01-2008, 09:18 PM por Admin -
    Linhas 11-12 foram alteradas de:
    para:
    \\
    23-01-2008, 09:18 PM por Admin -
    Linha 9 foi acrescentada:
    %newwin% [[https://www.google.com/analytics/home/ | Google Analytics - www.picowireless.net]]
    Linhas 72-73 foram alteradas de:
    %newwin% [[http://forums.srcds.com/viewtopic/3245 | Installing HLDS CounterStrike & Team Fortress 2]]
    %newwin% [[https://www.google.com/analytics/home/ | Google Analytics - www.picowireless.net]]
    para:
    %newwin% [[http://forums.srcds.com/viewtopic/3245 | Installing HLDS CounterStrike & Team Fortress 2]]
    23-01-2008, 09:18 PM por Admin -
    Linhas 71-72 foram alteradas de:
    %newwin% [[http://forums.srcds.com/viewtopic/3245 | Installing HLDS CounterStrike & Team Fortress 2]]
    para:
    %newwin% [[http://forums.srcds.com/viewtopic/3245 | Installing HLDS CounterStrike & Team Fortress 2]]
    %newwin% [[https://www.google.com/analytics/home/ | Google Analytics - www.picowireless.net]]
    23-01-2008, 12:53 PM por Admin -
    Linhas 57-58 foram alteradas de:
    para:
    Linha 63 foi alterada de:
    ||! %newwin% [[http://172.16.4.1/ | 172.16.4.1]] || Pheenet WAP-654GP || Mouriz || Pedro Gama || 172.16.4.10 a 172.16.4.254 ||
    para:
    ||! %newwin% [[http://172.16.4.1/ | 172.16.4.1]] || Pheenet WAP-654GP || Mouriz || Pedro Gama || .4.10 - .4.254 ||
    23-01-2008, 12:52 PM por Admin -
    Linha 43 foi alterada de:
    || 172.16.0.10 || servidor1.picowireless.net || Ubuntu Server 6.06 || %newwin% [[http://172.16.0.10:81 | ispconfig]] %newwin% [[https://172.16.0.10:10000 | webmin]] %newwin% [[http://172.16.0.10:9090 | openfire http]] %newwin% [[http://www.picowireless.net/webmail/ | webmail]] || Openfire ||
    para:
    || 172.16.0.10 || servidor1.picowireless.net || Ubuntu Server 6.06 || %newwin% [[http://172.16.0.10:81 | ispconfig]] %newwin% [[https://172.16.0.10:10000 | webmin]] %newwin% [[http://172.16.0.10:9090 | openfire]] %newwin% [[http://www.picowireless.net/webmail/ | webmail]] || Openfire ||
    23-01-2008, 12:52 PM por Admin -
    Linhas 43-44 foram alteradas de:
    || 172.16.0.10 || servidor1.picowireless.net || Ubuntu Server 6.06 LTS || %newwin% [[http://172.16.0.10:81 | ispconfig]] %newwin% [[https://172.16.0.10:10000 | webmin]] %newwin% [[http://172.16.0.10:9090 | openfire http]] %newwin% [[http://www.picowireless.net/webmail/ | webmail]] || Openfire ||
    || 172.16.0.11 || servidor2.picowireless.net || Ubuntu Server 6.06 LTS || %newwin% [[https://172.16.0.11:10000 | webmin]] || TrackMania Nations\\
    para:
    || 172.16.0.10 || servidor1.picowireless.net || Ubuntu Server 6.06 || %newwin% [[http://172.16.0.10:81 | ispconfig]] %newwin% [[https://172.16.0.10:10000 | webmin]] %newwin% [[http://172.16.0.10:9090 | openfire http]] %newwin% [[http://www.picowireless.net/webmail/ | webmail]] || Openfire ||
    || 172.16.0.11 || servidor2.picowireless.net || Ubuntu Server 6.06 || %newwin% [[https://172.16.0.11:10000 | webmin]] || TrackMania Nations\\
    Linha 48 foi alterada de:
    || 172.16.0.14 || servidor5.picowireless.net || Ubuntu Server 6.06 LTS || || ||
    para:
    || 172.16.0.14 || servidor5.picowireless.net || Ubuntu Server 6.06 || || ||
    23-01-2008, 12:51 PM por Admin -
    Linhas 43-44 foram alteradas de:
    || 172.16.0.10 || servidor1.picowireless.net || Ubuntu Server 6.06.1 LTS || %newwin% [[http://172.16.0.10:81 | ispconfig]] %newwin% [[https://172.16.0.10:10000 | webmin]] \\ %newwin% [[http://172.16.0.10:9090 | openfire http]] %newwin% [[http://www.picowireless.net/webmail/ | webmail]] || Openfire ||
    || 172.16.0.11 || servidor2.picowireless.net || Ubuntu Server 6.06.1 LTS || %newwin% [[https://172.16.0.11:10000 | webmin]] || TrackMania Nations\\
    para:
    || 172.16.0.10 || servidor1.picowireless.net || Ubuntu Server 6.06 LTS || %newwin% [[http://172.16.0.10:81 | ispconfig]] %newwin% [[https://172.16.0.10:10000 | webmin]] %newwin% [[http://172.16.0.10:9090 | openfire http]] %newwin% [[http://www.picowireless.net/webmail/ | webmail]] || Openfire ||
    || 172.16.0.11 || servidor2.picowireless.net || Ubuntu Server 6.06 LTS || %newwin% [[https://172.16.0.11:10000 | webmin]] || TrackMania Nations\\
    Linha 48 foi alterada de:
    || 172.16.0.14 || servidor5.picowireless.net || Ubuntu Server 6.06.1 LTS || || ||
    para:
    || 172.16.0.14 || servidor5.picowireless.net || Ubuntu Server 6.06 LTS || || ||
    23-01-2008, 12:51 PM por Admin -
    Linha 43 foi alterada de:
    || 172.16.0.10 || servidor1.picowireless.net || Ubuntu Server 6.06.1 LTS || %newwin% [[http://172.16.0.10:81 | ispconfig]] %newwin% [[https://172.16.0.10:10000 | webmin]]\\ %newwin% [[http://172.16.0.10:9090 | openfire http]] %newwin% [[http://www.picowireless.net/webmail/ | webmail]] || Openfire ||
    para:
    || 172.16.0.10 || servidor1.picowireless.net || Ubuntu Server 6.06.1 LTS || %newwin% [[http://172.16.0.10:81 | ispconfig]] %newwin% [[https://172.16.0.10:10000 | webmin]] \\ %newwin% [[http://172.16.0.10:9090 | openfire http]] %newwin% [[http://www.picowireless.net/webmail/ | webmail]] || Openfire ||
    23-01-2008, 12:50 PM por Admin -
    Linha 43 foi alterada de:
    || 172.16.0.10 || servidor1.picowireless.net || Ubuntu Server 6.06.1 LTS || %newwin% [[http://172.16.0.10:81 | ispconfig]] %newwin% [[https://172.16.0.10:10000 | webmin]] %newwin% [[http://172.16.0.10:9090 | openfire http]] %newwin% [[http://www.picowireless.net/webmail/ | webmail]] || Openfire ||
    para:
    || 172.16.0.10 || servidor1.picowireless.net || Ubuntu Server 6.06.1 LTS || %newwin% [[http://172.16.0.10:81 | ispconfig]] %newwin% [[https://172.16.0.10:10000 | webmin]]\\ %newwin% [[http://172.16.0.10:9090 | openfire http]] %newwin% [[http://www.picowireless.net/webmail/ | webmail]] || Openfire ||
    22-01-2008, 09:26 PM por Admin -
    Linha 58 foi alterada de:
    para:
    22-01-2008, 09:25 PM por Admin -
    Linha 58 foi alterada de:
    para:
    22-01-2008, 09:14 PM por Admin -
    Linha 44 foi alterada de:
    || 172.16.0.11 || servidor2.picowireless.net || Ubuntu Server 6.06.1 LTS || %newwin% [[https://172.16.0.11:10000 | webmin]] || TrackMania Nations\\\
    para:
    || 172.16.0.11 || servidor2.picowireless.net || Ubuntu Server 6.06.1 LTS || %newwin% [[https://172.16.0.11:10000 | webmin]] || TrackMania Nations\\
    22-01-2008, 09:13 PM por Admin -
    Linha 32 foi alterada de:
    %newwin% [[http://172.16.0.1/ | web]]
    para:
    %newwin% [[http://172.16.0.1/ | pfSense web]]
    22-01-2008, 09:13 PM por Admin -
    Linha 36 foi alterada de:
    '''vmservidor1.picowireless.net''' @ 172.16.0.8 .:. Ubuntu Desktop 7.10
    para:
    '''servidores'''
    Linha 37 foi eliminada:
    %newwin% [[https://172.16.0.8:10000 | webmin]]
    Linhas 39-52 foram acrescentadas:
    Linhas 55-67 foram alteradas de:
    '''servidor1.picowireless.net''' @ 172.16.0.10 .:. Ubuntu Server 6.06.1 LTS
    para:
    Linhas 68-134 foram eliminadas:
    22-01-2008, 09:13 PM por Admin -
    Linha 84 foi acrescentada:
    || 172.16.0.8 || vmservidor1.picowireless.net || Ubuntu Desktop 7.10 || %newwin% [[https://172.16.0.8:10000 | webmin]] || ||
    22-01-2008, 09:11 PM por Admin -
    Linhas 84-88 foram alteradas de:
    || 172.16.0.10 || servidor1.picowireless.net || Ubuntu Server 6.06.1 LTS || %newwin% [[http://172.16.0.10:81 | ispconfig]] %newwin% [[https://172.16.0.10:10000 | webmin]] %newwin% [[http://172.16.0.10:9090 | openfire http]] %newwin% [[http://www.picowireless.net/webmail/ | webmail]] || PicoWireless Openfire ||
    || 172.16.0.11 || servidor2.picowireless.net || Ubuntu Server 6.06.1 LTS || %newwin% [[https://172.16.0.11:10000 | webmin]] || PicoWireless TrackMania Nations\\\
    PicoWireless DirectConnect Hub ||
    || 172.16.0.12 || servidor3.picowireless.net || Windows XP Professional || || PicoWireless Counter-Strike 1.6 ||
    || 172.16.0.13 || servidor4.picowireless.net || Windows XP Professional || || PicoWireless Team Fortress 2 ||
    para:
    || 172.16.0.10 || servidor1.picowireless.net || Ubuntu Server 6.06.1 LTS || %newwin% [[http://172.16.0.10:81 | ispconfig]] %newwin% [[https://172.16.0.10:10000 | webmin]] %newwin% [[http://172.16.0.10:9090 | openfire http]] %newwin% [[http://www.picowireless.net/webmail/ | webmail]] || Openfire ||
    || 172.16.0.11 || servidor2.picowireless.net || Ubuntu Server 6.06.1 LTS || %newwin% [[https://172.16.0.11:10000 | webmin]] || TrackMania Nations\\\
    DirectConnect Hub ||
    || 172.16.0.12 || servidor3.picowireless.net || Windows XP Professional || || Counter-Strike 1.6 ||
    || 172.16.0.13 || servidor4.picowireless.net || Windows XP Professional || || Team Fortress 2 ||
    Linhas 90-91 foram alteradas de:
    || 172.16.0.15 || servidor6.picowireless.net || Ubuntu Desktop 7.10 || || PicoWireless Alien Arena ||
    para:
    || 172.16.0.15 || servidor6.picowireless.net || Ubuntu Desktop 7.10 || || Alien Arena ||
    22-01-2008, 09:10 PM por Admin -
    Linha 82 foi alterada de:
    ||border=1 width=95%
    para:
    ||border=1 width=100%
    Linha 96 foi alterada de:
    ||border=1 width=95%
    para:
    ||border=1 width=100%
    22-01-2008, 09:10 PM por Admin -
    Linhas 85-86 foram alteradas de:
    || 172.16.0.11 || servidor2.picowireless.net || Ubuntu Server 6.06.1 LTS || %newwin% [[https://172.16.0.11:10000 | webmin]] || PicoWireless TrackMania Nations\\\ PicoWireless DirectConnect Hub ||
    para:
    || 172.16.0.11 || servidor2.picowireless.net || Ubuntu Server 6.06.1 LTS || %newwin% [[https://172.16.0.11:10000 | webmin]] || PicoWireless TrackMania Nations\\\
    PicoWireless DirectConnect Hub ||
    22-01-2008, 09:10 PM por Admin -
    Linha 85 foi alterada de:
    || 172.16.0.11 || servidor2.picowireless.net || Ubuntu Server 6.06.1 LTS || %newwin% [[https://172.16.0.11:10000 | webmin]] || PicoWireless TrackMania Nations\\\PicoWireless DirectConnect Hub ||
    para:
    || 172.16.0.11 || servidor2.picowireless.net || Ubuntu Server 6.06.1 LTS || %newwin% [[https://172.16.0.11:10000 | webmin]] || PicoWireless TrackMania Nations\\\ PicoWireless DirectConnect Hub ||
    22-01-2008, 09:10 PM por Admin -
    Linha 85 foi alterada de:
    || 172.16.0.11 || servidor2.picowireless.net || Ubuntu Server 6.06.1 LTS || %newwin% [[https://172.16.0.11:10000 | webmin]] || PicoWireless TrackMania Nations\\ PicoWireless DirectConnect Hub ||
    para:
    || 172.16.0.11 || servidor2.picowireless.net || Ubuntu Server 6.06.1 LTS || %newwin% [[https://172.16.0.11:10000 | webmin]] || PicoWireless TrackMania Nations\\\PicoWireless DirectConnect Hub ||
    22-01-2008, 09:09 PM por Admin -
    Linha 78 foi alterada de:
    '''pontos de acesso'''
    para:
    '''servidores'''
    Linhas 83-95 foram acrescentadas:
    22-01-2008, 08:57 PM por Admin -
    Linhas 84-90 foram alteradas de:
    para:
    22-01-2008, 08:57 PM por Admin -
    Linhas 84-90 foram alteradas de:
    para:
    22-01-2008, 08:55 PM por Admin -
    Linha 81 foi acrescentada:
    22-01-2008, 08:55 PM por Admin -
    Linha 80 foi acrescentada:
    \\
    Linha 83 foi alterada de:
    || %newwin% [[http://172.16.0.2/ | 172.16.0.2]] || Senao / Engenius || Bairro do Sol || DigitalChip || x.x.2.0 a x.x.3.254 ||
    para:
    || %newwin% [[http://172.16.0.2/ | 172.16.0.2]] || Senao / Engenius || Bairro do Sol || DigitalChip || 172.16.2.0 a 172.16.3.254 ||
    Linha 89 foi alterada de:
    || %newwin% [[http://172.16.4.1/ | 172.16.4.1]] || Pheenet WAP-654GP || Mouriz || Pedro Gama || x.x.4.10 a x.x.4.254 ||
    para:
    || %newwin% [[http://172.16.4.1/ | 172.16.4.1]] || Pheenet WAP-654GP || Mouriz || Pedro Gama || 172.16.4.10 a 172.16.4.254 ||
    22-01-2008, 08:54 PM por Admin -
    Linha 81 foi alterada de:
    para:
    22-01-2008, 08:54 PM por Admin -
    Linha 81 foi alterada de:
    para:
    22-01-2008, 08:54 PM por Admin -
    Linha 80 foi alterada de:
    ||border=1 width=80%
    para:
    ||border=1 width=95%
    22-01-2008, 08:53 PM por Admin -
    Linhas 81-82 foram alteradas de:
    para:
    Linha 88 foi alterada de:
    || %newwin% [[http://172.16.4.1/ | 172.16.4.1]] || Pheenet WAP-654GP || Mouriz || Pedro Gama || .4.10 a .4.254 ||
    para:
    || %newwin% [[http://172.16.4.1/ | 172.16.4.1]] || Pheenet WAP-654GP || Mouriz || Pedro Gama || x.x.4.10 a x.x.4.254 ||
    22-01-2008, 08:53 PM por Admin -
    Linha 80 foi alterada de:
    ||border=1 width=50%
    para:
    ||border=1 width=80%
    22-01-2008, 08:53 PM por Admin -
    Linhas 80-86 foram alteradas de:
    para:
    22-01-2008, 08:46 PM por Admin -
    Linhas 85-86 foram alteradas de:
    %newwin% [[http://172.16.0.7/ | 172.16.0.7 D-Link Dwl-2100AP]] DigitalChip
    %newwin% [[http://172.16.4.1/ | 172.16.4.1 Pheenet WAP-654GP]] Pedro Gama (172.16.4.10 a 172.16.4.254)
    para:
    %newwin% [[http://172.16.0.7/ | 172.16.0.7 D-Link Dwl-2100AP]] DigitalChip\\
    %newwin% [[http://172.16.4.1/ | 172.16.4.1 Pheenet WAP-654GP]] Pedro Gama (172.16.4.10 a 172.16.4.254)\\
    22-01-2008, 08:45 PM por Admin -
    Linha 86 foi acrescentada:
    %newwin% [[http://172.16.4.1/ | 172.16.4.1 Pheenet WAP-654GP]] Pedro Gama (172.16.4.10 a 172.16.4.254)
    22-01-2008, 01:06 AM por Admin -
    Linhas 13-14 foram alteradas de:
    %newwin% [[http://10.0.0.2/ | Router1]]\\
    para:
    %newwin% [[http://10.0.0.2/ | Router1a]]
    %newwin% [[http://172.16.0.9/ | Router1b]]\\
    Linha 36 foi alterada de:
    '''vmservidor1.picowireless.net''' @ 172.16.0.9 .:. Ubuntu Desktop 7.10
    para:
    '''vmservidor1.picowireless.net''' @ 172.16.0.8 .:. Ubuntu Desktop 7.10
    22-01-2008, 01:05 AM por Admin -
    Linha 72 foi alterada de:
    '''servidor6.picowireless.net''' @ 172.16.0.16 .:. Ubuntu Desktop 7.10
    para:
    '''servidor6.picowireless.net''' @ 172.16.0.15 .:. Ubuntu Desktop 7.10
    22-01-2008, 01:05 AM por Admin -
    Linha 74 foi acrescentada:
    PicoWireless Alien Arena\\
    Linhas 76-77 foram alteradas de:
    \\
    para:
    22-01-2008, 01:04 AM por Admin -
    Linha 72 foi alterada de:
    '''pontos de acesso'''
    para:
    '''servidor6.picowireless.net''' @ 172.16.0.16 .:. Ubuntu Desktop 7.10
    Linhas 74-78 foram acrescentadas:
    \\
    \\

    '''pontos de acesso'''
    ----
    21-01-2008, 11:39 PM por Admin -
    Linha 86 foi acrescentada:
    %newwin% [[http://ubuntuforums.org/showthread.php?t=640760 | Ubuntu Server 7.10: OpenLDAP + SAMBA Domain Controller]]\\
    21-01-2008, 09:10 PM por Admin -
    Linha 35 foi alterada de:
    '''diesel.nmmendes.com''' @ 10.0.0.1 .:. Ubuntu Server 6.06.1 LTS
    para:
    '''vmservidor1.picowireless.net''' @ 172.16.0.9 .:. Ubuntu Desktop 7.10
    Linhas 37-42 foram alteradas de:
    %newwin% [[https://10.0.0.1:8081 | ispconfig]]
    %newwin% [[https://10.0.0.1:10000 | webmin]]
    %newwin% [[https://10.0.0.1:8081/roundcubemail/index.php | Roundcubemail]]
    %newwin% [[http://10.0.0.1:9090 | openfire http]]
    %newwin% [[https://10.0.0.1:9091 | openfire https]]
    %newwin% [[http://10.0.0.1/phpldapadmin/ | ldap]]\\
    para:
    %newwin% [[https://172.16.0.8:10000 | webmin]]
    Linhas 38-41 foram eliminadas:

    '''vmservidor1.picowireless.net''' @ 172.16.0.9 .:. Ubuntu Desktop 7.10
    ----
    %newwin% [[https://172.16.0.8:10000 | webmin]]
    Linhas 40-41 foram alteradas de:
    \\
    para:
    21-01-2008, 09:10 PM por Admin -
    Linha 47 foi acrescentada:
    %newwin% [[https://172.16.0.8:10000 | webmin]]
    01-01-2008, 01:50 AM por Admin -
    Linha 94 foi alterada de:
    %newwin% [[http://www.howtoforge.com/perfect_setup_ubuntu_6.06 | Ubuntu & ISPConfig Install]]\\
    para:
    %newwin% [[http://www.howtoforge.com/perfect_setup_ubuntu_6.06 | Installing Ubuntu & ISPConfig]]\\
    01-01-2008, 01:50 AM por Admin -
    Linhas 94-95 foram alteradas de:
    %newwin% [[http://www.howtoforge.com/perfect_setup_ubuntu_6.06 | Ubuntu & ISPConfig Install]]
    para:
    %newwin% [[http://www.howtoforge.com/perfect_setup_ubuntu_6.06 | Ubuntu & ISPConfig Install]]\\
    %newwin% [[http://forums.srcds.com/viewtopic/3245 | Installing HLDS CounterStrike & Team Fortress 2]]
    01-01-2008, 01:49 AM por Admin -
    Linhas 70-71 foram alteradas de:
    \\
    para:
    Linhas 75-77 foram acrescentadas:

    '''servidor5.picowireless.net''' @ 172.16.0.14 .:. Ubuntu Server 6.06.1 LTS
    ----
    Linhas 78-80 foram eliminadas:

    '''servidor5.picowireless.net''' @ 172.16.0.14 .:. Ubuntu Server 6.06.1 LTS
    ----
    Linhas 80-81 foram alteradas de:
    \\
    para:
    01-01-2008, 01:49 AM por Admin -
    Linha 56 foi alterada de:
    PicoWireless Openfire
    para:
    PicoWireless Openfire\\
    Linhas 62-63 foram alteradas de:
    PicoWireless TrackMania Nations
    PicoWireless DirectConnect Hub
    para:
    PicoWireless TrackMania Nations\\
    PicoWireless DirectConnect Hub\\
    Linha 68 foi alterada de:
    PicoWireless Counter-Strike 1.6
    para:
    PicoWireless Counter-Strike 1.6\\
    Linha 74 foi alterada de:
    PicoWireless Team Fortress 2
    para:
    PicoWireless Team Fortress 2\\
    01-01-2008, 01:07 AM por Admin -
    Linha 56 foi acrescentada:
    PicoWireless Openfire
    Linhas 62-63 foram acrescentadas:
    PicoWireless TrackMania Nations
    PicoWireless DirectConnect Hub
    Linha 68 foi acrescentada:
    PicoWireless Counter-Strike 1.6
    Linha 72 foi alterada de:
    '''pontos de acesso'''
    para:
    '''servidor4.picowireless.net''' @ 172.16.0.13 .:. Windows XP Professional
    Linhas 74-79 foram alteradas de:
    para:
    PicoWireless Team Fortress 2
    Linha 78 foi alterada de:
    '''artigos diversos'''
    para:
    '''servidor5.picowireless.net''' @ 172.16.0.14 .:. Ubuntu Server 6.06.1 LTS
    Linhas 80-95 foram acrescentadas:
    31-12-2007, 05:49 PM por Admin -
    Linha 55 foi alterada de:
    %newwin% [[https://172.16.0.10:9091 | openfire https]]%newwin% [[http://www.picowireless.net/webmail/ | webmail]]\\
    para:
    %newwin% [[http://www.picowireless.net/webmail/ | webmail]]\\
    31-12-2007, 05:45 PM por Admin -
    Linha 60 foi alterada de:
    %newwin% [[https://172.16.0.12:10000 | webmin]]\\
    para:
    %newwin% [[https://172.16.0.11:10000 | webmin]]\\
    31-12-2007, 02:51 AM por Admin -
    Linhas 54-55 foram alteradas de:
    %newwin% [[http://www.picowireless.net/webmail/ | webmail]]\\
    para:
    %newwin% [[http://172.16.0.10:9090 | openfire http]]
    %newwin% [[https://172.16.0.10:9091 | openfire https]]%newwin% [[http://www.picowireless.net/webmail/ | webmail]]\\
    30-12-2007, 08:36 PM por Admin -
    Linhas 53-54 foram alteradas de:
    %newwin% [[https://172.16.0.10:10000 | webmin]]\\
    para:
    %newwin% [[https://172.16.0.10:10000 | webmin]]
    %newwin% [[http://www.picowireless.net/webmail/ | webmail]]\\
    30-12-2007, 08:12 PM por Admin -
    Linha 52 foi alterada de:
    %newwin% [[https://172.16.0.10:8081 | ispconfig]]
    para:
    %newwin% [[http://172.16.0.10:81 | ispconfig]]
    30-12-2007, 04:21 PM por Admin -
    Linha 76 foi acrescentada:
    30-12-2007, 04:21 PM por Admin -
    Linha 73 foi eliminada:
    Linha 75 foi eliminada:
    Linha 78 foi alterada de:
    [[http://www.howtoforge.com/perfect_setup_ubuntu_6.06 | Ubuntu & ISPConfig]]
    para:
    %newwin% [[http://www.howtoforge.com/perfect_setup_ubuntu_6.06 | Ubuntu & ISPConfig Install]]
    30-12-2007, 04:20 PM por Admin -
    Linhas 74-80 foram acrescentadas:

    \\
    \\

    '''artigos diversos'''
    ----
    [[http://www.howtoforge.com/perfect_setup_ubuntu_6.06 | Ubuntu & ISPConfig]]
    30-12-2007, 04:01 PM por Admin -
    Linha 45 foi alterada de:
    '''vmservidor1.picowireless.net''' @ 172.16.0.11 .:. Ubuntu Desktop 7.10
    para:
    '''vmservidor1.picowireless.net''' @ 172.16.0.9 .:. Ubuntu Desktop 7.10
    Linha 56 foi alterada de:
    '''servidor2.picowireless.net''' @ 172.16.0.12 .:. Ubuntu Server 6.06.1 LTS
    para:
    '''servidor2.picowireless.net''' @ 172.16.0.11 .:. Ubuntu Server 6.06.1 LTS
    Linha 61 foi alterada de:
    '''servidor3.picowireless.net''' @ 172.16.0.13 .:. Windows XP Professional
    para:
    '''servidor3.picowireless.net''' @ 172.16.0.12 .:. Windows XP Professional
    30-12-2007, 04:00 PM por Admin -
    Linhas 52-53 foram acrescentadas:
    %newwin% [[https://172.16.0.10:8081 | ispconfig]]
    %newwin% [[https://172.16.0.10:10000 | webmin]]\\
    Linhas 55-56 foram alteradas de:
    \\
    para:
    23-12-2007, 06:31 PM por Admin -
    Linha 35 foi alterada de:
    '''diesel.nmmendes.com''' @ 10.0.0.1
    para:
    '''diesel.nmmendes.com''' @ 10.0.0.1 .:. Ubuntu Server 6.06.1 LTS
    23-12-2007, 06:22 PM por Admin -
    Linha 50 foi alterada de:
    '''servidor1.picowireless.net''' @ 172.16.0.10 .:. Ubuntu
    para:
    '''servidor1.picowireless.net''' @ 172.16.0.10 .:. Ubuntu Server 6.06.1 LTS
    23-12-2007, 06:22 PM por Admin -
    Linha 45 foi alterada de:
    '''vmservidor1.picowireless.net''' @ 172.16.0.11
    para:
    '''vmservidor1.picowireless.net''' @ 172.16.0.11 .:. Ubuntu Desktop 7.10
    Linha 50 foi alterada de:
    '''servidor1.picowireless.net''' @ 172.16.0.10
    para:
    '''servidor1.picowireless.net''' @ 172.16.0.10 .:. Ubuntu
    Linha 55 foi alterada de:
    '''servidor2.picowireless.net''' @ 172.16.0.12
    para:
    '''servidor2.picowireless.net''' @ 172.16.0.12 .:. Ubuntu Server 6.06.1 LTS
    Linha 60 foi alterada de:
    '''servidor3.picowireless.net''' @ 172.16.0.13
    para:
    '''servidor3.picowireless.net''' @ 172.16.0.13 .:. Windows XP Professional
    23-12-2007, 06:19 PM por Admin -
    Linha 45 foi alterada de:
    '''servidor1.picowireless.net''' @ 172.16.0.10
    para:
    '''vmservidor1.picowireless.net''' @ 172.16.0.11
    Linha 50 foi alterada de:
    '''servidor2.picowireless.net''' @ 172.16.0.11
    para:
    '''servidor1.picowireless.net''' @ 172.16.0.10
    Linha 55 foi alterada de:
    '''pontos de acesso'''
    para:
    '''servidor2.picowireless.net''' @ 172.16.0.12
    Linhas 57-66 foram acrescentadas:
    %newwin% [[https://172.16.0.12:10000 | webmin]]\\
    \\

    '''servidor3.picowireless.net''' @ 172.16.0.13
    ----
    \\
    \\

    '''pontos de acesso'''
    ----
    16-12-2007, 06:42 PM por Admin -
    Linha 18 foi alterada de:
    %newwin% [[http://10.0.2.3/ | D-Link Dwl2100 ]]
    para:
    %newwin% [[http://10.0.2.3/ | D-Link Dwl-2100AP ]]
    16-12-2007, 06:27 PM por Admin -
    Linhas 24-25 foram alteradas de:
    %newwin% [[http://10.1.0.1/ | web]]\\
    %newwin% [[http://10.0.3.2/ | web]]
    para:
    %newwin% [[http://10.1.0.1/ | pfSense web]]\\
    %newwin% [[http://10.0.3.2/ | LongShine web]]
    16-12-2007, 06:27 PM por Admin -
    Linhas 24-25 foram alteradas de:
    %newwin% [[http://10.1.0.1/ | web]]
    para:
    %newwin% [[http://10.1.0.1/ | web]]\\
    %newwin% [[http://10.0.3.2/ | web]]
    16-12-2007, 05:30 PM por Admin -
    Linhas 14-16 foram alteradas de:
    %newwin% [[http://10.0.2.138/ | Router2]]
    para:
    %newwin% [[http://10.0.1.138/ | Router2]]
    %newwin% [[http://10.0.1.3/ | SMC]]\\
    %newwin% [[http://10.0.2.138/ | Router3]]
    Linhas 18-20 foram alteradas de:
    %newwin% [[http://10.0.2.3/ | D-Link Dwl2100 ]]\\
    %newwin% [[http://10.0.1.138/ | Router3]]
    %newwin% [[http://10.0.1.3/ | SMC]]
    para:
    %newwin% [[http://10.0.2.3/ | D-Link Dwl2100 ]]
    Linha 55 foi eliminada:
    16-12-2007, 05:28 PM por Admin -
    Linha 18 foi alterada de:
    %newwin% [[http://10.0.1.3/ | 10.0.1.3 SMC]]
    para:
    %newwin% [[http://10.0.1.3/ | SMC]]
    16-12-2007, 05:28 PM por Admin -
    Linha 18 foi acrescentada:
    %newwin% [[http://10.0.1.3/ | 10.0.1.3 SMC]]
    Linha 56 foi alterada de:
    para:
    16-12-2007, 05:27 PM por Admin -
    Linha 15 foi alterada de:
    %newwin% [[http://10.0.2.2/ | Matrixx ]]\\
    para:
    %newwin% [[http://10.0.2.2/ | Matrixx ]]
    16-12-2007, 05:27 PM por Admin -
    Linha 13 foi alterada de:
    %newwin% [[http://10.0.0.2/ | Router1]]
    para:
    %newwin% [[http://10.0.0.2/ | Router1]]\\
    Linhas 15-16 foram acrescentadas:
    %newwin% [[http://10.0.2.2/ | Matrixx ]]\\
    %newwin% [[http://10.0.2.3/ | D-Link Dwl2100 ]]\\
    16-12-2007, 05:22 PM por Admin -
    Linhas 14-15 foram alteradas de:
    %newwin% [[http://10.0.1.138/ | Router2]]
    para:
    %newwin% [[http://10.0.2.138/ | Router2]]
    %newwin% [[http://10.0.1.138/ | Router3]]
    14-12-2007, 01:47 AM por Admin -
    Linha 37 foi acrescentada:
    %newwin% [[http://10.0.0.1/phpldapadmin/ | ldap]]\\
    Linhas 39-41 foram acrescentadas:

    '''servidor1.picowireless.net''' @ 172.16.0.10
    ----
    Linhas 42-44 foram eliminadas:

    '''servidor1.picowireless.net''' @ 172.16.0.10
    ----
    Linhas 44-46 foram acrescentadas:

    '''servidor2.picowireless.net''' @ 172.16.0.11
    ----
    Linhas 47-50 foram eliminadas:

    '''servidor2.picowireless.net''' @ 172.16.0.11
    ----
    %newwin% [[https://172.16.0.11/phpldapadmin/ | ldap]]
    Linhas 49-50 foram alteradas de:
    \\
    para:
    14-12-2007, 01:10 AM por Admin -
    Linha 18 foi alterada de:
    '''loadbalance.nmmendes.com''' @ 10.0.1.1, 10.1.0.1
    para:
    '''loadbalance.nmmendes.com''' @ wan1 10.0.0.3, wan2 10.0.1.1, lan 10.1.0.1
    Linha 24 foi alterada de:
    '''firewall.nmmendes.com''' @ 10.0.0.3, 172.16.0.1, 200.0.0.1
    para:
    '''firewall.nmmendes.com''' @ wan 10.1.0.2, wireless 172.16.0.1, lan 200.0.0.1
    14-12-2007, 12:47 AM por Admin -
    Linhas 49-50 foram alteradas de:
    para:
    \\
    14-12-2007, 12:47 AM por Admin -
    Linha 18 foi alterada de:
    '''loadbalance.nmmendes.com''' @ 10.1.0.1
    para:
    '''loadbalance.nmmendes.com''' @ 10.0.1.1, 10.1.0.1
    Linha 24 foi alterada de:
    '''firewall.nmmendes.com''' @ 172.16.0.1
    para:
    '''firewall.nmmendes.com''' @ 10.0.0.3, 172.16.0.1, 200.0.0.1
    Linha 47 foi alterada de:
    para:
    %newwin% [[https://172.16.0.11/phpldapadmin/ | ldap]]
    03-12-2007, 02:37 AM por Admin -
    Linhas 52-58 foram alteradas de:
    para:
    03-12-2007, 02:36 AM por Admin -
    Linha 56 foi acrescentada:
    %newwin% [[http://172.16.0.5/ | Cisco 1200]] DigitalChip\\
    03-12-2007, 02:33 AM por Admin -
    Linha 56 foi alterada de:
    %newwin% [[http://172.16.0.6/ | D-Link Dwl-2100AP]] DigitalChip
    para:
    %newwin% [[http://172.16.0.6/ | D-Link Dwl-2100AP]] DigitalChip\\
    03-12-2007, 02:33 AM por Admin -
    Linha 55 foi alterada de:
    para:
    Linha 57 foi acrescentada:
    %newwin% [[http://172.16.0.7/ | D-Link Dwl-2100AP]] DigitalChip
    03-12-2007, 02:31 AM por Admin -
    Linha 53 foi alterada de:
    %newwin% [[http://172.16.0.2/ | Senao / Engeniues]] DigitalChip\\
    para:
    %newwin% [[http://172.16.0.2/ | Senao / Engenius]] DigitalChip\\
    03-12-2007, 02:31 AM por Admin -
    Linhas 55-56 foram alteradas de:
    para:
    03-12-2007, 02:29 AM por Admin -
    Linha 52 foi alterada de:
    para:
    03-12-2007, 02:29 AM por Admin -
    Linhas 52-54 foram alteradas de:
    para:
    03-12-2007, 02:29 AM por Admin -
    Linhas 47-55 foram acrescentadas:
    02-12-2007, 04:54 AM por Admin -
    Linha 18 foi alterada de:
    '''loadbalance.nmmendes.com''' 10.1.0.1
    para:
    '''loadbalance.nmmendes.com''' @ 10.1.0.1
    Linha 24 foi alterada de:
    '''firewall.nmmendes.com''' 172.16.0.1
    para:
    '''firewall.nmmendes.com''' @ 172.16.0.1
    Linha 30 foi alterada de:
    '''diesel.nmmendes.com''' 10.0.0.1
    para:
    '''diesel.nmmendes.com''' @ 10.0.0.1
    Linha 40 foi alterada de:
    '''servidor1.picowireless.net''' 172.16.0.10
    para:
    '''servidor1.picowireless.net''' @ 172.16.0.10
    Linha 45 foi alterada de:
    '''servidor2.picowireless.net''' 172.16.0.11
    para:
    '''servidor2.picowireless.net''' @ 172.16.0.11
    02-12-2007, 04:54 AM por Admin -
    Linha 18 foi alterada de:
    '''loadbalance.nmmendes.com'''
    para:
    '''loadbalance.nmmendes.com''' 10.1.0.1
    Linha 24 foi alterada de:
    '''firewall.nmmendes.com'''
    para:
    '''firewall.nmmendes.com''' 172.16.0.1
    Linha 30 foi alterada de:
    '''diesel.nmmendes.com'''
    para:
    '''diesel.nmmendes.com''' 10.0.0.1
    Linha 40 foi alterada de:
    '''servidor1.picowireless.net'''
    para:
    '''servidor1.picowireless.net''' 172.16.0.10
    Linha 45 foi alterada de:
    '''servidor2.picowireless.net'''
    para:
    '''servidor2.picowireless.net''' 172.16.0.11
    02-12-2007, 04:49 AM por Admin -
    Linha 36 foi eliminada:
    02-12-2007, 03:35 AM por Admin -
    Linhas 35-37 foram acrescentadas:
    %newwin% [[http://10.0.0.1:9090 | openfire http]]
    %newwin% [[https://10.0.0.1:9091 | openfire https]]
    02-12-2007, 02:56 AM por Admin -
    Linhas 9-10 foram alteradas de:
    para:
    \\
    Linhas 16-17 foram alteradas de:
    para:
    \\
    Linhas 22-23 foram alteradas de:
    para:
    \\
    Linhas 28-29 foram alteradas de:
    para:
    \\
    Linhas 35-37 foram eliminadas:

    '''servidor1.picowireless.net'''
    ----
    Linha 38 foi alterada de:
    '''servidor2.picowireless.net'''
    para:
    '''servidor1.picowireless.net'''
    Linhas 40-44 foram acrescentadas:
    \\
    \\

    '''servidor2.picowireless.net'''
    ----
    02-12-2007, 02:55 AM por Admin -
    Linhas 12-13 foram alteradas de:
    %newwin% [[http://10.0.0.2/ | 10.0.0.2]]
    %newwin% [[http://10.0.1.138/ | 10.0.1.138]]
    para:
    %newwin% [[http://10.0.0.2/ | Router1]]
    %newwin% [[http://10.0.1.138/ | Router2]]
    Linha 18 foi alterada de:
    %newwin% [[http://10.1.0.1/ | 10.1.0.1]]
    para:
    %newwin% [[http://10.1.0.1/ | web]]
    02-12-2007, 02:55 AM por Admin -
    Linhas 12-13 foram alteradas de:
    %newwin% [[http://10.0.0.2/ | web]]
    %newwin% [[http://10.0.1.138/ | web]]
    para:
    %newwin% [[http://10.0.0.2/ | 10.0.0.2]]
    %newwin% [[http://10.0.1.138/ | 10.0.1.138]]
    Linha 18 foi alterada de:
    %newwin% [[http://10.1.0.1/ | web]]
    para:
    %newwin% [[http://10.1.0.1/ | 10.1.0.1]]
    02-12-2007, 02:54 AM por Admin -
    Linha 10 foi alterada de:
    '''loadbalance.nmmendes.com'''
    para:
    '''modems e routers'''
    Linhas 12-13 foram alteradas de:
    %newwin% [[http://10.1.0.1/ | web]]
    para:
    %newwin% [[http://10.0.0.2/ | web]]
    %newwin% [[http://10.0.1.138/ | web]]
    Linha 16 foi alterada de:
    '''firewall.nmmendes.com'''
    para:
    '''loadbalance.nmmendes.com'''
    Linha 18 foi alterada de:
    %newwin% [[http://172.16.0.1/ | web]]
    para:
    %newwin% [[http://10.1.0.1/ | web]]
    Linha 21 foi alterada de:
    '''diesel.nmmendes.com'''
    para:
    '''firewall.nmmendes.com'''
    Linhas 23-26 foram alteradas de:
    %newwin% [[https://10.0.0.1:8080 | ispconfig]]
    %newwin% [[https://10.0.0.1:8081 | ispconfig]]
    %newwin% [[https://10.0.0.1:10000 | webmin]]
    %newwin% [[https://10.0.0.1:8081/roundcubemail/index.php | Roundcubemail]]
    para:
    %newwin% [[http://172.16.0.1/ | web]]
    Linha 26 foi alterada de:
    '''servidor1.picowireless.net'''
    para:
    '''diesel.nmmendes.com'''
    Linhas 28-30 foram acrescentadas:
    %newwin% [[https://10.0.0.1:8081 | ispconfig]]
    %newwin% [[https://10.0.0.1:10000 | webmin]]
    %newwin% [[https://10.0.0.1:8081/roundcubemail/index.php | Roundcubemail]]
    Linha 33 foi alterada de:
    '''servidor2.picowireless.net'''
    para:
    '''servidor1.picowireless.net'''
    Linhas 35-38 foram acrescentadas:
    \\

    '''servidor2.picowireless.net'''
    ----
    02-12-2007, 02:52 AM por Admin -
    Linha 25 foi acrescentada:
    %newwin% [[https://10.0.0.1:8081/roundcubemail/index.php | Roundcubemail]]
    02-12-2007, 02:51 AM por Admin -
    Linha 12 foi alterada de:
    [[http://10.1.0.1/ | web]]
    para:
    %newwin% [[http://10.1.0.1/ | web]]
    Linha 17 foi alterada de:
    [[http://172.16.0.1/ | web]]
    para:
    %newwin% [[http://172.16.0.1/ | web]]
    Linhas 22-24 foram acrescentadas:
    %newwin% [[https://10.0.0.1:8080 | ispconfig]]
    %newwin% [[https://10.0.0.1:8081 | ispconfig]]
    %newwin% [[https://10.0.0.1:10000 | webmin]]
    02-12-2007, 02:50 AM por Admin -
    Linhas 1-29 foram acrescentadas:
    \\

    !!PicoWireless.net - Rede Sem Fios
    \\

    !!!''painel de controlo''
    ----
    \\

    '''loadbalance.nmmendes.com'''
    ----
    [[http://10.1.0.1/ | web]]
    \\

    '''firewall.nmmendes.com'''
    ----
    [[http://172.16.0.1/ | web]]
    \\

    '''diesel.nmmendes.com'''
    ----
    \\

    '''servidor1.picowireless.net'''
    ----
    \\

    '''servidor2.picowireless.net'''
    ----