hi,
i need to ping host 10.122.34.7 (on inside) from 192.168.193.122 (on aps-lan)
here my nat:
nat (inside) 0 access-list no-nat nat (inside) 1 10.122.32.0 255.255.255.0 64000 0 nat (inside) 1 10.122.34.0 255.255.255.0 0 0 nat (aps-lan) 2 192.168.193.0 255.255.255.0 0 0
I add following entry in the no-nat access-list:
access-list no-nat permit icmp host 10.122.34.7 host 192.168.193.122 the ping fails: [/u00/home/m] ping 10.122.34.7 no answer from 10.122.34.7
with pix logg:
305005: No translation group found for icmp src aps-lan:192.168.193.122 dst inside:10.122.34.7 (type 8, code 0) and there is no hitcount: access-list no-nat line 50 permit icmp host 10.122.34.7 host 192.168.193.122 (hitcnt=0)
now I add : access-list no-nat permit ip host 10.122.34.7 host 192.168.193.122 and ping goes through
[/u00/home/m] ping 10.122.34.7
10.122.34.7 is alive
and I get a hitcount: access-list no-nat line 52 permit ip host 10.122.34.7 host 192.168.193.122 (hitcnt=2)
why is this? I don't want to permit all IP traffic.
thanks, M