Podcast
Questions and Answers
What is the purpose of the ACL being configured by the engineer?
What is the purpose of the ACL being configured by the engineer?
- To deny all TCP packets
- To block packets with an ACK in the TCP header
- To permit packets with an ACK in the TCP header (correct)
- To accept all IP packets regardless of ACK
What is the significance of 'established' in an ACL entry?
What is the significance of 'established' in an ACL entry?
- It matches packets that are part of an existing connection (correct)
- It matches packets with a specific IP address
- It matches packets with an ACK in the TCP header
- It matches packets with a specific TCP port
What is the purpose of 'tcp-ack' in an ACL entry?
What is the purpose of 'tcp-ack' in an ACL entry?
- To match packets with a specific IP address
- To match packets with a specific sequence number
- To match packets with an ACK in the TCP header (correct)
- To match packets with a specific TCP port
What is the correct syntax to permit TCP packets with an ACK in the header?
What is the correct syntax to permit TCP packets with an ACK in the header?
What is the significance of the number '21' in an ACL entry?
What is the significance of the number '21' in an ACL entry?
What does the 'established' keyword in an ACL entry indicate?
What does the 'established' keyword in an ACL entry indicate?
What is the purpose of the 'eq 21' parameter in the ACL entry?
What is the purpose of the 'eq 21' parameter in the ACL entry?
Why is the 'tcp-ack' keyword not necessary in the ACL entry?
Why is the 'tcp-ack' keyword not necessary in the ACL entry?
What is the effect of including the 'any any' parameters in the ACL entry?
What is the effect of including the 'any any' parameters in the ACL entry?
What is the purpose of the ACL entry access-list 10 permit tcp any any eq 21 established?
What is the purpose of the ACL entry access-list 10 permit tcp any any eq 21 established?
Study Notes
Configuring ACL for TCP ACK Packets
- To allow packets with ACK in the TCP header, an ACL entry is required
- The correct ACL entry includes the "established" keyword, indicating that the packet has the ACK flag set
- The correct answer is B. access-list 10 permit tcp any any eq 21 established
- The "established" keyword is used to match packets that are part of an established connection, which includes ACK packets
- Option B is the correct answer because it includes the "established" keyword, which ensures that only packets with the ACK flag set are permitted
Configuring ACLs for TCP Packets
- To permit packets with an ACK in the TCP header, an ACL entry is required.
- The correct ACL entry is:
access-list 10 permit tcp any any eq 21 established
- This entry allows TCP packets on port 21 that have the ACK flag set, indicating acknowledgement of received data.
- The
established
keyword is crucial, as it ensures only packets belonging to an established connection are permitted.
Studying That Suits You
Use AI to generate personalized quizzes and flashcards to suit your learning preferences.
Description
This quiz tests your knowledge of configuring Access Control Lists (ACLs) to permit packets with specific TCP header flags. Learn how to create an ACL that allows packets with ACK flags.