Skip to main content

Posts

Showing posts with the label PAT

Getting to Internet Through ASA

Step 1: Setting up hostname ciscoasa(config)# hostname XYZ01 XYZ01(config)# Step 2: Configuring IP addresses on the interfaces XYZ01(config)# interface ethernet 0/0 XYZ01(config-if)# nameif inside XYZ01(config-if)# security-level 100 XYZ01(config-if)# ip address 192.168.1.1 255.255.255.0 XYZ01(config-if)# no shut XYZ01(config)# interface ethernet 0/1 XYZ01(config-if)# nameif outside XYZ01(config-if)# security-level 0 XYZ01(config-if)# ip address 10.1.1.1 255.255.255.252 XYZ01(config-if)# no shut Step 3: Verifying Interfaces XYZ01# show interface ip brief Interface IP-Address OK? Method Status Protocol Ethernet0/0 192.168.1.1 YES manual up up Ethernet0/1 10.1.1.1 YES manual up up Ethernet0/2 unassigned YES unset administratively down up Ethernet0/3 unassigned YES CONFIG administratively down up Ethernet0/4 unassign...