背景
树莓派装了centos7,有两张网卡,一张有线,一张无线;每次重启后都要执行route add default gw 192.168.1.1才有网络。
看了很多文章,基本都是抄的,内容都是一样,并且说的都不清楚,浪费了很多时间
1. 编辑文件
vim /etc/sysconfig/static-routes
2. 添加内容,保存退出
any net default gw 192.168.1.1
192.168.1.1是你的路由器网关
原理
应该是启动时候会执行这个文件,系统的代码如下
# Add non interface-specific static-routes.
if [ -f /etc/sysconfig/static-routes ]; then
grep "^any" /etc/sysconfig/static-routes | while read ignore args ; do
/sbin/route add -$args
done
fi
any 开头的都会拿来执行,route add 再拼接你后面的代码
完整如下
route add default gw 192.168.1.1