Chapter 3: Advanced IPv4 Access Control Lists

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/12

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

13 Terms

1
New cards

access-list 101 permit icmp 192.168.1.0 0.0.0.255 10.1.1.0 0.0.0.255 log

Global command for extended numbered access lists permitting ICMP from 192.168.1.0/24 to 10.1.1.0/24 with logging enabled.

2
New cards

access-list 102 deny tcp 10.0.0.0 0.0.0.255 eq 22 172.16.0.0 0.0.255.255 gt 1023 log

Extended ACL 102 denying SSH traffic from 10.0.0.0/24 to 172.16.0.0/16 with source ports above 1023, logging matches.

3
New cards

access-list 101 remark AllowICMPLANtoDMZ

Command that defines a remark for ACL 101 to describe permitting ICMP from LAN to DMZ.

4
New cards

ip access-group 101 in

Interface subcommand to apply ACL 101 inbound on the interface.

5
New cards

access-class 23 in

Line subcommand to apply ACL 23 inbound on VTY lines.

6
New cards

ip access-list extended WEB_ACL

Global command to create and configure a named extended ACL called WEB_ACL.

7
New cards

permit 192.168.10.0 0.0.0.255 log

ACL mode subcommand in WEB_ACL to permit traffic from 192.168.10.0/24 and log matches.

8
New cards

deny udp 10.10.10.0 0.0.0.255 10.20.20.0 0.0.0.255 log

ACL mode subcommand in WEB_ACL to deny UDP traffic from 10.10.10.0/24 to 10.20.20.0/24 with logging.

9
New cards

permit tcp 192.168.2.0 0.0.0.255 eq 80 192.168.3.0 0.0.0.255 eq 8080 log

ACL mode subcommand in WEB_ACL to permit HTTP traffic from 192.168.2.0/24 to 192.168.3.0/24 on port 80 with logging.

10
New cards

remark BlockUDPtoFinanceServers

ACL mode subcommand in WEB_ACL to describe blocking UDP traffic to finance servers.

11
New cards

show ip interface GigabitEthernet0/1

Displays interface details for GigabitEthernet0/1, including any applied ACLs.

12
New cards

show access-lists WEB_ACL

Shows all entries in the named ACL WEB_ACL across all protocols.

13
New cards

show ip access-lists 101

Shows details of the IP access list numbered 101.