A systems administrator wants to test the route between IP address 10.0.2.15 and IP address 192.168.1.40. Which of the following commands will accomplish this task?
A. this syntax is incorrect
B. this is correct syntax, but 192.163.1.40 should be 192.168.1.10
C. incorrect syntax
D. this is also incorrect syntax
ip route get 192.168.1.40 from 10.0.2.15 is the answer
assuming 163 is a typo (should be ...168...).
"Test the route" is generic. Both B & D are correct, but `ip` supplants `route`. IOW, the `net-tools` suite (containing `route`) is becoming or has become deprecated by the `iproute2` suite (containing `ip`) in mainstream Linux distributions.
A. route -e get to 192.168.1.40 from 10.0.2.15
Here's why:
route -e: This flag displays the effective routing table, including both static and dynamic routes currently in use.
get to: This specifies the type of information to retrieve, in this case, the route to the destination IP address.
192.168.1.40: This is the destination IP address for which you want to test the route.
from 10.0.2.15: This specifies the source IP address from which the route test will be initiated.
command format:
ip route get [destination ip address] from [origin ip address]
The get argument is equivalent to sending a packet along this path.
Answer B is using the correct command and I think 192.163.1.40 is a simple mistake
I dont know if the wrong IP Address was included on purpose, but neither B or C can be correct in the current format. The incorrect IP is present in the answer.
B. ip route get 192.168.1.40 from 10.0.2.15
The "ip route get" command is used to display the path that packets take to reach a specific network host, in this case, 192.168.1.40, from the source IP address 10.0.2.15. This command will show the routing table entries used to determine the path of the packets.
upvoted 2 times
...
This section is not available anymore. Please use the main Exam Page.XK0-005 Exam Questions
Log in to ExamTopics
Sign in:
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one.
So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
Lwarder1
Highly Voted 2 years, 3 months agoNastyNutsu
2 months agoJRS99
Most Recent 3 months, 2 weeks agoclair12
6 months, 1 week agoMikeFNT123
7 months, 1 week agoe418137
1 year, 2 months agosademik
1 year, 2 months agomutawakil
1 year, 4 months agoangellorv
2 years agoPOGActual
2 years, 1 month agolinux_admin
2 years, 2 months ago