如何找到 ubuntu 盒子的預設網關
答案1
經典答案
route
尋找類似以下內容的行:
default 10.63.3.254 0.0.0.0 UG 0 0 0 eth0
第二列包含預設網關,最後一列是介面。
您也可以使用 ip 命令:
ip route
這會給你類似的東西
default via 10.63.3.254 dev eth0
答案2
您也可以使用“netstat -nr」(我通常將 n 留在標誌中,以便在出現 DNS 問題時不必等待主機解析)。
答案3
grog:/var/log# route -n
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
192.168.1.0 0.0.0.0 255.255.255.0 U 0 0 0 eth0
0.0.0.0 192.168.1.1 0.0.0.0 UG 0 0 0 eth0
您也可以檢查 /etc/network/interfaces 以查看下次重新啟動或網路重新啟動時的情況。