A network administrator is troubleshooting connectivity issues for a workstation that cannot access a secure web portal (). The workstation is assigned an IP address of with a default gateway configured as . A ping test from the workstation to its configured default gateway fails. Furthermore, inspection of the interface ACL on the intermediate router shows only the following rule: `permit tcp 192.168.5.0 0.0.0.255 host 10.50.20.15 eq 80`. Which TWO of the following configurations are causing the connection to fail? (Select TWO)
- The host workstation's configured default gateway resides on a different IP subnet than the host address.Cevap
- The Access Control List on the router lacks an explicit permit rule for TCP port 443 traffic, causing it to be dropped by implicit deny.Cevap
- CThe workstation IP address of 192.168.5.85 is a reserved broadcast address for the 192.168.5.0/24 subnet.
- DThe router ACL rule fails because port 80 and port 443 use UDP instead of TCP at the transport layer.
Cevap
The connectivity failures are caused by the default gateway being configured on a different IP subnet than the host (192.168.6.1 vs 192.168.5.0/24) and the router ACL lacking an explicit permit statement for HTTPS traffic on TCP port 443.
The host is unable to reach its default gateway because falls outside the host's subnet. Additionally, even if routing succeeded, the secure web traffic targeting TCP port 443 is blocked by the router's ACL, which only permits TCP port 80 traffic before falling through to the implicit deny all rule.
Adım Adım Çözüm
Anahtar Kavram
Subnet alignment for default gateways and Access Control List port matching