9 3 1 1 Packet Tracer Configuring ASA Basic Settings and Firewall Corrigé
9 3 1 1 Packet Tracer Configuring ASA Basic Settings and Firewall Corrigé
Topology
IP Addressing Table
© 2015 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 1 of 14
Packet Tracer - Configuring ASA Basic Settings and Firewall Using CLI
Objectives
• Verify connectivity and explore the ASA
• Configure basic ASA settings and interface security levels using CLI
• Configure routing, address translation, and inspection policy using CLI
• Configure DHCP, AAA, and SSH
• Configure a DMZ, Static NAT, and ACLs
Scenario
Your company has one location connected to an ISP. R1 represents a CPE device managed by the ISP. R2
represents an intermediate Internet router. R3 represents an ISP that connects an administrator from a
network management company, who has been hired to remotely manage your network. The ASA is an edge
CPE security device that connects the internal corporate network and DMZ to the ISP while providing NAT
and DHCP services to inside hosts. The ASA will be configured for management by an administrator on the
internal network and by the remote administrator. Layer 3 VLAN interfaces provide access to the three areas
created in the activity: Inside, Outside, and DMZ. The ISP assigned the public IP address space of
209.165.200.224/29, which will be used for address translation on the ASA.
All router and switch devices have been preconfigured with the following:
o Enable password: ciscoenpa55
Note: This Packet Tracer activity is not a substitute for the ASA labs. This activity provides additional practice
and simulates most of the ASA 5505 configurations. When compared to a real ASA 5505, there may be slight
differences in command output or commands that are not yet supported in Packet Tracer.
© 2015 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 2 of 14
Packet Tracer - Configuring ASA Basic Settings and Firewall Using CLI
R1 basic Configuration
R2 basic configuration
© 2015 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 3 of 14
Packet Tracer - Configuring ASA Basic Settings and Firewall Using CLI
R3 basic configuration
From PC-C to R2
© 2015 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 4 of 14
Packet Tracer - Configuring ASA Basic Settings and Firewall Using CLI
© 2015 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 5 of 14
Packet Tracer - Configuring ASA Basic Settings and Firewall Using CLI
c. Use the show flash: or show disk0: command to display the contents of flash memory.
© 2015 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 6 of 14
Packet Tracer - Configuring ASA Basic Settings and Firewall Using CLI
Part 2: Configure ASA Settings and Interface Security Using the CLI
Tip: Many ASA CLI commands are similar to, if not the same, as those used with the Cisco IOS CLI. In
addition, the process of moving between configuration modes and submodes is essentially the same.
© 2015 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 7 of 14
Packet Tracer - Configuring ASA Basic Settings and Firewall Using CLI
b. Create a logical VLAN 2 interface for the outside network (209.165.200.224/29), set the security level to
the lowest setting of 0, and enable the VLAN 2 interface.
CCNAS-ASA(config-if)# interface vlan 2
CCNAS-ASA(config-if)# nameif outside
CCNAS-ASA(config-if)# ip address 209.165.200.226 255.255.255.248 CCNAS-
ASA(config-if)# security-level 0
2) Use the show ip address command to display the information for the Layer 3 VLAN interfaces.
© 2015 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 8 of 14
Packet Tracer - Configuring ASA Basic Settings and Firewall Using CLI
3) Use the show switch vlan command to display the inside and outside VLANs configured on the ASA
and to display the assigned ports.
© 2015 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 9 of 14
Packet Tracer - Configuring ASA Basic Settings and Firewall Using CLI
b. The ASA splits the configuration into the object portion that defines the network to be translated and the
actual nat command parameters. These appear in two different places in the running configuration.
Display the NAT object configuration using the show run command.
c. From PC-B attempt to ping the R1 G0/0 interface at IP address 209.165.200.225. The pings should fail.
d. Issue the show nat command on the ASA to see the translated and untranslated hits. Notice that, of the
pings from PC-B, four were translated and four were not. The outgoing pings (echos) were translated and
sent to the destination. The returning echo replies were blocked by the firewall policy. You will configure
the default inspection policy to allow ICMP in Step 3 of this part of the activity.
Step 3: Modify the default MPF application inspection global service policy.
For application layer inspection and other advanced options, the Cisco MPF is available on ASAs.
The Packet Tracer ASA device does not have an MPF policy map in place by default. As a modification, we
can create the default policy map that will perform the inspection on inside-to-outside traffic. When configured
© 2015 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 10 of 14
Packet Tracer - Configuring ASA Basic Settings and Firewall Using CLI
correctly only traffic initiated from the inside is allowed back in to the outside interface. You will need to add
ICMP to the inspection list.
a. Create the class-map, policy-map, and service-policy. Add the inspection of ICMP traffic to the policy map
list using the following commands:
CCNAS-ASA(config)# class-map inspection_default
CCNAS-ASA(config-cmap)# match default-inspection-traffic
CCNAS-ASA(config-cmap)# exit
CCNAS-ASA(config)# policy-map global_policy
CCNAS-ASA(config-pmap)# class inspection_default
CCNAS-ASA(config-pmap-c)# inspect icmp
CCNAS-ASA(config-pmap-c)# exit
CCNAS-ASA(config)# service-policy global_policy global
b. From PC-B, attempt to ping the R1 G0/0 interface at IP address 209.165.200.225. The pings should be
successful this time because ICMP traffic is now being inspected and legitimate return traffic is being
allowed. If the pings fail, troubleshoot your configurations.
© 2015 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 11 of 14
Packet Tracer - Configuring ASA Basic Settings and Firewall Using CLI
b. Configure the ASA to allow SSH connections from any host on the inside network (192.168.1.0/24) and
from the remote management host at the branch office (172.16.3.3) on the outside network. Set the SSH
timeout to 10 minutes (the default is 5 minutes).
CCNAS-ASA(config)# ssh 192.168.1.0 255.255.255.0 inside
CCNAS-ASA(config)# ssh 172.16.3.3 255.255.255.255 outside CCNAS-ASA(config)#
ssh timeout 10
c. Establish an SSH session from PC-C to the ASA (209.165.200.226). Troubleshoot if it is not successful.
PC> ssh -l admin 209.165.200.226
d. Establish an SSH session from PC-B to the ASA (192.168.1.1). Troubleshoot if it is not successful.
PC> ssh -l admin 192.168.1.1
© 2015 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 12 of 14
Packet Tracer - Configuring ASA Basic Settings and Firewall Using CLI
2) Use the show ip address command to display the information for the Layer 3 VLAN interfaces.
3) Use the show switch vlan command to display the inside and outside VLANs configured on the ASA
and to display the assigned ports.
Step 2: Configure static NAT to the DMZ server using a network object.
Configure a network object named dmz-server and assign it the static IP address of the DMZ server
(192.168.2.3). While in object definition mode, use the nat command to specify that this object is used to
translate a DMZ address to an outside address using static NAT, and specify a public translated address of
209.165.200.227.
CCNAS-ASA(config)# object network dmz-server
CCNAS-ASA(config-network-object)# host 192.168.2.3
CCNAS-ASA(config-network-object)# nat (dmz,outside) static 209.165.200.227
CCNAS-ASA(config-network-object)# exit
Step 3: Configure an ACL to allow access to the DMZ server from the Internet.
Configure a named access list OUTSIDE-DMZ that permits the TCP protocol on port 80 from any external
host to the internal IP address of the DMZ server. Apply the access list to the ASA outside interface in the “IN”
direction.
CCNAS-ASA(config)# access-list OUTSIDE-DMZ permit icmp any host 192.168.2.3
CCNAS-ASA(config)# access-list OUTSIDE-DMZ permit tcp any host 192.168.2.3 eq 80
© 2015 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 13 of 14
Packet Tracer - Configuring ASA Basic Settings and Firewall Using CLI
Note: Unlike IOS ACLs, the ASA ACL permit statement must permit access to the internal private DMZ
address. External hosts access the server using its public static NAT address, the ASA translates it to the
internal host IP address, and then applies the ACL.
© 2015 Cisco and/or its affiliates. All rights reserved. This document is Cisco Public. Page 14 of 14