在Linux系统中,可以使用iproute
命令来查看路由表。具体命令如下:
ip route show
ip route show dev <interface>
其中<interface>
为网络接口名称,例如eth0
、wlan0
等。
ip route show dev <interface> stat
ip route show table <table_name>
其中<table_name>
为路由表名称,例如main
、local
等。
sudo ip route add <destination_network> via <gateway> dev <interface>
其中<destination_network>
为目的网络地址,<gateway>
为网关地址,<interface>
为网络接口名称。
sudo ip route del <destination_network> via <gateway> dev <interface>
其中<destination_network>
为目的网络地址,<gateway>
为网关地址,<interface>
为网络接口名称。