A network engineer is troubleshooting an issue where workstations on a branch office subnet () cannot access an internal corporate web server () over HTTPS or reach external websites. Local inter-VLAN traffic works normally.
The engineer inspects the workstation configuration and branch router logs:
Workstation Network Settings:
- IP Address:
- Subnet Mask:
- Default Gateway:
Branch Router Routing Table (`show ip route` excerpt):
- is directly connected, `GigabitEthernet0/0.30`
- [1/0] via
Branch Router Outbound ACL (`show ip access-lists OUTBOUND_FILTER` excerpt):
- `10 permit udp 192.168.30.0 0.0.0.255 host 10.50.4.100 eq 443`
- `20 deny ip 192.168.30.0 0.0.0.255 10.50.0.0 0.0.255.255`
Which TWO factors are directly responsible for the observed connectivity failure? (Select TWO.)
- The router lacks a specific static or dynamic route targeting the internal network via the IPsec tunnel interface.Cevap
- ACL line 10 specifies UDP instead of TCP for destination port 443, causing HTTPS web traffic to be blocked by the subsequent deny rule.Cevap
- CThe workstation's default gateway address resides on a different IP subnet than the client IP address.
- DThe default gateway drops traffic due to a port and protocol mismatch between HTTP port 80 and HTTPS port 443 on the local client interface.