Lab 3.1 - Configuring and Verifying Standard ACLs
Lab 3.1 - Configuring and Verifying Standard ACLs
Topology
Page 1 of 9
Lab – Configuring and Verifying Standard ACLs
Addressing Table
Objectives
Part 1: Set Up the Topology and Initialize Devices
Set up equipment to match the network topology.
Initialize and reload the routers and switches.
Part 2: Configure Devices and Verify Connectivity
Assign a static IP address to PCs.
Configure basic settings on routers.
Configure basic settings on switches.
Configure OSPF routing on R1, ISP, and R3.
Verify connectivity between devices.
Part 3: Configure and Verify Standard Numbered and Named ACLs
Configure, apply, and verify a numbered standard ACL.
Configure, apply, and verify a named ACL.
Part 4: Modify a Standard ACL
Modify and verify a named standard ACL.
Test the ACL.
Background / Scenario
Network security is an important issue when designing and managing IP networks. The ability to configure
proper rules to filter packets, based on established security policies, is a valuable skill.
Page 2 of 9
Lab – Configuring and Verifying Standard ACLs
In this lab, you will set up filtering rules for two offices represented by R1 and R3. Management has
established some access policies between the LANs located at R1 and R3, which you must implement. The
ISP router sitting between R1 and R3 will not have any ACLs placed on it. You would not be allowed any
administrative access to an ISP router because you can only control and manage your own equipment.
Note: The routers used with CCNA hands-on labs are Cisco 1941 Integrated Services Routers (ISRs) with
Cisco IOS Release 15.2(4)M3 (universalk9 image). The switches used are Cisco Catalyst 2960s with Cisco
IOS Release 15.0(2) (lanbasek9 image). Other routers, switches, and Cisco IOS versions can be used.
Depending on the model and Cisco IOS version, the commands available and output produced might vary
from what is shown in the labs. Refer to the Router Interface Summary Table at the end of the lab for the
correct interface identifiers.
Note: Make sure that the routers and switches have been erased and have no startup configurations. If you
are unsure, contact your instructor.
Required Resources
3 Routers (Cisco 1941 with Cisco IOS Release 15.2(4)M3 universal image or comparable)
2 Switches (Cisco 2960 with Cisco IOS Release 15.0(2) lanbasek9 image or comparable)
2 PCs (Windows 7, Vista, or XP with terminal emulation program, such as Tera Term)
Console cables to configure the Cisco IOS devices via the console ports
Ethernet and serial cables as shown in the topology
Page 3 of 9
Lab – Configuring and Verifying Standard ACLs
b. After configuring OSPF on R1, ISP, and R3, verify that all routers have complete routing tables listing all
networks. Troubleshoot if this is not the case.
Page 4 of 9
Lab – Configuring and Verifying Standard ACLs
What wildcard mask would you use to allow all hosts on the 192.168.10.0/24 network to access the
192.168.30.0/24 network?
______________________________________________________________________________
Following Cisco’s recommended best practices, on which router would you place this ACL? ___________
On which interface would you place this ACL? In what direction would you apply it?
_______________________________________________________________________________________
_______________________________________________________________________________________
a. Configure the ACL on R3. Use 1 for the access list number.
R3(config)# access-list 1 remark Allow R1 LANs Access
R3(config)# access-list 1 permit 192.168.10.0 0.0.0.255
R3(config)# access-list 1 permit 192.168.20.0 0.0.0.255
R3(config)# access-list 1 deny any
b. Apply the ACL to the appropriate interface in the proper direction.
R3(config)# interface g0/1
R3(config-if)# ip access-group 1 out
c. Verify a numbered ACL.
The use of various show commands can aid you in verifying both the syntax and placement of your ACLs
in your router.
To see access list 1 in its entirety with all ACEs, which command would you use?
____________________________________________________________________________________
What command would you use to see where the access list was applied and in what direction?
____________________________________________________________________________________
1) On R3, issue the show access-lists 1 command.
R3# show access-list 1
Standard IP access list 1
10 permit 192.168.10.0, wildcard bits 0.0.0.255
20 permit 192.168.20.0, wildcard bits 0.0.0.255
30 deny any
2) On R3, issue the show ip interface g0/1 command.
R3# show ip interface g0/1
GigabitEthernet0/1 is up, line protocol is up
Internet address is 192.168.30.1/24
Broadcast address is 255.255.255.255
Address determined by non-volatile memory
MTU is 1500 bytes
Helper address is not set
Directed broadcast forwarding is disabled
Multicast reserved groups joined: 224.0.0.10
Outgoing access list is 1
Inbound access list is not set
Output omitted
Page 5 of 9
Lab – Configuring and Verifying Standard ACLs
3) Test the ACL to see if it allows traffic from the 192.168.10.0/24 network access to the
192.168.30.0/24 network. From the PC-A command prompt, ping the PC-C IP address. Were the
pings successful? _______
4) Test the ACL to see if it allows traffic from the 192.168.20.0/24 network access to the
192.168.30.0/24 network. You must do an extended ping and use the loopback 0 address on R1 as
your source. Ping PC-C’s IP address. Were the pings successful? _______
R1# ping
Protocol [ip]:
Target IP address: 192.168.30.3
Repeat count [5]:
Datagram size [100]:
Timeout in seconds [2]:
Extended commands [n]: y
Source address or interface: 192.168.20.1
Type of service [0]:
Set DF bit in IP header? [no]:
Validate reply data? [no]:
Data pattern [0xABCD]:
Loose, Strict, Record, Timestamp, Verbose[none]:
Sweep range of sizes [n]:
Type escape sequence to abort.
Sending 5, 100-byte ICMP Echos to 192.168.30.3, timeout is 2 seconds:
Packet sent with a source address of 192.168.20.1
!!!!!
Success rate is 100 percent (5/5), round-trip min/avg/max = 28/29/32 ms
d. From the R1 prompt, ping PC-C’s IP address again.
R1# ping 192.168.30.3
Was the ping successful? Why or why not?
____________________________________________________________________________________
____________________________________________________________________________________
____________________________________________________________________________________
Page 6 of 9
Lab – Configuring and Verifying Standard ACLs
R1(config-std-nacl)# end
R1#
*Feb 15 15:56:55.707: %SYS-5-CONFIG_I: Configured from console by console
Looking at the first permit ACE in the access list, what is another way to write this?
____________________________________________________________________________________
b. Apply the ACL to the appropriate interface in the proper direction.
R1# config t
R1(config)# interface g0/1
R1(config-if)# ip access-group BRANCH-OFFICE-POLICY out
c. Verify a named ACL.
1) On R1, issue the show access-lists command.
R1# show access-lists
Standard IP access list BRANCH-OFFICE-POLICY
10 permit 192.168.30.3
20 permit 192.168.40.0, wildcard bits 0.0.0.255
Is there any difference between this ACL on R1 with the ACL on R3? If so, what is it?
________________________________________________________________________________
________________________________________________________________________________
________________________________________________________________________________
________________________________________________________________________________
________________________________________________________________________________
2) On R1, issue the show ip interface g0/1 command.
R1# show ip interface g0/1
GigabitEthernet0/1 is up, line protocol is up
Internet address is 192.168.10.1/24
Broadcast address is 255.255.255.255
Address determined by non-volatile memory
MTU is 1500 bytes
Helper address is not set
Directed broadcast forwarding is disabled
Multicast reserved groups joined: 224.0.0.10
Outgoing access list is BRANCH-OFFICE-POLICY
Inbound access list is not set
<Output omitted>
3) Test the ACL. From the command prompt on PC-C, ping PC-A’s IP address. Were the pings
successful? _______
4) Test the ACL to ensure that only the PC-C host is allowed access to the 192.168.10.0/24 network.
You must do an extended ping and use the G0/1 address on R3 as your source. Ping PC-A’s IP
address. Were the pings successful? _______
5) Test the ACL to see if it allows traffic from the 192.168.40.0/24 network access to the
192.168.10.0/24 network. You must perform an extended ping and use the loopback 0 address on R3
as your source. Ping PC-A’s IP address. Were the pings successful? _______
Page 7 of 9
Lab – Configuring and Verifying Standard ACLs
Page 8 of 9
Lab – Configuring and Verifying Standard ACLs
2) From the ISP command prompt, issue an extended ping. Test the ACL to see if it allows traffic from
the 209.165.200.224/27 network access to the 192.168.10.0/24 network. You must do an extended
ping and use the loopback 0 address on ISP as your source. Ping PC-A’s IP address. Were the pings
successful? _______
Reflection
1. As you can see, standard ACLs are very powerful and work quite well. Why would you ever have the need for
using extended ACLs?
_______________________________________________________________________________________
_______________________________________________________________________________________
_______________________________________________________________________________________
_______________________________________________________________________________________
2. Typically, more typing is required when using a named ACL as opposed to a numbered ACL. Why would you
choose named ACLs over numbered?
_______________________________________________________________________________________
_______________________________________________________________________________________
_______________________________________________________________________________________
_______________________________________________________________________________________
Router Model Ethernet Interface #1 Ethernet Interface #2 Serial Interface #1 Serial Interface #2
1800 Fast Ethernet 0/0 Fast Ethernet 0/1 Serial 0/0/0 (S0/0/0) Serial 0/0/1 (S0/0/1)
(F0/0) (F0/1)
1900 Gigabit Ethernet 0/0 Gigabit Ethernet 0/1 Serial 0/0/0 (S0/0/0) Serial 0/0/1 (S0/0/1)
(G0/0) (G0/1)
2801 Fast Ethernet 0/0 Fast Ethernet 0/1 Serial 0/1/0 (S0/1/0) Serial 0/1/1 (S0/1/1)
(F0/0) (F0/1)
2811 Fast Ethernet 0/0 Fast Ethernet 0/1 Serial 0/0/0 (S0/0/0) Serial 0/0/1 (S0/0/1)
(F0/0) (F0/1)
2900 Gigabit Ethernet 0/0 Gigabit Ethernet 0/1 Serial 0/0/0 (S0/0/0) Serial 0/0/1 (S0/0/1)
(G0/0) (G0/1)
Note: To find out how the router is configured, look at the interfaces to identify the type of router and how many
interfaces the router has. There is no way to effectively list all the combinations of configurations for each router
class. This table includes identifiers for the possible combinations of Ethernet and Serial interfaces in the device.
The table does not include any other type of interface, even though a specific router may contain one. An
example of this might be an ISDN BRI interface. The string in parenthesis is the legal abbreviation that can be
used in Cisco IOS commands to represent the interface.
Page 9 of 9