Podcast
Questions and Answers
What option is required when using the route command for IPv6 routing?
What option is required when using the route command for IPv6 routing?
What is the purpose of the gw option in the route command?
What is the purpose of the gw option in the route command?
What is the equivalent command to ip route add for the route command?
What is the equivalent command to ip route add for the route command?
What is the result of not configuring a route to a destination network?
What is the result of not configuring a route to a destination network?
Signup and view all the answers
What is the purpose of the ip route del command?
What is the purpose of the ip route del command?
Signup and view all the answers
Study Notes
Viewing Routing Table
- The
netstat -r
command displays the routing table, including the destination, gateway, netmask, and interface. - The
ip route
command shows the routing table in a similar format, with additional information about the protocol and scope. - The
route
command is similar tonetstat -r
, but with additional information about the metric and reference count.
IPv6 Routing Table
- The
route -6
,netstat -6r
, andip -6 route
commands display the IPv6 routing table. - The IPv6 routing table includes information about the destination, next hop, flag, metric, reference count, and use.
Flags in Routing Table
- The
U
flag indicates that a route is up. - The
!
flag indicates a rejected route. - The
n
flag indicates that the route has not been cached. - The
G
flag indicates a gateway.
Adding and Deleting Routes
- The
route -6 add
command adds a new route to the IPv6 routing table. - The
ip route add
command adds a new route to the IPv6 routing table. - The
route -6 del
command deletes a route from the IPv6 routing table. - The
ip route del
command deletes a route from the IPv6 routing table.
Ping Command
- The
ping6
command is used to test IPv6 connectivity. - The
ping6
command can be used to test the reachability of an IPv6 address.
Studying That Suits You
Use AI to generate personalized quizzes and flashcards to suit your learning preferences.
Related Documents
Description
This quiz covers the basics of viewing and understanding routing tables in networking. Learn how to use the netstat command and interpret the output to troubleshoot network connectivity issues.