Front | Back |
A wildcard mask substitute for the word: Host
|
0.0.0.0
|
A wildcard mask substitute for the word: any
|
255.255.255.255
|
What statement is similar to:
access-list 1 permit 0.0.0.0 255.255.255.255
|
Access-list 1 permit any
|
What statement is similar to:
access-list 1 permit 172.30.16.29 0.0.0.0
|
Access-list 1 permit host 172.30.16.29
|
Denies access to a host with the IP address of 130.120.110.100.
|
Access-list 101 deny ip any 130.120.110.100 0.0.0.0
|
Permit access only to the HTTP port on the host 130.120.110.100.
|
Access-list 101 permit tcp any130.120.110.100 0.0.0.0 eq 80
|
Following Q6: deny all other access to the host 130.120.110.100
|
Access-list 101 deny ip any 130.120.110.100 0.0.0.0
|
block of addresses to be BLOCKED: 192.168.20.0 thru 192.168.20.255 /24
|
Access-list 1 deny any 192.168.20.0 0.0.0.255
|
BLOCKED: 209.212.190.0 thru 209.212.190.7 /29
|
Access-list 1 deny any 209.212.190.0 0.0.0.7
|
Structure of Extended Access List
|
Access-list #
permit/deny
IP or ICMP (optional: TCP or UDP)
Source ip address
Source ip wildcard mask
Destination ip address
Destination ip wildcard mask
(optional: eq gt lt neq)
(optional: TCP or UDP)
|
Structure of Standard Access List
|
Access-list #
permit/deny
source ip address
source ip wildcard mask
|
What is the wild card mask of 255.255.255.0 ?
|
255.255.255.255
- 255.255.255.0
---------------------------
0.0.0.255
|
What is the wild card mask of 255.255.255.192 ?
|
255.255.255.255
- 255.255.255.192
------------------------
0.0.0.63
|
What is the wilcard mask of /30 ?
|
255.255.255.255
/30 = 255.255.255.252
-------------------------------
0.0.0.3
|