An administrator is configuring a stateless extended IPv4 Access Control List (ACL) on a WAN edge router interface (GigabitEthernet0/1) to secure traffic between an internal database cluster () and a remote external cloud database server (). Internal hosts initiate outbound TCP connections to the external server on destination port .
To allow outbound traffic, the outbound ACL on GigabitEthernet0/1 contains the following rule:
`access-list 101 permit tcp 192.168.10.0 0.0.0.255 host 203.0.113.50 eq 5432`
Which entry must be added to the inbound ACL on GigabitEthernet0/1 to permit return traffic from the database server back to internal hosts while preventing unrequested inbound TCP connections from external sources?
- access-list 102 permit tcp host 203.0.113.50 eq 5432 192.168.10.0 0.0.0.255 establishedCevap
- Baccess-list 102 permit tcp host 203.0.113.50 192.168.10.0 0.0.0.255 eq 5432
- Caccess-list 102 permit udp host 203.0.113.50 eq 5432 192.168.10.0 0.0.0.255 established
- DOmit an inbound rule on GigabitEthernet0/1 because stateless routers dynamically permit incoming packets that match active outbound TCP sessions.
Cevap
The inbound ACL entry must specify 'access-list 102 permit tcp host 203.0.113.50 eq 5432 192.168.10.0 0.0.0.255 established'.
Stateless Access Control Lists evaluate packets individually without keeping track of connection state tables. When an internal client initiates a TCP session to port 5432 on an external server, the server's return packets will have a source IP of 203.0.113.50, a source TCP port of 5432, and a destination IP in the 192.168.10.0/24 network. Additionally, valid return traffic in a TCP handshake contains the ACK or RST flag. Using the entry containing 'host 203.0.113.50 eq 5432 192.168.10.0 0.0.0.255 established' correctly checks that source port 5432 is specified and that non-SYN return packets are permitted while blocking incoming new connection attempts.
Adım Adım Çözüm
Anahtar Kavram
Stateless extended ACL return traffic filtering using TCP flag matching (`established` keyword)
Tahmini Süre:3m 0s