标签:重启 方法 网关 写入 cad cal eth oca def
如果你添加/修改默认网关时遇到这个问题。
原因:你要添加的网关不在你主机所在的网段。
解决方法:
比如你要添加的网关是10.9.39.250 但是本机没有10.9.39段的网卡
sudo route add 10.9.39.250/32 dev eth0
然后再
sudo route add default gw 10.9.39.250
防止重启失效 写入/sbin/ifup-local 此文件要有执行权限
if [ "$1" = "eth1" ]
then
# eth0为网卡名 如有vlan则填写ethx.xxx
route add 10.9.39.250/32 dev eth0
sudo route add default gw 10.9.39.250
fi
SIOCADDRT: No such process 添加路由报错
标签:重启 方法 网关 写入 cad cal eth oca def
原文地址:https://www.cnblogs.com/l75790/p/9181135.html