10-02-2012 11:15 AM - edited 03-11-2019 05:03 PM
Hi, very simple question. What is the difference in the following three command sets on ASA 8.2 OS. All command are same but the netmask in the global command is changed in three different ways. Goal is simply to let all inside address NAT to internet (OUTSIDE). thx in advance! Will
interface GigabitEthernet0/0
nameif OUTSIDE
ip address 1.1.1.1 255.255.255.0
!
global (OUTSIDE) 10 1.1.1.2 netmask 255.255.255.255
!
nat (INSIDE) 10 0.0.0.0 0.0.0.0
!
!==============================
!
interface GigabitEthernet0/0
nameif OUTSIDE
ip address 1.1.1.1 255.255.255.0
!
global (OUTSIDE) 10 1.1.1.2 netmask 255.255.255.0
!
nat (INSIDE) 10 0.0.0.0 0.0.0.0
!
!==============================
!
interface GigabitEthernet0/0
nameif OUTSIDE
ip address 1.1.1.1 255.255.255.0
!
global (OUTSIDE) 10 1.1.1.2 netmask 255.0.0.0
!
nat (INSIDE) 10 0.0.0.0 0.0.0.0
Solved! Go to Solution.