Lab 90
Lab 90
Lab 90
Configuration and
Verification
Task 1:
For reference information on configuring hostnames, please refer to
previous labs.
Task 2:
For reference information on configuring IP addresses, please refer
to previous labs.
R1#config t
Enter configuration commands, one per line. End with CTRL/Z.
R1(config)#ip route 0.0.0.0 0.0.0.0 serial0/0 172.16.1.2
R1(config-if)#end
R1#
R3#conf t
Enter configuration commands, one per line. End with CTRL/Z.
R3(config)#ip route 0.0.0.0 0.0.0.0 serial0/0 172.16.1.1
R3(config)#int loop10
R3(config-if)#ip address 10.10.10.3 255.255.255.128
R3(config-if)#exit
R3(config)#int loop20
R3(config-if)#ip address 10.20.20.3 255.255.255.240
R3(config-if)#exit
R3(config)#int loop30
R3(config-if)#ip address 10.30.30.3 255.255.255.248
R3(config-if)#end
R3#
Task 3:
R3#ping 172.16.1.1
Task 4:
R1#conf t
Enter configuration commands, one per line. End with CTRL/Z.
R1(config)#access-list 10 remark “Permit From R3 Loopback10”
R1(config)#access-list 10 permit 10.10.10.0 0.0.0.127
R1(config)#access-list 10 remark “Deny From R3 Loopback20”
R1(config)#access-list 10 deny 10.20.20.0 0.0.0.15
R1(config)#access-list 10 remark “Permit From R3 Loopback30”
R1(config)#access-list 10 permit 10.30.30.0 0.0.0.7
R1(config)#int s0/0
R1(config-if)#ip access-group 10 in
R1(config)#end
R1#show ip access-lists
Standard IP access list 10
10 permit 10.10.10.0, wildcard bits 0.0.0.127
20 deny 10.20.20.0, wildcard bits 0.0.0.15
30 permit 10.30.30.0, wildcard bits 0.0.0.7
R3#ping 172.16.1.1
NOTE: Whenever you see a ping fail and the router shows U.U.U, it
is typically because your ping request was administratively prohibited
by an ACL on the other end.
R1#show access-lists
Standard IP access list 10
10 permit 10.10.10.0, wildcard bits 0.0.0.127 (15 matches)
20 deny 10.20.20.0, wildcard bits 0.0.0.15 (11 matches)
30 permit 10.30.30.0, wildcard bits 0.0.0.7 (15 matches)
Your output may differ from mine due to differences in IOS releases
and platforms.