CCNA learning: ACL

ACL: access control list ACL Function: 1. manage the IP in network 2. filter message when it pass the router ACL Type 1. Standard: Check source address; Allow or reject total protocol 2. Extend: Check source and destination address; Allow or reject special protocol Inbound / Outbound ACL ACL config guide ACL config (config)#access-list <access-list-number> <permit|deny> <test conditions> (config)#<protocol> access-group <access-list-number> <in|out> access-list-number: standard: 1-99 extend: 100-199 IP ACL config At least has one permit access-list Set: (config)#access-list <access-list-number> <permit|deny> source <wildcard mask> access-list-number: 1-99 wildcard mask: default 0.0.0.0(check all bits) Example: for IP 172.16.1.1 --> wildcard mask: 0.0.0.0 for subnet 172.16.1.0 --> wildcard mask: 0.0.0.255 for any network --> wildcard mask: 255.255....