312-50V11 · Question #177
You are an Ethical Hacker who is auditing the ABC company. When you verify the NOC one of the machines has 2 connections, one wired and the other wireless. When you verify the configuration of this…
The correct answer is D. The first static route indicates that the internal addresses are using the internal gateway and the. The two static routes configure a dual-homed Windows host to route internal 10.x.x.x traffic through an internal gateway and all other traffic through an external gateway.
Question
You are an Ethical Hacker who is auditing the ABC company. When you verify the NOC one of the machines has 2 connections, one wired and the other wireless. When you verify the configuration of this Windows system you find two static routes. route add 10.0.0.0 mask 255.0.0.0 10.0.0.1 route add 0.0.0.0 mask 255.0.0.0 199.168.0.1 What is the main purpose of those static routes?
Options
- ABoth static routes indicate that the traffic is external with different gateway.
- BThe first static route indicates that the internal traffic will use an external gateway and the second
- CBoth static routes indicate that the traffic is internal with different gateway.
- DThe first static route indicates that the internal addresses are using the internal gateway and the
How the community answered
(32 responses)- A28% (9)
- B9% (3)
- C13% (4)
- D50% (16)
Why each option
The two static routes configure a dual-homed Windows host to route internal 10.x.x.x traffic through an internal gateway and all other traffic through an external gateway.
The first route's destination (10.0.0.0) is a private RFC 1918 address range indicating internal traffic, so describing both routes as external is incorrect.
The first route's gateway (10.0.0.1) is a private internal IP address, not an external gateway, meaning internal traffic is not being routed externally.
The second route (0.0.0.0/0) uses gateway 199.168.0.1, which is a public IP address, making it an external default route rather than an internal one.
The first route (10.0.0.0/8 via 10.0.0.1) directs all RFC 1918 private 10.x.x.x traffic through the internal gateway 10.0.0.1, keeping internal communications on the LAN. The second route (0.0.0.0/0 via 199.168.0.1) is a default catch-all route that forwards all remaining traffic through the external gateway 199.168.0.1, implementing split routing on the dual-homed machine.
Concept tested: Windows static routing and dual-homed split routing
Source: https://learn.microsoft.com/en-us/windows-server/networking/technologies/netsh/netsh-contexts
Topics
Community Discussion
No community discussion yet for this question.