About Cisco ASA 5505 configuration.
Hi, I want to use a Cisco ASA 5505 configuration in my branch office. Please tell me about it. Thanks a lot in advance for helping me.
Hi, I want to use a Cisco ASA 5505 configuration in my branch office. Please tell me about it. Thanks a lot in advance for helping me.
steps to the Cisco ASA 5505 configuration process.
Step1: Configure the internal interface vlan
ASA5505(config)# interface Vlan 1
ASA5505(config-if)# nameif inside
ASA5505(config-if)# security-level 100
ASA5505(config-if)# ip address 192.168.1.1 255.255.255.0
ASA5505(config-if)# no shut
Â
Step 2: Configure the external interface VLAN (connected to the Internet)
ASA5505(config)# interface Vlan 2
ASA5505(config-if)# nameif outside
ASA5505(config-if)# security-level 0
ASA5505(config-if)# ip address 200.200.200.1 255.255.255.0
ASA5505(config-if)# no shut
Â
Step 3: Assign Ethernet 0/0 to Vlan 2
ASA5505(config)# interface Ethernet0/0
ASA5505(config-if)# switchport access VLAN 2
ASA5505(config-if)# no shut
Â
Step 4: Enable the rest interfaces with no shut
ASA5505(config)# interface Ethernet0/1
ASA5505(config-if)# no shut
Â
Step 5: Configure PAT on the outside interface
ASA5505(config)# global (outside) 1 interface
ASA5505(config)# nat (inside) 1 0.0.0.0 0.0.0.0
Â
Step 6: Configure the default route
Default route towards the ISP (assume default gateway is 200.200.200.2)
ASA5505(config)# route outside 0.0.0.0 0.0.0.0 200.200.200.2 1