<?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>IronTech Solutions Tech Blog &#187; cisco ios</title>
	<atom:link href="http://blog.irontechsolutions.com/category/cisco-ios/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.irontechsolutions.com</link>
	<description>Interesting issues and fixes we come across in the IT World</description>
	<lastBuildDate>Sat, 04 Sep 2010 10:51:43 +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>Basic Cisco Configuration</title>
		<link>http://blog.irontechsolutions.com/2008/12/29/basic-cisco-configuration/</link>
		<comments>http://blog.irontechsolutions.com/2008/12/29/basic-cisco-configuration/#comments</comments>
		<pubDate>Mon, 29 Dec 2008 14:05:00 +0000</pubDate>
		<dc:creator>IronTech</dc:creator>
				<category><![CDATA[cisco basic configuration]]></category>
		<category><![CDATA[cisco ios]]></category>
		<category><![CDATA[cisco script]]></category>

		<guid isPermaLink="false">http://www.irontechsolutions.com/blog/2008/12/29/basic-cisco-configuration/</guid>
		<description><![CDATA[Here is a simple script I wrote to configure a Cisco router.  First the header of my script:
##CISCO SCRIPT#### This script assumes you are in enable mode and ready to configure the router
##Lets configure the interfaces
Now configure terminal by entering these commands:
configure terminalinterface gig 0/0description Lanip address 10.0.0.1 255.255.255.0ip nat insideno shutdownexit
Conf T
interface gig [...]]]></description>
			<content:encoded><![CDATA[<p>Here is a simple script I wrote to configure a Cisco router.  First the header of my script:</p>
<blockquote><p>##CISCO SCRIPT#### This script assumes you are in enable mode and ready to configure the router</p>
<p>##Lets configure the interfaces</p></blockquote>
<p>Now configure terminal by entering these commands:</p>
<blockquote><p>configure terminal<br />interface gig 0/0<br />description Lan<br />ip address 10.0.0.1 255.255.255.0<br />ip nat inside<br />no shutdown<br />exit</p>
<p>Conf T</p>
<p>interface gig 0/1<br />description Wan<br />ip address x.x.x.x x.x.x.x<br />ip nat outside<br />no shutdown<br />exit</p>
<p>## We need a default route (the x&#8217;s should be your default gateway)<br />Conf T</p>
<p>ip route 0.0.0.0 0.0.0.0 x.x.x.x</p>
<p>##now we need to setup the nat list for the internet</p>
<p>ip nat inside source list NAT interface gig 0/1 overload</p>
<p>##and of course we cant do anything without an access list to let traffic pass</p>
<p>ip access-list ext NATpermit ip 10.0.0.0 0.0.0.255 any</p></blockquote>
<p>And that is a basic configuration, of course you will probably need to forward some ports so just copy and paste this line, if you need to change the port just edit the port number in the line</p>
<blockquote><p>conf t<br />ip nat inside source static tcp 10.0.0.1 25 60.10.10.10 25 extendable</p></blockquote>
<p>and thats all folks, please email us if you need any help on setting these routers up. IronTech Solutions is happy to try to solve any issue we can. My next post will cover some more advanced configurations and if there is anything you would like to know you can email us with those questions.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.irontechsolutions.com/2008/12/29/basic-cisco-configuration/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
