buildroot网络接口配置之添加删除默认路由

 

如对eth0接口在自动启来之后添加默认路由,只需在eth0的接口配置添加gateway配置即可:

 

cat /etc/network/interfaces

# interface file auto-generated by buildroot

auto lo

iface lo inet loopback

 

auto eth0

iface eth0 inet static

address 192.168.0.202

netmask 255.255.255.0

gateway 192.168.0.1

 

如上interface文件eth0添加“gateway 192.168.0.1”配置后查看路由可看到:

buildroot网络接口配置之添加删除默认路由_第1张图片

去掉“gateway 192.168.0.1”配置后查看路由可看到:

 

 

 

你可能感兴趣的:(linux,路由器)