You are on page 1of 1

Unit 3 Lab Assignment Report

CIS 204 Intermediate Routing and Switching

1. What command(s) will create standard access-list 5 that blocks access from a host with the address
of 190.30.27.96, but allows all other traffic?
R1(config)#access-list 5 deny host 190.30.27.96
R1(config)#access-list 5 permit any
2. What command(s) would add the above access list to the serial 0/1 interface of a router?
R1(config)#interface serial 0/1
R1(config-if)#ip access-group 5 in
3. What Cisco IOS command will tell you which interface has access-lists applied?
R1#show ip interface
4. True or False: Standard IP access lists cannot control access via telnet.
False
5. The Cisco IOS defaults to five VTY lines, 0 through 4, unless youre running the Enterprise Edition.
What command(s) will apply access-list 50 directly to the VTY lines and not to an interface?
R1(config)#line vty 0 4
R1(config-line)#access-class 50 in
R1(config-line)#^z
6. What command will remove access-list 5 from a router?
no access-list 5
7. What command(s) will remove access-list 5 on the serial 0/1 interface of a router?
R1(config)#interface serial 0/1
R1(config-if)#no access-list 5
8. What command will create access-list 200 on a router to block telnet access from a host with the
address of 190.30.27.96 into the entire 190.30.27.0 network?
R1(config)access-list 200 deny tcp host 190.30.27.96 190.30.27.0 0.0.0.255 eq telnet
9. What command will show you only information about access list 200?
R1#show access-list 200
10. What command will display all access lists configured on a router?
R1#show access-list

You might also like