 




<?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>The ranting of an IT Professional &#187; static</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/it-rant/tag/static/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/it-rant</link>
	<description></description>
	<lastBuildDate>Mon, 19 Sep 2011 18:30:04 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>Adding a secondary address to an interface on a Cisco ASA</title>
		<link>http://itknowledgeexchange.techtarget.com/it-rant/adding-a-secondary-address-to-an-interface-on-a-cisco-asa/</link>
		<comments>http://itknowledgeexchange.techtarget.com/it-rant/adding-a-secondary-address-to-an-interface-on-a-cisco-asa/#comments</comments>
		<pubDate>Wed, 16 Dec 2009 14:17:50 +0000</pubDate>
		<dc:creator>Jason Tramer</dc:creator>
				<category><![CDATA[address]]></category>
		<category><![CDATA[arp]]></category>
		<category><![CDATA[ASA]]></category>
		<category><![CDATA[Cisco]]></category>
		<category><![CDATA[interface]]></category>
		<category><![CDATA[IP]]></category>
		<category><![CDATA[route]]></category>
		<category><![CDATA[secondary]]></category>
		<category><![CDATA[static]]></category>

		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/it-rant/adding-a-secondary-address-to-an-interface-on-a-cisco-asa/</guid>
		<description><![CDATA[Unlike in a Cisco router where you can used the secondary command to add a secondary address to an interface, the Cisco ASA does not support this. Here is a workaround however. 1. First find out the mac address of the ethernet interface you will be using: sh interface Ethernet0/1 This should show you the [...]]]></description>
				<content:encoded><![CDATA[<p>Unlike in a Cisco router where you can used the secondary command to add a secondary address to an interface, the Cisco ASA does not support this. Here is a workaround however.</p>
<p>1. First find out the mac address of the ethernet interface you will be using:<br />
sh interface Ethernet0/1<br />
This should show you the MAC address of the network interface.</p>
<p>2. Force this arp address onto whichever Vlan you are using:<br />
interface Vlan1<br />
mac-address 0019.0726.xxxx<br />
nameif inside</p>
<p>3. Now define a static arp entry for the IP you want to use as a secondary address. Use the same mac address as the one from above, and enable proxy ARP on it:<br />
arp inside 192.168.1.1 0019.0726.xxx alias<br />
You can verify this is working properly using the show arp command that should return you the ip and    mac address, like this:<br />
sh arp<br />
inside 192.168.1.1 0019.0726.xxx alias<br />
4. At this point any system on the local interface can use the ip as its default gateway and it will work just fine. You need to ensure that return packets are coming back to the source, and this means you have to add a static route for this network on the inside interface (pointing to the primary ip of the interface, let’s say 192.168.1.1 for the sake of argument):<br />
route inside 192.168.1.0 255.255.255.0 192.168.0.1 1</p>
<p>5. Also we need to ensure that traffic is allowed between the same interface hosts, and same level of security interfaces:<br />
same-security-traffic permit inter-interface<br />
same-security-traffic permit intra-interface<br />
and you probably want to be sure that access lists will allow the traffic from/to the newly added network.</p>
<p>Enjoy</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/it-rant/adding-a-secondary-address-to-an-interface-on-a-cisco-asa/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
