A network administrator is troubleshooting connectivity issues for a workstation assigned the static IPv4 address . The workstation can communicate with local hosts on its subnet (), but cannot connect to a secure web portal hosted externally at .
During diagnostic collection, the administrator notes the following settings:
- Workstation IPv4 Address:
- Subnet Mask:
- Configured Default Gateway:
- Router Interface Inbound ACL Rule:
`permit tcp 192.168.50.128 0.0.0.63 host 203.0.113.50 eq 80`
Which TWO configuration issues are preventing the workstation from establishing a connection to the external web portal?
- The default gateway address is assigned outside the workstation's local IP subnet range.Answer
- The router interface ACL lacks an explicit permit rule for TCP port 443 traffic and is dropped by the implicit deny.Answer
- CThe IP address assigned to the workstation is reserved as the broadcast address for the subnet.
- DThe ACL rule fails because HTTPS connections use UDP port 80 instead of TCP port 80.
Answer
The two issues preventing access are that the configured default gateway resides outside the workstation's local IP subnet range, and the router ACL lacks an explicit permit rule for HTTPS (TCP port 443) traffic, causing it to be dropped by the implicit deny.
The host is unable to send traffic to external networks due to two misconfigurations. First, the configured default gateway address belongs to the subnet range , whereas the host resides in the subnet; a gateway must reside on the same IP subnet as the host to be reachable. Second, the destination server connection requires HTTPS on port 443, but the ACL only permits HTTP on port 80. Since ACLs evaluate sequentially and end with an implicit deny statement, the HTTPS packets are blocked by the firewall/router.
Step-by-Step Solution
Key Concept
Subnet Mask Boundaries and Access Control List Filtering Mechanics