<?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>usefulgeek &#187; networking</title>
	<atom:link href="http://www.usefulgeek.com/blog/tag/networking/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.usefulgeek.com/blog</link>
	<description>rants, reviews and kind hearted messages from some geeks</description>
	<lastBuildDate>Mon, 19 Jul 2010 16:48:21 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Modify Windows XP routing table</title>
		<link>http://www.usefulgeek.com/blog/2009/08/modify-windows-xp-routing-table/</link>
		<comments>http://www.usefulgeek.com/blog/2009/08/modify-windows-xp-routing-table/#comments</comments>
		<pubDate>Thu, 27 Aug 2009 02:19:13 +0000</pubDate>
		<dc:creator>jonmoore</dc:creator>
				<category><![CDATA[quickfire]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[networking]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.usefulgeek.com/blog/?p=141</guid>
		<description><![CDATA[During some network changes I&#8217;ve found the need to modify the routing table.
To change the default route on Windows XP (and possibly Windows Vista, 2000, etc) you use the route command.  The syntax is pretty simple, here is a quick example&#8230;.

route change 0.0.0.0 mask 0.0.0.0 172.18.12.120

To delete or add routes, simply change the keyword [...]


No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>During some network changes I&#8217;ve found the need to modify the routing table.</p>
<p>To change the default route on Windows XP (and possibly Windows Vista, 2000, etc) you use the route command.  The syntax is pretty simple, here is a quick example&#8230;.</p>
<pre>
route change 0.0.0.0 mask 0.0.0.0 172.18.12.120
</pre>
<p>To delete or add routes, simply change the keyword change to either add or delete.</p>
<pre>
route add 192.168.0.0 mask 255.255.255.0 10.10.0.50
</pre>


<p>No related posts.</p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.usefulgeek.com/blog/2009/08/modify-windows-xp-routing-table/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Check speed of connected link in Linux</title>
		<link>http://www.usefulgeek.com/blog/2009/07/check-speed-of-connected-link-in-linux/</link>
		<comments>http://www.usefulgeek.com/blog/2009/07/check-speed-of-connected-link-in-linux/#comments</comments>
		<pubDate>Fri, 24 Jul 2009 21:09:22 +0000</pubDate>
		<dc:creator>jonmoore</dc:creator>
				<category><![CDATA[quickfire]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[networking]]></category>

		<guid isPermaLink="false">http://www.usefulgeek.com/blog/?p=135</guid>
		<description><![CDATA[If you&#8217;ve ever wanted to check on the status of your Ethernet links, you&#8217;ve probably used the ip commands (or ifconfig) to view some basic information.  However, you might have noticed these commands do not tell you what the current link speed is, or other possibly important details.  That&#8217;s where ethtool comes in.

[jonmoore@megaton ~]$ sudo [...]


Related posts:<ol><li><a href='http://www.usefulgeek.com/blog/2010/04/linux-ipv6-neighbor-discovery/' rel='bookmark' title='Permanent Link: Linux IPv6 Neighbor Discovery'>Linux IPv6 Neighbor Discovery</a> <small>Using ping6 and ip neigh it&#8217;s possible to discover other...</small></li>
<li><a href='http://www.usefulgeek.com/blog/2009/10/find-text-and-findreplace-easier-than-you-think-in-linux/' rel='bookmark' title='Permanent Link: Find Text and Find/Replace Easier Than You Think in Linux'>Find Text and Find/Replace Easier Than You Think in Linux</a> <small>How to search all files for a text string: grep...</small></li>
</ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve ever wanted to check on the status of your Ethernet links, you&#8217;ve probably used the ip commands (or ifconfig) to view some basic information.  However, you might have noticed these commands do not tell you what the current link speed is, or other possibly important details.  That&#8217;s where <code>ethtool</code> comes in.</p>
<pre>
[jonmoore@megaton ~]$ sudo ethtool eth0
Settings for eth0:
Supported ports: [ MII ]
Supported link modes:   10baseT/Half 10baseT/Full
100baseT/Half 100baseT/Full
1000baseT/Full
Supports auto-negotiation: Yes
Advertised link modes:  10baseT/Half 10baseT/Full
100baseT/Half 100baseT/Full
1000baseT/Full
Advertised auto-negotiation: Yes
Speed: <strong>1000Mb/s</strong>
Duplex: <strong>Full</strong>
Port: MII
PHYAD: 1
Transceiver: external
Auto-negotiation: on
Supports Wake-on: g
Wake-on: d
Link detected: yes</pre>
<p>As you can see, <code>ethtool</code> will show you the support modes, as well as the current mode.  From the above example, I&#8217;m currently connected at 1000Mb/s at Full Duplex.  Very nice.</p>
<p>Check out the ethtool man page for more useful commands.</p>


<p>Related posts:<ol><li><a href='http://www.usefulgeek.com/blog/2010/04/linux-ipv6-neighbor-discovery/' rel='bookmark' title='Permanent Link: Linux IPv6 Neighbor Discovery'>Linux IPv6 Neighbor Discovery</a> <small>Using ping6 and ip neigh it&#8217;s possible to discover other...</small></li>
<li><a href='http://www.usefulgeek.com/blog/2009/10/find-text-and-findreplace-easier-than-you-think-in-linux/' rel='bookmark' title='Permanent Link: Find Text and Find/Replace Easier Than You Think in Linux'>Find Text and Find/Replace Easier Than You Think in Linux</a> <small>How to search all files for a text string: grep...</small></li>
</ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.usefulgeek.com/blog/2009/07/check-speed-of-connected-link-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
