300+ [LATEST] Access Control List Interview Questions and Answers

Q1. Which Traffic Is Not Filtered By Acl?

Il suo compagno del ponte ha invece chiesto alle forze dell’ordine di individuare il responsabile del fatto, nonostante non abbia trovato altre informazioni. Stefan larsson, hälso- och sjukvårdskämpar på sverigedemokraternas sjukvårdshus, berättar för svt om hur hårt Where To Buy Ozempic For Weight Loss Near Me hittills har sverige blivit med ett krig i syrien. To get the drug to work, all you have to do is take 400mg clomid for women of propecia you have to take it at least 1.

Traffic that is generated by the router itself, ACL is going to filter only trit traffic.

Q2. What Is At The End Of Each Access List?

At the end of each access list, there is an implicit deny statement denying any packet for which the match has not been found in the access list.

Q3. What Is Acl?

Access Control List is a packet filtering method that filters the IP packets based on source and destination address. It is a set of rules and conditions that permit or deny IP packets to exercise control over network traffic.

Q4. What Is The Difference Between Access-group And Access-class Command?

  • Access-group command is used to filter traffic on the Interface (Ethernet, Serial).
  • Access-class command is used to filter traffic on Lines (Vty, Console, aux).

Q5. What Is The Function Of Access-list?

Access-List is going to filter incoming as well as outgoing traffic on the router interface.

Q6. What Is The Default Action Of Acl, If No Condition Matches In Acl?

Drop traffic.

Q7. In Which Directions We Can Apply An Access List?

We can apply access list in two directions:-

  • IN – ip access-group 10 in
  • OUT – ip access-group 10 out

Q8. How To Permit Or Deny Specific Host In Acl?

@Using a wildcard mask “0.0.0.0”

Example: – 192.168.1.1 0.0.0.0 or

@Using keyword “Host”

Example: – Host 192.168.1.1

Q9. How Access Lists Are Processed?

Access lists are processed in sequential, logical order, evaluating packets from the top down, one statement at a time. As soon as a match is made, the permit or deny option is applied, and the packet is not evaluated against any more access list statements. Because of this, the order of the statements within any access list is significant. There is an implicit “deny” at the end of each access list which me that if a packet does not match the condition on any of the lines in the access list, the packet will be discarded.

Q10. What Is The Difference Between Ipv4 Acl And Ipv6 Acl?

  1. No standard ACL in IPV6
  2. No wildcard mask in IPV6 ACL
  3. In IPV6 only Named ACL’s are available, there is no numbered ACL.

Q11. What Is The Difference Between Numbered Acl And Named Acl?

  1. Numbered ACL is created by using number; Named ACL is created by using name,
  2. Removing of specific statement is not possible in Numbered ACL, It is possible in Named ACL.

Q12. What Are The Advantages Of Standard Acl?

  1. Simple Packet Filtering Purpose
  2. Limiting Access on VTY lines
  3. Route Filtering
  4. NAT
  5. Route- MAPs

Q13. Difference Between Inbound Access-list And Outbound Access-list?

When an access-list is applied to inbound packets on interface, those packets are first processed through ACL and then routed. Any packets that are denied won’t be routed. When an access-list is applied to outbound packets on interface, those packets are first routed to outbound interface and than processed through ACL.

Q14. What Is The Default Wildcard Mask For Access-list?

Default Wild Card Mask for Access-List is 0.0.0.0

Q15. What Are The Advantages Of Extended Acl?

  1. Complex Packet Filtering Purpose
  2. Route Filtering
  3. VPN
  4. TCP Intercept
  5. IOS Firewall

Q16. How Many Access-lists Can Be Created On The Router?

  • 1 per Interface
  • 1 per Direction
  • 1 per Protocol

Q17. What Is Wildcard Mask?

Wildcard mask is used with ACL to specify an individual hosts, a network, or a range of network. Whenever a zero is present, it indicates that octet in the address must match the corresponding reference exactly. Whenever a 255 is present, it indicates those octets need not to be evaluated.

Wildcard Mask is completely opposite to subnet mask.

Example:– For /24

  • Subnet Mask – 255.255.255.0
  • Wildcard Mask – 0.0.0.255

Q18. What Are Different Types Of Acl?

There are two main types of Access lists:-

  1. Standard Access List.
  2. Extended Access List.

Q19. Difference Between #sh Access-list Command And #sh Run Access-list Command?

  • #sh access-list shows number of Hit Counts.
  • #sh run access-list does not show number of Hit Counts.

Q20. Explain Extended Access List?

Extended Access List filters the network traffic based on the Source IP address, Destination IP address, Protocol Field in the Network layer, Port number field at the Trport layer. Extended Access List ranges from 100 to 199, In expanded range 2000-269@Extended Access List should be placed as close to source as possible. Since extended access list filters the traffic based on specific addresses (Source IP, Destination IP) and protocols we don’t want our traffic to traverse the entire network just to be denied wasting the bandwidth.

Example:-

  • R1 (config) # access-list 110 deny tcp any host 192.168.1.1 eq 23
  • R1 (config) # int fa0/0
  • R1 (config-if) # ip access-group 110 in

Q21. Explain Named Acl And Its Advantages Over Number Acl?

It is just another way of creating Standard and Extended ACL. In Named ACL names are given to identify access-list.

It has following advantage over Number ACL – In Name ACL we can give sequence number which me we can insert a new statement in middle of ACL.

Example:-

  • R1 (config) # ip access-list extended CCNA
  • R1 (config) # 15 permit tcp host 10.1.1.1 host 20.1.1.1 eq 23
  • R1 (config) # exit
  • This will insert above statement at Line @
  • R1 (config) # int fa0/0
  • R1 (config-if) # ip access-group ccna in

Q22. Explain Standard Access List?

Standard Access List examines only the source IP address in an IP packet to permit or deny that packet. It cannot match other field in the IP packet. Standard Access List can be created using the access-list numbers 1-99 or in the expanded range of 1300-199@Standard Access List must be applied close to destination. As we are filtering based only on source address, if we put the standard access-list close to the source host or network than nothing would be forwarded from source.

Example:-

  • R1 (config) # access-list 10 deny host 192.168.1.1
  • R1 (config) # int fa0/0
  • R1 (config-if) # ip access-group 10 in

Q23. How Many Access Lists Can Be Applied To An Interface On A Cisco Router?

We can assign only one access list per interface per protocol per direction which me that when creating an IP access lists, we can have only one inbound access list and one outbound access list per interface. Multiple access lists are permitted per interface, but they must be for a different protocol.

Q24. What Is The Difference Between Standard Acl And Extended Acl?

  1. Standard ACL only checks Source IP address, Extended ACL checks Source IP, Destination IP and Protocol also for filtering traffic.
  2. Standard ACL can be created using number (1-99, 1300-1399) and Extended ACL can be created using number (100-199, 2000-2699).
  3. Two way communication is blocked in Standard ACL, One way communication is stopped in Extended ACL.
  4. Standard ACL implemented near to destination, Extended ACL implemented near to Source.