Linux_FoundationLinux_Foundation
LFCS · Question #231
LFCS Question #231: Real Exam Question with Answer & Explanation
The correct answer is D: route add default gw 192.168.1.1. The route add command is used to add a static route to the routing table, including a default route, by specifying the gateway IP address.
Submitted by joshua94· Apr 18, 2026Networking
Question
Which of the following statements would create a default route using a gateway of 192.168.1.1?
Options
- Anetstat -add default gw
- Broute default 192.168.1.1
- Cip route default 192.168.1.1
- Droute add default gw 192.168.1.1
- Eifconfig default gw 192.168.1.1 eth0
Explanation
The route add command is used to add a static route to the routing table, including a default route, by specifying the gateway IP address.
Common mistakes.
- A.
netstatis primarily used for displaying network connections, routing tables, and interface statistics, not for adding routes. - B. The syntax
route default 192.168.1.1is incomplete and syntactically incorrect for adding a default route using theroutecommand. - C. While
ip route add default via 192.168.1.1is a correct modern command, the provided optionip route default 192.168.1.1is syntactically incorrect. - E.
ifconfigis used for configuring network interfaces (like setting IP addresses), not for adding routes to the routing table.
Concept tested. Adding a default route using route command
Reference. https://man7.org/linux/man-pages/man8/route.8.html
Topics
#Routing#Default Gateway#Network Configuration#Linux Commands
Community Discussion
No community discussion yet for this question.