<?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>ServerSignature Linux Community Support Blog Page &#187; network</title>
	<atom:link href="http://support.serversignature.com/tag/network/feed/" rel="self" type="application/rss+xml" />
	<link>http://support.serversignature.com</link>
	<description>Linux Server Management &#38; Consulting  Services :  Contact Email - admin@serversignature.com &#124; Web: serversignature.com</description>
	<lastBuildDate>Sun, 20 Jun 2010 17:59:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Ubuntu /etc/network/interfaces DHCP setup</title>
		<link>http://support.serversignature.com/networking/ubuntu-etcnetworkinterfaces-dhcp-setup/</link>
		<comments>http://support.serversignature.com/networking/ubuntu-etcnetworkinterfaces-dhcp-setup/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 16:34:46 +0000</pubDate>
		<dc:creator>Kiran</dc:creator>
				<category><![CDATA[networking]]></category>
		<category><![CDATA[dhcp]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[setup]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://support.serversignature.com/?p=60</guid>
		<description><![CDATA[Ubuntu /etc/network/interfaces DHCP setup
To setup eth0 to dhcp in /etc/network/interfaces
auto eth0
iface eth0 inet dhcp
]]></description>
		<wfw:commentRss>http://support.serversignature.com/networking/ubuntu-etcnetworkinterfaces-dhcp-setup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>/etc/network/interfaces Ubuntu Static Network setup</title>
		<link>http://support.serversignature.com/networking/etcnetworkinterfaces-ubuntu-static-network-setup/</link>
		<comments>http://support.serversignature.com/networking/etcnetworkinterfaces-ubuntu-static-network-setup/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 16:32:30 +0000</pubDate>
		<dc:creator>Kiran</dc:creator>
				<category><![CDATA[networking]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[setup]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://support.serversignature.com/?p=58</guid>
		<description><![CDATA[/etc/network/interfaces Ubuntu Static Network setup
Following example setup eth0 with 192.168.1.1 IP address and gateway (router) to 192.168.1.2
iface eth0 inet static
address 192.168.1.1
netmask 255.255.255.0
gateway 192.168.1.2
With IPtables
auto eth0
iface eth0 inet dhcp
pre-up iptables-restore < /etc/iptables.rules
post-down iptables-restore < /etc/iptables.downrules
Another Example -
auto lo
iface lo inet loopback
auto eth1
iface eth1 inet static
        address    [...]]]></description>
		<wfw:commentRss>http://support.serversignature.com/networking/etcnetworkinterfaces-ubuntu-static-network-setup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ubuntu network setup and configuration</title>
		<link>http://support.serversignature.com/networking/ubuntu-network-setup-and-configuration/</link>
		<comments>http://support.serversignature.com/networking/ubuntu-network-setup-and-configuration/#comments</comments>
		<pubDate>Sun, 01 Nov 2009 18:35:10 +0000</pubDate>
		<dc:creator>Kiran</dc:creator>
				<category><![CDATA[networking]]></category>
		<category><![CDATA[gateway]]></category>
		<category><![CDATA[IP address]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://support.serversignature.com/?p=53</guid>
		<description><![CDATA[To configure your Ethernet device with a static IP address and custom configuration, some more information will be required. 
Suppose you want to assign the IP address 192.168.0.2 to the device eth1, with the typical netmask of 255.255.255.0. 
Your default gateway&#8217;s IP address is 192.168.0.1. You would enter something like this into /etc/network/interfaces:
iface eth1 inet [...]]]></description>
		<wfw:commentRss>http://support.serversignature.com/networking/ubuntu-network-setup-and-configuration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>tshark dump and analyze network traffic</title>
		<link>http://support.serversignature.com/networking/tshark-dump-and-analyze-network-traffic/</link>
		<comments>http://support.serversignature.com/networking/tshark-dump-and-analyze-network-traffic/#comments</comments>
		<pubDate>Sun, 01 Nov 2009 15:55:59 +0000</pubDate>
		<dc:creator>Kiran</dc:creator>
				<category><![CDATA[networking]]></category>
		<category><![CDATA[analyze]]></category>
		<category><![CDATA[dump]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[traffic]]></category>
		<category><![CDATA[tshark]]></category>

		<guid isPermaLink="false">http://support.serversignature.com/?p=44</guid>
		<description><![CDATA[tshark &#8211; Dump and analyze network traffic
# tshark -n -i ppp0 port 80
Running as user "root" and group "root". This could be dangerous.
Capturing on ppp0
-n  Disable network object name resolution (such as hostname, TCP and      UDP port names), the -N flag might override this one.
-i [capture interface]
TShark is a [...]]]></description>
		<wfw:commentRss>http://support.serversignature.com/networking/tshark-dump-and-analyze-network-traffic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
