在Linux系統中,您可以使用route
命令來添加默認網關
<gateway_ip>
替換為您的默認網關IP地址:sudo route add default gw <gateway_ip>
請注意,這個設置在系統重啟后會丟失。要永久保存此設置,您需要編輯/etc/network/interfaces
文件(Debian/Ubuntu系統)或/etc/sysconfig/network-scripts/route-<interface>
文件(RHEL/CentOS系統)。
對于Debian/Ubuntu系統:
/etc/network/interfaces
文件。例如,使用nano
編輯器:sudo nano /etc/network/interfaces
iface eth0
),并在其下方添加以下行:gateway <gateway_ip>
sudo systemctl restart networking
對于RHEL/CentOS系統:
nano
編輯器:sudo nano /etc/sysconfig/network-scripts/route-<interface>
將<interface>
替換為您的網絡接口名稱(例如,eth0
)。
2. 在文件中添加以下內容:
<gateway_ip> dev<interface>
sudo systemctl restart network
現在,您已經成功添加了默認網關。要驗證設置是否正確,請使用route -n
命令查看路由表。