<?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: Configure Multiple IP Address on a Cisco Router Interface</title>
	<atom:link href="http://www.itsyourip.com/cisco/configure-multiple-ip-address-on-a-cisco-router-interface/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.itsyourip.com/cisco/configure-multiple-ip-address-on-a-cisco-router-interface/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=configure-multiple-ip-address-on-a-cisco-router-interface</link>
	<description>Your gateway to Internet</description>
	<lastBuildDate>Wed, 18 Jan 2012 17:46:14 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Jesse Smith</title>
		<link>http://www.itsyourip.com/cisco/configure-multiple-ip-address-on-a-cisco-router-interface/comment-page-1/#comment-2851</link>
		<dc:creator>Jesse Smith</dc:creator>
		<pubDate>Wed, 27 Jul 2011 16:23:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.itsyourip.com/cisco/configure-multiple-ip-address-on-a-cisco-router-interface/#comment-2851</guid>
		<description>the effect is that you can have the router accessible by multiple subsets.  should not change much at all.  

if u are trying to trace using the secondary i beleave you need to change the routing table to match the secondary network number.  something like 

ciscorouter# conf t
ciscorouter(config)# int fa0/1 
ciscorouter(config-if)# ip address 192.168.1.1 255.255.255.0
ciscorouter(config-if)# ip address 192.168.2.1 255.255.255.0 sec
ciscorouter(config-if)# exit
ciscorouter(config)# ip route 192.168.2.0 255.255.255.0 192.168.1.1

that should forward traffic properly</description>
		<content:encoded><![CDATA[<p>the effect is that you can have the router accessible by multiple subsets.  should not change much at all.  </p>
<p>if u are trying to trace using the secondary i beleave you need to change the routing table to match the secondary network number.  something like </p>
<p>ciscorouter# conf t<br />
ciscorouter(config)# int fa0/1<br />
ciscorouter(config-if)# ip address 192.168.1.1 255.255.255.0<br />
ciscorouter(config-if)# ip address 192.168.2.1 255.255.255.0 sec<br />
ciscorouter(config-if)# exit<br />
ciscorouter(config)# ip route 192.168.2.0 255.255.255.0 192.168.1.1</p>
<p>that should forward traffic properly</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ali</title>
		<link>http://www.itsyourip.com/cisco/configure-multiple-ip-address-on-a-cisco-router-interface/comment-page-1/#comment-2844</link>
		<dc:creator>ali</dc:creator>
		<pubDate>Tue, 19 Jul 2011 13:58:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.itsyourip.com/cisco/configure-multiple-ip-address-on-a-cisco-router-interface/#comment-2844</guid>
		<description>Hi
If you want assign the ip address,subnet Mask and default Gateway
This is IP Address and Subnet Mask 

R1(config)#int g 0/1
R1(config-if)#ip address 1.1.1.1  255.0.0.0
R1(config-if)#exit

Defautl Gateway is 

R1(config)#ip route 0.0.0.0  0.0.0.0  1.1.1.2

or 

R1(config)#ip default-gateway 1.1.1.2



Secondary IP is 

R1(config)#int G 0/1
R1(congig-if)#ip address 1.1.1.1  255.0.0.0
R1(config-if)#ip address 1.2.1.1  255.0.0.0  secondary
R1(config-if)#ip address 1.3.1.1  255.0.0.0  sedondary 
R1(config-if)#ip address 1.4.1.1  255.0.0.0  secedonary
R1(config-if)#n shutdown
R1(config-if)#exit


For Every Network their is a seprate gateway you need to assign,it is depend on your subnet and isp assigned Gateway.</description>
		<content:encoded><![CDATA[<p>Hi<br />
If you want assign the ip address,subnet Mask and default Gateway<br />
This is IP Address and Subnet Mask </p>
<p>R1(config)#int g 0/1<br />
R1(config-if)#ip address 1.1.1.1  255.0.0.0<br />
R1(config-if)#exit</p>
<p>Defautl Gateway is </p>
<p>R1(config)#ip route 0.0.0.0  0.0.0.0  1.1.1.2</p>
<p>or </p>
<p>R1(config)#ip default-gateway 1.1.1.2</p>
<p>Secondary IP is </p>
<p>R1(config)#int G 0/1<br />
R1(congig-if)#ip address 1.1.1.1  255.0.0.0<br />
R1(config-if)#ip address 1.2.1.1  255.0.0.0  secondary<br />
R1(config-if)#ip address 1.3.1.1  255.0.0.0  sedondary<br />
R1(config-if)#ip address 1.4.1.1  255.0.0.0  secedonary<br />
R1(config-if)#n shutdown<br />
R1(config-if)#exit</p>
<p>For Every Network their is a seprate gateway you need to assign,it is depend on your subnet and isp assigned Gateway.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Caio</title>
		<link>http://www.itsyourip.com/cisco/configure-multiple-ip-address-on-a-cisco-router-interface/comment-page-1/#comment-2842</link>
		<dc:creator>Caio</dc:creator>
		<pubDate>Mon, 18 Jul 2011 14:51:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.itsyourip.com/cisco/configure-multiple-ip-address-on-a-cisco-router-interface/#comment-2842</guid>
		<description>Hi,

If I use secondary IP of different subnets and in the same interface (e.g Vlan1) I use standby IP (HSRP), may I have conflict?

Regards,</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>If I use secondary IP of different subnets and in the same interface (e.g Vlan1) I use standby IP (HSRP), may I have conflict?</p>
<p>Regards,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mf Moyo</title>
		<link>http://www.itsyourip.com/cisco/configure-multiple-ip-address-on-a-cisco-router-interface/comment-page-1/#comment-2775</link>
		<dc:creator>Mf Moyo</dc:creator>
		<pubDate>Tue, 21 Dec 2010 05:53:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.itsyourip.com/cisco/configure-multiple-ip-address-on-a-cisco-router-interface/#comment-2775</guid>
		<description>What is the effect of having many subnets on a single router interface? Does it affect browsing speed or increase latency?</description>
		<content:encoded><![CDATA[<p>What is the effect of having many subnets on a single router interface? Does it affect browsing speed or increase latency?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Boni</title>
		<link>http://www.itsyourip.com/cisco/configure-multiple-ip-address-on-a-cisco-router-interface/comment-page-1/#comment-2696</link>
		<dc:creator>Boni</dc:creator>
		<pubDate>Thu, 15 Jul 2010 08:47:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.itsyourip.com/cisco/configure-multiple-ip-address-on-a-cisco-router-interface/#comment-2696</guid>
		<description>Hi..

My ISP has given me details below:
IP: xxx.xxx.xxx.xxx
SM: xxx.xxx.xxx.xxx
Gateway: xxx.xxx.xxx.xxx
DNS1: xxx.xxx.xxx.xxx
DNS2: xxx.xxx.xxx.xxx

How can I enter this information on a router interface?

Regards,</description>
		<content:encoded><![CDATA[<p>Hi..</p>
<p>My ISP has given me details below:<br />
IP: xxx.xxx.xxx.xxx<br />
SM: xxx.xxx.xxx.xxx<br />
Gateway: xxx.xxx.xxx.xxx<br />
DNS1: xxx.xxx.xxx.xxx<br />
DNS2: xxx.xxx.xxx.xxx</p>
<p>How can I enter this information on a router interface?</p>
<p>Regards,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robinson A</title>
		<link>http://www.itsyourip.com/cisco/configure-multiple-ip-address-on-a-cisco-router-interface/comment-page-1/#comment-2691</link>
		<dc:creator>Robinson A</dc:creator>
		<pubDate>Wed, 07 Jul 2010 15:18:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.itsyourip.com/cisco/configure-multiple-ip-address-on-a-cisco-router-interface/#comment-2691</guid>
		<description>Hi,

Is it possible to Configure same IP Address in the Different interfaces on a Router.

Thanks &amp; Regards,
Robinson A</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Is it possible to Configure same IP Address in the Different interfaces on a Router.</p>
<p>Thanks &amp; Regards,<br />
Robinson A</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: boyd</title>
		<link>http://www.itsyourip.com/cisco/configure-multiple-ip-address-on-a-cisco-router-interface/comment-page-1/#comment-2688</link>
		<dc:creator>boyd</dc:creator>
		<pubDate>Tue, 29 Jun 2010 10:40:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.itsyourip.com/cisco/configure-multiple-ip-address-on-a-cisco-router-interface/#comment-2688</guid>
		<description>What are the IP and subnet assigned to the primary and secondary address. Its possible that your secondary IP doesnt have a route to the internet or it doesnt participate on the routing protocol that you use. If that is the case, you need to setup a static route for the secondary IP.</description>
		<content:encoded><![CDATA[<p>What are the IP and subnet assigned to the primary and secondary address. Its possible that your secondary IP doesnt have a route to the internet or it doesnt participate on the routing protocol that you use. If that is the case, you need to setup a static route for the secondary IP.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: suhail</title>
		<link>http://www.itsyourip.com/cisco/configure-multiple-ip-address-on-a-cisco-router-interface/comment-page-1/#comment-2632</link>
		<dc:creator>suhail</dc:creator>
		<pubDate>Fri, 29 Jan 2010 11:40:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.itsyourip.com/cisco/configure-multiple-ip-address-on-a-cisco-router-interface/#comment-2632</guid>
		<description>no answer of my qustion</description>
		<content:encoded><![CDATA[<p>no answer of my qustion</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Blake Payne</title>
		<link>http://www.itsyourip.com/cisco/configure-multiple-ip-address-on-a-cisco-router-interface/comment-page-1/#comment-2601</link>
		<dc:creator>Blake Payne</dc:creator>
		<pubDate>Sat, 07 Nov 2009 22:32:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.itsyourip.com/cisco/configure-multiple-ip-address-on-a-cisco-router-interface/#comment-2601</guid>
		<description>Jon M,
     It seems like maybe the packets TTL (time to live) is expiring before it gets there. Unless someone has something else, that&#039;s all I could think of.</description>
		<content:encoded><![CDATA[<p>Jon M,<br />
     It seems like maybe the packets TTL (time to live) is expiring before it gets there. Unless someone has something else, that&#8217;s all I could think of.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon M</title>
		<link>http://www.itsyourip.com/cisco/configure-multiple-ip-address-on-a-cisco-router-interface/comment-page-1/#comment-2588</link>
		<dc:creator>Jon M</dc:creator>
		<pubDate>Tue, 06 Oct 2009 11:15:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.itsyourip.com/cisco/configure-multiple-ip-address-on-a-cisco-router-interface/#comment-2588</guid>
		<description>I&#039;ve configured several secondary IP addresses on my 1811, and for some reason only the primary is reachable from the internet. Any advice? They are all on the same subnet, and when doing a trace route on the secondary IPs it times out at the last hop before my router.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve configured several secondary IP addresses on my 1811, and for some reason only the primary is reachable from the internet. Any advice? They are all on the same subnet, and when doing a trace route on the secondary IPs it times out at the last hop before my router.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

