Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   Cisco (http://www.velocityreviews.com/forums/f27-cisco.html)
-   -   ASA5510 unable to talk between ethernet 0/1 and 0/2 (http://www.velocityreviews.com/forums/t712534-asa5510-unable-to-talk-between-ethernet-0-1-and-0-2-a.html)

mark256789 01-21-2010 07:26 PM

ASA5510 unable to talk between ethernet 0/1 and 0/2
 
All,

I have setup ASA5510 and 0/1 and 0/2 were unable talking to each
other.
Here is the configuration:
ethernet 0/0 outside security level 0
ethernet 0/1 inside security level 100
ethernet 0/2 private security level 100

same-security-traffic permit inter-interface
access-list nonat extended permit ip 192.168.2.0 255.255.255.0
192.168.2.0 255.255.255.0
access-list nonat extended permit ip 192.168.3.0 255.255.255.0
192.168.3.0 255.255.255.0
nat (Inside) 0 access-list nonat
nat (Inside) 1 0.0.0.0 0.0.0.0
nat (private) 0 access-list nonat
nat (private) 1 0.0.0.0 0.0.0.0

The servers on both side were able to access internet..
When I try to ping and the following error log from the firewall log:
portmap translation creation failed for icmp src Inside:
192.168.2.151dst private:192.168.3.101(type 8, code 0)

Any help is appreciated.

Lutz Donnerhacke 01-21-2010 09:09 PM

Re: ASA5510 unable to talk between ethernet 0/1 and 0/2
 
* mark256789 wrote:
> When I try to ping and the following error log from the firewall log:
> portmap translation creation failed for icmp src Inside:
> 192.168.2.151dst private:192.168.3.101(type 8, code 0)


The ASA has no state about such a connection. So you are required to guide
the initial way though the system:
static (inside,private) 192.168.3.0 192.168.3.0 netmask 255.255.255.0
static (private,inside) 192.168.2.0 192.168.2.0 netmask 255.255.255.0

Have fun.

zupa 01-23-2010 12:52 AM

Maybe you meant such an access list:

access-list nonat extended permit ip 192.168.2.0 255.255.255.0 192.168.3.0 255.255.255.0
access-list nonat extended permit ip 192.168.3.0 255.255.255.0 192.168.2.0 255.255.255.0


All times are GMT. The time now is 06:52 AM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57