<?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>AOIP - Anything Over IP &#187; Management</title>
	<atom:link href="http://www.anythingoverip.co.za/category/tutorials/topic/management/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.anythingoverip.co.za</link>
	<description>Anything Over IP</description>
	<lastBuildDate>Wed, 27 Jul 2011 05:24:51 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>NAT (Network Address Translation)</title>
		<link>http://www.anythingoverip.co.za/tutorials/course-content/ccna/nat-network-address-translation/</link>
		<comments>http://www.anythingoverip.co.za/tutorials/course-content/ccna/nat-network-address-translation/#comments</comments>
		<pubDate>Mon, 21 Sep 2009 11:31:44 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[CCNA (ICND2)]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[Routing]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[WAN]]></category>

		<guid isPermaLink="false">http://www.anythingoverip.co.za/?p=698</guid>
		<description><![CDATA[NAT or Network Address Translation is a key function required in every organisations network. Since all organisation use RFC 1918 IP addressing, and these IP addresses are not allowed to exist on the internet, before we send packets to the internet we need to translate the internal IP address into a useable public IP address. [...]]]></description>
			<content:encoded><![CDATA[<p>NAT or Network Address Translation is a key function required in every organisations network.<br />
Since all organisation use <a href="http://www.anythingoverip.co.za/networking-101/useable-ip-addresses-in-private-networks/">RFC 1918 </a>IP addressing, and these <a href="http://www.anythingoverip.co.za/networking-101/what-is-an-ip-address/">IP addresses </a>are not allowed to exist on the internet, before we send packets to the internet we need to translate the <a href="http://www.anythingoverip.co.za/networking-101/useable-ip-addresses-in-private-networks/">internal IP address </a>into a useable public IP address.</p>
<p>There are 3 ways to configure NAT on a Cisco Router<br />
1/ <a title="Configuring Static NAT on Cisco Routers" href="http://www.anythingoverip.co.za/tutorials/course-content/ccna/configuring-static-nat-on-cisco-routers/">Static NAT</a><br />
2/ <a title="Configuring Dynamic NAT on Cisco Routers" href="http://www.anythingoverip.co.za/tutorials/course-content/ccna/configuring-dynamic-nat-on-cisco-routers/">Dynamic NAT</a><br />
3/ <a title="Configuring PAT on Cisco Routers (NAT Overload)" href="http://www.anythingoverip.co.za/tutorials/course-content/ccna/configuring-pat-on-cisco-routers-nat-overload/">NAT overload</a> (PAT – Port Address translation)</p>
<p><a title="Configuring Static NAT on Cisco Routers" href="http://www.anythingoverip.co.za/tutorials/course-content/ccna/configuring-static-nat-on-cisco-routers/"><strong>Static NAT</strong></a> is a one-to-one mapping. This is usually only required when you have a server inside your network (ie: Webserver, FTP, E-mail) that needs to be accessed from the internet. Users on the internet will access a public IP address that you have statically and permanently linked to your servers internal IP address. Of course any time your internal server sends packet to the internet, it’s source IP address will be translated into a public IP address configured with static NAT.</p>
<p><a title="Configuring Dynamic NAT on Cisco Routers" href="http://www.anythingoverip.co.za/tutorials/course-content/ccna/configuring-dynamic-nat-on-cisco-routers/"><strong>Dynamic NAT</strong></a> is used for many-to-many mapping. This will allow all your internal computers to be translated into a pool of public IP addresses, however if you only have 10 public IP addresses available in the NAT pool, only 10 computers will be able to access the public network at a time. Each computer will consume one public address at a time which makes this very limited for public internet access. The main purpose for dynamic NAT is to fix overlap IP addresses often experienced after a merger or acquisition. Since all companies use RFC 1918 for internal addresses, it’s not uncommon for 2 companies to be using the exact same internal IP addresses. When a merger or acquisition takes place there are issues with the IP addresses conflicting. Dynamic NAT allows us to translate the internal IP addresses from company ‘A’ into something unique that company ‘B’ does not use, and similarly translate all the internal IP addresses in company ‘B’ into something unique that company ‘A’ does not use. In most cases the ‘public’ address that the two companies will be translated into, will be part of RFC 1918 and will be used purely to resolve IP address overlaps, and NOT internet access.</p>
<p><a title="Configuring PAT on Cisco Routers (NAT Overload)" href="http://www.anythingoverip.co.za/tutorials/course-content/ccna/configuring-pat-on-cisco-routers-nat-overload/"><strong>NAT overload</strong></a>, or otherwise known as <strong>PAT (Port Address Translation),</strong> allows us to create a many-to-one mapping. Every computer in your network will be translated into a single Public IP address. This allows us to save on public addresses but still allows each computer in our organisation to access the internet at the same time. PAT identifies each session based on the source port number used in the communication flow. Since each session uses a random source port number, each session in theory should have a different number which allows PAT to associate a session with the single public IP addresses been shared. In the occurrence of two computers randomly choosing the same source port number, PAT will translate the port number and keep a record of the original as well as the new translated port to maintain the session. PAT will not allow internet users to access your internal servers as there is no mapping from outside to inside. The maximum theoretical limit for sharing a single IP address is 64,513 however the practical limit is dependent on the router or firewall doing the PAT and is usually limited to no more than 4,000 sessions to a single IP address.</p>


<p>Related posts:<ol><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/ccna/configuring-pat-on-cisco-routers-nat-overload/' rel='bookmark' title='Permanent Link: Configuring PAT on Cisco Routers (NAT Overload)'>Configuring PAT on Cisco Routers (NAT Overload)</a></li><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/ccna/configuring-dynamic-nat-on-cisco-routers/' rel='bookmark' title='Permanent Link: Configuring Dynamic NAT on Cisco Routers'>Configuring Dynamic NAT on Cisco Routers</a></li><li><a href='http://www.anythingoverip.co.za/networking-101/useable-ip-addresses-in-private-networks/' rel='bookmark' title='Permanent Link: Useable IP addresses in private networks'>Useable IP addresses in private networks</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.anythingoverip.co.za/tutorials/course-content/ccna/nat-network-address-translation/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Configuring Syslog on Cisco Routers</title>
		<link>http://www.anythingoverip.co.za/tutorials/course-content/iscw/configuring-syslog-on-cisco-routers/</link>
		<comments>http://www.anythingoverip.co.za/tutorials/course-content/iscw/configuring-syslog-on-cisco-routers/#comments</comments>
		<pubDate>Thu, 30 Jul 2009 12:42:52 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[IINS]]></category>
		<category><![CDATA[ISCW]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[SND]]></category>
		<category><![CDATA[SNRS]]></category>
		<category><![CDATA[Maintenance]]></category>
		<category><![CDATA[Security]]></category>

		<guid isPermaLink="false">http://www.anythingoverip.co.za/?p=331</guid>
		<description><![CDATA[As part of any management and audit solution for networking, Syslog is vital.   Syslog messages allow us to track system error messages, exceptions, and other information, such as device configuration changes. It allows for historical reporting, depending on the application keeping the logs, as well as help in fault finding.   Cisco devices support [...]]]></description>
			<content:encoded><![CDATA[<p>As part of any management and audit solution for networking, Syslog is vital.</p>
<p> </p>
<p>Syslog messages allow us to track system error messages, exceptions, and other information, such as device configuration changes.</p>
<p>It allows for historical reporting, depending on the application keeping the logs, as well as help in fault finding.</p>
<p> </p>
<p>Cisco devices support 8 levels of logging information from Facility level 0 through 7</p>
<table border="1" cellspacing="1" cellpadding="0" width="60%">
<tbody>
<tr>
<td>Emergency</td>
<td>0</td>
</tr>
<tr>
<td>Alert</td>
<td>1</td>
</tr>
<tr>
<td>Critical</td>
<td>2</td>
</tr>
<tr>
<td>Error</td>
<td>3</td>
</tr>
<tr>
<td>Warning</td>
<td>4</td>
</tr>
<tr>
<td>Notification</td>
<td>5</td>
</tr>
<tr>
<td>Informational</td>
<td>6</td>
</tr>
<tr>
<td>Debug</td>
<td>7</td>
</tr>
</tbody>
</table>
<p> </p>
<p>To enable Syslog 2 things are required</p>
<p>                1/ Configuration on the device to send Syslog messages</p>
<p>                2/ An application that will receive the messages and store them in a database.</p>
<p> </p>
<p>In the below live demo, you will see my putty screen with my telnet session into my router, and behind it you will see my Syslog application. There are many of these products on the market, each with its own pro’s and con’s, so use whatever you prefer. In my Live demo I am using an application called  ‘Syslog Watcher Personal Edition’, it’s a very easy to use application and is freeware. You will notice after I configured logging on the router, the log messages appear in my application.</p>
<p> </p>
<p>The command breakdown for the live demo is as follows</p>
<p> </p>
<p><strong>AOIP.ORG# conf t</strong></p>
<p><strong> </strong></p>
<p><strong>AOIP.ORG(config)# logging 192.168.1.1</strong></p>
<p>This instructs the router to send Syslog messages to my application hosted on a machine with the IP 192.168.1.1</p>
<p><strong>AOIP.ORG(config)# logging trap info</strong></p>
<p>I have chosen to have level 6 messages sent to my application.</p>
<p> </p>
<p>Additionally you could have used the <strong>‘service timestamps log datetime localtime’</strong> command to force the time on the logs.</p>
<p> </p>
<p>If you still do not see any log messages after using the above commands, make sure that logging has not been disabled on the device. To force logging on a Cisco device use the <strong>‘logging on’</strong> command.</p>
<p> </p>
<p><object type="application/x-shockwave-flash" style="width:630px;height:250px" data="http://www.anythingoverip.co.za/Live_Demos/syslog.swf"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="quality" value="best" /><param name="wmode" value="transparent" /><param name="movie" value="http://www.anythingoverip.co.za/Live_Demos/syslog.swf" /><param name="pluginspage" value="http://www.macromedia.com/go/getflashplayer" />If you can see this, then you might need a Flash Player upgrade or you need to install Flash Player if it's missing. Get <a href="http://get.adobe.com/flashplayer/" target="_blank">Flash Player</a> from Adobe.</object><br/>
		<!-- Valid XHTML flash object delivered by XHTML Video Embed. Get it at: http://saltwaterc.net/xhtml-video-embed -->
		</p>


<p>Related posts:<ol><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/iscw/cisco-router-login-lockdown/' rel='bookmark' title='Permanent Link: Cisco Router Login Lockdown'>Cisco Router Login Lockdown</a></li><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/ccna/configuring-pat-on-cisco-routers-nat-overload/' rel='bookmark' title='Permanent Link: Configuring PAT on Cisco Routers (NAT Overload)'>Configuring PAT on Cisco Routers (NAT Overload)</a></li><li><a href='http://www.anythingoverip.co.za/tutorials/topic/security-topic-tutorials/configuring-the-console-port-on-a-cisco-device/' rel='bookmark' title='Permanent Link: Configuring the Console port on a Cisco Device'>Configuring the Console port on a Cisco Device</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.anythingoverip.co.za/tutorials/course-content/iscw/configuring-syslog-on-cisco-routers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configuring DHCP on a Cisco router</title>
		<link>http://www.anythingoverip.co.za/tutorials/course-content/ccna/configuring-dhcp-on-a-cisco-router/</link>
		<comments>http://www.anythingoverip.co.za/tutorials/course-content/ccna/configuring-dhcp-on-a-cisco-router/#comments</comments>
		<pubDate>Mon, 20 Jul 2009 08:00:08 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[CCNA (ICND2)]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[Cisco Configuration]]></category>
		<category><![CDATA[IPT]]></category>
		<category><![CDATA[Live Demos]]></category>

		<guid isPermaLink="false">http://www.anythingoverip.co.za/?p=287</guid>
		<description><![CDATA[DHCP (Dynamic Host Configuration Protocol) allows a server (in this scenario a Cisco router) to issue IP addresses to computers on the network dynamically. This is not a great solution for servers, which should have static IP addresses, but for client computers needing access to the network quickly and easily, this is certainly a great [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small;"><span style="font-family: Calibri;">DHCP (Dynamic Host Configuration Protocol) allows a server (in this scenario a Cisco router) to issue <a href="http://www.anythingoverip.co.za/networking-101/what-is-an-ip-address/">IP addresses </a>to computers on the network dynamically. This is not a great solution for servers, which should have static IP addresses, but for client computers needing access to the network quickly and easily, this is certainly a great option.</span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-family: Calibri; font-size: small;"> </span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small;"><span style="font-family: Calibri;">DHCP also removes the administration burden of having to manage all the <a href="http://www.anythingoverip.co.za/networking-101/what-is-an-ip-address/">IP addresses </a>issued to computers statically, and allows for computers to join a network quickly even if the end user has limited knowledge of networking since most computers have a default configuration on the network card and wireless network card to obtain an IP address automatically via DHCP.</span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-family: Calibri; font-size: small;"> </span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small;"><span style="font-family: Calibri;">Configuring DHCP on a Cisco router is a simple task and although the live demo at the end of this article shows some of the more detailed commands, the minimum commands to configure DHCP are:</span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-family: Calibri; font-size: small;"> </span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small;"><span style="font-family: Calibri;"><strong>AOIP.ORG(config)# ip dhcp pool aoip</strong></span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small;"><span style="font-family: Calibri;">{A pool is a collection of IP addresses you wish to issue dynamically, and ‘aoip’ is any name you wish to assign to your DHCP pool}</span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small;"><span style="font-family: Calibri;"><strong>AOIP.ORG(dhcp-config)# network 192.168.2.0 255.255.255.0</strong></span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small;"><span style="font-family: Calibri;">{These are the IP addresses you wish to add to the pool. Instead of using the full <a href="http://www.anythingoverip.co.za/networking-101/class-full-ip-addresses/">SubnetMask</a> value I could have used <a href="http://www.anythingoverip.co.za/networking-101/cidr-classless-inter-domain-routing/">/24 </a>instead}</span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small;"><span style="font-family: Calibri;"><strong>AOIP.ORG(dhcp-config)# default-router 192.168.2.1</strong></span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small;"><span style="font-family: Calibri;">{This is the IP address that will be issued to the client computers to use as their <a href="http://www.anythingoverip.co.za/tutorials/course-content/ccna/default-gateway-of-last-resort/">default gateway</a>, which will be this router}</span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-family: Calibri; font-size: small;"> </span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small;"><span style="font-family: Calibri;">In the live demo below, I have added a few extra commands to the configuration;</span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-family: Calibri; font-size: small;"> </span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small;"><span style="font-family: Calibri;"><strong>AOIP.ORG(dhcp-config)# option 150 ip 192.168.2.10</strong></span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small;"><span style="font-family: Calibri;">{option 150 issues a TFTP address to the clients for use in IP telephony. This would be the IP address of the TFTP server running on a Cisco Unified Communications Manager (CUCM)}</span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small;"><span style="font-family: Calibri;"><strong>AOIP.ORG(dhcp-config)# dns-server 192.168.2.2 192.168.2.3</strong></span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small;"><span style="font-family: Calibri;">{In order to resolve Host names to IP addresses, client computers require the IP addresses of your DNS (Domain Name Service) servers. I have defined two for fault tolerant purposes}</span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small;"><span style="font-family: Calibri;"><strong>AOIP.ORG(dhcp-config)# domain-name AOIP.ORG</strong></span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small;"><span style="font-family: Calibri;">{Issues the domain name to the clients}</span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small;"><span style="font-family: Calibri;"><strong>AOIP.ORG(dhcp-config)# netbios-name-server 192.168.2.4 192.168.2.5</strong></span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small;"><span style="font-family: Calibri;">{If you are using a WINS (Windows Internet Naming Service) server on your network, you can use DHCP to issue the address to the client computers. As with DNS, I have issued 2 addresses for fault tolerant purposes}</span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small;"><span style="font-family: Calibri;"><strong>AOIP.ORG(dhcp-config)# lease 8</strong></span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small;"><span style="font-family: Calibri;">{The default duration that a client computer will be allowed to use the IP address before they have to request another one, is one day. You can use the lease command to change this and in my example I have changed it to 8 days. You can define days, hours and minutes – lease 8 0 0 is 8 days, 0 hours, 0 minutes)</span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small;"><span style="font-family: Calibri;"><strong>AOIP.ORG(dhcp-config)# exit</strong></span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-family: Calibri; font-size: small;"> </span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small;"><span style="font-family: Calibri;"><strong>AOIP.ORG(config)# ip dhcp excluded-address 192.168.2.1 192.168.2.10</strong></span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small;"><span style="font-family: Calibri;">{To prevent DHCP issuing an IP address that is already in use by one of my servers, I have created an exclusion range from 192.168.2.1 – 192.168.2.10. This would result in the first client receiving the IP address 192.168.2.11}</span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-family: Calibri; font-size: small;"> </span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-family: Calibri; font-size: small;"><object type="application/x-shockwave-flash" style="width:630px;height:250px" data="http://www.anythingoverip.co.za/Live_Demos/DHCP.swf"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="quality" value="best" /><param name="wmode" value="transparent" /><param name="movie" value="http://www.anythingoverip.co.za/Live_Demos/DHCP.swf" /><param name="pluginspage" value="http://www.macromedia.com/go/getflashplayer" />If you can see this, then you might need a Flash Player upgrade or you need to install Flash Player if it's missing. Get <a href="http://get.adobe.com/flashplayer/" target="_blank">Flash Player</a> from Adobe.</object><br/>
		<!-- Valid XHTML flash object delivered by XHTML Video Embed. Get it at: http://saltwaterc.net/xhtml-video-embed -->
		</span></p>


<p>Related posts:<ol><li><a href='http://www.anythingoverip.co.za/tutorials/topic/routing-topic-tutorials/configuring-rip-on-a-cisco-router/' rel='bookmark' title='Permanent Link: Configuring RIP on a Cisco Router'>Configuring RIP on a Cisco Router</a></li><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/ccna/configuring-eigrp-on-a-cisco-router/' rel='bookmark' title='Permanent Link: Configuring EIGRP on a Cisco Router'>Configuring EIGRP on a Cisco Router</a></li><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/ccna/configuring-ospf-on-a-cisco-router/' rel='bookmark' title='Permanent Link: Configuring OSPF on a Cisco Router'>Configuring OSPF on a Cisco Router</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.anythingoverip.co.za/tutorials/course-content/ccna/configuring-dhcp-on-a-cisco-router/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>IP Host</title>
		<link>http://www.anythingoverip.co.za/tutorials/course-content/ccna/ip-host/</link>
		<comments>http://www.anythingoverip.co.za/tutorials/course-content/ccna/ip-host/#comments</comments>
		<pubDate>Wed, 15 Jul 2009 06:00:14 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[CCNA (ICND2)]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[Useful Commands]]></category>
		<category><![CDATA[Live Demos]]></category>

		<guid isPermaLink="false">http://www.anythingoverip.co.za/?p=266</guid>
		<description><![CDATA[If you find yourself often connecting to the same devices and are looking a quicker way to telnet to them rather than constantly typing the entire IP address for each one. Or if you have a very large network and find it hard to remember every devices IP address, but you can remember the host [...]]]></description>
			<content:encoded><![CDATA[<p>If you find yourself often connecting to the same devices and are looking a quicker way to telnet to them rather than constantly typing the entire <a href="http://www.anythingoverip.co.za/networking-101/what-is-an-ip-address/">IP address</a> for each one. Or if you have a very large network and find it hard to remember every devices IP address, but you can remember the host name of the router, then the ‘ip host’ command is a saving grace.</p>
<p>Once defined you can now connect to each device on your network via telnet by just using the host name you have defined and linked to an IP address.</p>
<p>Below is a live demo showing the configuration of three routers with the ‘ip host’ command. </p>
<p><object type="application/x-shockwave-flash" style="width:630px;height:250px" data="http://www.anythingoverip.co.za/Live_Demos/ip_host.swf"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="quality" value="best" /><param name="wmode" value="transparent" /><param name="movie" value="http://www.anythingoverip.co.za/Live_Demos/ip_host.swf" /><param name="pluginspage" value="http://www.macromedia.com/go/getflashplayer" />If you can see this, then you might need a Flash Player upgrade or you need to install Flash Player if it's missing. Get <a href="http://get.adobe.com/flashplayer/" target="_blank">Flash Player</a> from Adobe.</object><br/>
		<!-- Valid XHTML flash object delivered by XHTML Video Embed. Get it at: http://saltwaterc.net/xhtml-video-embed -->
		</span></span></p>


<p>Related posts:<ol><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/ccna/ip-domain-lookup/' rel='bookmark' title='Permanent Link: IP Domain-Lookup'>IP Domain-Lookup</a></li><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/ccna/configuring-dhcp-on-a-cisco-router/' rel='bookmark' title='Permanent Link: Configuring DHCP on a Cisco router'>Configuring DHCP on a Cisco router</a></li><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/ccna/configuring-ppp-encapsulation/' rel='bookmark' title='Permanent Link: Configuring PPP Encapsulation'>Configuring PPP Encapsulation</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.anythingoverip.co.za/tutorials/course-content/ccna/ip-host/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IP Domain-Lookup</title>
		<link>http://www.anythingoverip.co.za/tutorials/course-content/ccna/ip-domain-lookup/</link>
		<comments>http://www.anythingoverip.co.za/tutorials/course-content/ccna/ip-domain-lookup/#comments</comments>
		<pubDate>Tue, 14 Jul 2009 06:00:20 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[CCNA (ICND2)]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[Useful Commands]]></category>
		<category><![CDATA[Configuration Basics]]></category>
		<category><![CDATA[Live Demos]]></category>

		<guid isPermaLink="false">http://www.anythingoverip.co.za/?p=261</guid>
		<description><![CDATA[Often when typing commands in a hurry, or just typing incorrect commands, Cisco routers will try to do a lookup to find out if the invalid command is the name of another device you are trying to connect to. This results in the router displaying ‘Translating “the command”&#8230;domain server (255.255.255.255)’ three times and not accepting [...]]]></description>
			<content:encoded><![CDATA[<p>Often when typing commands in a hurry, or just typing incorrect commands, Cisco routers will try to do a lookup to find out if the invalid command is the name of another device you are trying to connect to. This results in the router displaying ‘Translating “<em>the command</em>”&#8230;domain server (255.255.255.255)’ three times and not accepting any more commands until the lookup has completed and failed. </p>
<p>This feature can be disabled quickly and it’s one of the first commands I will put onto a router when first configuring it.</p>
<p>Below is a live demo demonstrating the problem, and the fix with the command ‘no ip domain-lookup’</p>
<p><object type="application/x-shockwave-flash" style="width:630px;height:250px" data="http://www.anythingoverip.co.za/Live_Demos/ip_domain-lookup.swf"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="quality" value="best" /><param name="wmode" value="transparent" /><param name="movie" value="http://www.anythingoverip.co.za/Live_Demos/ip_domain-lookup.swf" /><param name="pluginspage" value="http://www.macromedia.com/go/getflashplayer" />If you can see this, then you might need a Flash Player upgrade or you need to install Flash Player if it's missing. Get <a href="http://get.adobe.com/flashplayer/" target="_blank">Flash Player</a> from Adobe.</object><br/>
		<!-- Valid XHTML flash object delivered by XHTML Video Embed. Get it at: http://saltwaterc.net/xhtml-video-embed -->
		</span></span></p>


<p>Related posts:<ol><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/ccna/the-do-command/' rel='bookmark' title='Permanent Link: The &#8220;do&#8221; command'>The &#8220;do&#8221; command</a></li><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/ccna/configuring-dhcp-on-a-cisco-router/' rel='bookmark' title='Permanent Link: Configuring DHCP on a Cisco router'>Configuring DHCP on a Cisco router</a></li><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/ccna/ip-host/' rel='bookmark' title='Permanent Link: IP Host'>IP Host</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.anythingoverip.co.za/tutorials/course-content/ccna/ip-domain-lookup/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Banner &#8211; Message Of The Day (MOTD)</title>
		<link>http://www.anythingoverip.co.za/tutorials/course-content/ccna/banner-message-of-the-day-motd/</link>
		<comments>http://www.anythingoverip.co.za/tutorials/course-content/ccna/banner-message-of-the-day-motd/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 06:00:46 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[CCENT (ICND1)]]></category>
		<category><![CDATA[CCNA (ICND2)]]></category>
		<category><![CDATA[Maintenance]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[SND]]></category>
		<category><![CDATA[Cisco Configuration]]></category>
		<category><![CDATA[Configuration Basics]]></category>
		<category><![CDATA[Live Demos]]></category>

		<guid isPermaLink="false">http://www.anythingoverip.co.za/?p=136</guid>
		<description><![CDATA[It is advisable that on all your devices in your network, you have a disclaimer or message that appears when someone connects to your device. There have been many cases over the years where a hacker has gained access, been caught, and got away with it since there was nothing in place informing that they [...]]]></description>
			<content:encoded><![CDATA[<p>It is advisable that on all your devices in your network, you have a disclaimer or message that appears when someone connects to your device. There have been many cases over the years where a hacker has gained access, been caught, and got away with it since there was nothing in place informing that they were not welcome on the device.</p>
<p>By NO means, is this a “Welcome” message, this should state your companies access rights policy and who should and should not be allowed to access the device. There are a few option available for configuring a message on a Cisco device all of which fall under the command ‘banner’. In the live demo below I have shown an example of configuring a MOTD (message of the day), that will be displayed when you connect to the router or switch.</p>
<p>From global configuration mode, you can enter the command ‘banner’ if you were to put a <strong>‘?’ </strong>afterwards, you will see all the banner types supported, including ‘motd’. When configuring any banner, you need to select a delimiting character to mark the start and end of the banner. In most cases I recommend using the <strong>‘#’ </strong>symbol. This allows us to enter the command <strong>‘banner motd # &lt;enter&gt;’</strong> which puts us into a banner menu. You can then type or paste any message that you would like to appear, pressing &lt;enter&gt; again will move you to a new line, and the device will only stop gathering you text once you submit another ‘#’ to mark the ending of the message.</p>
<p><object type="application/x-shockwave-flash" style="width:630px;height:250px" data="http://www.anythingoverip.co.za/Live_Demos/banner_motd.swf"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="quality" value="best" /><param name="wmode" value="transparent" /><param name="movie" value="http://www.anythingoverip.co.za/Live_Demos/banner_motd.swf" /><param name="pluginspage" value="http://www.macromedia.com/go/getflashplayer" />If you can see this, then you might need a Flash Player upgrade or you need to install Flash Player if it's missing. Get <a href="http://get.adobe.com/flashplayer/" target="_blank">Flash Player</a> from Adobe.</object><br/>
		<!-- Valid XHTML flash object delivered by XHTML Video Embed. Get it at: http://saltwaterc.net/xhtml-video-embed -->
		</p>


<p>Related posts:<ol><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/ccna/configuring-vty-access/' rel='bookmark' title='Permanent Link: Configuring VTY Access'>Configuring VTY Access</a></li><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/ccna/setting-the-enable-password-and-secret-on-a-cisco-device/' rel='bookmark' title='Permanent Link: Setting the enable password and secret on a Cisco device'>Setting the enable password and secret on a Cisco device</a></li><li><a href='http://www.anythingoverip.co.za/tutorials/topic/management/navigating-a-cisco-device/' rel='bookmark' title='Permanent Link: Navigating a Cisco device'>Navigating a Cisco device</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.anythingoverip.co.za/tutorials/course-content/ccna/banner-message-of-the-day-motd/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using the Pipe &#8216;&#124;&#8217; command</title>
		<link>http://www.anythingoverip.co.za/tutorials/course-content/ccna/using-the-pipe-command/</link>
		<comments>http://www.anythingoverip.co.za/tutorials/course-content/ccna/using-the-pipe-command/#comments</comments>
		<pubDate>Tue, 23 Jun 2009 06:00:10 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[CCNA (ICND2)]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[Useful Commands]]></category>
		<category><![CDATA[Cisco Configuration]]></category>
		<category><![CDATA[Configuration Basics]]></category>
		<category><![CDATA[Live Demos]]></category>

		<guid isPermaLink="false">http://www.anythingoverip.co.za/?p=132</guid>
		<description><![CDATA[Using the Pipe ‘&#124;’ is by far one of the most important things you can learn on a Cisco device. I never really appreciated this command when I started out in Cisco, as it seemed to take me longer to use it, and I didn’t get to see what I was looking for. In hind [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small;"><span style="font-family: Calibri;">Using the Pipe ‘|’ is by far one of the most important things you can learn on a Cisco device. I never really appreciated this command when I started out in Cisco, as it seemed to take me longer to use it, and I didn’t get to see what I was looking for. In hind sight this was because I didn’t know how to use it correctly, and I was working on devices that didn’t have very large configuration files.</span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-family: Calibri; font-size: small;"> </span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small;"><span style="font-family: Calibri;">When I started working on larger scale enterprise networks, I became very frustrated that I could not find what I was looking for quickly. It was only then that I re-looked at this command and it made me far more efficient at my job. I often work on Cisco devices that over 3000 lines of configuration, so doing a standard ‘sh run’ just isn’t an option.</span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-family: Calibri; font-size: small;"> </span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small;"><span style="font-family: Calibri;">The pipe command can be used with any ‘show’ command. In the live demo below, I have demonstrated how it can be used with the ‘show run’ command. In order to use the pipe we need to first look at the syntax required for it and options it supports. The most common values for the pipe are ‘include’ ‘begin’ ‘exclude’. These enable us to use the ‘show’ command and have the device only display lines in the output that include a value, exclude a value, or display everything from the beginning of a value.</span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-family: Calibri; font-size: small;"> </span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small;"><span style="font-family: Calibri;">In the below demo I started by using the ‘sh run | in interface’ I have used the shortened version of the commands so the full command would have been “show running-config | include interface’ This has instructed the device to display only lines in the running-config that have the word ‘interface’</span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-family: Calibri; font-size: small;"> </span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small;"><span style="font-family: Calibri;">My second command is ‘sh run | in serial’ which will show me all lines in the configuration that have the word ‘serial’ in them. You will notice that I have used the same command again, but used ‘sh run | in Serial’ with a uppercase ‘S’ to illustrate that the command is case SeNsItIvE and you will notice the results are very different.</span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-family: Calibri; font-size: small;"> </span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small;"><span style="font-family: Calibri;">Lastly, I have demonstrated the ‘exclude’ command by issuing ‘sh run | ex interface’ to the device, and you will notice the entire running-config was displayed but every line that had the word ‘interface’ has been removed. </span></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"> </p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt;"><span style="font-size: small;"><span style="font-family: Calibri;"><object type="application/x-shockwave-flash" style="width:630px;height:250px" data="http://www.anythingoverip.co.za/Live_Demos/show_with_pipe.swf"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="quality" value="best" /><param name="wmode" value="transparent" /><param name="movie" value="http://www.anythingoverip.co.za/Live_Demos/show_with_pipe.swf" /><param name="pluginspage" value="http://www.macromedia.com/go/getflashplayer" />If you can see this, then you might need a Flash Player upgrade or you need to install Flash Player if it's missing. Get <a href="http://get.adobe.com/flashplayer/" target="_blank">Flash Player</a> from Adobe.</object><br/>
		<!-- Valid XHTML flash object delivered by XHTML Video Embed. Get it at: http://saltwaterc.net/xhtml-video-embed -->
		</span></span></p>


<p>Related posts:<ol><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/ccna/the-do-command/' rel='bookmark' title='Permanent Link: The &#8220;do&#8221; command'>The &#8220;do&#8221; command</a></li><li><a href='http://www.anythingoverip.co.za/tutorials/topic/maintenance-topic-tutorials/interface-status/' rel='bookmark' title='Permanent Link: Interface Status'>Interface Status</a></li><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/ccna/configuring-an-ip-address-on-a-cisco-device/' rel='bookmark' title='Permanent Link: Configuring an IP address on a Cisco Device'>Configuring an IP address on a Cisco Device</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.anythingoverip.co.za/tutorials/course-content/ccna/using-the-pipe-command/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The &#8220;do&#8221; command</title>
		<link>http://www.anythingoverip.co.za/tutorials/course-content/ccna/the-do-command/</link>
		<comments>http://www.anythingoverip.co.za/tutorials/course-content/ccna/the-do-command/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 06:00:06 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[CCNA (ICND2)]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[Useful Commands]]></category>
		<category><![CDATA[Cisco Configuration]]></category>
		<category><![CDATA[Configuration Basics]]></category>
		<category><![CDATA[Live Demos]]></category>

		<guid isPermaLink="false">http://www.anythingoverip.co.za/?p=128</guid>
		<description><![CDATA[One of the most annoying things I kept doing when I started out in Cisco, was constantly typing ‘show’ commands when in the wrong level of the configuration. By default, Cisco only allows you to do a ‘show’ command when you are in privileged mode (AOIP.ORG#). This can be frustrating when you are multiple levels [...]]]></description>
			<content:encoded><![CDATA[<p>One of the most annoying things I kept doing when I started out in Cisco, was constantly typing ‘show’ commands when in the wrong level of the configuration.</p>
<p>By default, Cisco only allows you to do a ‘show’ command when you are in privileged mode (AOIP.ORG#). This can be frustrating when you are multiple levels deep and just want to see something quickly and don’t want to exit all the way back to the first level to use the ‘show’ command and then get back to the level you were in. Luckily, Cisco introduced the ‘do’ command which can be run from any level of the command line.</p>
<p>For example, if I have just <a href="http://www.anythingoverip.co.za/tutorials/course-content/ccna/configuring-an-ip-address-on-a-cisco-device/">configured an IP address on an interface</a> and no shut the interface, the router would not allow me to type “<a href="http://www.anythingoverip.co.za/tutorials/topic/maintenance-topic-tutorials/interface-status/">show ip interface brief</a>” from the interface level, however from the interface level I would be able to type “do show ip interface brief”. This would allow me to remain in interface level, have a quick look to see if my interface has gone “up up” and continue with my configuration.</p>
<p>Below is a live demo of trying to do the “show run” command from global configuration mode. You will see I receive an error when trying to use the ‘show’ command from this level, but with ‘do show run’ the command works.</p>
<p><object type="application/x-shockwave-flash" style="width:630px;height:250px" data="http://www.anythingoverip.co.za/Live_Demos/do_command.swf"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="quality" value="best" /><param name="wmode" value="transparent" /><param name="movie" value="http://www.anythingoverip.co.za/Live_Demos/do_command.swf" /><param name="pluginspage" value="http://www.macromedia.com/go/getflashplayer" />If you can see this, then you might need a Flash Player upgrade or you need to install Flash Player if it's missing. Get <a href="http://get.adobe.com/flashplayer/" target="_blank">Flash Player</a> from Adobe.</object><br/>
		<!-- Valid XHTML flash object delivered by XHTML Video Embed. Get it at: http://saltwaterc.net/xhtml-video-embed -->
		</p>


<p>Related posts:<ol><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/ccna/using-the-pipe-command/' rel='bookmark' title='Permanent Link: Using the Pipe &#8216;|&#8217; command'>Using the Pipe &#8216;|&#8217; command</a></li><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/ccna/configuring-an-ip-address-on-a-cisco-device/' rel='bookmark' title='Permanent Link: Configuring an IP address on a Cisco Device'>Configuring an IP address on a Cisco Device</a></li><li><a href='http://www.anythingoverip.co.za/tutorials/topic/management/navigating-a-cisco-device/' rel='bookmark' title='Permanent Link: Navigating a Cisco device'>Navigating a Cisco device</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.anythingoverip.co.za/tutorials/course-content/ccna/the-do-command/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configuring VTY Access</title>
		<link>http://www.anythingoverip.co.za/tutorials/course-content/ccna/configuring-vty-access/</link>
		<comments>http://www.anythingoverip.co.za/tutorials/course-content/ccna/configuring-vty-access/#comments</comments>
		<pubDate>Wed, 17 Jun 2009 06:00:07 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[CCENT (ICND1)]]></category>
		<category><![CDATA[CCNA (ICND2)]]></category>
		<category><![CDATA[Maintenance]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[SND]]></category>
		<category><![CDATA[Cisco Configuration]]></category>
		<category><![CDATA[Configuration Basics]]></category>
		<category><![CDATA[Live Demos]]></category>

		<guid isPermaLink="false">http://www.anythingoverip.co.za/?p=99</guid>
		<description><![CDATA[VTY (Virtual Terminal Lines) are used when you wish to telnet into a router remotely. In order for the router to allow telnet connections, the VTY lines need to be configured with a password, which is not a default setting. If you were to try connect to a router with telnet and the VTY password [...]]]></description>
			<content:encoded><![CDATA[<p>VTY (Virtual Terminal Lines) are used when you wish to telnet into a router remotely. In order for the router to allow telnet connections, the VTY lines need to be configured with a password, which is not a default setting. If you were to try connect to a router with telnet and the VTY password had not been configured, you would receive the following error message &#8220;Password required, but none set&#8221;</p>
<p>The router by default does not care which physical interface your telnet session is coming from, and hence the Telnet lines are Virtual.</p>
<p>A Router by default has 5 VTY lines, numbered from 0-4. We are able to configure a different password on each line, however the router randomly selects one of the VTY lines for use when a telnet session is initiated, because of this random selection, it makes no sense to have different password on each VTY, so when configuring the lines, we will choose the same password for all 5 lines.</p>
<p>To configure the VTY lines, we need to be in <a href="http://www.anythingoverip.co.za/tutorials/course-content/ccna/navigating-a-cisco-device/">Global Configuration </a>mode, then type the command &#8216;line vty 0 4&#8242; &#8211; this tells the router we wish to connect to the VTY lines, from 0 &#8211; 4 (all 5 at the same time). We then can issue the &#8216;password <em>password&#8217; </em>to set the password on the lines.  We then need to issue the <a href="http://www.anythingoverip.co.za/tutorials/course-content/snd/login-local-on-a-cisco-router/">&#8216;login&#8217;</a> command which informs the router to do password checking when someone tries to telnet into the router. Lastly, don&#8217;t forget to <a href="http://www.anythingoverip.co.za/tutorials/course-content/ccna/the-difference-between-run-and-start-and-how-to-save/">save your config</a>.</p>
<p>Below is the live demonstration video on how to configure the VTY passwords.</p>
<p><object type="application/x-shockwave-flash" style="width:630px;height:250px" data="http://www.anythingoverip.co.za/Live_Demos/vty_configuration.swf"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="quality" value="best" /><param name="wmode" value="transparent" /><param name="movie" value="http://www.anythingoverip.co.za/Live_Demos/vty_configuration.swf" /><param name="pluginspage" value="http://www.macromedia.com/go/getflashplayer" />If you can see this, then you might need a Flash Player upgrade or you need to install Flash Player if it's missing. Get <a href="http://get.adobe.com/flashplayer/" target="_blank">Flash Player</a> from Adobe.</object><br/>
		<!-- Valid XHTML flash object delivered by XHTML Video Embed. Get it at: http://saltwaterc.net/xhtml-video-embed -->
		</p>


<p>Related posts:<ol><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/ccna/restricting-access-to-vty-virtual-terminal-lines/' rel='bookmark' title='Permanent Link: Restricting access to VTY (Virtual Terminal Lines)'>Restricting access to VTY (Virtual Terminal Lines)</a></li><li><a href='http://www.anythingoverip.co.za/tutorials/topic/security-topic-tutorials/configuring-the-console-port-on-a-cisco-device/' rel='bookmark' title='Permanent Link: Configuring the Console port on a Cisco Device'>Configuring the Console port on a Cisco Device</a></li><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/ccna/setting-the-enable-password-and-secret-on-a-cisco-device/' rel='bookmark' title='Permanent Link: Setting the enable password and secret on a Cisco device'>Setting the enable password and secret on a Cisco device</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.anythingoverip.co.za/tutorials/course-content/ccna/configuring-vty-access/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Useable IP addresses in private networks</title>
		<link>http://www.anythingoverip.co.za/networking-101/useable-ip-addresses-in-private-networks/</link>
		<comments>http://www.anythingoverip.co.za/networking-101/useable-ip-addresses-in-private-networks/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 06:00:37 +0000</pubDate>
		<dc:creator>Jay</dc:creator>
				<category><![CDATA[CCENT (ICND1)]]></category>
		<category><![CDATA[Maintenance]]></category>
		<category><![CDATA[Management]]></category>
		<category><![CDATA[Networking 101]]></category>
		<category><![CDATA[IP Addresses]]></category>

		<guid isPermaLink="false">http://www.anythingoverip.co.za/?p=74</guid>
		<description><![CDATA[I&#8217;m sure you can imagine that trying to administer an IP address for every single person on the internet would be near impossible. Added to the fact that companies don&#8217;t want every computer in their network to be accessible on the internet for security reasons. The Internic and IANA (the two governing bodies for IP [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m sure you can imagine that trying to administer an <a href="http://www.anythingoverip.co.za/networking-101/what-is-an-ip-address/">IP address </a>for every single person on the internet would be near impossible. Added to the fact that companies don&#8217;t want every computer in their network to be accessible on the internet for security reasons. The Internic and IANA (the two governing bodies for <a href="http://www.anythingoverip.co.za/networking-101/what-is-an-ip-address/">IP addresses </a>and <a href="http://www.anythingoverip.co.za/networking-101/ports-and-their-use/">Port numbers</a>), had to come up with a way for everyone to be able to choose their own IP address for private use. The IP addresses we are going to be discussing here fall part of RFC 1918 (The Request For Comment that resulted in the industry standard).</p>
<p> </p>
<p>Class A</p>
<p>10.0.0.1 &#8211; 10.255.255.254</p>
<p> </p>
<p>Class B</p>
<p>172.16.0.1 &#8211; 172.31.255.254</p>
<p> </p>
<p>Class C</p>
<p>192.168.0.1 &#8211; 192.168.255.254</p>
<p> </p>
<p>The <a href="http://www.anythingoverip.co.za/networking-101/what-is-an-ip-address/">IP addresses </a>above are allowed to be used inside your private networks, whether this for home use or company use, may NOT appear on the internet. Since everyone on the planet uses the above guidelines, you can imagine that more than one person has the IP address 10.0.0.1, and if this was to &#8216;appear&#8217; on the internet, there would be multiple conflicts.</p>
<p> </p>
<p>For example, at my house I am using the <a href="http://www.anythingoverip.co.za/networking-101/what-is-an-ip-address/">IP address</a> range of 10.0.0.1 &#8211; 10.0.0.254 for all my computers and networking devices. However in order for me to surf the web from my house, something has to translate my internal IP addresses, to a single Public IP address (that my Internet Service Provider gives me). This process is known as NAT (Network Address Translation) and is usually performed by a Router, in my case it&#8217;s my ADSL router that connects to my phone line. The other major advantage of running this system, is that my house only uses one public <a href="http://www.anythingoverip.co.za/networking-101/what-is-an-ip-address/">IP address</a>, even though I may have hundreds or thousands of devices that use internal IP addresses. If you think about this from a company perspective, which might have tens of thousands of devices with internal IP addresses, they only need one IP address for internet access, and hence the ISP&#8217;s only have to issue and administer a single IP address for a large organisation.</p>


<p>Related posts:<ol><li><a href='http://www.anythingoverip.co.za/tutorials/course-content/ccna/nat-network-address-translation/' rel='bookmark' title='Permanent Link: NAT (Network Address Translation)'>NAT (Network Address Translation)</a></li><li><a href='http://www.anythingoverip.co.za/networking-101/class-full-ip-addresses/' rel='bookmark' title='Permanent Link: Class-full IP Addresses'>Class-full IP Addresses</a></li><li><a href='http://www.anythingoverip.co.za/networking-101/what-is-an-ip-address/' rel='bookmark' title='Permanent Link: What is an IP address'>What is an IP address</a></li></ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.anythingoverip.co.za/networking-101/useable-ip-addresses-in-private-networks/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

