<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>linksys &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/linksys/</link>
	<description>Feed of posts on WordPress.com tagged "linksys"</description>
	<pubDate>Tue, 01 Dec 2009 00:12:10 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Il telefono sempre occupato]]></title>
<link>http://posizioneprona.wordpress.com/2009/11/30/il-telefono-sempre-occupato/</link>
<pubDate>Mon, 30 Nov 2009 00:00:03 +0000</pubDate>
<dc:creator>edivad</dc:creator>
<guid>http://posizioneprona.wordpress.com/2009/11/30/il-telefono-sempre-occupato/</guid>
<description><![CDATA[Ennesimo caso di servizio altamente scadente di eddi: la wsdl che ho sottoscritto della quale ho anc]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Ennesimo caso di servizio altamente scadente di <a href="http://www.eddisrl.it/">eddi</a>: la wsdl che ho sottoscritto della quale ho ancora 859 giorni allo scadere della sottoscrizione.</p>
<p>In pratica è da un po&#8217; di giorni che qualunque numero faccia dal telefono (VOIP), ottengo che la linea destinataria è occupata. Avete presente il Tututututu <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p>Allora chiamo e gentilmente vengo informato che è dovuto al fatto che hanno spostato la loro numerazione da Roma a Milano. Devono quindi cambiare quella che loro chiamano &#8220;borchia&#8221;. In sostanza un routerino linksys che permette di collegare il telefono tradizionale al VOIP.</p>
<p>Fissato un appuntamento e mi porteranno la borchia aggiornata. Ora mi pongo qualche quesito:</p>
<ul>
<li>Ma avvisare (magari via mail) tutti i clienti VOIP che saranno in atto attività manutentive sulla linea percui ci saranno dei disservizi sul VOIP e che dovranno passare a cambiare la borchia?</li>
<li>Aggiornare la borchia esistente da remoto? Non è proprio possibile?</li>
</ul>
<p>Ancora una volta la mancanza di professionalità di questa &#8220;azienda&#8221; parla da sola.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[1:1 NAT with a Linksys WRT54GL router (with Tomato firmware)]]></title>
<link>http://cogo.wordpress.com/2009/11/29/11-nat-with-a-linksys-wrt54gl-router-with-tomato-firmware/</link>
<pubDate>Sun, 29 Nov 2009 13:33:17 +0000</pubDate>
<dc:creator>christer</dc:creator>
<guid>http://cogo.wordpress.com/2009/11/29/11-nat-with-a-linksys-wrt54gl-router-with-tomato-firmware/</guid>
<description><![CDATA[For a long time I have used a Debian based machine called megatron as a gateway at home. Megatron ha]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>For a long time I have used a <a href="http://www.debian.org/" target="_blank">Debian</a> based machine called <a href="http://en.wikipedia.org/wiki/Megatron_(Transformers)" target="_blank">megatron</a> as a gateway at home. Megatron had two NIC&#8217;s where one was connected to an SDSL modem, and the other was connected to a Linksys WRT54GL router (which is running the <a href="http://www.polarcloud.com/tomato" target="_blank">Tomato firmware</a>). These two switched places a while back so that the router is connected to the modem, and megatron is behind the router. There are a couple of services running on megatron that needs to be accessible from the internets, so I had to do some iptables magic on the router to be able to do this. This post is more of a reminder to myself of how to do this, but there might be someone else out there who wants to do the exact same thing.</p>
<p>Earlier megatron had two official ip addresses (I have 5 from my ISP) on the NIC connected to the modem. One of them is used for SSL traffic to megatron and the other is used for everything else. The setup now is that megatron only has one NIC with two internal addresses: 192.168.1.10 and 192.168.1.11. My router has three addresses. Lets say these are: 193.n.n.122, 193.n.n.123 and 193.n.n.124. The first one is the one I will let the router have and the other two I will forward to megatron.</p>
<p>First I had to add two addresses to the router since it only had one. To do this I logged in the router using ssh and ran the following commands:</p>
<pre class="brush: bash;">
# Add ip addresses
ifconfig vlan1:1 193.n.n.123 netmask 255.255.255.248 broadcast 193.n.n.127
ifconfig vlan1:2 193.n.n.124 netmask 255.255.255.248 broadcast 193.n.n.127
</pre>
<p>To test if these two worked I simply pinged the new ip addresses.</p>
<p>Now I needed to tell the router to forward traffic on these two addresses to the ip&#8217;s specified on megatron. iptables to the rescue:</p>
<pre class="brush: bash;">
# To megatron
iptables -t nat -I PREROUTING -p all -d 193.n.n.123 -j DNAT --to-destination 192.168.1.10
iptables -t nat -I PREROUTING -p all -d 193.n.n.124 -j DNAT --to-destination 192.168.1.11

# From megatron
iptables -t nat -I POSTROUTING -p all -s 192.168.1.10 -j SNAT --to-source 193.n.n.123
iptables -t nat -I POSTROUTING -p all -s 192.168.1.11 -j SNAT --to-source 193.n.n.124

# Accept all ports
iptables -I FORWARD -p tcp -d 192.168.1.10 -j ACCEPT
iptables -I FORWARD -p tcp -d 192.168.1.11 -j ACCEPT
</pre>
<p>And that&#8217;s that really. One last thing I had to do was to make these changes permanent. This can be done by putting the ifconfig and iptables commands in this post in the Administration-&#62;Scripts part of the Tomato web-gui. Click on Administration and then Scripts in the gui and enter the commands in the firewall tab:</p>
<p><img src="http://cogo.wordpress.com/files/2009/11/tomato-scripts1.png" alt="" title="Tomato firewall scripts" width="927" height="592" class="alignnone size-full wp-image-935" /></p>
<p>Remember to click the save button on the bottom of the page after these changes.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Linksys WRT54G2 Wireless-G Home Router mit bis zu 54Mbit]]></title>
<link>http://computerdeutschland.wordpress.com/2009/11/28/linksys-wrt54g2-wireless-g-home-router-mit-bis-zu-54mbit/</link>
<pubDate>Sat, 28 Nov 2009 02:32:57 +0000</pubDate>
<dc:creator>lkj99</dc:creator>
<guid>http://computerdeutschland.wordpress.com/2009/11/28/linksys-wrt54g2-wireless-g-home-router-mit-bis-zu-54mbit/</guid>
<description><![CDATA[Linksys WRT54G2-DE Computer Shop Der Router arbeitet bei mir seit 90 Tagen ununterbrochen und ich ha]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><h2>Linksys WRT54G2-DE Computer Shop</h2>
<p><a href='http://www.amazon.de/Linksys-WRT54G2-Wireless-G-Router-54Mbit/dp/B0019ZOBTQ?tag=electronic07f-21'><img style="float:left;width:150px;height:150px;margin-right:10px;" src="http://ecx.images-amazon.com/images/I/41rYPyl5dsL._SL500_.jpg" border='1'></a></p>
<p>Der Router arbeitet bei mir seit 90 Tagen ununterbrochen und ich hatte (bemerkte) bisher keinen Ausfall.</p>
<p>Die DHCP-Funktion funktioniert perfekt, ebenso die Verschlüsselung über WLAN (habe nur WPA2 getestet) und auch der Wireless-MAC-Filter (lässt nur eingetragene MAC-Adressen in das Netzwerk).</p>
<p>Pros:<br />- Kaum nennenswerte Erwärmung (sowohl des Geräts als auch des Netzteils, aber auch nur max. 3 Netzwerkteilnehmer)<br />- Beiliegendes Netzwerkkabel (kurz aber immerhin)<br />- Gute Sendeleistung der WLAN-Antenne<br />- Angenehmes Menü per Webinterface<br />- Nach Stromausfällen wieder schnell einsatzbereit</p>
<p>Neutral:<br />- Den Preis finde ich angemessen<br />- Das Netzteil ist wie bei einem Laptop nicht direkt im Netzstecker</p>
<p>Cons:<br />- Das Programm zur Erstkonfiguration finde ich noch nicht ideal (habe zwar keinen Vergleich zu anderen Herstellern, aber mir gefällt es nicht)<br />- Ich würde mir für Anfänger eine kurze Erklärung wünschen, wie ein Netzwerk überhaupt aufgebaut ist</p>
<ul>
<li>Kompakter Internet-Sharing-Router, 4-Port-Switch und Wireless-G (802.11g) Access Point</li>
<li>Zur gemeinsamen Nutzung einer Internetverbindung und anderer Ressourcen mit Wired-Ethernet- und Wireless-G-Geräten</li>
<li>Einrichtungsfunktion auf Tastendruck für eine einfache und sichere Wireless-Konfiguration</li>
<li>Hohe Sicherheit: Wi-Fi Protected Access¿ 2 (WPA2), Wireless-MAC-Adressfilterung, leistungsstarke SPI-Firewall</li>
<li>inkl. LELA Netzwerk Software zur Einfachen Einrichtung und Wartung Ihres Netzwerks</li>
</ul>
<p>Linksys Wless-G Broadband Router</p>
<h2>Available from Amazon <a href='http://www.amazon.de/Linksys-WRT54G2-Wireless-G-Router-54Mbit/dp/B0019ZOBTQ?tag=electronic07f-21'>Check Price Now!</a></h2>
<p>
*** Product Information and Prices Stored: Nov 27, 2009  20:32:53
<p> <a href="http://pcshopkaufen.cariblogger.com" rel="dofollow" title="Computer Shop kaufen">Computer Shop kaufen</a>  <a href="http://computerdeutschland.blog.com" rel="dofollow" title="Shopping Computer Online">Shopping Computer Online</a> </p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Trust me, I'm a doctor.]]></title>
<link>http://sosideways.wordpress.com/2009/11/26/trust-me-im-a-doctor/</link>
<pubDate>Thu, 26 Nov 2009 17:22:31 +0000</pubDate>
<dc:creator>sosideways</dc:creator>
<guid>http://sosideways.wordpress.com/2009/11/26/trust-me-im-a-doctor/</guid>
<description><![CDATA[So lately, I&#8217;ve been having issues with my interwebz, to where I have to reset my modem/router]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>So lately, I&#8217;ve been having issues with my interwebz, to where I have to reset my modem/router pretty much every other day, maybe even every day, and a thread on my local car forum led to me testing my newer D-Link router that I had bought to replace the bricked Linksys that I had before.</p>
<p>I had a Linksys WRT54G Version 2 router that I&#8217;ve had since the Version 2 first came out, and I&#8217;ve never had a problem with it.  One day, I had an issue with the modem, so I had to power cycle that to get it to work again, and in doing so, I would normally power cycle the router right after so that all the signals go through and work correctly.</p>
<p>That day, for whatever reason, I thought it was a good idea to press the reset button on the back of the router, which basically returned the router to factory default settings instead of just power cycling itself.</p>
<p>Seeing that, I said &#8220;oh wtf?&#8221; and went ahead and logged into the webgui and tried to change the settings back to the way they were right away.  Upon the first &#8220;save settings&#8221; click, it froze, and when I power cycled it, it wouldn&#8217;t power back on anymore.  The power light would just keep blinking.</p>
<p>Fast forward to yesterday, and I was determined to give it a try to try and revive, or un-brick my Linksys, as I had narrowed most of my problems to the D-Link router that I had.</p>
<p>Friend of mine gave me a few webpages with different methods to revive the router to check out, and the more easier ones didn&#8217;t work, and I literally came to the &#8220;try this as the last step because there is only a 20% success rate&#8221; step, the step right before &#8220;put on your coat and go down to Best Buy and buy another one&#8221; step.</p>
<p>It involved opening the router&#8217;s casing up, finding the flash chip on there, locating a specific pin, and using a copper wire to ground that pin to the antenna base.  However, the pin is so small, that I actually had to separate the strands and just use 1 strand of wire to touch the pin, while the other end of the wire, I just twisted all the strands together and touched it to the antenna&#8217;s base.</p>
<p>This step, however, I would highly suggest that you have a second person to help you, because you need to hold that wire on that pin, and only that pin, while you ground the other end to the antenna, which will take up both of your hands, and while you&#8217;re grounding it out, you need to plug the router in to give it power, thus completing the circuit and grounding the pin out.  I had Krystal plug in the router, while I held the wire in place, all the while looking at the cmd screen&#8217;s continuous ping attempts to see if it will give me a &#8220;TTL=xxx&#8221; response.  Right as Krystal plugged in the router, I started getting TTL=100 responses, so I started the TFTP process to load the new firmware onto the router.  Soon, it was back up and running!</p>
<p>It was an awesome feeling, and I literally felt like I was doing the equivalent of using defibrillators on the router to shock it back to life  lol</p>
<p>Thus the title.</p>
<p>PS &#8211; I will put up the guide that I used to bring it back to life on my next post.  Gotta run to the in-laws&#8217; to prepare Thanksgiving dinner!</p>
<p>Happy Thanksgiving y&#8217;all!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[The importance of a good router - Why your internet keeps failing]]></title>
<link>http://chillingsilence.wordpress.com/2009/11/23/the-importance-of-a-good-router/</link>
<pubDate>Mon, 23 Nov 2009 18:42:04 +0000</pubDate>
<dc:creator>chillingsilence</dc:creator>
<guid>http://chillingsilence.wordpress.com/2009/11/23/the-importance-of-a-good-router/</guid>
<description><![CDATA[If the button says &#8220;Sweeeeet&#8221; then good on you for doing the right thing and using OpenD]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>If the button says &#8220;Sweeeeet&#8221; then good on you for doing the right thing and using OpenDNS. If it says &#8220;Get Started&#8221; then read on!</p>
<p>&#160;</p>
<address>&#8220;But I have a good router already! My ISP gave me it, it must be the best!&#8221;</address>
<p>Man if I had a couple of bucks every time I&#8217;ve heard that, I&#8217;d be so rich by now. Fact of the matter is, it&#8217;s unfortunately far from the truth, and many ISP-provided routers truly suck.</p>
<p>I work with VoIP, and running a Voice call over the internet may be easy with Skype, and you may be OK with choppy calls, but when you&#8217;re running an enterprise-grade telephony system, you don&#8217;t have the same tolerance for bad quality. Same for Home users, you <span style="text-decoration:underline;"><em>should not</em></span> have to put up with daily restarts!</p>
<p>What does that have to do with you? Most probably everything! If you&#8217;re here it&#8217;s likely because you&#8217;re having issues with your internet, and either you think it&#8217;s related to your router, or I&#8217;ve referred you here from PressF1.</p>
<p>So let&#8217;s clear the air about a few routers:<!--more--></p>
<p><img style="float:left;" src="http://img97.imageshack.us/img97/5213/dlinkdsl302g.jpg" alt="D-Link DSL-320G" />The <strong>D-Link DSL-302G</strong> is quite possibly the worst router of all time. They should be all be burned in one great big bonfire and D-Link publicly mocked for them.</p>
<p>&#160;</p>
<p>&#160;</p>
<p><img style="float:left;" src="http://img256.imageshack.us/img256/996/dynalinkrta1320.jpg" alt="Dynalink RTA1320" /><strong>Dynalink </strong>have their overheating <strong>RTA1320</strong> that gets so hot the plastic melts and changes from light cream to a rusty looking orange or brown. It&#8217;s unfortunately a bad choice in router too.</p>
<p>&#160;</p>
<p>&#160;</p>
<p><img style="float:left;" src="http://img513.imageshack.us/img513/1999/2wire2070.jpg" alt="2Wire 2070" /> Telecom have been giving away a <strong>2Wire 2070</strong>-series Router and <strong>Thomson TG585v7</strong> modems. They&#8217;ve got some of the worst web interfaces I&#8217;ve ever used, but at least they&#8217;re semi-reliable. Again though, they must be cheap routers if they mass-produce them and Telecom gives them away. $199 value? Whatever! Nobody in their right mind would spend $199 on them!</p>
<p>&#160;</p>
<p>&#160;</p>
<p><img style="float:left;" src="http://img517.imageshack.us/img517/5714/siemenssx763.jpg" alt="Siemens SX-763" />Orcon with their <strong>HomeHub / BizHub</strong> router which is a <strong>Siemens SX-763</strong>. Best mentioned so far, but again far from the quality that a router should be. It&#8217;s locked-down so you can&#8217;t change the USB port or VoIP settings, it doesn&#8217;t overheat, but for a VoIP router it doesn&#8217;t handle VoIP well at all.</p>
<p>&#160;</p>
<p>&#160;</p>
<p><img style="float:left;" src="http://img21.imageshack.us/img21/3237/belkinn1.jpg" alt="Belkin N1" />The <strong>Belkin N1</strong> is overpriced and fails to deliver in so many ways. I&#8217;m not sure why, but around 60% of all the N1&#8217;s I&#8217;ve dealt with just seem to have packed up and died. Their ADSL performance / reliability was mediocre anyway. suffering from irregular reboots.</p>
<p>&#160;</p>
<p>&#160;</p>
<p>&#160;</p>
<p><img style="float:left;" src="http://img21.imageshack.us/img21/7117/netgeardg834g.jpg" alt="Netgear DG834G" />The <strong>Netgear DG834G</strong> has firmware issues, wireless isn&#8217;t reliable, average broadband performance and reliability, but to be honest it&#8217;s probably the most reliable router I&#8217;m recommending people avoid</p>
<p>&#160;</p>
<p>&#160;</p>
<p><img style="float:left;" src="http://img101.imageshack.us/img101/2518/linksyswag160n.jpg" alt="Linksys WAG160N" /><strong>Linksys</strong>, yes I love Linksys stuff but man did they mess up badly with the <strong>WAG160N</strong>. That thing falls over almost as much as the Dynalinks. Sure, I&#8217;ve seen ADSL Sync speeds go up when compared with the likes of a Telecom Thomson TG585 by around 3m/bit, but that means nothing to me if it&#8217;s not going to function day in and day out reliably.</p>
<p>&#160;</p>
<p>&#160;</p>
<p>What&#8217;s the solution then? So many bad routers out there, most free, what can you do about it?</p>
<p>Well don&#8217;t take the free stuff that your ISP gives away. There&#8217;s a reason why it&#8217;s free, and that&#8217;s not because it&#8217;s a good, quality router!</p>
<h1>Tell me what I SHOULD buy then? What are good routers?</h1>
<p>&#160;</p>
<p>If you&#8217;re a <strong><span style="text-decoration:underline;">home user</span></strong> or <strong><span style="text-decoration:underline;">small-business</span></strong> and want an all-in-one solution that &#8220;just works&#8221;:<br />
<a title="NetComm NB6Plus4Wn from PBTech" href="http://pbtech.co.nz/index.php?item=MODNCM1065" target="_blank">NetComm NB6Plus4Wn</a></p>
<p>&#160;</p>
<p>If you&#8217;re a <strong><span style="text-decoration:underline;">geek</span></strong> or a <strong><span style="text-decoration:underline;">business</span></strong>, or perhaps you want a little more control over your router, maybe you give your internet connection a hammering, or if you want QoS (Quality of Service) to <em>prioritize VoIP / Gaming</em> above other traffic, then you want:<br />
A <a title="Linksys AM300 from PBTech" href="http://pbtech.co.nz/index.php?item=MODLKS5116" target="_blank">Linksys AM300</a> in Halfbridge to a <a title="Linksys WRT54GL Open-Source Wireless Router from PBTech" href="http://pbtech.co.nz/index.php?item=NETLKS4618" target="_blank">Linksys WRT54GL</a> running <a title="Tomato Firmware homepage" href="http://www.polarcloud.com/tomato" target="_blank">Tomato Firmware</a></p>
<p>&#160;</p>
<p>Please drop me a comment and say Hi, let me know if this has helped you or got you thinking in any way, or perhaps if you&#8217;ve got one of the routers then just say so. Always happy to hear from readers.</p>
<p>Cheers</p>
<p>Chill.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Vulnerabilidad de denegación de servicio en Linksys WAP4400N]]></title>
<link>http://explod.wordpress.com/2009/11/23/vulnerabilidad-de-denegacion-de-servicio-en-linksys-wap4400n/</link>
<pubDate>Mon, 23 Nov 2009 15:44:06 +0000</pubDate>
<dc:creator>Ov3R</dc:creator>
<guid>http://explod.wordpress.com/2009/11/23/vulnerabilidad-de-denegacion-de-servicio-en-linksys-wap4400n/</guid>
<description><![CDATA[Linksys WAP4400N Se ha anunciado una vulnerabilidad de denegación de servicio en los puntos de acces]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div class="wp-caption aligncenter" style="width: 330px"><img title="Linksys WAP4400N" src="http://3.bp.blogspot.com/_b1-3U_eoK_E/SPYjEd3h64I/AAAAAAAAAek/dUCpHDAvX-0/s400/WAP4400N.jpg" alt="Linksys" width="320" height="240" /><p class="wp-caption-text">Linksys WAP4400N</p></div>
<p>Se ha anunciado una vulnerabilidad de denegación de servicio en los puntos de acceso inalámbrico Linksys WAP4400N (Wireless N Access Point).</p>
<p>El problema se debe a un error al tratar peticiones de asociación mal construidas, lo que podría dar lugar a que el dispositivo se reinicie o quede bloqueado lo que provoca que no pueda utilizarse la red inalámbrica con la consiguiente condición de denegación de servicio.</p>
<p>Se ha publicado el firmware versión 1.2.19 para corregir este problema.</p>
<p>Enlace: <a href="http://seclists.org/bugtraq/2009/Nov/73" target="_blank">Marvell Driver Multiple Information Element Overflows</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Algumas solues de baixo preo]]></title>
<link>http://puropelo.wordpress.com/2009/11/22/algumas-solucoes-de-baixo-preco/</link>
<pubDate>Sun, 22 Nov 2009 18:39:06 +0000</pubDate>
<dc:creator>puropelo</dc:creator>
<guid>http://puropelo.wordpress.com/2009/11/22/algumas-solucoes-de-baixo-preco/</guid>
<description><![CDATA[Como vimos anteriomente o NAS proporciona um backup muito flexivel para a rede, possibilitando fazer]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Como vimos anteriomente o NAS proporciona um backup muito flexivel para a rede, possibilitando fazer cpias de segurana de vrios computadores, ou at mesmo da rede inteira.</p>
<p>Agora trazemos algumas solues encontradas diponveis no mercado nacional:</p>
<p><a href="http://puropelo.wordpress.com/files/2009/11/nas200linksysg.jpg"><img class="aligncenter size-full wp-image-52" title="nas200linksysg" src="http://puropelo.wordpress.com/files/2009/11/nas200linksysg.jpg" alt="" width="185" height="173" /></a></p>
<p>Linksys Network Storage System 2 baias &#8211; NAS200</p>
<p><strong>CARACTERSTICAS</strong><br />
 Sistema de armazenamento para ser conectado  na rede Ethernet<br />
 Suporte 2 HDs SaTA (Raid 0, 1)<br />
 Duas portas  USB<br />
 Compartilhe localmente ou pela Internet (FTP, HTTP) sem um PC  dedicado<br />
 Embutido um servidor de Streming<br />
 Software de backup  incluso. Boto de backup</p>
<p><strong> ESPECIFICAES</strong><br />
 Modelo:  NAS200<br />
 Padres: IEEE 802.3; IEEE 802.3u<br />
 Portas: Power,  Ethernet, USB 1, USB2<br />
 Botes: Power, USB 1, USB 2, Reset, Backup<br />
  LEDs: Power, Ethernet, Disk (Act, Full, 1, 2), USB 1, USB 2<br />
 Tipo  de cabo: UTP CAT5 ou melhor<br />
 Segurana: nome de usurio e senha para  usurio administrativo e acesso a arquivos<br />
 Energia: 12v DC, 5A,  100-240V AC, 50-60Hz<br />
 Certificao: FCC, CE<br />
 Dimenses:  170&#215;114x193mm<br />
 Peso: 840g</p>
<p> Acompanha:<br />
- CD de instalao<br />
-  Guia do usurio no CD<br />
- Quick Installation<br />
- Cabo Ethernet<br />
-  Adaptador de energia</p>
<p>&#160;</p>
<p>Cotado no valor entre R$600,00 e R$700 reais, esse NAS  uma tima soluo tambem para pequenas e mdias empresas, com suporte a 2 HDs.</p>
<p><a href="http://puropelo.wordpress.com/files/2009/11/sc101tnag.jpg"><img class="aligncenter size-full wp-image-53" title="SC101TNAg" src="http://puropelo.wordpress.com/files/2009/11/sc101tnag.jpg" alt="" width="185" height="177" /></a></p>
<p>NETGEAR NAS Storage Central Turbo (10/100/1000) &#8211; SC101TNA</p>
<p><strong>CARACTERSTICAS</strong><br />
 Compartilhe arquivos atravs da rede<br />
  Suporta at 2 HDs SATA<br />
 Conexo Gigabit<br />
 Espelhamento de disco  protege seus dados<br />
 Smart Wizard Installation para simplificar a  configurao<br />
 O Sistema operacional enxerga o SC101T como um novo  drive<br />
 Acessvel atravs de qualquer PC conectado na rede<br />
 As  parties do disco podem ser configuradas como de acesso pblico ou  privado, sendo protegidas por senha</p>
<p><strong>ESPECIFICAES</strong><br />
  Modelo: SC101TNA<br />
 Padres: IEE 802.3, IEEE 802.3u, IEEE 802.3ab<br />
  Interface: 10/100/1000 Mbps (auto-sensing), Ethernet RJ-45<br />
  Protocolos: TCP/IP, DHCP, SAN<br />
 Botes: Power on/off, reset<br />
  LEDS: Power (green); HD (Blue); Network (green)<br />
 Suporta HD: 2x 3.5&#8243;  SATA<br />
 Dimenses: 175.25 x 150 x 146mm (LxWxH)<br />
 Requisitos do  sistema:<br />
- Windows 2000, XP Home ou Pro<br />
- DHCP Server<br />
- HDs  SATA<br />
 Acompanha:<br />
- CD, Manual<br />
- SmartSync Pro Backup Software  CD<br />
- Adaptador de energia<br />
- Cabo Ethernet</p>
<p>&#160;</p>
<p>Fonte: SmartData, Noli IT Solutions</p>
<p>&#160;</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Securing your Wireless Access – inQuo’s Tech Tip Tuesday Newsletter Volume 3]]></title>
<link>http://inquo.wordpress.com/2009/11/20/securing-your-wireless-access-%e2%80%93-inquo%e2%80%99s-tech-tip-tuesday-newsletter-volume-3/</link>
<pubDate>Fri, 20 Nov 2009 18:32:52 +0000</pubDate>
<dc:creator>inquo</dc:creator>
<guid>http://inquo.wordpress.com/2009/11/20/securing-your-wireless-access-%e2%80%93-inquo%e2%80%99s-tech-tip-tuesday-newsletter-volume-3/</guid>
<description><![CDATA[Securing your Wireless Access Wireless access is a great way to untangle the cords that hold you bac]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><span style="font-size:medium;">Securing your Wireless Access</span></p>
<table border="0" cellspacing="0" cellpadding="0" width="100%">
<tbody>
<tr>
<td width="68%" align="left" valign="top">Wireless  	access is a great way to untangle the cords that hold you back from  	wandering around your office or home, laptop in hand.   It is a great tool  	for increasing productivity, but without the proper security, wireless  	access could expose you to security risks.Most  	wireless routers will offer ways to lock up the security of your wireless  	network.  There are typically two different security scenarios for wireless  	access.  <strong>WEP and WPA</strong>.</td>
</tr>
<tr>
<td width="68%" align="left" valign="top">
<ul>
<li><em><strong>WEP</strong></em> (<em>Wired  		Equivalent Privacy</em>) was the original security protocol for  		wireless access.  Designed to offer the same protection as regular  		network passwords, it is now considered un-secure and can be easily  		hacked by someone with the proper equipment.</li>
<li><em><strong>WPA</strong></em> (<em>WIFI  		Protected Access</em>) is the current standard for stronger  		wireless access security.</li>
</ul>
</td>
</tr>
<tr>
<td width="68%" align="left" valign="top"><strong> How do I know if my wireless security is setup?<br />
</strong>The easiest way  	to tell is to use your computers network viewer to view available wireless  	networks.  If your wireless network shows a little padlock symbol, or if it  	requires a password to access it, then you are probably ok.   If your  	wireless security is not configured, it would be recommended to get it setup  	as soon as possible.  Each wireless router will be different when setting up  	the security options.We have linked some helpful pages for some of  	the main manufacturers of wireless routers:</td>
</tr>
<tr>
<td width="68%" align="left" valign="top">
<ul>
<li> <a href="http://www.microsoft.com/athome/moredone/wirelesssetup.mspx"> How To Set Up Your Home Wireless Network – Microsoft </a></li>
<li><a href="http://www.ezinstructions.com/wrt54gsetup.html">Linksys  		Wireless Router Network Settings </a></li>
<li><a href="http://kb.netgear.com/app/answers/detail/a_id/112"> Configuring Wireless Security on Netgear Routers</a></li>
<li><a href="http://global.dlink.com.sg/temp/WQ13.asp">How to setup WPA  		on a D-Link Wireless Router</a></li>
</ul>
</td>
</tr>
<tr>
<td width="68%" align="left" valign="top"></td>
</tr>
</tbody>
</table>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Dual WAN with one as standby backup]]></title>
<link>http://jawor92.wordpress.com/2009/11/18/dual-wan-with-one-as-standby-backup/</link>
<pubDate>Tue, 17 Nov 2009 23:07:29 +0000</pubDate>
<dc:creator>jawor92</dc:creator>
<guid>http://jawor92.wordpress.com/2009/11/18/dual-wan-with-one-as-standby-backup/</guid>
<description><![CDATA[This tutorial explains how you can assign one (or more) of the LAN ports as an extra WAN port. There]]></description>
<content:encoded><![CDATA[This tutorial explains how you can assign one (or more) of the LAN ports as an extra WAN port. There]]></content:encoded>
</item>
<item>
<title><![CDATA[Revisión del Bridge Ethernet Wireless-N Linksys WET610N]]></title>
<link>http://elrincondetolgalen.wordpress.com/2009/11/16/revision-del-bridge-ethernet-wireless-n-linksys-wet610n/</link>
<pubDate>Mon, 16 Nov 2009 20:48:57 +0000</pubDate>
<dc:creator>tolgalen</dc:creator>
<guid>http://elrincondetolgalen.wordpress.com/2009/11/16/revision-del-bridge-ethernet-wireless-n-linksys-wet610n/</guid>
<description><![CDATA[Hola en la pasada revisión del router neutro Linksys WRT160NL os comentaba las pruebas con un bridge]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:justify;">Hola</p>
<p style="text-align:justify;">en la <a href="http://elrincondetolgalen.wordpress.com/2009/11/15/revision-del-router-neutro-linksys-wrt160nl/" target="_blank">pasada revisión del router neutro Linksys WRT160NL</a> os comentaba las pruebas con un bridge Wireless-N. Ese bridge es el Linksys WRT610N y es compatible con cualquier dispositivo IEEE 802.11g, 802.11b, 802.11a, y 802.11n.Asimismo es Dual-Band por lo que puede funcionar en las bandas de 2,4Ghz o 5Ghz que en entornos muy saturados de redes wireless es una ventaja (claro que necesitamos para ello un AP que funcione en la banda de 5Ghz). Con el WRT610N podemos convertir cualquier dispositivo que tenga conexión ethernet en wifi (una consola, un  pc, &#8230;.) o usarlo para unir dos redes ethernet mediante wireless (como es mi caso). La ventaja de usar un bridge wireless es que es completamente transparente para el sistema operativo o dispositivo, solo tenemos que conectar el bridge al dispositivo por ethernet y previa configuración del bridge para que se conecte a nuestra red wireless el dispositivo que queremos conectar ya estará en red sin tener que configurar nada ni instalar drivers.</p>
<p style="text-align:justify;">
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/wet160n_1.png"><img class="aligncenter size-full wp-image-3667" title="WET160n_1" src="http://elrincondetolgalen.wordpress.com/files/2009/11/wet160n_1.png" alt="WET160n_1" width="450" height="360" /></a></p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/wet160n.png"><img class="aligncenter size-full wp-image-3669" title="wet160n" src="http://elrincondetolgalen.wordpress.com/files/2009/11/wet160n.png" alt="wet160n" width="450" height="137" /></a></p>
<p style="text-align:justify;"><strong>Especificaciones técnicas</strong></p>
<ul style="text-align:justify;">
<li>Modelo: WET610N</li>
<li>Estándares: IEEE 802.3u, 802.11g, 802.11b, 802.11a, versión 802.11n</li>
<li>Puertos: Ethernet, Alimentación</li>
<li>Botones: Reinicio, Wi-Fi Protected Setup™ (Configuración Wi-Fi protegida)</li>
<li>Luces: Alimentación, Ethernet, Wi-Fi Protected Setup™ (Configuración Wi-Fi protegida), Conexión inalámbrica</li>
<li>Tipo de cableado: CAT 5e</li>
<li>Número de antenas: 3 (internas)</li>
<li>Tipo de conector: RJ-45</li>
<li>Desmontable (s/n): No</li>
<li>Modulaciones:
<ul>
<li>802.11a: OFDM/BPSK, QPSK, 16-QAM, 64-QAM</li>
<li>802.11b: CCK/QPSK, BPSK</li>
<li>802.11g: OFDM/BPSK, QPSK, 16-QAM, 64-QAM</li>
<li>802.11n: OFDM/BPSK, QPSK, 16-QAM, 64-QAM</li>
</ul>
</li>
<li>Potencia de radiofrecuencia (EIRP) en dBm:
<ul>
<li>802.11a: 15 dBm (habitualmente) a 54 Mbps</li>
<li>802.11b: 18 dBm (habitualmente) a 11 Mbps</li>
<li>802.11g: 16 dBm (habitualmente) a 54 Mbps</li>
<li>802.11n: 12 dBm (habitualmente) a 130 Mbps (HT20), 270 Mbps (HT40)</li>
</ul>
</li>
<li>Sensibilidad de recepción en dBm:
<ul>
<li>802.11a: -72 dBm (habitualmente) a 54 Mbps</li>
<li>802.11b: -85 dBm (habitualmente) a 11 Mbps</li>
<li> 802.11g: -73 dBm (habitualmente) a 54 Mbps</li>
<li>802.11n: -70 dBm (habitualmente) a MCS15/2,4 GHz, -69 dBm (habitualmente) a MCS15/5,0 GHz</li>
</ul>
</li>
<li>Ganancia de la antena en dBi: 1</li>
<li>Seguridad inalámbrica: WEP, Wi-Fi Protected Access™ 2 o WPA2; (acceso Wi-Fi protegido 2)</li>
<li>Bits de clave de seguridad: Encriptación de hasta 128 bits</li>
</ul>
<p><strong>Paneles del Router</strong></p>
<p>Copiado del manual del dispositivo<strong><br />
</strong></p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/delantera.png"><img class="aligncenter size-full wp-image-3694" title="delantera" src="http://elrincondetolgalen.wordpress.com/files/2009/11/delantera.png" alt="delantera" width="371" height="372" /></a></p>
<p style="text-align:justify;">
<ul style="text-align:justify;">
<li>Wireless  (Inalámbrico, azul) Se enciende cuando existe una conexión inalámbrica y parpadea cuando el puente envía o recibe datos de forma activa a través de la red inalámbrica.</li>
<li>Botón Wi-Fi Protected Setup (Configuración Wi-Fi protegida) Si el router es compatible con la configuración Wi-Fi protegida y utiliza seguridad WPA o WPA2, puede utilizar la Configuración Wi-Fi protegida para conectar el puente de forma automática.</li>
<li>Wi-Fi Protected Setup LED (Luz de Configuración Wi-Fi protegida, azul/ámbar) Parpadea en azul durante dos minutos en la configuración Wi-Fi protegida. Se ilumina en azul cuando se activa la seguridad inalámbrica.Si se produce un error durante el proceso de configuración Wi‑Fi protegida, la luz se ilumina en ámbar. Asegúrese de que el router de la red es compatible con la configuración Wi‑Fi protegida. Espere a que la luz se apague y vuelva a intentarlo.</li>
<li>Ethernet (Azul) La luz Ethernet se ilumina cuando existe una conexión con cables y parpadea cuando el puente envía o recibe datos de forma activa a través del puerto Ethernet.</li>
<li>Power (Alimentación, azul) El indicador de alimentación se ilumina cuando el puente está encendido.</li>
</ul>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/trasera.png"><img class="aligncenter size-full wp-image-3695" title="trasera" src="http://elrincondetolgalen.wordpress.com/files/2009/11/trasera.png" alt="trasera" width="411" height="408" /></a></p>
<ul style="text-align:justify;">
<li>Ethernet El puerto Ethernet conecta el puente a un equipo o a otro dispositivo de red Ethernet.</li>
<li>Reset (Reinicio) Hay dos formas de restablecer los parámetros predeterminados de fábrica del puente. Pulse el botón Reset (Reinicio) durante unos cinco segundos.</li>
<li>Power (Alimentación) Este puerto conecta el puente al adaptador de corriente incluido.</li>
</ul>
<p><!--more--></p>
<p><strong>Desempaquetado</strong></p>
<p>El WRT610N viene en la caja típica azulada de Linksys.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/img_0306-red.jpg"><img class="aligncenter size-full wp-image-3671" title="img_0306.red" src="http://elrincondetolgalen.wordpress.com/files/2009/11/img_0306-red.jpg" alt="img_0306.red" width="450" height="337" /></a></p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/img_0307-red.jpg"><img class="aligncenter size-full wp-image-3672" title="img_0307.red" src="http://elrincondetolgalen.wordpress.com/files/2009/11/img_0307-red.jpg" alt="img_0307.red" width="450" height="337" /></a></p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/img_0308-red.jpg"><img class="aligncenter size-full wp-image-3673" title="img_0308.red" src="http://elrincondetolgalen.wordpress.com/files/2009/11/img_0308-red.jpg" alt="img_0308.red" width="450" height="337" /></a>Dentro de la caja nos encontamos por un lado con:</p>
<ul>
<li>Alimentador</li>
<li>Cable ethernet</li>
<li>Guía de instalación básica</li>
<li>CD con asistente de instalación y manual de usuario en PDF</li>
</ul>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/img_0309-red.jpg"><img class="aligncenter size-full wp-image-3674" title="img_0309.red" src="http://elrincondetolgalen.wordpress.com/files/2009/11/img_0309-red.jpg" alt="img_0309.red" width="450" height="337" /></a></p>
<p style="text-align:justify;">Y con el bridge wireless. El WRT610N sigue la línea moderna de diseño del resto de dispositivos de linksys. En el lateral se puede observar los agujeros de ventilación que la verdad es que son muy pequeños. Por su diseño en forma triangular solo permite colocarlo de pie. En funcionamiento se calienta algo aunque no de forma alarmante, supongo que el tamaño de los orificios de ventilación no ayuda mucho.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/img_0310-red.jpg"><img class="aligncenter size-full wp-image-3675" title="img_0310.red" src="http://elrincondetolgalen.wordpress.com/files/2009/11/img_0310-red.jpg" alt="img_0310.red" width="450" height="337" /></a></p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/img_0311-red-rotado.jpg"><img class="aligncenter size-full wp-image-3676" title="img_0311.red.rotado" src="http://elrincondetolgalen.wordpress.com/files/2009/11/img_0311-red-rotado.jpg" alt="img_0311.red.rotado" width="450" height="600" /></a></p>
<p style="text-align:justify;">La parte inferior tiene una rejilla de ventilación grande al contrario que la parte superior.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/img_0314-red.jpg"><img class="aligncenter size-full wp-image-3678" title="img_0314.red" src="http://elrincondetolgalen.wordpress.com/files/2009/11/img_0314-red.jpg" alt="img_0314.red" width="450" height="337" /></a></p>
<p style="text-align:justify;">De tamaño  es pequeño (como podemos ver comparándolo con el alimentador) lo que permitirá encontrarle facilmente un sitio para colocarlo.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/img_0315-red.jpg"><img class="aligncenter size-full wp-image-3679" title="img_0315.red" src="http://elrincondetolgalen.wordpress.com/files/2009/11/img_0315-red.jpg" alt="img_0315.red" width="450" height="337" /></a></p>
<p style="text-align:justify;">
<p style="text-align:justify;"><strong>Interfaz y configuración</strong></p>
<p style="text-align:justify;">Antes de ponerlo a funcionar lo primero que comprobé es si había alguna actualización de  firmware aunque en este caso no, la que trae es la que está disponible en la web.<strong> </strong></p>
<p style="text-align:justify;">En el CD tenémos el software de configuración que nos ayuda a detectarlo en red y conectarlo a nuestra red wireless y que como es habitual solo funciona en Windows (es posible descargarse el cd desde la web de soporte de Linksys por si lo perdeis).</p>
<p style="text-align:justify;">De fábrica viene con el DHCP activo así que antes de nada comprobé la mac en la información de la base y la añadí a mi servidor DHCP para asignarle directamente la ip final que va usar. Me conecté via web a el para configurarlo. El usuario/clave por defecto es la típica de admin/admin. Intenté configurarlo manualmente pero fue imposible, a pesar de que el dispositivo detectaba mi red wireless no conseguía conectarse a ella, después de varios intentos decidí usar el CD de instalación así que tuve que ejecutar una máquina virtual con windows. (lo estaba configurando desde linux). Con el CD de instalación y después de seguir los pasos (busca las redes disponibles, te pide la clave de acceso, &#8230;) funcionó correctamente y logró conectarse al router wireless WRT160NL. No se si es un bug del interfaz web o que pasaba para que vía web no me dejara configurarlo. Tengo que probar un día con calma a resetearlo y intentar volver a configurarlo via web (previo paso de una reinstalación de firmware para descartar problemas).</p>
<p style="text-align:justify;">Una vez configurado solo fue conectarlo al switch y los dispositivos que estaban conectados en ese switch automaticamente se unieron a la red principal configurandose por DHCP y tenían conexión a red.</p>
<p style="text-align:justify;">El interfaz de configuración es la típica de Linksys aunque en este caso la podemos configurar en castellano.</p>
<p style="text-align:justify;">Para los interesados podeis ver el emulador del interfaz <a href="http://ui.linksys.com/files/WET610N/1.0.01/network/sta_network.html" target="_blank">aquí</a>.</p>
<p style="text-align:justify;">En la pantalla principal podemos configurar el idoma del interfaz o configurar la IP (fija o por DHCP).</p>
<p style="text-align:justify;">
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/wet160n_12.png"><img class="aligncenter size-full wp-image-3681" title="wet160n_1" src="http://elrincondetolgalen.wordpress.com/files/2009/11/wet160n_12.png" alt="wet160n_1" width="450" height="226" /></a></p>
<p style="text-align:justify;">En la pantalla de inalámbrico podemos configurar manualmente los parámetros de conexión a la red wireless  (introducimos el SSID, tipo de seguridad y clave)  o usar Wifi protected setup.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/wet160n_2.png"><img class="aligncenter size-full wp-image-3682" title="wet160n_2" src="http://elrincondetolgalen.wordpress.com/files/2009/11/wet160n_2.png" alt="wet160n_2" width="450" height="271" /></a></p>
<p style="text-align:justify;">También podemos usar el escaner wireless que nos detecta las redes wireless al alcance. Una vez detectadas solo tenemos que seleccionar la red que nos interesa y nos pide los datos de acceso.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/wet160n_3.png"><img class="aligncenter size-full wp-image-3683" title="wet160n_3" src="http://elrincondetolgalen.wordpress.com/files/2009/11/wet160n_3.png" alt="wet160n_3" width="450" height="246" /></a></p>
<p style="text-align:justify;">En la pestaña de WMM (Wireless Multimedia) configuramos QoS para el acceso wifi para dar distintos tipos de prioridades de tráfico (Voz, video,&#8230;)</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/wet160n_4.png"><img class="aligncenter size-full wp-image-3684" title="wet160n_4" src="http://elrincondetolgalen.wordpress.com/files/2009/11/wet160n_4.png" alt="wet160n_4" width="450" height="320" /></a></p>
<p style="text-align:justify;">Y configurar parámetros avanzados de la conexión wireless.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/wet160n_5.png"><img class="aligncenter size-full wp-image-3685" title="wet160n_5" src="http://elrincondetolgalen.wordpress.com/files/2009/11/wet160n_5.png" alt="wet160n_5" width="450" height="240" /></a></p>
<p style="text-align:justify;">En administración configuramos las tìpicas opciones de clave de usuario, copia de seguridad de la configuración, actualizar el firmware o reiniciar el dispositivo.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/wet160n_6.png"><img class="aligncenter size-full wp-image-3686" title="wet160n_6" src="http://elrincondetolgalen.wordpress.com/files/2009/11/wet160n_6.png" alt="wet160n_6" width="450" height="324" /></a></p>
<p style="text-align:justify;">Y en estado podemos comprobar el estado del dispositivo como la IP asignada</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/wet160n_7.png"><img class="aligncenter size-full wp-image-3687" title="wet160n_7" src="http://elrincondetolgalen.wordpress.com/files/2009/11/wet160n_7.png" alt="wet160n_7" width="450" height="223" /></a></p>
<p style="text-align:justify;">O los datos de la conexión wireless establecida.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/wet160n_8.png"><img class="aligncenter size-full wp-image-3688" title="wet160n_8" src="http://elrincondetolgalen.wordpress.com/files/2009/11/wet160n_8.png" alt="wet160n_8" width="450" height="299" /></a></p>
<p style="text-align:justify;"><strong>Pruebas y rendimiento wireless</strong></p>
<p style="text-align:justify;">
<p style="text-align:justify;">Antes de explicar el rendimiento del WET610N os comento mi instalación casera (tal como hize en la revisión del router WRT160NL) para que os hagais una idea de las pruebas. Tengo 2 redes separadas, una red de trabajo donde esta el PC principal servidor, NAS, … y conexión a internet .Después está la red de ocio en el salón con la PS3 y discos duros multimedia. Ambas redes funcionan a gigabit. El estudio y el salón están separados por un piso y hay una escalera por medio. Como no puedo tirar cableado (sería lo ideal para tener todo a gigabit) y el PLC no funciona (dentro de cada planta no hay problema pero entre plantas la instalación eléctrica esta aislada) tengo que conectarlas mediante un puente Wireless-G con 2 Linksys WRT54GL, uno que es el router principal en la red de trabajo y que cambíe por el WRT160NL que revisé anteriormente y otro configurado como bridge en la red de ocio. Mi idea es sustituir ese puente Wireless-G por uno Wireless-N  (con el WET610N y el WRT160NL)y aumentar el rendimiento ya que para navegar por internet desde el salón no hay problema, pero para copiar archivos es lento.</p>
<p style="text-align:justify;">El esquema es el siguiente, que como veis, el problema no es tanto la distancia, si no que son dos plantas distintas con mucha pared  y techo por medio  (tabiques de unos 10 cm) y poco espacio abierto entre ellas.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.files.wordpress.com/2009/11/red.png"><img class="aligncenter" title="red" src="http://elrincondetolgalen.files.wordpress.com/2009/11/red.png?w=450&#038;h=331#38;h=331" alt="red" width="450" height="331" /></a></p>
<p style="text-align:justify;">Por tanto la conexión dejará de ser un puente Wireless-G con dos WRT54GL a ser un puente Wireless-N con un WRT160NL y el WET610N como bridge.</p>
<p style="text-align:justify;">Las pruebas de rendimiento las hago comparando el tandem bridge-ap WRT54G-WRT54GL contra WET610N-WRT160NL.</p>
<p style="text-align:justify;">Las pruebas se basan en copiar un fichero de 1,5GiB del portátil al servidor.</p>
<p style="text-align:justify;">Hay que tener en cuenta que los WRT54GL están &#8220;tuneados&#8221;, tienen antenas de 5dbi y modificados los parámetros del firmware DDWRT para emitir con más potencia. El WET610N y el WRT160NL tienen los parámetros de configuración de fabrica.</p>
<p style="text-align:justify;">En ambos casos tengo el portátil usado para hacer las pruebas y el dispositivo bridge conectados por ethernet a un switch Ovislink a gigabit. La localización de los dispositivos es la que aparece en el esquema.</p>
<p style="text-align:justify;">Prueba 1: Puente Wireless-G entre WRT54GL y WRT54GL.</p>
<p style="text-align:justify;">Comenzamos comprobando la potencia con que se conecta el WRT54GL.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/senal_bridge_g.png"><img class="aligncenter size-full wp-image-3724" title="senal_bridge_g" src="http://elrincondetolgalen.wordpress.com/files/2009/11/senal_bridge_g.png" alt="senal_bridge_g" width="450" height="417" /></a></p>
<p style="text-align:justify;">Como podemos ver la calidad de señal es de un 38% y me dice que sincroniza a 54Mbps. Bien, parece que los datos son normales en mi instalación.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/trasferencia_bridge_g.png"><img class="aligncenter size-full wp-image-3725" title="trasferencia_bridge_g" src="http://elrincondetolgalen.wordpress.com/files/2009/11/trasferencia_bridge_g.png" alt="trasferencia_bridge_g" width="450" height="160" /></a></p>
<p style="text-align:justify;">Vemos que se tarda en copiar el fichero 09&#8242;33&#8243; a una media de  2.6MB/s. Se alcanza un pico de   27,2Mbps de velocidad pero la velocidad medía son unos 22-23Mbps.</p>
<p style="text-align:justify;">
<p style="text-align:justify;">Prueba 2: Puente Wireless-N entre WET610N y WRT160NL.</p>
<p style="text-align:justify;">Comprobamos con potencia con la que se conecta el WET160N</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/senal_bridge_n.png"><img class="aligncenter size-full wp-image-3727" title="senal_bridge_n" src="http://elrincondetolgalen.wordpress.com/files/2009/11/senal_bridge_n.png" alt="senal_bridge_n" width="394" height="289" /></a></p>
<p style="text-align:justify;">En este caso la calidad de señal es de un 45%, superior a la del WRT54GL como bridge y tuneado. Me llama la atención la tasa de bits que marca 13,5Mbps. Me extraña mucho que sea inferior a la del WRT54GL. Es posible que sea un bug del firmware y realmente sea 135Mbps que me parece más lógico, sobre todo en vista de las pruebas siguientes. Estoy pendiente de una respuesta del soporte de Linksys.</p>
<p style="text-align:justify;">
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/trasferencia_bridge_n.png"><img class="aligncenter size-full wp-image-3728" title="trasferencia_bridge_n" src="http://elrincondetolgalen.wordpress.com/files/2009/11/trasferencia_bridge_n.png" alt="trasferencia_bridge_n" width="450" height="176" /></a></p>
<p style="text-align:justify;">Probamos a copiar el fichero y tarda 3&#8242;19&#8243; a una media de 7Mb/s.Se alcanza un pico de 77,2Mbps con una media de velocidad de 67Mbps .Vemos que el rendimiento del puente Wireless-N es 3 veces superior al rendimiento del Wireless-G. Esta velocidad es lo que me hace sospechar que la velocidad de sincronización a la que se conecta el bridge puede ser un bug del firmware que la muestre mal.</p>
<p style="text-align:justify;">Prueba 3: Puente Wireless-N entre WET610N y WRT160NL separados 1 metro.</p>
<p style="text-align:justify;">Para comprobar que velocidad máxima puede darme el puente Wireless-N situo el WET610NL a 1,5 metros de distancia del WRT54GL. Se supone que sería las condiciones ideales y tendría que rendir lo máximo.</p>
<p style="text-align:justify;">Compruebo la calidad de la conexión.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/senal_bridge_n_short.png"><img class="aligncenter size-full wp-image-3731" title="senal_bridge_n_short" src="http://elrincondetolgalen.wordpress.com/files/2009/11/senal_bridge_n_short.png" alt="senal_bridge_n_short" width="323" height="296" /></a></p>
<p style="text-align:justify;">Me indica que la señal es de 100% y sincroniza a 300Mbps. Al estar tan cerca era lo que me esperaba. La tasa es lo que me hace sospechar que lo que marca en el caso anterior pueda ser un bug y que realmente sean 135Mbps y no 13,5Mbps.</p>
<p style="text-align:justify;">Compruebo la velocidad.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/transferencial_bridge_n_short.png"><img class="aligncenter size-full wp-image-3732" title="transferencial_bridge_n_short" src="http://elrincondetolgalen.wordpress.com/files/2009/11/transferencial_bridge_n_short.png" alt="transferencial_bridge_n_short" width="450" height="173" /></a></p>
<p style="text-align:justify;">En este caso me ha sorprendido, me esperaba que con la tasa de sincronización que me marcaba y calidad de señal tener una mayor velocidad pero los resultados son que tarda en copiar el fichero 3&#8242;11&#8243; a unos 8MB/s. La velocidad de transmisión es de unos 71Mbps con un pico de 77,7Mbps. Suponía que a esa distancia y con esa calidad de señal debería alcanzar mayor velocidad. El cuello de botella lo tendría en los 100Mbps que me dan la conexión ethernet del portátil-WET610N y del WRT160NL-Servidor pero veo que la velocidad no supera los 80Mbps. Probé varias veces y llegé a tener un pico de velocidad de 81Mbps pero la media se mueve en los 70Mbps. Para asegurarme de que las medidas se pudieran falsear,desconecte el acceso a internet y todo el tráfico de red pero los resultados seguían siendo parecidos.</p>
<p style="text-align:justify;">Estas pruebas (y alguna más que hize por motivos de trabajo) me permiten sacar dos conclusiones:</p>
<ol style="text-align:justify;">
<li>Las redes Wireless-N significan una mejora significativa con respecto a Wireless-G  pero están lejos de los resultados teóricos máximos que pueden alcanzar, por lo menos en dispositivos orientados al mercado SOHO.A ver si un día puedo hacer una comparativa entre el rendimiento de un dispositivo como los revisados aqui, orientados al mercado SOHO y un dispositivo orientado al mercado empresarial.</li>
<li>Viendo estos resultados podemos entender las interfazes fast ethernet de muchos dispositivos Wireless-N como el WET610N o el WRT160NL. Aún así, dispositivos con interfazes a gigabit son interesantes ya que aunque no se aprovecha la velocidad vía Wireless al menos si mejoramos la red de cable. Y si la red Wireless puede superar los 100Mbps se agradece la velocidad extra que nunca está de más.</li>
</ol>
<p style="text-align:justify;">En vista de los resultados de las pruebas, podeis ver que el cambio de Wireless-G a Wireless-N se nota, la mejora es evidente. Logicamente los resultados dependerán de las condiciones de cada instalación, distancia, saturación de wifis, paredes, &#8230;.. que es algo a tener en cuenta.</p>
<p style="text-align:justify;">En definitiva, el WET610N es una buena opción de compra, ocupa poco espacio y lo podemos colocar facilmente en cualquier sitio, se calienta algo  pero  no  a extremos como el WAG160N y nos permite montar puentes Wireless-N con un aumento importante de rendimiento con respecto a puentes Wireless-G, pero también hay que tener claro para que los queremos, si solo es para navegación por internet o compartir ficheros de pequeño tamaño un puente Wireless-G es suficiente, si ya pensamos en compartir ficheros pesados o un uso más intensivo tenemos que irnos a Wireless-N. Si pensamos en temas de streaming de audio o video, con Wireless-G se puede hacer perfectamente (de hecho yo la hacía hasta el cambio aunque todo depende de la saturación de la red) siempre que hablemos de videos normales, si nos vamos a videos de HD ni el Wireless-N es suficiente y tenemos que irnos a redes cableadas a gigabit. También es una opción muy útil para conectar a la red dispositivos sin tarjeta wireless (por ejemplo, los usuarios de Xbox 360, por el precio que cuesta el nuevo adaptador usb Wireless-N de microsoft para la Xbox se comprán este bridge y les será más útil ya que les da más margen de maniobra de poder colocarlo donde quieran para mejorar el alcance y de poder usarlo con otros dispositivos).</p>
<p style="text-align:justify;">Me queda pendiente saber si mejora la velocidad cambiandole las antenas por otras más potentes y el firmware al WRT160NL</p>
<p style="text-align:justify;">
<p style="text-align:justify;">
<p style="text-align:justify;">
<p style="text-align:justify;">
<p style="text-align:justify;">
<p style="text-align:justify;">Para los interesados os dejo el manual del dispositivo <a href="../files/2009/11/wet610n-combo_v10_ug_090325a-web.pdf">aquí.</a></p>
<p style="text-align:justify;">+ Info: <a href="http://www.linksysbycisco.com/EU/es/products/WET610N" target="_blank">Linksys WET610N</a>;<a href="../files/2009/11/wet610n-combo_v10_ug_090325a-web.pdf"></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Небезопасные роутеры]]></title>
<link>http://belkashop.wordpress.com/2009/11/16/nebezopasnye-routery/</link>
<pubDate>Mon, 16 Nov 2009 13:30:03 +0000</pubDate>
<dc:creator>belkashop</dc:creator>
<guid>http://belkashop.wordpress.com/2009/11/16/nebezopasnye-routery/</guid>
<description><![CDATA[Ученые из Колумбийского университета осуществили крупное исследование, в рамках которого состоялось ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Ученые из Колумбийского университета осуществили крупное исследование, в рамках которого состоялось глобальное сканирование IP-адресов. В течении эксперимента выяснилось, что у 21000 <a href="http://belkashop.com.ua/index.php?categoryID=156" target="_blank">роутеров</a>, веб-камер и VoIP-устройств полностью открыты для удаленных атак, рассказывает Security Lab.</p>
<p>Административный интерфейс этих продуктов доступен всем желающим из любой точки сети интернет и еще, к тому же, стандартный заводской пароль для доступа к нему отнюдь не был поменян обладателями.</p>
<p>Максимальнее всего среди доступных <a href="http://belkashop.com.ua/index.php?categoryID=156" target="_blank">роутеров</a> в США оказалось устройств от Linksys. Из 2729 обнаруженных в настоящем регионе устройств 45% были публично общедоступны и имели обычный пароль для доступа к административному интерфейсу.</p>
<p>На втором месте VoIP-устройства от Polycom: 29% из 585 обнаруженных устройств оказались не защищены.</p>
<p>Результата несанкционированного доступа к административному интерфейсу сетевого устройства имеют все шансы быть весьма плачевными. <a href="http://belkashop.com.ua/index.php?categoryID=156" target="_blank">Роутер</a> может быть применен для сетевых атак на другие компьютеры, а VoIP-устройство перепрошито так, что станет писать все разговоры и отправлять их прямо преступнику.</p>
<p>На базе незащищенного оборудования может быть организован ботнет, ведь совсем недавно многие <a href="http://belkashop.com.ua/index.php?categoryID=156" target="_blank">роутеры</a>, а также модемы подвергались серьезной вирусной атаке, и сейчас производители оперативно латают прорехи в системе защиты своих устройств.</p>
<p>Завершающие результаты наблюдения таковы: более 300 тысяч сетевых устройств имеют свободный доступ к административному интерфейсу, хоть в подавляющем большинстве из них стандартный пароль был изменен. Тем не менее, эксперты из Колумбийского университета думают, то что такое оборудование уязвимо перед серьезными хакерскими атаками.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[IT and the small church office &ndash; Part 3: Networking]]></title>
<link>http://neilnuttall.wordpress.com/2009/11/16/it-and-the-small-church-office-part-3-networking/</link>
<pubDate>Mon, 16 Nov 2009 05:03:00 +0000</pubDate>
<dc:creator>Neil Nuttall</dc:creator>
<guid>http://neilnuttall.wordpress.com/2009/11/16/it-and-the-small-church-office-part-3-networking/</guid>
<description><![CDATA[Now that you have your PCs (or Macs) and a server or NAS, you’ll want to join all this stuff togethe]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img style="display:inline;margin-left:0;margin-right:0;" src="http://www.sxc.hu/pic/l/f/fo/forwardcom/913769_41386035.jpg" alt="" width="240" height="160" align="right" />Now that you have your PCs (or Macs) and a server or NAS, you’ll want to join all this stuff together and get online, and this is where a network comes in. Once upon a time this would have been a complex task, but today it truly is plug’n’play (or in the case of wireless, just “play”).</p>
<p>When you sign up for Internet access with your ISP, you’ll probably have an option to upgrade from the standard bundled modem to a router at a discounted price. This is a pretty good option as most will have four (wired) network ports plus wireless. If you need something with more ports or more features then have a look at products from <a href="http://www.netgear.com/Solutions/BusinessSolutions/SOHO.aspx" target="_blank">Netgear</a> or <a href="http://www.linksysbycisco.com/ANZ/en/home" target="_blank">Linksys</a>.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Big Companies Ready For Twitter?]]></title>
<link>http://thatshortguy.wordpress.com/2009/11/15/big-companies-dont-twitter/</link>
<pubDate>Mon, 16 Nov 2009 02:19:30 +0000</pubDate>
<dc:creator>thatshortguy</dc:creator>
<guid>http://thatshortguy.wordpress.com/2009/11/15/big-companies-dont-twitter/</guid>
<description><![CDATA[In my social media class, we had a presentation from Molson&#8217;s community relations team. They g]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="alignright" src="http://www.sanduskygroup.com/templates/sandusky/images/big_companies.jpg" alt="" width="400" height="265" />In my social media class, we had a presentation from Molson&#8217;s community relations team. They gave out loads of information on how they use social media to gain feedback  and, more importantly, reach out to the community. From using tracking tools like <a href="http://www.radian6.com/">Radian <em>6</em></a> to <a href="http://blog.molson.com/community/">blogging releases that traditional news would not carry</a>, Molson definatly is paving the way in social media. From what I am told, the stuff Molson is doing is being published into textbooks. Crazy.</p>
<p>I&#8217;ll get more in-depth on what they taught us for another post, alas I have something else on my mind.</p>
<p>Up late a couple nights ago, I was checking my Twitter feed and I got curious: how many of the big companies are using Twitter?</p>
<p>The reason I brought up Molson, was to, primarily, give a big shout out to Tonia Hammer (@<a href="http://twitter.com/MolsonTonia">MolsonTonia</a>) and Graeme Switzer (@<a href="http://twitter.com/MolsonGraeme">MolsonGraeme</a>) for an amazing insight to corporate social media but also because they told us about a problem that I hadn&#8217;t thought of: they had trouble with a name they wanted on Twitter but another Tweeter had already been using it.</p>
<p>Great, I thought. So now we&#8217;ll see people registering many Twitter names, just like many do for domain names, and sell them on eBay? Well, no.</p>
<p>The micro-blogging site does have <a href="http://help.twitter.com/forums/26257/entries/18370">name squatting</a> and <a href="http://help.twitter.com/forums/26257/entries/18366">impersonation</a> policies to help companies gain their names back; however, both base infringement on the fake account&#8217;s tweets. In other words, if the account stays quiet, no harm and no foul &#8212; until the company wants the name.</p>
<p>Molson did end up securing that account but it was the user who had agreed to give the handle over and, apparently, got quite a bit of recognition from the company for his good deed.</p>
<h2>Join the revolution.</h2>
<p>It is not like 20, or even 10, years ago where the only place to vent was through letters-to-the-editor in your local newspaper. Even then you where lucky to be published.</p>
<p>In this day and age, everyone&#8217;s opinions matter. Twitter is a site where people can let their thoughts be known in quick 140-character sentences. It is just an amazing tool for big or small companies to monitor how their brand is fairing in the market.</p>
<p>With that I give you the list of giant corporations that have have a twitter account, but are not using it for some odd reason:</p>
<ul>
<li>@<a href="http://twitter.com/walmart">Walmart</a> <em>(The account already has over 1,000 followers, think people want to hear from them?)</em></li>
<li>@<a href="http://twitter.com/target">Target</a> <em>(This could be owned by the company since it displays the logo &#8211; 18 followers)</em></li>
<li>@<a href="http://twitter.com/zellers">Zellers</a> <em>(Canadian competition for Walmart, it is very similar to Target in the U.S. &#8211; six followers)</em></li>
<li>@<a href="http://twitter.com/loblaws">Loblaws</a> <em>(I work at this grocery store &#8211; 27 followers who want to see the company do better)</em></li>
<li>@<a href="http://twitter.com/FutureShop">FutureShop</a> <em>(Canadian electronic store, similar to BestBuy. The account is suspended, I guess someone got caught for one of the reasons above. Why hasn&#8217;t the company contacted Twitter to use it?) <span style="color:#800000;">[Correction: FutureShop holds the @<a href="http://twitter.com/FS_Deals">FS_Deals</a>, @<a href="http://twitter.com/FS_GetItFirst">FS_GetItFirst</a> and @<a href="http://twitter.com/FS_Connect">FS_Connect</a> Twiiter accounts]</span><br />
</em></li>
<li>@<a href="http://twitter.com/bell">Bell</a> &#38; @<a href="http://twitter.com/bellcanada">BellCanada</a> <em>(This giant phone company advertises the use of Twitter on their phones, but don&#8217;t use their Twitter account. Unless it is not Bell)</em></li>
<li>@<a href="http://twitter.com/DLink">DLink</a> <em>(A networking company that doesn&#8217;t network. Another suspended account)</em></li>
<li>@<a href="http://twitter.com/linksys">LinkSys</a> <em>(Only one tweet &#8211; &#8220;coding&#8230;&#8221;, may not be the actual competitor to DLink &#8211; 39 followers that probably think it is)</em></li>
</ul>
<p>There are probably many, many more companies out there that do not fully understand what social media can bring. Twitter as already <a href="http://business.twitter.com/twitter101">launched it&#8217;s tips and tricks for businesses</a> to adapt the site for customer contact. It is, also, why I am here. I intend on (learning how to) breaking down social media to the corporate suits &#8212; it is not just Facebook, Twitter and MySpace, it is a tool to gain trust among your customers.</p>
<ul><em></em></ul>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Configurar un router Linksys WAG160 en modo bridge con un router Linksys WRT160NL]]></title>
<link>http://elrincondetolgalen.wordpress.com/2009/11/15/configurar-un-router-linksys-wag160-en-modo-bridge-con-un-router-linksys-wrt160nl/</link>
<pubDate>Sun, 15 Nov 2009 14:39:02 +0000</pubDate>
<dc:creator>tolgalen</dc:creator>
<guid>http://elrincondetolgalen.wordpress.com/2009/11/15/configurar-un-router-linksys-wag160-en-modo-bridge-con-un-router-linksys-wrt160nl/</guid>
<description><![CDATA[Hola, en la entrada anterior os dejaba la revisión del router linksys WRT160NL que es es que se enca]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:justify;">Hola,</p>
<p style="text-align:justify;">en la entrada anterior os dejaba la <a href="http://elrincondetolgalen.wordpress.com/2009/11/15/revision-del-router-neutro-linksys-wrt160nl/" target="_blank">revisión del router linksys WRT160NL</a> que es es que se encarga de gestionar mi conexión a internet. Como el router WRT160NL no tiene de por sí capacidad para conectarse a internet al no tener modem, las funciones de modem las realiza el router WAG160N. Y para que el WAG160N funcione como modem  solamente tenemos que configurarlo en modo bridge.</p>
<p style="text-align:justify;">Primero empezamos a configurar el Wag160N. En mi caso mi conexión actual con mi ISP usa la encapsulación RFG 1483 Bridged.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/bridge_5.png"><img class="aligncenter size-full wp-image-3641" title="bridge_5" src="http://elrincondetolgalen.wordpress.com/files/2009/11/bridge_5.png" alt="bridge_5" width="450" height="338" /></a></p>
<p style="text-align:justify;">Para configurar el WAG160NL en modo bridge escogemos la encapsulación Bridged mode only y guardamos los cambios, en este momento se cortará la conexión a internet del WAG160n. Es importante que cambiemos la ip del WAG160N para cambiarlo de red y desactivemos el servidor dhcp si lo usamos, en mi caso sería la 192.168.1.1 ya que mi red está en otro rango. Al guardar los cambios perderemos la conexión con el router por lo que debemos cambiar la ip manualmente en nuestro equipo para volver a conectarnos al router.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/bridge_1.png"><img class="aligncenter size-full wp-image-3640" title="bridge_1" src="http://elrincondetolgalen.wordpress.com/files/2009/11/bridge_1.png" alt="bridge_1" width="450" height="338" /></a></p>
<p style="text-align:justify;">Es importante también que desctivemos el NAT.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/bridge_2.png"><img class="aligncenter size-full wp-image-3647" title="bridge_2" src="http://elrincondetolgalen.wordpress.com/files/2009/11/bridge_2.png" alt="bridge_2" width="450" height="311" /></a></p>
<p style="text-align:justify;">Logicamente en el WAG160N hay que desactivar la wifi ya que no funcionará. Tengamos en cuenta que el WAG160 pasa a funcionar exclusivamente como modem perdiendo el resto de capacidades.</p>
<p style="text-align:justify;">Nos conectamos de nuevo al router y vemos que ya está funcionando en modo bridge</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/bridge_3.png"><img class="aligncenter size-full wp-image-3642" title="bridge_3" src="http://elrincondetolgalen.wordpress.com/files/2009/11/bridge_3.png" alt="bridge_3" width="450" height="290" /></a></p>
<p style="text-align:justify;">Y que está conectado a internet.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/bridge_4.png"><img class="aligncenter size-full wp-image-3643" title="bridge_4" src="http://elrincondetolgalen.wordpress.com/files/2009/11/bridge_4.png" alt="bridge_4" width="450" height="299" /></a></p>
<p style="text-align:justify;">Ahora desconectamos el WAG160N de la red dejando solo el cable del ADSL logicamente.</p>
<p style="text-align:justify;">Ahora vamos a configurar el WRT160NL.</p>
<p style="text-align:justify;"><!--more--></p>
<p style="text-align:justify;">En mi caso lo configuro por DHCP aunque tambien podría usarlo con IP fija ya que la encapsulación RFG 1483 Bridged en la práctica significa IP fija. Dependiendo de cada caso hay que configurarlo como estaba antes el wouter WAG160N (IP fija, PPPoE, &#8230;) por lo que os hace falta los datos.</p>
<p style="text-align:justify;">La IP local del router será una IP de nuestra red (que es distinta a la del WAG160N). Podemos activar o no el DHCP ya a nuestro gusto y el resto de parámetros los configuramos como en el WAG160N (wifi, mapeado de puertos, &#8230;.).</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/setup_11.png"><img class="aligncenter size-full wp-image-3648" title="setup_1" src="http://elrincondetolgalen.wordpress.com/files/2009/11/setup_11.png" alt="setup_1" width="450" height="376" /></a></p>
<p style="text-align:justify;">Es importante activar el NAT.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/nat.png"><img class="aligncenter size-full wp-image-3649" title="nat" src="http://elrincondetolgalen.wordpress.com/files/2009/11/nat.png" alt="nat" width="450" height="290" /></a></p>
<p style="text-align:justify;">Ahora solo nos queda conectar ambos router entre si, para ello conectamos el WAG160N  desde cualquiera de sus puertos ethernet con el puerto internet del WRT160NL.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/bridge.png"><img class="aligncenter size-full wp-image-3644" title="Conexion" src="http://elrincondetolgalen.wordpress.com/files/2009/11/bridge.png" alt="Conexion" width="450" height="316" /></a></p>
<p style="text-align:justify;">
<p style="text-align:justify;">Podemos reiniciar ambos router o esperar un momento y se debería encender la luz de internet del WRT160NL que indica que ya tiene conexión a internet, como puedo comprobar.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/estado_11.png"><img class="aligncenter size-full wp-image-3650" title="estado_1" src="http://elrincondetolgalen.wordpress.com/files/2009/11/estado_11.png" alt="estado_1" width="450" height="371" /></a></p>
<p style="text-align:justify;">A partir de este momento será el WRT160NL quien gestione la conexión a internet. Hay que tener en cuenta que ahora no tenemos acceso al WAG160N y que no tenemos forma de saber el estado de la conexión a internet ni velocidad de sincronización. Si necesitamos saberlo (por ejemplo porque vemos que la navegación va muy lenta) tendremos que conectar un equipo por cable al WAG160N y configurar la IP en la red del mismo para poder acceder a el .Dependiendo de vuestra configuración de internet debeis tener cuidado al conectar un equipo al WAG160N, en mi caso no me di cuenta y conecte el portátil configurado por DHCP al WAG160N y antes de que pudiera cambiarle la ip manualmente para ponerlo en la red del WAG160N el ISP me configuró el portatil con mi ip pública, &#8230;.. y logicamente perdí la conexión a internet en mi red, tuve que modificar a mano la ip del portátil para que volviera a funcionar internet.</p>
<p style="text-align:justify;">Esta configuración está pensada para un WAG160N y un WRT160NL con otros routers de linksys sería muy  parecida (o practicamente igual dependiendo del modelo).</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Revisión del router neutro Linksys WRT160NL]]></title>
<link>http://elrincondetolgalen.wordpress.com/2009/11/15/revision-del-router-neutro-linksys-wrt160nl/</link>
<pubDate>Sun, 15 Nov 2009 08:06:11 +0000</pubDate>
<dc:creator>tolgalen</dc:creator>
<guid>http://elrincondetolgalen.wordpress.com/2009/11/15/revision-del-router-neutro-linksys-wrt160nl/</guid>
<description><![CDATA[Hola, desde hace tiempo soy un usuario satisfecho con el router neutro Linksys WRT54GL que es uno de]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:justify;">Hola,</p>
<p style="text-align:justify;">desde hace tiempo soy un usuario satisfecho con el router neutro Linksys WRT54GL que es uno de los modelos más interesantes que podemos comprar al permitirnos cambiarle el firmware por otros alternativos que mejoran sus prestaciones. Hace pocos meses Linksys sacó al mercado el modelo llamado a sustituirlo, el WRT160NL. Este modelo mantiene la filosofía de codigo abierto del firmware del WRT54GL y mejoran cosas como actualizar la wifi a 802.11n, añadir un puerto USB que nos permite compartir ficheros en red y añadir el servidor multimedia DLNA Twonkymedia (del que ya os <a href="http://elrincondetolgalen.wordpress.com/2009/08/21/instalacion-del-servidor-upnp-twonkymedia-en-debian-lenny/" target="_blank">comenté hace tiempo </a>como instalar en linux). En este caso es una pena que no cambiaran el interfaz fast ethernet por uno a gigabit ya que aún en el caso de conseguir las tasas de trasferencia que nos puede dar el interfaz Wireless-N tendríamos el cuello de botella en la transferencia a la red cableada por el interfaz fast ethenet.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/wrt160nlp.jpg"><img class="aligncenter size-full wp-image-3543" title="wrt160nlp" src="http://elrincondetolgalen.wordpress.com/files/2009/11/wrt160nlp.jpg" alt="wrt160nlp" width="449" height="419" /></a></p>
<p style="text-align:justify;">Así que me decidí a cambiar el WRT54GL que gestiona mi acceso a internet (conectado  al <a href="http://elrincondetolgalen.wordpress.com/2008/09/24/revision-del-router-linksys-wag160n/" target="_blank">Linksys WAG160N que revisé hace tiempo</a>, no olvidemos que la serie WRT son routers neutros que por si solos no se pueden conectar a internet) por el WRT160NL.</p>
<p style="text-align:justify;"><strong>Especificaciones técnicas</strong></p>
<ul style="text-align:justify;">
<li> Modelo: WRT160NL</li>
<li> Estándares: 802.3, 802.3u, 802.11b, 802.11g, versión 802.11n</li>
<li> Puertos: Internet, Ethernet [1-4], USB, Alimentación</li>
<li> Botones: Configuración Wi-Fi protegida, Reinicio</li>
<li> Luces: LAN [1-4], W-Fi Protected Setup™ (Configuración Wi-Fi protegida), Conexión inalámbrica, Internet, Alimentación</li>
<li> Tipo de cableado: CAT 5e</li>
<li> Número de antenas: 2</li>
<li> Tipo de conector: R-SMA</li>
<li> Desmontable (s/n): Sí</li>
<li> Potencia de radiofrecuencia (EIRP) en dBm: Versión 11n:</li>
</ul>
<p style="text-align:justify;">Versión 11n: HT20: Habitualmente 17 +/-1,5 dBm a temperatura normal (2 cadenas)<br />
HT40: Habitualmente 15 +/-1,5 dBm a temperatura normal (2 cadenas)<br />
802.11g: Habitualmente: 15 +/- 1,5 dBm a temperatura normal<br />
802.11b: Habitualmente: 19 +/- 1,5 dBm a temperatura normal</p>
<ul style="text-align:justify;">
<li> Sensibilidad de recepción: 802.11n HT40/MCS15 270 Mbps: -67 dBm 10% PER</li>
</ul>
<p style="text-align:justify;">802.11n HT40/MCS0 13,5 Mbps: -75 dBm 10% PER<br />
802.11n HT20/MCS15 130 Mbps: -69 dBm 10% PER<br />
802.11n HT20/MCS0 6,5 Mbps: -79 dBm 10% PER<br />
802.11g 54 Mbps: -74 dBm 10% PER<br />
802.11g 6 Mbps: -84 dBm 10% PER<br />
802.11b 11 Mbps: -86 dBm 10% PER<br />
802.11b 1 Mbps: -92 dBm 10% PER</p>
<ul style="text-align:justify;">
<li> Ganancia de la antena en dBi: 802.11g: 2,4 GHz &#60;= 1,8 dBi</li>
<li> Versión 11n: 2,4 GHz &#60;= 1,8 dBi</li>
<li> Cert./compat. UPnP: Compatible</li>
<li> Compatibilidad con .Net: No</li>
<li> Funciones de seguridad: WEP, WPA, WPA2, RADIUS, Firewall SPI</li>
<li> Bits de clave de seguridad: Encriptación de hasta 128 bits</li>
<li> Sistemas de archivos compatibles para el dispositivo de almacenamiento: FAT16, FAT32, NTFS</li>
</ul>
<p style="text-align:justify;">La caja del router es la típica caja con colores azules de Linksys y tiene un indicador naranja que mediante una escala de logos nos indica los usos para los que está recomendado este router. En este caso lo recomiendan para:</p>
<ul style="text-align:justify;">
<li>Acceso a internet wireless.</li>
<li>Conexiones seguras.</li>
<li>Email y chat.</li>
<li>Impresión wireless.</li>
</ul>
<p style="text-align:justify;">Si necesitamos más velocidad para streaming de audio o video tendríamos que irnos a router Wireless-N pero con interfaz a gigabit.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/img_0290.jpg"><img class="aligncenter size-full wp-image-3551" title="IMG_0290" src="http://elrincondetolgalen.wordpress.com/files/2009/11/img_0290.jpg" alt="IMG_0290" width="450" height="337" /></a></p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/img_0291.jpg"><img class="aligncenter size-full wp-image-3552" title="IMG_0291" src="http://elrincondetolgalen.wordpress.com/files/2009/11/img_0291.jpg" alt="IMG_0291" width="450" height="337" /></a></p>
<p style="text-align:justify;"><!--more--></p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/img_0292.jpg"><img class="aligncenter size-full wp-image-3554" title="IMG_0292" src="http://elrincondetolgalen.wordpress.com/files/2009/11/img_0292.jpg" alt="IMG_0292" width="450" height="600" /></a></p>
<p style="text-align:justify;">Abrimos la caja y por un lado tenemos:</p>
<ul style="text-align:justify;">
<li>Manual de instalación,</li>
<li>Cd con el software que nos ayuda en la configuración inicial y manual en pdf</li>
<li>Cable ethernet.</li>
<li>Alimentador (vamos mejorando con relación al WRT54GL que usaba un alimentador muy grande)</li>
<li>Cable USB para conectar un pendrive o disco duro USB</li>
</ul>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/img_0293.jpg"><img class="aligncenter size-full wp-image-3553" title="IMG_0293" src="http://elrincondetolgalen.wordpress.com/files/2009/11/img_0293.jpg" alt="IMG_0293" width="450" height="337" /></a></p>
<p style="text-align:justify;">Y el router y 2 antenas con conexión  R-SMA</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/img_0294.jpg"><img class="aligncenter size-full wp-image-3555" title="IMG_0294" src="http://elrincondetolgalen.wordpress.com/files/2009/11/img_0294.jpg" alt="IMG_0294" width="450" height="337" /></a></p>
<p style="text-align:justify;">Que solo nos queda colocar para tener listo el router.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/img_0295.jpg"><img class="aligncenter size-full wp-image-3556" title="IMG_0295" src="http://elrincondetolgalen.wordpress.com/files/2009/11/img_0295.jpg" alt="IMG_0295" width="450" height="337" /></a></p>
<p style="text-align:justify;">Como veis el router sigue el diseño que caracteriza a los dispositivos de linksys ultimamente, con un color negro muy elegante, pero que atrae las huellas  que da gusto. Como veis nada que ver con el diseño clasico del WRT54GL.</p>
<p style="text-align:justify;">
<p style="text-align:justify;">
<p style="text-align:justify;">
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/img_0322.jpg"><img class="aligncenter size-full wp-image-3544" title="IMG_0322" src="http://elrincondetolgalen.wordpress.com/files/2009/11/img_0322.jpg" alt="IMG_0322" width="450" height="337" /></a></p>
<p style="text-align:justify;">En el panel frontal tenemos los indicadores de estado (copiado del manual):</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/frontal.png"><img class="aligncenter size-full wp-image-3557" title="frontal" src="http://elrincondetolgalen.wordpress.com/files/2009/11/frontal.png" alt="frontal" width="446" height="120" /></a></p>
<ul style="text-align:justify;">
<li style="text-align:justify;"><strong>1, 2, 3, 4 (Azul)</strong> Estas luces numeradas, que corresponden a los puertos numerados del panel posterior del router, tienen dos finalidades. Si la luz está encendida de forma continua, esto indica que el router está conectado correctamente a un dispositivo mediante dicho puerto. Si parpadea, esto indica que existe actividad de red en dicho puerto.</li>
<li style="text-align:justify;"><strong>Botón de configuración Wi-Fi protegida</strong> Si tiene dispositivos cliente, como adaptadores inalámbricos, que admitan la configuración Wi-Fi protegida, puede utilizarla para configurar de forma automática la seguridad inalámbrica de su red inalámbrica. El indicador se enciende cuando hay otro dispositivo conectado con este sistema.</li>
<li style="text-align:justify;"><strong>Conexión inalámbrica</strong> (Azul) La luz de conexión inalámbrica se enciende cuando la función inalámbrica está activada. Si parpadea, esto indica que el router está enviando o recibiendo datos a través de la red.</li>
<li style="text-align:justify;"><strong>Internet</strong> (Azul) La luz de Internet se enciende cuando se ha establecido una conexión a través del puerto de Internet. Si parpadea, indica actividad de red en el puerto de Internet.</li>
<li style="text-align:justify;"><strong>Alimentación</strong> (Azul) La luz de alimentación se ilumina y permanece encendida mientras el router está encendido. Cuando el router esté en el modo de autodiagnóstico durante el arranque, esta luz parpadeará. Cuando el diagnóstico termine, la luz quedará encendida de forma continua.</li>
</ul>
<p style="text-align:justify;">En la aprte posterior tenemos (copiado del manual):<a href="http://elrincondetolgalen.wordpress.com/files/2009/11/posterior.png"><img class="aligncenter size-full wp-image-3558" title="posterior" src="http://elrincondetolgalen.wordpress.com/files/2009/11/posterior.png" alt="posterior" width="439" height="104" /></a></p>
<ul style="text-align:justify;">
<li style="text-align:justify;"><strong>Puertos de antena</strong> Los puertos de antena R-SMA hembra se conectan a los conectores R-SMA macho de las antenas incluidas.</li>
<li style="text-align:justify;"><strong>Internet </strong>En el puerto de Internet se conecta la conexión a Internet por cable o DSL. 4, 3, 2 y 1 Estos puertos Ethernet (4, 3, 2 y 1) conectan el router a los ordenadores de la red con cables y otros dispositivos de red Ethernet.</li>
<li style="text-align:justify;"><strong>Puerto USB</strong> El puerto USB se conecta a un dispositivo de almacenamiento USB. Si el dispositivo de almacenamiento no se ajusta bien (por ejemplo, bloquea el puerto 1), utilice el cable de extensión USB suministrado.</li>
<li style="text-align:justify;"><strong>Alimentación </strong>El puerto de alimentación se conecta al adaptador de corriente incluido.</li>
</ul>
<p style="text-align:justify;">Detalles de la parte posterior:</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/img_0299.jpg"><img class="aligncenter size-full wp-image-3560" title="IMG_0299" src="http://elrincondetolgalen.wordpress.com/files/2009/11/img_0299.jpg" alt="IMG_0299" width="450" height="337" /></a><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/img_0298.jpg"><img class="aligncenter size-full wp-image-3561" title="IMG_0298" src="http://elrincondetolgalen.wordpress.com/files/2009/11/img_0298.jpg" alt="IMG_0298" width="450" height="337" /></a></p>
<p style="text-align:justify;">En la parte inferior tenemos el botón de reset para reiniciar el router a la configuración de fábrica. Para ello tenemos que pulsarlo con un objeto fino (un clip, &#8230;.) durante cinco segundos.La parte inferior tiene tambien la rejilla de ventilación del router.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/img_0300.jpg"><img class="aligncenter size-full wp-image-3571" title="IMG_0300" src="http://elrincondetolgalen.wordpress.com/files/2009/11/img_0300.jpg" alt="IMG_0300" width="450" height="337" /></a></p>
<p style="text-align:justify;">Ante de ponerlo en funcionamiento, quería cambiarle las antenas que trae por otras de más ganancia que uso con el WRT54GL y aprovechar así el conector R-SMA.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/img_0301.jpg"><img class="aligncenter size-full wp-image-3563" title="IMG_0301" src="http://elrincondetolgalen.wordpress.com/files/2009/11/img_0301.jpg" alt="IMG_0301" width="450" height="337" /></a></p>
<p style="text-align:justify;">Pero me encontré con el problema de que no podía conectarlas. El diseño de la parte posterior en curva impide conectar otra antena que tenga una base más ancha que la original. Para poder conectar otro tipo de antena R-SMA se necesita o bien un cable extensor o un adaptador que permita separar la base de la antena del conector integrado en el router. O eso o desmontar el router para hacer bricolage en el plástico lo que implicaría perder la garantía.Me parece un fallo muy gordo en un router que precisamente tiene como característica el poder cambiar las antenas.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/img_0305.jpg"><img class="aligncenter size-full wp-image-3564" title="IMG_0305" src="http://elrincondetolgalen.wordpress.com/files/2009/11/img_0305.jpg" alt="IMG_0305" width="450" height="337" /></a></p>
<p style="text-align:justify;">Antes de ponerme a configurarlo lo primero que hize fue actualizar el firmware ya que el que traia de fabrica era una versión antigua.</p>
<p style="text-align:justify;">En cuanto al interfaz del router si ya conoceis los dispositivos linksys este es más de lo mismo. El que esté interesado en saber como es puede acceder al simulador del mismo aquí</p>
<p style="text-align:justify;"><a href="http://ui.linksys.com/files/WRT160NL/" target="_blank">http://ui.linksys.com/files/WRT160NL/</a></p>
<p style="text-align:justify;">El usuario/clave de acceso que viene por defecto es admin/admin.</p>
<p style="text-align:justify;">Afortunadamente, por fín el interfaz está en castellano, personalmente me da igual ya que prefiero el interfaz en inglés pero es algo que a mucha gente que no tenga idea de inglés le puede ayudar.</p>
<p style="text-align:justify;">Al ser un router neutro la configuración del mismo ya depende un poco de cada situación y necesidad. En mi caso, y al igual que el WRT54GL, si actua como un router (en otros casos solo se usa como AP wifi) gestionando la parte de modem el WAG160N  en modo bridge (en la próxima entrada os explicaré como configurarlo).</p>
<p style="text-align:justify;">Por tanto, en mi caso la configuración queda en automático por DHCP.</p>
<p style="text-align:justify;">El servidor DHCP en este caso lo han mejorado ya que permite hacer reservas de IP por la MAC del equipo. Yo normalmente no lo uso en el router ya que tengo un PC con una placa via Epia haciendo funciones de servidor 24/365 pero lo activé para probarlo.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/setup_1.png"><img class="aligncenter size-full wp-image-3575" title="setup_1" src="http://elrincondetolgalen.wordpress.com/files/2009/11/setup_1.png" alt="setup_1" width="450" height="376" /></a>A los equipos a los que el router  les asignó IP podemos reservarles esa IP de forma muy sencilla.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/setup_21.png"><img class="aligncenter size-full wp-image-3660" title="setup_2" src="http://elrincondetolgalen.wordpress.com/files/2009/11/setup_21.png" alt="setup_2" width="450" height="484" /></a></p>
<p style="text-align:justify;">También han mejorado las opciones de DDNS incluyendo opciones como comodines o registros MX para dyndns.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/setup_3.png"><img class="aligncenter size-full wp-image-3577" title="setup_3" src="http://elrincondetolgalen.wordpress.com/files/2009/11/setup_3.png" alt="setup_3" width="450" height="337" /></a></p>
<p style="text-align:justify;">El interfaz wireless logicamente se beneficia del estandar Wireless-N. Podemos configurar la red wifi para distintas velocidades en concreto, aunque si tenemos dispositivos que funcionen a distintas velocidades tendremos que configurarla como una red mixta, como es mi caso que tengo todo en Wireless-G excepto un puente Wireless-N. En este caso la red wireless funciona solo a 2.4Ghz y no a 5 Ghz que nos permitiría un mejor funcionamiento en zonas donde la banda de 2.4Ghz esté saturada. En mi caso (por ahora, a ver cuanto dura) la zona donde vivo todavía no está muy saturada de wifis. En el caso de que necesitemos usar la banda de 5Ghz, tendríamos que irnos a un modelo como el WRT320 que es Dual&#8211;Band (aparte del interfaz de red a gigabit).</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/wifi_1.png"><img class="aligncenter size-full wp-image-3579" title="wifi_1" src="http://elrincondetolgalen.wordpress.com/files/2009/11/wifi_1.png" alt="wifi_1" width="449" height="269" /></a></p>
<p style="text-align:justify;">Las opciones de seguridad wireless son las típicas :</p>
<ul style="text-align:justify;">
<li> WEP</li>
<li> WPA-Personal</li>
<li>WPA-Enterprise</li>
<li>WPA2-Personal</li>
<li>WPA2-Enterprise</li>
<li>Radius</li>
</ul>
<p style="text-align:justify;">En mi caso lo tengo configurado mediate WP2-Personal, encriptación AES y una contraaseña de 24 caracteres incluyendo mayúsculas, minúsculas y números y otros caracteres. Lo mejor sería usar Radius, y de hecho hace tiempo lo tuve configurado en el WRT54GL pero el problema es que algunos de mis dispositivos no admiten ese tipo de seguridad.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/wifi_2.png"><img class="aligncenter size-full wp-image-3580" title="wifi_2" src="http://elrincondetolgalen.wordpress.com/files/2009/11/wifi_2.png" alt="wifi_2" width="450" height="255" /></a></p>
<p style="text-align:justify;">Podemos aumentar la seguridad con el filtrado por Mac. El router nos permite hasta 50 dispositivos distintos.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/wifi_2.png"></a><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/wifi_3.png"><img class="aligncenter size-full wp-image-3581" title="wifi_3" src="http://elrincondetolgalen.wordpress.com/files/2009/11/wifi_3.png" alt="wifi_3" width="450" height="369" /></a></p>
<p style="text-align:justify;">Linksys sigue sin darnos la opción de ver los equipos wireless conectados. La única forma de saber que equipos tenemos conectados sigue siendo un pequeño truco como es activar el filtrado MAC (si no lo usamos) y ver la lista de clientes inalámbricos.Me parece algo a mejorar pero que no creo que lo hagan.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/wifi_4.png"><img class="aligncenter size-full wp-image-3582" title="wifi_4" src="http://elrincondetolgalen.wordpress.com/files/2009/11/wifi_4.png" alt="wifi_4" width="450" height="217" /></a></p>
<p style="text-align:justify;">Si necesitamos cambiar algún parámetro avanzado de la configuración wifi lo podemos hacer aunque se hecha de menos las opciones que nos dan los firmwares alternativos como DDWRT.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/wifi_4.png"></a><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/wifi_5.png"><img class="aligncenter size-full wp-image-3583" title="wifi_5" src="http://elrincondetolgalen.wordpress.com/files/2009/11/wifi_5.png" alt="wifi_5" width="449" height="334" /></a></p>
<p style="text-align:justify;">Antes de explicar el rendimiento de la wifi os comento mi instalación casera. Tengo 2 redes separadas, una red de trabajo donde esta el PC principal servidor, NAS, &#8230; y conexión a internet .Despés está la red de ocio en el salón con la PS3 y discos duros multimedia. Ambas redes funcionan a gigabit. El estudio y el salón están separados por un piso y hay una escalera por medio. Como no puedo tirar cableado (sería lo ideal para tener todo a gigabit) y el PLC no funciona (dentro de cada planta no hay problema pero entre plantas la instalación eléctrica esta aislada) tengo que conectarlas mediante un puente wireless-G con 2 Linksys WRT54GL, uno que es el router principal en la red de trabajo y que estoy sustituyendo por el WRT160NL y otro configurado como bridge en la red de ocio. Mi idea es sustituir ese puente Wireless-G por uno Wireless-N y aumentar el rendimiento ya que para navegar por internet desde el salón no hay problema, pero para copiar archivos es lento.</p>
<p style="text-align:justify;">El esquema es el siguiente, que como veis, el problema no es tanto la distancia, si no que son dos plantas distintas con mucha pared  y techo por medio  (tabiques de unos 10 cm) y poco espacio abierto entre ellas.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/red.png"><img class="aligncenter size-full wp-image-3599" title="red" src="http://elrincondetolgalen.wordpress.com/files/2009/11/red.png" alt="red" width="450" height="331" /></a></p>
<p style="text-align:justify;">Para probar el rendimiento wireless del WRT160NL, lo coloco junto al WRT54GL en la posición que va ocupar y coloco mi portátil Toshiba U200 en la  posición que ocupa el WRT54GL que funciona como bridge wireless (usando la tarjeta wifi integrada en el portátil Intel PRO/Wireless 3945ABG).</p>
<p style="text-align:justify;">Con el <a href="http://www.netstumbler.com/" target="_blank">Netstumbler</a> compruebo la cobertura. Podemos ver que la cobertura está bastante pareja manteniendose más estable la del WRT160NL mientras que la del WRT54GL tiene más fluctuaciones. Se puede ver que el nivel de señal está muy parejo en los dos. Posiblemente la tecnología MIMO del WRT160NL influya en la estabiliad de la señal.</p>
<p style="text-align:justify;">
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/wifi_wrt54gl.png"><img class="aligncenter size-full wp-image-3600" title="wifi_wrt54gl" src="http://elrincondetolgalen.wordpress.com/files/2009/11/wifi_wrt54gl.png" alt="wifi_wrt54gl" width="450" height="304" /></a></p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/wifi_wrt160nl.png"><img class="aligncenter size-full wp-image-3601" title="wifi_wrt160nl" src="http://elrincondetolgalen.wordpress.com/files/2009/11/wifi_wrt160nl.png" alt="wifi_wrt160nl" width="450" height="302" /></a></p>
<p style="text-align:justify;">Procedo a probar el rendimiento copiando un archivo de unos 700MiB del servidor al portátil, primero conectado contra el WRT54GL. Tarda en copiarse unas 4&#8242;31&#8243;  y un pico máximo de 23,9 Mbits/s (de los 56 teóricos de Wireless-G). Vemos como la trasferencia se mantiene relativamente estable durante el tiempo que dura.</p>
<p style="text-align:justify;">
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/wifi_g_wrt54gl1.png"><img class="aligncenter size-full wp-image-3604" title="wifi_g_wrt54gl" src="http://elrincondetolgalen.wordpress.com/files/2009/11/wifi_g_wrt54gl1.png" alt="wifi_g_wrt54gl" width="450" height="170" /></a></p>
<p style="text-align:justify;">Me conecto contra el WRT160NL y descargo el mismo fichero. Tarda en copiarse unos 5&#8242;46&#8243;  y un pico máximo de 22,2Mbits/s (de los 56 teóricos de wireless-G). Se observa como la trasferencia sufre muchas variaciones durante la copia.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/ftp_g_wrt160nl.png"><img class="aligncenter size-full wp-image-3605" title="ftp_g_wrt160nl" src="http://elrincondetolgalen.wordpress.com/files/2009/11/ftp_g_wrt160nl.png" alt="ftp_g_wrt160nl" width="450" height="170" /></a></p>
<p style="text-align:justify;">Es curioso observar como aunque en la cobertura el WRT160NL parece más estable y mejor, a la hora de copiar ficheros el WRT54GL resulta más rápido aunque por poco.</p>
<p style="text-align:justify;">A la vista de estos resultados parece que comprar un WRT160NL para sustituir a un WRT54GL para usarlo solo en Wireless-G no compensa ,pero tengamos en cuenta que el WRT160NL se prueba con la configuración y firmware de fabrica del router, solo se configura la red y seguridad wireless y con las antenas originales. El WRT54GL tiene el firmware DD-WRT con la configuración retocada para dar la mejor señal (por ejemplo aumentando la potencia de emisión  del router) así como  dos antenas de 5dbi que sustituyen a las originales de 2 dbi. Si los comparamos tal como vienen de origen (con firmware y antenas originales) o al WRT160NL le cambiamos el firmware por uno alternativo que nos deje modificar más parámetros y le ponemos antenas de más ganancia  posiblemente el WRT160NL mejoraría mucho los resultados (basicamente por que los del WRT54GL serían peores). A ver si encuentro una forma de adaptarle las antenas de 5dbi al WRT160NL para volver a probar y ver los resultados.</p>
<p style="text-align:justify;">En Wireless-G ya vemos que el WRT54GL se defiende muy bien estando las tasas de transferencia en los 22-23Mbps normales  que da en realidad el Wireless-G  y defraudandome algo el WRT160NL del que esperaba más por la tecnología MIMO, sobre todo a la vista de la cobertura, pero el WRT160NL tiene la baza a su favor del Wireless-N. ¿Influirá mucho en Wireless-G en este router?, es algo que veremos a continuación.</p>
<p style="text-align:justify;">El problema que tengo es que no tengo ningún dispositivo Wireless-N para probar pero mi idea es sustituir el puente Wireless-G por uno Wireless-N así que cambio el WRT54GL que está configurado como bridge y en su lugar coloco un bridge Wireless-N (que revisaré proximamente). Este bridge esta conectado al switch de la red por cable y conecto al mismo switch por cable mi portátil desconectándolo de la wifi.</p>
<p style="text-align:justify;">La conexión es la siguiente:</p>
<p style="text-align:justify;">Portátil conectado a fast ethernet al switch y bridge Wireless-N conectado contra el WRT160NL en Wireless-N. Aunque el máximo teórico de Wireless-N sean los 300Mbps, estables en realidad bajan a 100Mbps, por lo que el cuello de botella que puedo tener por la conexión fast ethernet del portátil no lo es tanto, o eso voy a comprobar.</p>
<p style="text-align:justify;">Procedo a descargar el mismo fichero y ahora la cosa ya cambia, se lo descarga en 2&#8242;45&#8243;, con un pico de 61,6Mbps.Vemos como el rendimiento ha mejorado  muchísimo al pasar a conectarse mediante Wireless-G.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/wifi_n_wrt160nl.png"><img class="aligncenter size-full wp-image-3607" title="wifi_n_wrt160nl" src="http://elrincondetolgalen.wordpress.com/files/2009/11/wifi_n_wrt160nl.png" alt="wifi_n_wrt160nl" width="450" height="175" /></a></p>
<p style="text-align:justify;">Observando la gráfica me quedé muy extrañado del rendimiento,  así que procedí a copiar el fichero de nuevo 4 veces más.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/wifi_n_wrt160nl.png"></a><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/wifi_n_2_wrt160nl.png"><img class="aligncenter size-full wp-image-3608" title="wifi_n_2_wrt160nl" src="http://elrincondetolgalen.wordpress.com/files/2009/11/wifi_n_2_wrt160nl.png" alt="wifi_n_2_wrt160nl" width="450" height="124" /></a></p>
<p style="text-align:justify;">En el resto de las transferencias  se observa mayor velocidad y transferencias constantes siendo los resultados de la 6 transferencia  un tiempo de copia de 1&#8242;47&#8243; y una tasa máxima de 65.7Mbps rondando la tasa de transferencia media los 60Mbps.</p>
<p style="text-align:justify;">Como vemos, al usar Wireless-G no hay comparación posible, el WRT160NL sale ganando claramente. Teniendo en cuenta las condiciones de mi instalación es una mejora muy considerable. Logicamente cada caso será un mundo y la mejora ya dependerá de las condiciones de cada instalación.</p>
<p style="text-align:justify;">También queda claro que el posible cuello de botella de usar Wireless-N con un teórico máximo de 300Mbps (aunque en realidad esté sobre los 100Mbps reales) con una conexión fast ethernet en el dispositivo en realidad no es para tanto. Tener el interfaz a gigabit es interesante ya que nos mejora la conexión de los dispositivos de la red cableada, pero posiblemente en muchos casos la calidad de la red wireless se quedará por debajo de las velocidades de fast ethernet (100Mbps). Cada caso será un mundo y no hay más remedio que pararse a valorar la relación coste/ganancias de velocidad de usar dispositivos Wireless-N con fast ethernet o gigabit.</p>
<p style="text-align:justify;">Me queda pendiente conseguir alguna tarjeta Wireless-N para probar directamente desde el portátil sin usar el puente wireless aunque supongo que los resultados serán parecidos o no deberían variar mucho, aunque todo dependerá de la antena de la tarjeta.En mi caso, la prueba es valida, ya que me interesa mejorar es la velocidad del puente wireless y por los resultados así a sido.</p>
<p style="text-align:justify;">Sigamos con las características del router.</p>
<p style="text-align:justify;">
<p style="text-align:justify;">
<p style="text-align:justify;">
<p style="text-align:justify;">
<p style="text-align:justify;">
<p style="text-align:justify;">
<p style="text-align:justify;">
<p style="text-align:justify;">
<p style="text-align:justify;">
<p style="text-align:justify;">
<p style="text-align:justify;">
<p style="text-align:justify;">
<p style="text-align:justify;">
<p style="text-align:justify;">En seguridad seguimos manteniendo las opciones básicas de filtrado de Linksys, en ese sentido hecho mucho de menos mi antiguo USR que permitia acceder por telnet y modificar reglas de Iptables a mano. Aunque es este caso es algo que firmware alternativos solucionan. Se siguen manteniendo las opciones de paso a traves de VPN (o bloquearlo) algo que para mí es necesario ya que me suelo conectar a la red corporativa vía pptp.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/seguridad_1.png"><img class="aligncenter size-full wp-image-3585" title="seguridad_1" src="http://elrincondetolgalen.wordpress.com/files/2009/11/seguridad_1.png" alt="seguridad_1" width="449" height="268" /></a></p>
<p style="text-align:justify;">Se mantienen y mejoran las opciones de acceso a internet donde podemos restringuir el acceso a internet a determinados equipos por horas o bloquear determinadas webs o programas. El algo útil a nivel Pyme o para control parental.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/acceso_2.png"><img class="aligncenter size-full wp-image-3588" title="acceso_2" src="http://elrincondetolgalen.wordpress.com/files/2009/11/acceso_2.png" alt="acceso_2" width="449" height="374" /></a></p>
<p style="text-align:justify;">
<p style="text-align:justify;">En Aplicaciones y juegos seguimos configurando el NAT sobre un puerto en concreto o rangos de puertos.</p>
<p style="text-align:justify;">No me gusta que en la configuración de puertos tenga 5 asignados a puertos predeterminados. En mi caso el FTP y HTTP me valen con matizes pero los otros puertos que tiene asignado (POP3, DNS, &#8230; ) no los tengo abiertos así que estoy perdiendo de abrir unos puertos. En el caso del FTP  tampoco es que me valga para mucho ya que normalmente lo tengo abierto pero no  por los puertos predeterminados. En mi caso, con mi configuración típica de puertos de esos 5 solo puedo usar el HTTP perdiendo 4 <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/puertos_1.png"><img class="aligncenter size-full wp-image-3586" title="puertos_1" src="http://elrincondetolgalen.wordpress.com/files/2009/11/puertos_1.png" alt="puertos_1" width="450" height="370" /></a></p>
<p style="text-align:justify;">Una vez abiertos los puertos ftp y ssh, compruebo vía web y efectivamente, aparecen abiertos y el resto cerrado. El firewall está funcionando OK.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/scan_ports.png"><img class="aligncenter size-full wp-image-3587" title="scan_ports" src="http://elrincondetolgalen.wordpress.com/files/2009/11/scan_ports.png" alt="scan_ports" width="450" height="283" /></a></p>
<p style="text-align:justify;">El <a href="http://es.wikipedia.org/wiki/Zona_desmilitarizada_%28inform%C3%A1tica%29" target="_blank">DMZ (zona desmilitarizada)</a> nos permite tener un equipo abierto completamente a internet, en mi caso lo tengo configurado para la IP de la  PS3 para mejorar lo máximo el juego online.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/dmz.png"><img class="aligncenter size-full wp-image-3590" title="dmz" src="http://elrincondetolgalen.wordpress.com/files/2009/11/dmz.png" alt="dmz" width="449" height="267" /></a></p>
<p style="text-align:justify;">El <a href="http://es.wikipedia.org/wiki/Calidad_de_Servicio" target="_blank">QoS (calidad de servicio)</a> nos permite priorizar cierto tipo de tráfico (como aplicaciones de voz o video). En mi caso lo asigno por equipo teniendo prioridad en el tráfico la PS3 (como en el caso de DMZ para mejorar el juego online) y mi equipo.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/qos.png"><img class="aligncenter size-full wp-image-3591" title="qos" src="http://elrincondetolgalen.wordpress.com/files/2009/11/qos.png" alt="qos" width="449" height="351" /></a></p>
<p style="text-align:justify;">En administración configuramos tareas de gestión de router como la clave, acceso remoto o vía wifi, backup/restauración de la configuración, registro, actualización del firmware, reseteo a la configuración de fabrica, etc. Algo que  desactivo siempre en el router es <a href="http://es.wikipedia.org/wiki/Upnp" target="_blank">uPnP</a>. Tiene muchos fallos de seguridad y personalmente prefiero abrir manualmente los puertos que hagan falta, no que el SO lo haga por mí sin saberlo.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/administracion_1.png"><img class="aligncenter size-full wp-image-3592" title="administracion_1" src="http://elrincondetolgalen.wordpress.com/files/2009/11/administracion_1.png" alt="administracion_1" width="449" height="370" /></a></p>
<p style="text-align:justify;">En estado podemos ver el estado actual del router, equipos con ip asignada, wifi, &#8230;. En mi caso, al gestionar el WRT160NL la conexión a internet, aparecen los datos de la conexión a internet como IP, DNS, &#8230; (en mi caso el servidor principal de DNS será un equipo local con bind, seguido de los dns del ISP y los de OpenDNS con lo que me garantizo un funcionamiento correcto de DNs en el caso de que falle alguno).</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/estado_1.png"><img class="aligncenter size-full wp-image-3593" title="estado_1" src="http://elrincondetolgalen.wordpress.com/files/2009/11/estado_1.png" alt="estado_1" width="450" height="371" /></a></p>
<p style="text-align:justify;">Para el final dejé la parte que más lo diferencia del WRT54GL como es es puerto USB y el servidor multimedia (aparte de la conexión Wireless-N).</p>
<p style="text-align:justify;">El WRT160NL permite conectar un disco USB y compartirlo en red vía SMB soportando los sistemas de archivos FAT16, FAT32 y NTFS. Por desgracia no soporta compartirlo vía ftp lo que sería muy interesante cara a compartir ficheros a internet.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/img_0316.jpg"><img class="aligncenter size-full wp-image-3596" title="IMG_0316" src="http://elrincondetolgalen.wordpress.com/files/2009/11/img_0316.jpg" alt="IMG_0316" width="450" height="337" /></a></p>
<p style="text-align:justify;">Procedí a insertar un pendrive en Fat32 y el router lo detectó sin problemas.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/almacenamiento_1.png"><img class="aligncenter size-full wp-image-3595" title="almacenamiento_1" src="http://elrincondetolgalen.wordpress.com/files/2009/11/almacenamiento_1.png" alt="almacenamiento_1" width="449" height="325" /></a></p>
<p style="text-align:justify;">Así como un disco duro USB en NTFS.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/almacenamiento_10.png"><img class="aligncenter size-full wp-image-3610" title="almacenamiento_10" src="http://elrincondetolgalen.wordpress.com/files/2009/11/almacenamiento_10.png" alt="almacenamiento_10" width="450" height="340" /></a></p>
<p style="text-align:justify;">Aunque el fabricando solo dice que soporta FAT16/32 y NTFS se me ocurrio probar otros sistemas de ficheros por si acaso.</p>
<p style="text-align:justify;">Lo intenté formateando el pendrive de 4GB en exFat pero aunque reconoce el pendrive no reconoce el formato.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/almacenamiento_9.png"><img class="aligncenter size-full wp-image-3611" title="almacenamiento_9" src="http://elrincondetolgalen.wordpress.com/files/2009/11/almacenamiento_9.png" alt="almacenamiento_9" width="449" height="311" /></a></p>
<p style="text-align:justify;">Y probé con un disco USB formateado en ext2/ext3 y nada, reconoce el disco pero no el formato, lo que me sorprende desagradablemente. Me suponía que al estar basado en linux el firmware al menos reconocería el formato ext2, pero no es así. Me parece un punto negativo para el aparato aunque posiblemente la mayoría de los usuarios de este router nunca usaran ese formato.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/almacenamiento_12.png"><img class="aligncenter size-full wp-image-3612" title="almacenamiento_12" src="http://elrincondetolgalen.wordpress.com/files/2009/11/almacenamiento_12.png" alt="almacenamiento_12" width="450" height="310" /></a></p>
<p style="text-align:justify;">Con el disco/pendrive insertado podemos compartir los recursos y permisos de acceso del mismo.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/almacenamiento_2.png"><img class="aligncenter size-full wp-image-3613" title="almacenamiento_2" src="http://elrincondetolgalen.wordpress.com/files/2009/11/almacenamiento_2.png" alt="almacenamiento_2" width="450" height="537" /></a></p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/almacenamiento_6.png"><img class="aligncenter size-full wp-image-3614" title="almacenamiento_6" src="http://elrincondetolgalen.wordpress.com/files/2009/11/almacenamiento_6.png" alt="almacenamiento_6" width="450" height="368" /></a></p>
<p style="text-align:justify;">Una vez configurado solo tenemos que acceder al disco por SMB desde cualquier equipo.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/almacenamiento_4.png"><img class="aligncenter size-full wp-image-3615" title="almacenamiento_4" src="http://elrincondetolgalen.wordpress.com/files/2009/11/almacenamiento_4.png" alt="almacenamiento_4" width="450" height="184" /></a></p>
<p style="text-align:justify;">Algo que noté es que cuando conectas un disco/pendrive, si te conectas en el mismo momento vía web al router para configurar la compartición de archivos el interfaz tarda en responder, imagino que el router estará reconociendo el disco y configurandolo antes de que esté disponible. Recomiendo que después de conectarlo esperar algo antes de conectarse vía web.</p>
<p style="text-align:justify;">Hay que indicar que el soporte para NTFS es completo, es decir escritura/lectura y era algo que me interesaba saber ya que me temía que solo fuese de lectura. De todas formas, recomiendo usar con cautela la escritura en discos con NTFS, por mi experiencia en linux, los drivers de escritura en NTFS aunque son estables, a veces pueden causar un estropicio (aunque suele ser raro, pero puede pasar). Yo personalmente nunca escribo en discos NTFS desde linux.</p>
<p style="text-align:justify;">Para probar el rendimiento de las unidades compartidas conecté el pendrive y probé copiando un fichero de 1,5GiB.</p>
<p style="text-align:justify;">Escritura en pendrive: tardo unos 7 minutos y tuvo un pico máximo de unos 55,3Mbps. Vemos que el rendimiento de escritura no es estable, con muchos picos.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/flash.png"><img class="aligncenter size-full wp-image-3622" title="flash" src="http://elrincondetolgalen.wordpress.com/files/2009/11/flash.png" alt="flash" width="450" height="124" /></a></p>
<p style="text-align:justify;">Lectura en pendrive: tardo 9 minutos en copiarlo del router al PC con un pico de 62,7Mbps. Al igual que la escritura la transferencia no es constante, tiene muchos picos.<a href="http://elrincondetolgalen.wordpress.com/files/2009/11/read_fat32_flash.png"><img class="aligncenter size-full wp-image-3623" title="read_fat32_flash" src="http://elrincondetolgalen.wordpress.com/files/2009/11/read_fat32_flash.png" alt="read_fat32_flash" width="450" height="130" /></a></p>
<p style="text-align:justify;">Cambíe el pendrive por un disco duro USB formateado en NTFS y me puse a copiar el fichero de 1,5GiB.</p>
<p style="text-align:justify;">Escritura en disco: tardo 12 minutos en copiarlo al disco con un pico máximo de 44,7Mbps. Tambien vemos que la trasferencia no es constante.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/write_ntfs_hd.png"><img class="aligncenter size-full wp-image-3624" title="write_ntfs_hd" src="http://elrincondetolgalen.wordpress.com/files/2009/11/write_ntfs_hd.png" alt="write_ntfs_hd" width="450" height="86" /></a></p>
<p style="text-align:justify;">Lectura de disco: tardo unos 6 minutos con picos de 69Mbps. La transferencia tampoco es constante.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/write_ntfs_hd.png"></a><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/read_ntfs_hd.png"><img class="aligncenter size-full wp-image-3625" title="read_ntfs_hd" src="http://elrincondetolgalen.wordpress.com/files/2009/11/read_ntfs_hd.png" alt="read_ntfs_hd" width="450" height="125" /></a></p>
<p style="text-align:justify;">Para comprobar si el sistema de ficheros influye, formatee el disco usb en FAT32 y repetí las pruebas:</p>
<p style="text-align:justify;">Escritura en disco: tardo unos 14 minutos on un pico de 41Mbps.La transferencia tampoco es constante.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/write_fat32_hd.png"><img class="aligncenter size-full wp-image-3626" title="write_fat32_hd" src="http://elrincondetolgalen.wordpress.com/files/2009/11/write_fat32_hd.png" alt="write_fat32_hd" width="450" height="82" /></a></p>
<p style="text-align:justify;">Lectura de disco: Tardo 5 minutos con un pico máximo de 62,0Mbps. La transferencia tampoco es constante.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/read_fat32_hd.png"><img class="aligncenter size-full wp-image-3627" title="read_fat32_hd" src="http://elrincondetolgalen.wordpress.com/files/2009/11/read_fat32_hd.png" alt="read_fat32_hd" width="448" height="156" /></a></p>
<p style="text-align:justify;">Vemos que las tasas escritura/lectura son parecidas en todos los casos excepto en la escritua en el pendrive que tardo muy poco algo que me sorprendió aunque  repetí la prueba y el resultado fue parecido. También se ve que no son tansferencias constantes que la velocidad fluctua mucho. No sé a que puede ser debido <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> </p>
<p style="text-align:justify;">Mientras copiaba los ficheros no usé la conexión de red en mi PC para evitar resultados que falsearan las mediciones. Me conecté desde el portátil por wifi al router y probé a navegar y sin problemas, la copia de ficheros parece que no estaba afectando al acceso a internet.</p>
<p style="text-align:justify;">
<p style="text-align:justify;">
<p style="text-align:justify;">
<p style="text-align:justify;">Otra de las opciones interesantes es configurar el servidor DLNA Twonkymedia.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/almacenamiento_5.png"><img class="aligncenter size-full wp-image-3617" title="almacenamiento_5" src="http://elrincondetolgalen.wordpress.com/files/2009/11/almacenamiento_5.png" alt="almacenamiento_5" width="450" height="285" /></a></p>
<p style="text-align:justify;">Una vez configurado solo tenemos que ir a cualquier dispositivo con un cliente de uPnP para conectarnos al servidor multimedia del router.</p>
<p style="text-align:justify;">Me conenecto al mismo con el software XBMC desde el PC con linux.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/almacenamiento_7.png"><img class="aligncenter size-full wp-image-3618" title="almacenamiento_7" src="http://elrincondetolgalen.wordpress.com/files/2009/11/almacenamiento_7.png" alt="almacenamiento_7" width="449" height="291" /></a></p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/almacenamiento_7.png"></a>Y accedo a los ficheros multimedia compartidos</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/almacenamiento_8.png"><img class="aligncenter size-full wp-image-3619" title="almacenamiento_8" src="http://elrincondetolgalen.wordpress.com/files/2009/11/almacenamiento_8.png" alt="almacenamiento_8" width="450" height="257" /></a></p>
<p style="text-align:justify;">O me voy a la PS3 y ya lo reconoce automaticamente (si no lo hace hay que darle a buscar servidores multimedia).</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/img_0319.jpg"><img class="aligncenter size-full wp-image-3620" title="IMG_0319" src="http://elrincondetolgalen.wordpress.com/files/2009/11/img_0319.jpg" alt="IMG_0319" width="450" height="337" /></a></p>
<p style="text-align:justify;">Y a disfutar de los videos, música y fotos con tu cliente de uPnP favorito (o eso debería pasar).</p>
<p style="text-align:justify;">Para que los archivos estén disponibles el servidor DLNA tiene que escanear el disco, algo que se puede hacer manualmente o programarlo para que lo haga cada x tiempo.  Probé a escanear el pendrive de 4Gb lleno de música y videos (3 videos de 1Gb y el resto MP3) y lo hizo rápido. No se lo que puede tardar si teneis un disco de 500GB lleno, posiblemente le lleve bastante tiempo.</p>
<p style="text-align:justify;">Lo probé reproduciendo varios videos y los resultados no fueron muy satisfactorios, empezo bien reproduciendo los videos pero a partir de un momento había paradas as 2-3 segundos hasta que se perdió la conexión con el servidor DLNA y fue imposible restaurarla. Sin embargo el router seguia funcionando, navegaba sin problemas, el interfaz web respondía, tenía acceso por SMB a los recursos compartidos pero el servidor multimedia no respondía, tenía que reiniciar el router para que volviera a funcionar. Al principio pense que podía ser culpa del puente wireless ya que lo estaba probando desde la PS3 via wifi N pero al probar desde el PC en la red cableada con el router me paso lo mismo.Posiblemente sea un problema de firmware que espero que solucionen.Es una pena este fallo.</p>
<p style="text-align:justify;">En cuanto al acceso a internet por ahora sin problemas, antes que el router WAG160N se encargaba de todo y ahora que el WAG160N solo es un modem y el WRT160NL gestiona la conexión. En los 10 días que lleva funcionando está estable aunque también es cierto que no estoy usando P2P que es algo que suele saturar los routers.</p>
<p style="text-align:justify;">Como valor añadido tenemos el software Cisco Network Magic en versión trial de 7 días (si no se registra queda con las funcionalidades básicas). El software es el sustituto del LELA ya comentado en la revisión del WAG160N y nos permite diagnosticar fallos de red así como ver el estado de la misma. Tras pasarlo y que escane é mi red, me detecta todos los dispositivos conectados (una linea es cable y puntos es wifi) aunque a partir de puente Wifi (a pesar de que lo detecta) no detecta los equipos conectados a el, sin embargo, si hago un escaneo de red con cualquier software de escaner de red (por ejemplo, Advanced IP Scaner) me detecta todos los equipos, o si hago un ping a cualquiera de los equipos conectados al puente wireless me responden. Tampoco detecta el router WAG160N conectado al WRT160NL aunque eso no esperaba que lo hiciera al estar configurado en modo bridge.</p>
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/cnm.png"><img class="aligncenter size-full wp-image-3629" title="CNM" src="http://elrincondetolgalen.wordpress.com/files/2009/11/cnm.png" alt="CNM" width="450" height="378" /></a></p>
<p style="text-align:justify;">Pero el WRT160NL como buen sustituto del WRT54GL no sería lo mismo si no se le puede instalar un firmware alternativo como OpenWRT o DDWRT. Por ahora el DDWRT (que es el que suelo usar) no está disponible aunque ya existe una versión del OpenWRT que se puede instalar tal como explican los chicos de <a href="http://www.adslzone.net/postt207868.html" target="_self">adslzone</a>. Recomiendo leerse con mucho cuidado la guía y valorar los riesgos  de poder cargarse el router en el cambio de firmware. Yo por ahora voy esperar a que saquen una versión más estable o a que esté disponible el DDWRT.</p>
<p style="text-align:justify;">En definitiva, el WRT160NL me parece un buen sustituto del WRT54GL manteniendo las características del mismo y mejorando otras. Hay cosas que el firmware oficial tiene que mejorar (como los fallos del servidor multimedia) y con los firmwares alternativos las carencias del firmware oficial se subsanan.Se sigue sin poder acceder al router por telnet o ssh, no se puede reiniciar el router desde el interfaz web  y tampoco funciona hacerlo con la url <span style="color:#800000;">http://IP_del_router/setup.cgi?todo=reboot</span> que funcionaba con el WAG160N (previo login).Me parece que son cosas eseciales para un router aunque por lo que veo la gente de Linksys no piensa lo mismo. Otro fallo que tiene es que la luz de internet se supone que esta encendida cuando hay una conexión por el puerto de internet y parpadea con el tráfico de datos, pués bien, al principio si lo hace correctamente, pero pasado un tiempo el led se apaga y no hay manera de que se encienda, sabes que estás navegando por que lo ves en el pc. Fallos como el de la conexión de las antenas externas me parecen muy graves teniendo en cuenta que está &#8220;pensado&#8221; para que se puedan cambiar.</p>
<p style="text-align:justify;">A diferencia del WAG160N que se calentaba muchísimo (aunque en mi caso lo solucioné con el tema de las patas que lo levantarán para permitirle ventilar mejor) el WRT160NL practicamente no se calienta.</p>
<p style="text-align:justify;">Para los interesados os dejo el manual en castellano en pdf.</p>
<p style="text-align:justify;">
<p style="text-align:justify;">
<p style="text-align:justify;">
<p style="text-align:justify;">
<p style="text-align:justify;">
<p style="text-align:justify;">
<p style="text-align:justify;">
<p style="text-align:justify;">
<p style="text-align:justify;">
<p style="text-align:justify;">
<p style="text-align:justify;">
<p style="text-align:justify;">
<p style="text-align:justify;"><a href="http://elrincondetolgalen.wordpress.com/files/2009/11/manual.pdf">Descarga manual en castellano</a></p>
<p style="text-align:justify;">+ Info: <a href="http://www.linksysbycisco.com/EU/es/products/WRT160NL" target="_blank">Linksys WRT160NL</a></p>
<p style="text-align:justify;">
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Linksys WMP110 (ver 1.0) &amp; Windows 7 (64bit) Driver]]></title>
<link>http://nekzzz.wordpress.com/2009/11/09/linksys-wmp110-windows-7-64bit/</link>
<pubDate>Mon, 09 Nov 2009 21:31:37 +0000</pubDate>
<dc:creator>nekz</dc:creator>
<guid>http://nekzzz.wordpress.com/2009/11/09/linksys-wmp110-windows-7-64bit/</guid>
<description><![CDATA[Linksys has not yet released any Windows 7 drivers thus far for the WMP110 Wireless Adapter. My init]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="size-full wp-image-48 alignright" title="wmp110" src="http://nekzzz.wordpress.com/files/2009/11/wmp1103.jpg" alt="wmp110" width="300" height="300" /></p>
<p>Linksys has not yet released any Windows 7 drivers thus far for the WMP110 Wireless Adapter. My initial experience with the WMP110 wireless adapter has been extremely poor. The only assistance from Linksys Technical Support was to &#8220;<em>check the linksys support website frequently as there is </em>no information available on release dates for Windows 7 drivers&#8221;. The Linksys forums are flooded wtih people looking for Windows 7 support</p>
<p>After searching for a work-around solution I finally arrived at a post in the <a href="http://forums.linksysbycisco.com/linksys/board/message?message.uid=202052" target="_blank">official Linksys support forums</a>: <em>&#8220;Hi, it&#8217;s Shujinko again from post #10.  I got the Version 1.0 of this product to work with Vista x64. </em><em>I saw a few posts in other threads about folks using the Atheros AR5008 chipset driver instead of the Linksys one.  Long story short, after finally finding the correct version of that driver, it worked!  The driver you are looking for is the Atheros 7.6.1.204 driver.  I find mine </em><a href="http://www.laptopvideo2go.com/forum/index.php?showtopic=23024" target="_blank"><em>here</em></a>&#8230;&#8221;  </p>
<p>So a huge thanks goes out to Shujinko, as it turns out a current solution to getting the WMP110 functioning properly is to install the Atheros AR5008 7.6.1.204 Vista x64 driver manually. No thanks to Linksys here are the steps below to getting the WMP110 wireless adapter to work on Windows 7 64bit:</p>
<div>
<h3><span style="text-decoration:underline;">How to Install  WMP110 <em>(version 1.0)</em> on Windows 7 </span><em><span style="text-decoration:underline;">64-bit:</span><br />
</em></h3>
</div>
<p><em><strong> Important Note:</strong> Do not use the Linksys WMP110 Installation CD . If you already have installed the software &#38; or driver from the CD, remove the software and uninstall the adapter in the device manager.<br />
</em><br />
<strong>Step 1:</strong> <em>Download <em> </em><a title="Download attachment" href="http://forums.laptopvideo2go.com/index.php?app=core&#38;module=attach&#38;section=attach&#38;attach_id=2633"><em>atheros_vista_x64_7.6.1.204.rar</em></a><em> (314.66K)</em> and extract files.<br />
</em><em><strong>Step 2:</strong> Insert WMP110 Wireless Adapter into PCI slot and start up your pc. Windows 7 will detect card and automatically install a driver if available.<br />
*If your computer hangs/freezes after windows automatically installs a driver, reboot machine and enter safe mode (without networking). To enter safe mode press F8 while during Windows 7 boot. Follow same steps below in safe mode*</em><em><br />
<strong>Step 3: </strong>Open device manager. Click start -&#62; Run -&#62; mmc devmgmt.msc<br />
<strong>Step 4: </strong>Locate the WMP110 wireless adapter in the device manager. <br />
Click Network Adapters -&#62; Right click Linksys WMP110 Wireless Adapter -&#62; Click Update Driver Software<br />
*It may also be under Other devices -&#62; Right click PCI Device(!) (with an exclamation/yellow icon) -&#62; Click Update Driver Software* <br />
<strong>Step 5: </strong></em><em><em>Choose &#8220;Browse My Computer for Driver Software.&#8221;<br />
<strong>Step 6: </strong>Choose &#8220;Let Me Pick From a List of Device Drivers on My Computer&#8221;<br />
<strong>Step 7:</strong> Click Have Disk button<br />
<strong>Step 8: </strong>Click Browse and locate the folder where you extracted the Atheros Vista x64 7.6.1.204 driver and click the OK button.<br />
<strong>Step 9: </strong>Scroll through the list of devices in box on the right hand side and select&#8221;Atheros AR5008 Wireless Network Adapter&#8221; and click the Next button.<br />
<strong>Step 10:</strong> On the compatibility warning pop-up click OK, to install device driver anyways.<br />
<strong>Step 11: </strong>Congrats on a succesful install, your network card should now function properly. Don&#8217;t worry the Linksys WMP110 will be identified as an Atheros AR5008 Wireless Network Adapter by Windows 7. Use this driver until Linksys releases an official Windows 7 driver for the WMP110.</em></em></p>
<h3>
<h3> </h3>
</h3>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[I did some Miracles with Globe Tattoo!]]></title>
<link>http://kuyamarc.info/2009/11/08/i-did-some-miracles-with-globe-tattoo/</link>
<pubDate>Sat, 07 Nov 2009 21:00:00 +0000</pubDate>
<dc:creator>Kuya Marc</dc:creator>
<guid>http://kuyamarc.info/2009/11/08/i-did-some-miracles-with-globe-tattoo/</guid>
<description><![CDATA[Earlier this morning, while I was eating my breakfast, I was thinking about upgrading my Skype accou]]></description>
<content:encoded><![CDATA[Earlier this morning, while I was eating my breakfast, I was thinking about upgrading my Skype accou]]></content:encoded>
</item>
<item>
<title><![CDATA[Media Hub, multiteca a distancia]]></title>
<link>http://elboligrafo.es/2009/11/03/media-hub/</link>
<pubDate>Tue, 03 Nov 2009 08:41:07 +0000</pubDate>
<dc:creator>adriabl</dc:creator>
<guid>http://elboligrafo.es/2009/11/03/media-hub/</guid>
<description><![CDATA[FUENTE | hoytecnologia.com Según explica Miguel Bullón, responsable de la división de consumo de Cis]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img src="http://adriabl.wordpress.com/files/2009/11/media-hub.jpg?w=287" alt="Media Hub" title="Media Hub" width="287" height="300" class="alignleft size-medium wp-image-1268" /> FUENTE &#124; <a href="http://www.hoytecnologia.com/noticias/Media-Hub-gadget-cisco-gestionar-biblioteca-digital/137235">hoytecnologia.com</a></p>
<p>Según explica Miguel Bullón, responsable de la división de consumo de Cisco para el Sur Mediterráneo, estos nuevos productos contribuyen a eliminar la complejidad de gestionar las colecciones de material digital almacenado en varios ordenadores y aparatos de la casa. &#8220;Se trata de un punto de acceso central a todo el material sin que el usuario tenga que preocuparse por saber dónde está almacenado&#8221;. </p>
<p>Con forma de pequeña CPU, diseño negro brillante y pantalla LED a color, este dispositivo de almacenamiento NAS cuenta con una carcasa superior extraíble que permite almacenar dos discos duros de hasta 500 GB. En el caso del Linksys 405, el modelo que hemos probado en hoyTecnología, este aparato viene de serie con un disco duro de 500 GB y una ranura adiciónal que permite sumar hasta un Terabyte de almacenamiento.</p>
<p>La pantalla LED muestra de manera gráfica el estado del dispositivo por espacio usado, tipo de archivos y  consumo de red; permite comprobar si existe alguna actualización del firmware o facilita realizar un backup de todo el contenido almacenado en red con un sólo golpe de botón. Asimismo, la parte frontal del media hub incluye una ranura USB y otra para tarjetas de memoria con la que trasladar archivos a nuestro servidor sin necesidad de encender el ordenador.</p>
<p>Tanto la instalación como el uso del media hub de Cisco es muy intuitivo, ya que nos encontramos ante un dispositivo pensado para un público que no tiene porqué tener unos conocimientos especializados en tecnología para utilizarlo. </p>
<p>Una vez que seguimos las instrucciones del programa para conectar el Linksys 405 con nuestro ordenador (puede ser un equipo o varios) y &#8216;bautizamos&#8217; al dispositivo, podemos hacer una copia de seguridad de nuestra biblioteca digital, tras sincronizar todas las carpetas con él.</p>
<p>Este &#8216;gadget&#8217; inteligente detecta y clasifica los archivos, que se pueden consultar a través de un navegador desde nuestro propio PC o desde cualquier equipo con conexión a internet a través de www.discomediahub.com. </p>
<p>En una interfaz muy visual,  este media hub permite el acceso a nuestra música, fotos, vídeos  y otros archivos a través de unos iconos directos que ordenan el contenido por categorías como nombre, artista o fecha, y permite reproducirlos desde la propia página.</p>
<p>Mientras un usuario escucha una canción o ve las fotos de sus últimas vacaciones, otro puede ver una película en streaming, y un tercero buscar un archivo ubicado en otro portátil y gestionarlo a través de este virtualizador de contenidos. </p>
<p>De hecho, el modelo Linksys 405 permite gestionar de manera simultánea la biblioteca multimedia de hasta diez equipos o visualizar en streaming de alta definición en tres ordenadores a la vez.</p>
<p>Asimismo, el gestor de contenidos remoto de este media hub cuenta con un apartado de opciones avanzadas para aquellos usuarios que quieran ir un paso más allá personalizando sus opciones  o  visualizando sus archivos desde un FTP.</p>
<p><strong>Video de Media Hub</strong><br />
<span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/A0HF9Sm_bac&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/A0HF9Sm_bac&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
<p><TABLE bgcolor="#E0E0E0"> <TD VALIGN="center"> <strong>Compartir:</strong> <a href="http://meneame.net/submit.php?url=&#38;title=" target="_blank"><img src="http://fasealfa.blogcindario.com/ficheros/blogs/meneame.png" alt="" /></a>    <a href="http://digg.com/submit?phase=2&#38;url=&#38;title=" target="_blank"><img src="http://fasealfa.blogcindario.com/ficheros/blogs/digg.png" alt="" /></a>    <a href="http://del.icio.us/post?url=&#38;title=" target="_blank"><img src="http://fasealfa.blogcindario.com/ficheros/blogs/delicious.png" alt="" /></a>    <a href="http://www.facebook.com/sharer.php?u=&#38;t=" target="_blank"><img src="http://fasealfa.blogcindario.com/ficheros/blogs/facebook.png" alt="" /></a>     <a href="http://twitter.com/home?status=Leyendo%20%20en%20" target="_blank"><img src="http://fasealfa.blogcindario.com/ficheros/blogs/twitter.png" alt="" /></a>    <a href="http://www.technorati.com/faves?add=&#38;title=" target="_blank"><img src="http://fasealfa.blogcindario.com/ficheros/blogs/technorati.png" alt="" /></a>   <a href="http://www.google.com/bookmarks/mark?op=edit" target="_blank"><img src="http://adriabl.wordpress.com/files/2009/10/google.png" /></a>  <a href="http://myweb2.search.yahoo.com/myresults/bookmarklet?u" target="_blank"><img src="http://adriabl.wordpress.com/files/2009/10/yahoo.png" /></a> <a href="http://barrapunto.com/submit.pl" target="_blank"><img src="http://adriabl.wordpress.com/files/2009/10/barrapunto.png"></a> <a href="https://favorites.live.com/quickadd.aspx?" target="_blank"> <img src="http://adriabl.wordpress.com/files/2009/10/windowslive.png" /></a><br />
</TD><br />
</TABLE></p>
<p><TABLE bgcolor="#E0E0E0"> <TD><strong>Url: </strong> http://elboligrafo.es/2009/11/03/media-hub/ </TD></TABLE></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Service level apathy: Is it because we're just too many??]]></title>
<link>http://sanjaymehta.me/2009/10/31/service-level-apathy-is-it-because-were-just-too-many/</link>
<pubDate>Sat, 31 Oct 2009 04:21:33 +0000</pubDate>
<dc:creator>Sanjay Mehta</dc:creator>
<guid>http://sanjaymehta.me/2009/10/31/service-level-apathy-is-it-because-were-just-too-many/</guid>
<description><![CDATA[Bhavin, who writes as the Man from Matunga, in Mumbai Mirror, has in the last few weeks, covered mor]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Bhavin, who writes as the <a href="http://www.manfrommatunga.com" target="_blank">Man from Matunga</a>, in Mumbai Mirror, has in the last few weeks, covered more than one service level issues, with brands. That in his once-a-week column, he finds it worthwhile to cover these so frequently can only indicate a high frequency of such events!</p>
<p>And don&#8217;t we all know?</p>
<p>Let me recount an episode that I am still in the middle of.</p>
<p>My Linksys Wi-Fi router at home, finally called it a day, after a good 4-5 years. I went shopping for a replacement, and found at Staples, besides Linksys, the <a href="http://www.belkin.com/" target="_blank">Belkin</a> brand. Being cheaper for nearly the same specs, I took a view on the brand from my brother, and after getting a strong validation, I purchased the Belkin N Series Wi-Fi router.</p>
<p>Tried to self install as per their paper guide. Could not quite get it done. Luckily they had a toll free number to call from India. I was very impressed that at 10 pm on a holiday, the call connected. And oh, the call went to a foreign country, not sure where. The accent was very un-Indian. Perhaps Philipines. Neat, I thought. For once, calls from India are being outsourced to another country!! Anyway, the person on the phone spent a good 15 min with me, guiding me on a step by step process, and got the router up and running.</p>
<p>I was happy.</p>
<p>About 5-6 days later, the router again gave issues. After trying hard myself, I called the toll free number again. The guy on the line tried his best, but could not sort the issue. He then put me across to their senior technician, who also tried hard. No go.</p>
<p>At this point, the senior technician, in what can only be termed as very western style, was able to authorize for me, a free replacement. He looked up and gave me detailed addresses, phone numbers and concerned persons&#8217; names, at two independent locations in Mumbai, where I could go and get the router replaced. He even gave the call id reference number, his own name and suggested that this should be enough to get the replacement to happen.</p>
<p>Wow, I continued to be impressed. Even while I was continuing to be disappointed by what looked like a bad purchase! I was willing to assume that I had a bad piece, unfortunately, and this could happen as a bad coincidence. But that, since their service was so impressive, I might still be with the right brand and the right company.</p>
<p>Alas. This is where the international service ended and the India part kicked in. And trouble began.</p>
<p>Considering the conversation with the senior technician, I went ahead and sent the router with those details, to the service place. Which happened to be, by the way, an independent company, viz. <a href="http://www.accelwms.in/" target="_blank">Accel Frontline Ltd</a>. I thought the call id and other details would be sufficient, as conveyed by the senior technician, and I was quite looking forward to an across-the-counter exchange.</p>
<p>Well, first of all, they asked for the purchase invoice. Which I had not sent. My bad.</p>
<p>As luck would have it, my invoice and credit card slip had got washed with the laundry. Did not remove it from trousers! But this part still worked out fine. I happened to visit Staples again, gave them the date and the reference (credit card, product name etc.) and they were able to pull out the invoice, and gave me a duplicate one. Service with a smile too. That I had gone on a weekday afternoon, when the store was pretty empty, might have been one of the reasons of the prompt service. That apart, the attitude was good.</p>
<p>So back to Accel. Sent the router and the invoice now. No across-the-counter replacement. They took the router, gave me an acknowledgement, some call id number of their own, and suggested to contact them after 7-8 days! Uh-oh.</p>
<p>Count to 10. Be patient. Hang on. I did. Decided to wait.</p>
<p>The service paper they made out and gave, had some impressive suggestions. That I could send the call id over SMS and get an automated updated status and everything. Wow. Service station automation. Cool.</p>
<p>7-8 days later, I first tried the phone only. They had a few numbers, including a cell number of one of their key persons. NONE of them responded! Tried the next day. SAME story. Could not connect on phone.</p>
<p>Then I remembered tha SMS option. Perhaps they don&#8217;t take calls to encourage everyone to use SMS. Did that. Waited for the response. Waited. Waited. None came.</p>
<p>Finally exasperated, and figuring that 9 days have gone by, and router should anyway be ready, I sent my person to go and fetch it.</p>
<p>Worst fears confirmed. It was not ready. Another 4-5 days was the time taken. Unfortunately my person did not connect me to them on phone, while he was there. I tried to call them to understand what the matter was. I could not connect to them on phone.</p>
<p>With no option, waited for another 4-5 days.</p>
<p>THEN, when my person called, lo and behold, the phone connected. And he was told that yes, it will take ANOTHER 4-5 days. But since now the phone connected, I decided to call them myself. The poor operator at the other end, did not have a clue why there is a delay. She promptly gave me the Mumbai head&#8217;s cell number. Which was &#8220;switched off&#8221;. So I called the babe again. So she cried, &#8220;we have not got the piece from head office, so how can we give you?&#8221;. I said that I need to speak to head office then. She promptly gave me the Chennai number of the concerned person at the head office. That was on Friday first half.</p>
<p>Over the day, I called this lady in Chennai 3-4 times, since she promised to help. Of couse, I had to use words like &#8220;consumer complaint&#8221; etc. but I am not sure if those were the catalysts, or whether it was always possible for them to do things, but needed someone calling in from Mumbai few times in a day, to make it happen.</p>
<p>Well, now I have been told that the replacement has been shipped to Mumbai office, and Monday might be my lucky day.</p>
<p>And then I have to hope that it was not a product problem, but just a piece problem, and the replacement works fine.</p>
<p>Oh, still a long way to go, before I reach true Wi-Fi happiness. Why did I not go for a Linksys only??</p>
<p>So the moot point here is, whether we are apathetic to service? We are too many. There will always be another sucker queieing up. So do we need to worry if this one&#8217;s disturbed. Is that the reason? Is it cultural &#8211; a &#8216;chalta hai&#8217; high tolerance syndrome? The way Bhavin ultimately <a href="http://www.manfrommatunga.com/archives/000138.html" target="_blank">&#8220;settled&#8221;</a> to accept a less than desired service level in Goa, do we all, just accept and resign ourselves? And continue to get shit??</p>
<p>I wonder about it. Even as I wait for my Wi-Fi to be restored at home..</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Bridge...]]></title>
<link>http://dlnaprojektet.wordpress.com/2009/10/29/bridge/</link>
<pubDate>Thu, 29 Oct 2009 15:15:28 +0000</pubDate>
<dc:creator>Michael</dc:creator>
<guid>http://dlnaprojektet.wordpress.com/2009/10/29/bridge/</guid>
<description><![CDATA[Min indledende søgning efter en bridge starter på Linksys&#8217; hjemmeside, hvor jeg finder følgend]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Min indledende søgning efter en bridge starter på Linksys&#8217; hjemmeside, hvor jeg finder følgende muligheder:</p>
<ul>
<li>Wireless-N Ethernet Bridge with Dual-Band (<a href="http://www.linksysbycisco.com/US/en/products/WET610N" target="_blank">WET610N</a>) til 573,00 DKK.</li>
<li>Wireless-G Ethernet Bridge (<a href="http://www.linksysbycisco.com/US/en/products/WET54G" target="_blank">WET54G</a>) til 614,00 DKK.</li>
</ul>
<p>Priserne er fundet på edbpriser.dk.</p>
<p>Så langt så godt&#8230; det er uden tvivl den rigtige løsning, og til en fornuftig pris&#8230; MEN jeg er i tvivl om signalets styrke. Vil mit trådløse signal række helt hen til bridge&#8217;n? Sommetider svigter signalet min bærbare når jeg sidder ved fjernsynet, så måske skal alternativer overvejes.</p>
<p>Min søgning fortsætter&#8230; Jeg er faldet over en Wireless-G Range Expander (<a href="http://www.linksysbycisco.com/US/en/products/WRE54G" target="_blank">WRE54G</a>) på Linksys&#8217; hjemmeside. Hvis den nu både kan agere bridge og repeater. Altså forstærke det trådløse signal i den del af huset &#8211; det ville være optimalt. Det er løsningen at gå efter. På edbpriser.dk fremgår den til 448,00 kr. Den bestilles.</p>
<p>Mere følger, når den sættes op.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Grundlæggende info]]></title>
<link>http://dlnaprojektet.wordpress.com/2009/10/29/grundl%c3%a6ggende-info/</link>
<pubDate>Thu, 29 Oct 2009 14:38:41 +0000</pubDate>
<dc:creator>Michael</dc:creator>
<guid>http://dlnaprojektet.wordpress.com/2009/10/29/grundl%c3%a6ggende-info/</guid>
<description><![CDATA[Grundlæggende set har jeg på nuværende tidspunkt følgende i lokalnetværket: En Linksys WRV200-EU Wir]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Grundlæggende set har jeg på nuværende tidspunkt følgende i lokalnetværket:</p>
<ul>
<li>En Linksys WRV200-EU Wireless-G VPN Router (der er blevet afløst af WRV210), for mere info om routeren henvises til Linksys&#8217; hjemmeside (Cisco som har overtaget Linksys): Læs mere om <a href="https://www.cisco.com/cisco/web/solutions/small_business/resource_center/articles/work_from_anywhere/linksys_wrv200_glance/index.html" target="_blank">WRV200</a>.</li>
<li>Et Sony KDL32V5500 fladskærms-TV, for mere info om fjernsynes henvises til Sonys hjemmeside: Læs mere om <a href="http://www.sony.dk/product/t32-v-series/kdl-32v5500" target="_blank">KDL32V5500</a>.</li>
</ul>
<p>Det er sparsomt; men trods alt et udgangspunkt.</p>
<p>Jeg skal have fundet ud af hvad der skal forbinde TV&#8217;et med routeren, og hvad der skal agere Medieserver.</p>
<p>For det første &#8211; netværksforbindelsen&#8230; Det sikre ville jo være at trække et kabel fra routeren og hen til TV&#8217;et; men det virker ikke som den rigtige løsning. Det ville være rart at kunne sætte et netværksaggregat op som vil kunne fungere som forbindelsesled. Der er noget der siger mig at en <em>bridge</em> ville være det rigtige sted at starte.</p>
<p>Begrebet <em>bridge</em> beskrives på Wikipedia på følgende måde: &#8220;En <em>bridge</em> kan bruges til at forbinde netværk, typisk af forskellig type. En trådløs <em>bridge</em> gør det muligt at forbinde et trådløs netværk med et kablet netværk&#8221;. Se den originale tekst om <a href="http://en.wikipedia.org/wiki/Wireless_LAN#Bridge" target="_blank">bridge</a>.</p>
<p>Det lyder jo lige præcis som det jeg skal bruge. Søgningen sættes ind &#8211; tror jeg vil starte med Linksys&#8217; produkter.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[DD-WRT executing system commands remotely using cURL]]></title>
<link>http://darranboyd.wordpress.com/2009/10/29/dd-wrt-executing-system-commands-remotely-using-curl/</link>
<pubDate>Thu, 29 Oct 2009 04:03:52 +0000</pubDate>
<dc:creator>db</dc:creator>
<guid>http://darranboyd.wordpress.com/2009/10/29/dd-wrt-executing-system-commands-remotely-using-curl/</guid>
<description><![CDATA[What you need: 1. A router loaded with DD-WRT. 2. cURL &#8211; http://curl.haxx.se/ (Windows users m]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img class="size-medium wp-image-191 alignnone" title="post-2250-1238359496" src="http://darranboyd.wordpress.com/files/2009/10/post-2250-1238359496.png?w=300" alt="post-2250-1238359496" width="300" height="273" /><br />
What you need:</p>
<p>1. A router loaded with <a href="http://www.dd-wrt.com/" target="_blank">DD-WRT</a>.<br />
2. cURL &#8211; <a href="http://curl.haxx.se/" target="_blank">http://curl.haxx.se/</a> (Windows users may be able to get a precompiled binary with <a href="http://www.google.com/search?hl=en&#38;rlz=1C1_____en___SG348&#38;q=intitle:%22index+of%22+curl.exe&#38;btnG=Search&#38;meta=&#38;aq=f&#38;oq=" target="_blank">this google search query</a>)<br />
3. The IP address of your router (default is usually 192.168.1.1)<br />
4. The Web GUI username &#38; password of your router.</p>
<p>Here&#8217;s is the syntax, just replace the information in red (Note that spaces in your system command must be replaced with + signs):</p>
<p><code>curl http://192.168.1.1/apply.cgi -d "submit_button=Ping&#38;action=ApplyTake&#38;submit_type=start&#38;change_action=gozila_cgi&#38;next_page=Diagnostics.asp&#38;ping_ip=<span style="color:red;">your+system+command</span>" -u <span style="color:red;">username</span>:<span style="color:red;">password</span></code></p>
<p>Here is an example to add a static route, using the typical username/password combination:</p>
<p><code>curl http://192.168.1.1/apply.cgi -d "submit_button=Ping&#38;action=ApplyTake&#38;submit_type=start&#38;change_action=gozila_cgi&#38;next_page=Diagnostics.asp&#38;ping_ip=<span style="color:red;">route+add+-net+21.5.128.0+netmask+255.255.128.0+dev+ppp0</span>" -u <span style="color:red;">admin</span>:<span style="color:red;">admin</span></code></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[RingCentral Office: Comprehensive Internet-based Phone Services]]></title>
<link>http://webworkerdaily.com/2009/10/28/ringcentral-office-comprehensive-internet-based-phone-services/</link>
<pubDate>Wed, 28 Oct 2009 14:00:55 +0000</pubDate>
<dc:creator>Charles Hamilton</dc:creator>
<guid>http://webworkerdaily.com/2009/10/28/ringcentral-office-comprehensive-internet-based-phone-services/</guid>
<description><![CDATA[A few days ago, Aliza provided some excellent planning advice on how to pick a company phone system.]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://webworkerdaily.wordpress.com/files/2009/10/logo2.gif"><img class="alignleft size-full wp-image-21815" title="RingCentral-logo" src="http://webworkerdaily.wordpress.com/files/2009/10/logo2.gif" alt="RingCentral-logo" width="247" height="53" /></a>A few days ago, Aliza provided some excellent planning advice on <a href="http://webworkerdaily.com/2009/10/24/virtual-pbxs-make-your-small-company-feel-bigger/">how to pick a company phone system</a>. I&#8217;ve written in the past about three options for incoming service: <a href="http://webworkerdaily.com/2009/06/19/google-voice-to-offer-phone-and-messaging-services/">Google Voice</a> (s goog) (which now lets you use <a href="http://jkontherun.com/2009/10/27/google-voice-porting-numbers-no-but-voicemail-yes/">some of its features with your existing number</a>),  <a href="http://webworkerdaily.com/2009/08/07/3jam-an-alternative-to-google-voice/">3jam</a>, and <a href="http://webworkerdaily.com/2009/08/27/grasshopper-a-business-oriented-virtual-phone-system/">Grasshopper</a> (which is now <a href="http://mixergy.com/siamak-taghaddos-interview/">reportedly profitable</a>.)</p>
<p>This time, let&#8217;s look at a business phone system that provides both incoming and outgoing service, plus actual phones. The folks at <a href="http://www.ringcentral.com/">RingCentral</a> have kindly set me up with one of their packages, the <a href="http://www.ringcentral.com/office/how-it-works.html?open=1">RingCentral Office</a>. They also offer <a href="http://www.ringcentral.com/features/how-it-works.html">RingCentral Online</a>, an inbound service similar to those listed above, but we&#8217;ll focus on the Office package for simplicity.<!--more--></p>
<p><strong>Options</strong></p>
<p>RingCentral Office has <a href="http://www.ringcentral.com/office/plansandpricing.html">three pricing levels</a>, ranging from a one-line, 10-extension plan for $49.99 per month to an 8-line, unlimited extension plan for $179.99 per month. Each plan comes with various combinations of toll-free and local numbers, as well as toll-free or local dedicated fax numbers. You can also <a href="http://www.ringcentral.com/office/phone-system-faq.html#transferCurrentNumber"> port</a> your existing local or toll-free numbers to RingCentral.</p>
<p>All plans are advertised as having &#8220;unlimited minutes,&#8221; but (as is apparently the norm among VoIP providers) &#8220;unlimited&#8221; actually means 5,000 minutes per month; if you go over that, you&#8217;ll be charged 3.9 cents/minute. That works out to roughly 2.5 hours of talking per day. Are you and your colleagues on the phone that much? At my company, we aren&#8217;t, but some folks might need to be aware of this limit.</p>
<p><strong>What You Get</strong></p>
<p>RingCentral Office includes all of the <a href="http://www.ringcentral.com/office/phone-system-features.html">features</a> that have become standard for Internet phone services. They offer numbers in the U.S., Canada and the UK.</p>
<p><a href="http://webworkerdaily.wordpress.com/files/2009/10/spa942-200x160.jpg"><img class="alignright size-full wp-image-21816" title="SPA942-200x160" src="http://webworkerdaily.wordpress.com/files/2009/10/spa942-200x160.jpg" alt="SPA942-200x160" width="200" height="160" /></a>RingCentral offers two types of phones. The phone RingCentral provided to me is a Linksys (now owned by Cisco (s csco)) <a href="http://www.cisco.com/en/US/products/ps10039/index.html">SPA942</a>. At first glance, it looks much like a modern business phone. But instead of plugging it into a phone jack, one connects it to the Internet using a standard RJ-45 network cable. If you only have one Internet connection, you can plug the phone into your internet connection, and then plug other devices into the phone. I was pleased with the phone. It&#8217;s relatively easy to operate, but strangely, it doesn&#8217;t support a headset, something I&#8217;ve gotten quite used to.</p>
<p>If you would prefer to use your existing phone equipment, RingCentral also offers an ATA adapter which connects the Internet to regular phones. Since most people aren&#8217;t technically-minded enough to want to fiddle with ATAs or configuration of phones,  RingCentral ships their equipment  pre-configured. All I had to do was plug in the power and the ethernet cable, and the phone was online and ready to use. RingCentral tells me that they provide their phones at or below wholesale cost; a little research confirmed that their equipment prices are quite low.</p>
<p><a href="http://webworkerdaily.wordpress.com/files/2009/10/softphone.jpg"><img class="alignleft size-medium wp-image-21817" title="softphone" src="http://webworkerdaily.wordpress.com/files/2009/10/softphone.jpg?w=170" alt="softphone" width="170" height="300" /></a>When you or your colleagues are out of the office, you can use the web site and Windows- (s msft) or Mac-based (s aapl) <a href="http://www.ringcentral.com/features/real-time-control/overview.html">softphone application</a> to send, receive and manage calls and messages. One of the unusual features of the softphone app is the ability to view incoming calls and reply with a short message like &#8220;I&#8217;ll call you back in 10 minutes&#8221; without actually answering the phone call. There&#8217;s also integration with Outlook&#8217;s contact list.</p>
<p>For iPhone users, there&#8217;s a native application that provides easy access to voicemail (separate from the iPhone&#8217;s built-in voicemail) and faxes. You can also use the iPhone app to make calls showing the Caller ID from your business line &#8212; without displaying your iPhone&#8217;s telephone number. Similar native applications are being developed for other platforms; I gather that the BlackBerry (s rimm) is next on RingCentral&#8217;s list. I didn&#8217;t test RingCentral&#8217;s software, but I&#8217;ve gotten positive feedback from others who&#8217;ve used it.</p>
<p><strong>Ordering</strong></p>
<p>When ordering, you&#8217;ll be asked to specify the plan you want, the number of lines needed, as well as the number of local and toll-free numbers. You can create a plan that meets your specific needs, and you can change plans at will, since you don&#8217;t need to sign a contract. If you return the phones, the return will be subject to a restocking fee.</p>
<p>RingCentral boasts that its services can be priced and purchased directly from its web site without needing to call (although it does offer ordering by phone). While web ordering is certainly possible, I found the website to be less than clear in explaining the differences between the various plans and options. RingCentral tells me that a redesigned site is on the way.</p>
<p><strong>Quality</strong></p>
<p>Of course, in a business environment, call quality is key. In my tests, I (and the people I talked to) agreed that our conversations were clear, loud, and with none of the delay that sometimes plagues services like Google Voice. RingCentral tells me that the service is SIP-based, but that they&#8217;ve done significant signal processing so that anyone with a DSL, cable or faster Internet connection should hear excellent sound quality. Dialup connections aren&#8217;t recommended, for obvious reasons.</p>
<p><strong>Reliability</strong></p>
<p>RingCentral has been around for several years, but only started offering the Office product in early 2009. According to the company, it is now providing its Office service to over 3,000 organizations of various sizes, including some of over 50 users, with the four-line option is the most popular. They have multiple levels of redundancy and backups, but of course, if your local Internet connection or power goes out, you&#8217;ll be unable to use RingCentral, or any other Internet-based phone system.</p>
<p>If you are in the market for a virtual PBX system that provides phone hardware with incoming and outgoing service, you&#8217;ll want to look at a number of options, including <a href="http://www.digitalbusinessphonesystem.com/">Accessline Digital Business Phone System</a>,  <a href="http://www.hostedipbx.com/52088">FreedomIQ Hosted PBX</a>, and <a href="http://www.phone.com/products/business-phone/">Phone.com Business Phone</a>, Whatever you choose, RingCentral Office is certainly a strong competitor.</p>
<p><em>Do you use RingCentral?</em></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Linksys Routers &amp; WildBlue]]></title>
<link>http://pinemountainwalker.wordpress.com/2009/10/27/linksys-routers-and-wildblue/</link>
<pubDate>Wed, 28 Oct 2009 04:13:21 +0000</pubDate>
<dc:creator>Steve</dc:creator>
<guid>http://pinemountainwalker.wordpress.com/2009/10/27/linksys-routers-and-wildblue/</guid>
<description><![CDATA[After years of decent service, my Linksys WRT54G wireless router started acting up after getting Wil]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>After years of decent service, my Linksys WRT54G wireless router started acting up after getting WildBlue satellite Internet service.  Before that, I&#8217;d had Comcast cable and Qwest DSL at various times all without trouble.   After many years, was it just my router&#8217;s time to go?  That&#8217;s what I figured, and after investing hours and hours working on the hobbling WRT54G over the last several months it was time to move on.  Being an ex-computer programmer, it&#8217;s very hard to put down a tech problem without solving it, but this time I exercised my discipline to enjoy the freedom of not needing to understand or fix this router problem.  So I took it outside and ended its misery (really mine).</p>
<p>After surfing around for a good replacement router, I picked up a Linksys WRT54GS2 just to show &#8220;no hard feelings&#8221; for my old nagging Linksys router.  Got it home and began to set it up.  The LAN worked fine, but couldn&#8217;t get outside to the Internet.  So I disconnected the cable and hooked a laptop directly to the WildBlue satellite modem&#8230;boom, Internet was fine.  Connected the computer back up to the router and&#8230;no Internet!  After doing this nonsense for a couple hours, decided to surf around and see if anyone else was having similar troubles with my combination of equipment.  Not surprisingly, yes, others were.  On the forum WildBlue Uncensored, I found this article about the WRT54GS2:</p>
<p><a title="WRTGS2 Woes" href="http://www.wildblue.cc/wbforums/showthread.php?p=74980" target="_blank">http://www.wildblue.cc/wbforums/showthread.php?p=74980</a></p>
<p>The guy had the same problem with the WRT54GS2, bought a bunch of new routers and decided to try them one at a time.  The first one was up and running in under 15 minutes!  It happened to be the Netgear WGR 614v9.  Although it was getting late, the IT guy in me couldn&#8217;t wait so I drove to Wal-Mart to fix this irritating, multi-month-long problem.  Story short, the Netgear WGR 614v9 was up in no time.  No sweat, no tears.</p>
<p>Is this a WildBlue problem?  Apparently, some tech geeks are seeing a lot of problems with the new Cisco Linksys wireless routers.  So maybe WildBlue is innocent.  Whatever the case, for what it&#8217;s worth I hope at least a couple people stumble upon this blog and are saved some hours of life to do something more fun and interesting.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Don't Forget Your Router Passwords]]></title>
<link>http://routerfixguy.wordpress.com/2009/10/27/dont-forget-your-router-passwords/</link>
<pubDate>Tue, 27 Oct 2009 06:59:15 +0000</pubDate>
<dc:creator>routerfixguy</dc:creator>
<guid>http://routerfixguy.wordpress.com/2009/10/27/dont-forget-your-router-passwords/</guid>
<description><![CDATA[Anything on this fast paced world Is moving so fast, too fast that we can’t keep focus on details. O]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Anything on this fast paced world Is moving so fast, too fast that we can’t keep focus on details. One of the things that we can’t easily retrieve from our crowded memory is your password. Passwords are by nature a secret code that is meant to be kept but problem arises if we forgot passwords. </p>
<p>We encounter this most of the time and sometimes you <a href="http://www.technoxx.com/forgot-linksys-router-password.html">forgot linksys router password</a>. And next question will be, is there a way to retrieve your password?  So people being too used with everything that is fast, they turn to the internet to get answers for their problems. We just search by encoding keywords like “forgot <a href="http://routerfixguy.instablogs.com/entry/what-i-prefer-in-routers/">Linksys</a> password” or &#8220;<a href="http://www.technoxx.com/setup-linksys-router.html">setup linksys router</a>&#8221; that you can make and at an instant with just one click, list of sources to answer your problem is right there in front of you. Some site will provide <a href="http://therouterguy.blogspot.com/2009/10/set-your-routers-easily.html">complete and systematic way of how we can solve problems</a> others will just give ideas or sharing of same experiences. Different points of view on how to work on in will be there, but the trick is to be patient and analyze then apply what you’ve read.  Always keep in mind that there is no hassle when you forgot linksys router password.</p>
</div>]]></content:encoded>
</item>

</channel>
</rss>
