Been doing a little digging and I have a question I am hoping someone could clear up for me. I have setup a connection to a remote site. I want to only allow a couple of protocols to this site. I envision the following:
access-list apply_to_Nat0 permit ip 10.0.101.0 255.255.255.240 host
10.202.10.91 access-list apply_to_Nat0 permit ip 10.0.98.0 255.255.255.240 host
10.202.10.91 # Don't nat traffic from networks to host 10.202.10.91
access-list apply_to_crypto permit tcp 10.0.101.0 255.255.255.240 host
10.202.10.91 eq ftp access-list apply_to_crypto permit tcp 10.0.101.0 255.255.255.240 host
10.202.10.91 eq https access-list apply_to_crypto permit tcp 10.0.101.0 255.255.255.240 host
10.202.10.91 eq www access-list apply_to_crypto permit tcp 10.0.101.0 255.255.255.240 host
10.202.10.91 eq 81 access-list apply_to_crypto permit tcp 10.0.98.0 255.255.255.240 host
10.202.10.91 eq 81 access-list apply_to_crypto permit tcp 10.0.98.0 255.255.255.240 host
10.202.10.91 eq www access-list apply_to_crypto permit tcp 10.0.98.0 255.255.255.240 host
10.202.10.91 eq https access-list apply_to_crypto permit tcp 10.0.98.0 255.255.255.240 host
10.202.10.91 eq ftp # Allow only www, HTTPS, FTP and port 81 ro 10.202.10.91
nat (inside) 0 access-list apply_to_Nat0 crypto map toMML 600 match address apply_to_crypto
So my basic questions is can I have an access-list applied to Nat 0 which is different from the one I apply to a crypto map?
Thanks,
--AJ