<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Adding a Route &#8211; Cisco router</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/adding-a-route/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers/adding-a-route/</link>
	<description></description>
	<lastBuildDate>Wed, 19 Jun 2013 08:25:58 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: Chadwick Sybert</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/adding-a-route/#comment-73407</link>
		<dc:creator>Chadwick Sybert</dc:creator>
		<pubDate>Thu, 04 Feb 2010 16:24:06 +0000</pubDate>
		<guid isPermaLink="false">#comment-73407</guid>
		<description><![CDATA[This is always helpful]]></description>
		<content:encoded><![CDATA[<p>This is always helpful</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: blankreg</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/adding-a-route/#comment-68330</link>
		<dc:creator>blankreg</dc:creator>
		<pubDate>Thu, 24 Sep 2009 16:14:18 +0000</pubDate>
		<guid isPermaLink="false">#comment-68330</guid>
		<description><![CDATA[Hi,

Access-lists are not just used on interfaces for filtering traffic. They are used to define traffic that will be processed in a certain way. In this configuration is is used to define the IP addresses that we will NAT when sending traffic out to the Internet.

It is used in the line 

&lt;b&gt;ip nat inside source list 100 interface FastEthernet0/1 overload&lt;/b&gt;

This allows all your LAN traffic to use the Internet, and the source address is translated to the IP address of the FastEthernet0/1 interface, which is the IP address you get from the Internet Service Provider.]]></description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Access-lists are not just used on interfaces for filtering traffic. They are used to define traffic that will be processed in a certain way. In this configuration is is used to define the IP addresses that we will NAT when sending traffic out to the Internet.</p>
<p>It is used in the line </p>
<p><b>ip nat inside source list 100 interface FastEthernet0/1 overload</b></p>
<p>This allows all your LAN traffic to use the Internet, and the source address is translated to the IP address of the FastEthernet0/1 interface, which is the IP address you get from the Internet Service Provider.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kwt712</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/adding-a-route/#comment-68285</link>
		<dc:creator>kwt712</dc:creator>
		<pubDate>Wed, 23 Sep 2009 16:23:28 +0000</pubDate>
		<guid isPermaLink="false">#comment-68285</guid>
		<description><![CDATA[Hi Reg,

I have a question about the router command you helped me with 

!
access-list 100 permit ip 192.168.16.0 0.0.0.255 any
!

Why do i need to have this access list if it there is no interface attach to it ... can you help me with this.

thanks]]></description>
		<content:encoded><![CDATA[<p>Hi Reg,</p>
<p>I have a question about the router command you helped me with </p>
<p>!<br />
access-list 100 permit ip 192.168.16.0 0.0.0.255 any<br />
!</p>
<p>Why do i need to have this access list if it there is no interface attach to it &#8230; can you help me with this.</p>
<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: blankreg</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/adding-a-route/#comment-64906</link>
		<dc:creator>blankreg</dc:creator>
		<pubDate>Sat, 27 Jun 2009 23:56:57 +0000</pubDate>
		<guid isPermaLink="false">#comment-64906</guid>
		<description><![CDATA[For the firewall, I would recommend an ASA5505, especially as you are already a bit familiar with this range. It configures exactly like the 5510 you already have. If you need help with the config, as always - ask :-)

To harden the router you can try the following. I presume that the other site uses 192.168.14.0 so I added this to access list 1 to allow you to manage this router from there. If it is not right, or there are other subnets, add them to access list 1 in the same way as these others.

To harden the router you can try the following.

&lt;b&gt;!
service tcp-keepalive-in
service tcp-keepalive-out
no ip source-route
no http server
!
access-list 1 permit 192.168.14.0 0.0.0.255
access-list 1 permit 192.168.15.0 0.0.0.255
access-list 1 permit 192.168.16.0 0.0.0.255
!
line vty 0 15
access-class 1 in
!
ip access-list extended Internet-In
deny ip any 192.168.0.0 0.0.255.255
deny ip 192.168.0.0 0.0.255.255 any
permit icmp any any echo-reply
deny icmp any any
permit ip any any 
!
interface FastEthernet0/1
ip access-group Internet-In in
!&lt;/b&gt;

Now the above are no substitute for a firewall, but may help to mitigate some types of attack. They are probably good practice, and should not stop any legitimate traffic, but may prevent some unwanted stuff from the Internet. Of course, if you suddenly find things don&#039;t work, undo the commands, by either adding &#039;no&#039; or removing the &#039;no&#039; if it has one already !

I hope this helps.]]></description>
		<content:encoded><![CDATA[<p>For the firewall, I would recommend an ASA5505, especially as you are already a bit familiar with this range. It configures exactly like the 5510 you already have. If you need help with the config, as always &#8211; ask <img src='http://itknowledgeexchange.techtarget.com/itanswers/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>To harden the router you can try the following. I presume that the other site uses 192.168.14.0 so I added this to access list 1 to allow you to manage this router from there. If it is not right, or there are other subnets, add them to access list 1 in the same way as these others.</p>
<p>To harden the router you can try the following.</p>
<p><b>!<br />
service tcp-keepalive-in<br />
service tcp-keepalive-out<br />
no ip source-route<br />
no http server<br />
!<br />
access-list 1 permit 192.168.14.0 0.0.0.255<br />
access-list 1 permit 192.168.15.0 0.0.0.255<br />
access-list 1 permit 192.168.16.0 0.0.0.255<br />
!<br />
line vty 0 15<br />
access-class 1 in<br />
!<br />
ip access-list extended Internet-In<br />
deny ip any 192.168.0.0 0.0.255.255<br />
deny ip 192.168.0.0 0.0.255.255 any<br />
permit icmp any any echo-reply<br />
deny icmp any any<br />
permit ip any any<br />
!<br />
interface FastEthernet0/1<br />
ip access-group Internet-In in<br />
!</b></p>
<p>Now the above are no substitute for a firewall, but may help to mitigate some types of attack. They are probably good practice, and should not stop any legitimate traffic, but may prevent some unwanted stuff from the Internet. Of course, if you suddenly find things don&#8217;t work, undo the commands, by either adding &#8216;no&#8217; or removing the &#8216;no&#8217; if it has one already !</p>
<p>I hope this helps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kwt712</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/adding-a-route/#comment-64838</link>
		<dc:creator>kwt712</dc:creator>
		<pubDate>Fri, 26 Jun 2009 00:19:17 +0000</pubDate>
		<guid isPermaLink="false">#comment-64838</guid>
		<description><![CDATA[Hi ... i iam attaching the current configuration on Cisco 1841 router. Can you tell me where i need to add the lines to make it more protected. Also, i do use ASA5510 Firewall at the main office, not sure if that would help. I am looking to put a small firewall to protect the Remote site that you help me with the Cable Modem, any suggestion would be greatly appreciated.

Here is what i have on the Cisco1841 Router
sh conf
Using 1440 out of 196600 bytes
!
version 12.4
service timestamps debug datetime msec
service timestamps log datetime msec
service password-encryption
!
hostname xxxxxx1841
!
boot-start-marker
boot-end-marker
!
logging buffered 51200 warnings
enable secret 
!
no aaa new-model
!
resource policy
!
clock timezone 
mmi polling-interval 60
no mmi auto-configure
no mmi pvc
mmi snmp-timeout 180
ip subnet-zero
ip cef
!
no ip dhcp use vrf connected
!
no ip domain lookup
ip domain name xxxx
!
interface FastEthernet0/0
 description xxxx Ave LAN
 ip address 192.168.16.1 255.255.255.0
 ip nat inside
 duplex auto
 speed auto
!
interface FastEthernet0/1
 description ** Link to Cable Modem **
 ip address dhcp
 ip nat outside
 duplex auto
 speed auto
!
interface Serial0/0/0
 description T1 to xxxx_host
 ip address 192.168.15.2 255.255.255.0
!
router eigrp 10
 network 192.168.15.0
 network 192.168.16.0
 no auto-summary
!
ip classless
!
ip http server
ip http authentication local
ip http timeout-policy idle 5 life 86400 requests 10000
ip nat inside source list 100 interface FastEthernet0/1 overload
!
access-list 100 permit ip 192.168.16.0 0.0.0.255 any
!
control-plane
!
line con 0
 exec-timeout 5 0
 password 
 login
line aux 0
line vty 0 4
 password 
 login
 transport input telnet
line vty 5 15
 password 
 login
 transport input telnet
!
end]]></description>
		<content:encoded><![CDATA[<p>Hi &#8230; i iam attaching the current configuration on Cisco 1841 router. Can you tell me where i need to add the lines to make it more protected. Also, i do use ASA5510 Firewall at the main office, not sure if that would help. I am looking to put a small firewall to protect the Remote site that you help me with the Cable Modem, any suggestion would be greatly appreciated.</p>
<p>Here is what i have on the Cisco1841 Router<br />
sh conf<br />
Using 1440 out of 196600 bytes<br />
!<br />
version 12.4<br />
service timestamps debug datetime msec<br />
service timestamps log datetime msec<br />
service password-encryption<br />
!<br />
hostname xxxxxx1841<br />
!<br />
boot-start-marker<br />
boot-end-marker<br />
!<br />
logging buffered 51200 warnings<br />
enable secret<br />
!<br />
no aaa new-model<br />
!<br />
resource policy<br />
!<br />
clock timezone<br />
mmi polling-interval 60<br />
no mmi auto-configure<br />
no mmi pvc<br />
mmi snmp-timeout 180<br />
ip subnet-zero<br />
ip cef<br />
!<br />
no ip dhcp use vrf connected<br />
!<br />
no ip domain lookup<br />
ip domain name xxxx<br />
!<br />
interface FastEthernet0/0<br />
 description xxxx Ave LAN<br />
 ip address 192.168.16.1 255.255.255.0<br />
 ip nat inside<br />
 duplex auto<br />
 speed auto<br />
!<br />
interface FastEthernet0/1<br />
 description ** Link to Cable Modem **<br />
 ip address dhcp<br />
 ip nat outside<br />
 duplex auto<br />
 speed auto<br />
!<br />
interface Serial0/0/0<br />
 description T1 to xxxx_host<br />
 ip address 192.168.15.2 255.255.255.0<br />
!<br />
router eigrp 10<br />
 network 192.168.15.0<br />
 network 192.168.16.0<br />
 no auto-summary<br />
!<br />
ip classless<br />
!<br />
ip http server<br />
ip http authentication local<br />
ip http timeout-policy idle 5 life 86400 requests 10000<br />
ip nat inside source list 100 interface FastEthernet0/1 overload<br />
!<br />
access-list 100 permit ip 192.168.16.0 0.0.0.255 any<br />
!<br />
control-plane<br />
!<br />
line con 0<br />
 exec-timeout 5 0<br />
 password<br />
 login<br />
line aux 0<br />
line vty 0 4<br />
 password<br />
 login<br />
 transport input telnet<br />
line vty 5 15<br />
 password<br />
 login<br />
 transport input telnet<br />
!<br />
end</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: blankreg</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/adding-a-route/#comment-64834</link>
		<dc:creator>blankreg</dc:creator>
		<pubDate>Thu, 25 Jun 2009 22:24:46 +0000</pubDate>
		<guid isPermaLink="false">#comment-64834</guid>
		<description><![CDATA[Forgot one other thing to do (and probably forgot others as well, but if they come to mind, I will post them), which is that you should turn off the webserver on the router. Use the command line if you need to make changes, and that is sort of protected by the commands in my previous post. I presume you have set an &#039;enable secret&#039; password already ?

Do the command

&lt;b&gt;no ip http server&lt;/b&gt;

Don&#039;t for get to save the config with a &#039;wr&#039; command. You can also remove the config you posted so we could work on this issue !]]></description>
		<content:encoded><![CDATA[<p>Forgot one other thing to do (and probably forgot others as well, but if they come to mind, I will post them), which is that you should turn off the webserver on the router. Use the command line if you need to make changes, and that is sort of protected by the commands in my previous post. I presume you have set an &#8216;enable secret&#8217; password already ?</p>
<p>Do the command</p>
<p><b>no ip http server</b></p>
<p>Don&#8217;t for get to save the config with a &#8216;wr&#8217; command. You can also remove the config you posted so we could work on this issue !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: blankreg</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/adding-a-route/#comment-64833</link>
		<dc:creator>blankreg</dc:creator>
		<pubDate>Thu, 25 Jun 2009 22:16:26 +0000</pubDate>
		<guid isPermaLink="false">#comment-64833</guid>
		<description><![CDATA[Glad we got it working :-)

You may want to change the IOS for the firewall version, although I think for about the same cost you can buy a ASA5505 which is a &#039;real&#039; firewall ! Probably worth checking the prices local to you. There are other firewalls, and some do say that they do virus checks on the data passing through, how true that is I am not sure. Most will do a reasonable job, but one of the advantages of using NAT is that it hides your network from the Internet, as the router cannot allow connections to initiate from the Internet in, only from your network out.

You must make sure that all of the PCs have up to date virus checking software on them, and are running a personal firewall. 

One thing you must also do is protect the router from login attempts from the Internet. You didn&#039;t copy that part of the config, so I am not sure if this is in place already. You need to create an access list to only allow your local networks, and apply it as an access-class to the virtual terminal lines that are used for telnet.

&lt;b&gt;access-list 1 permit 192.168.15.0 0.0.0.255
access-list 1 permit 192.168.16.0 0.0.0.255

line vty 0 4
access-class 1 in&lt;/b&gt;

That should give some food for thought. The main vulnerability are the PCs, if those have virus check, and the usual firewall, you are fairly well protected already. More layers of protection are good, as any attack has to overcome each one, and thereby lessens the possibility.

If you have any more questions on this, please again feel free to ask, either here or in a new question.

Best Regards,

Reg]]></description>
		<content:encoded><![CDATA[<p>Glad we got it working <img src='http://itknowledgeexchange.techtarget.com/itanswers/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<p>You may want to change the IOS for the firewall version, although I think for about the same cost you can buy a ASA5505 which is a &#8216;real&#8217; firewall ! Probably worth checking the prices local to you. There are other firewalls, and some do say that they do virus checks on the data passing through, how true that is I am not sure. Most will do a reasonable job, but one of the advantages of using NAT is that it hides your network from the Internet, as the router cannot allow connections to initiate from the Internet in, only from your network out.</p>
<p>You must make sure that all of the PCs have up to date virus checking software on them, and are running a personal firewall. </p>
<p>One thing you must also do is protect the router from login attempts from the Internet. You didn&#8217;t copy that part of the config, so I am not sure if this is in place already. You need to create an access list to only allow your local networks, and apply it as an access-class to the virtual terminal lines that are used for telnet.</p>
<p><b>access-list 1 permit 192.168.15.0 0.0.0.255<br />
access-list 1 permit 192.168.16.0 0.0.0.255</p>
<p>line vty 0 4<br />
access-class 1 in</b></p>
<p>That should give some food for thought. The main vulnerability are the PCs, if those have virus check, and the usual firewall, you are fairly well protected already. More layers of protection are good, as any attack has to overcome each one, and thereby lessens the possibility.</p>
<p>If you have any more questions on this, please again feel free to ask, either here or in a new question.</p>
<p>Best Regards,</p>
<p>Reg</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kwt712</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/adding-a-route/#comment-64815</link>
		<dc:creator>kwt712</dc:creator>
		<pubDate>Thu, 25 Jun 2009 18:28:35 +0000</pubDate>
		<guid isPermaLink="false">#comment-64815</guid>
		<description><![CDATA[Hi,

You are a life savr. I did add the command you gave me and i didn&#039;t have to add an ip route. It works great. The only concern i have is that internet is not firewalled. Do you recommend anything on that i can use to make sure that group don&#039;t bring down anything unusual from the web.

Thanks a million, you are a GENIUS.]]></description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>You are a life savr. I did add the command you gave me and i didn&#8217;t have to add an ip route. It works great. The only concern i have is that internet is not firewalled. Do you recommend anything on that i can use to make sure that group don&#8217;t bring down anything unusual from the web.</p>
<p>Thanks a million, you are a GENIUS.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: blankreg</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/adding-a-route/#comment-64814</link>
		<dc:creator>blankreg</dc:creator>
		<pubDate>Thu, 25 Jun 2009 18:23:35 +0000</pubDate>
		<guid isPermaLink="false">#comment-64814</guid>
		<description><![CDATA[Sorry for not making it clear. 

The commands above are in addition to those already there. Just add these and the nat will work. You still need the IP address command and the descripton, speed and duplex for the interface to work correctly, but you don&#039;t need to do anything to keep these.

I hope that is clearer ?]]></description>
		<content:encoded><![CDATA[<p>Sorry for not making it clear. </p>
<p>The commands above are in addition to those already there. Just add these and the nat will work. You still need the IP address command and the descripton, speed and duplex for the interface to work correctly, but you don&#8217;t need to do anything to keep these.</p>
<p>I hope that is clearer ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kwt712</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/adding-a-route/#comment-64801</link>
		<dc:creator>kwt712</dc:creator>
		<pubDate>Thu, 25 Jun 2009 16:43:17 +0000</pubDate>
		<guid isPermaLink="false">#comment-64801</guid>
		<description><![CDATA[Hi, thank you for giving me the configuration. I have the following already for FastEthernet 0/0

description abc
ip address 192.168.16.x 255.255.255.0
duplex auto
speed auto

you mention to add this
interface FastEsthernet 0/0
ip nat inside

so i don&#039;t need the ip address 192.168.16.x 255.255.255.0 anymore. please confirm

thanks]]></description>
		<content:encoded><![CDATA[<p>Hi, thank you for giving me the configuration. I have the following already for FastEthernet 0/0</p>
<p>description abc<br />
ip address 192.168.16.x 255.255.255.0<br />
duplex auto<br />
speed auto</p>
<p>you mention to add this<br />
interface FastEsthernet 0/0<br />
ip nat inside</p>
<p>so i don&#8217;t need the ip address 192.168.16.x 255.255.255.0 anymore. please confirm</p>
<p>thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 5/8 queries in 0.024 seconds using memcached
Object Caching 403/404 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-06-19 08:52:13 -->