Configuring ASA 5506, Practice Lab - PKT
Configuring ASA 5506, Practice Lab - PKT
NEXT:
I will check to see what has been pre-configured on the device by
default.
# show run
We notice the following
The name of the interface “nameif= inside”
The security level of 100
And the private internal IP address of 192.168.1.1 /24
Also we notice the following on G1/2
The name of the interface “ nameif = outside”
Security level of 0
And the IP address DHCP
NEXT:
I will remove these configuration on the two interfaces.
On ASA5506:
# conf t
# int G1/1
# no ip address 192.168.1.1 255.255.255.0
# no nameif
# no security-level 100
# int G1/2
# no ip address dhcp
# no nameif
# no security-level 0
NEXT
I will verify that the ports are clear
# show run
We notice that the ports are clear, and now I will configure the
interfaces as it is showing in the topology
On ASA5506:
# int G1/1
# ip address 10.1.1.1 255.255.255.252
# nameif outside
# security-level 0
# no shut
NEXT:
Time to configure the internal private network on the interface Ma1/1
# int ma1/1
# ip address 192.168.1.1 255.255.255.0
# nameif inside
# security-level 100
# no shut
Now, after I am done with the interfaces configuration, I will verify
We usually use the command” show ip interface brief”, but when
working on the ASA firewall, the command as follows:
# show interface ip brief
# show ip address
NEXT:
I will configure ASA5506 as DHCP server for the internal network
I will set the pool of addresses
# dhcp address 192.168.1.10-192.168.1.20 inside
I will configure the DNS server
# dhcp dns 8.8.8.8
The default gateway
# dhcp option 3 ip 192.168.1.1
Next, I will activate the DHCP server and enable it for the inside
network
# dhcp enable inside
Now, I am done with the configuration, I will verify with both PCs, PC-
A and PC-B that they can receive their IP addresses from the DHCP
server.
NEXT:
I will configure a default route for the internal private network so
they can reach the server on the internet.
On ASA5506:
# conf t
# route outside 0.0.0.0 0.0.0.0 10.1.1.2
NEXT: