在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
命令查看路由表。