1. 程式人生 > >linux永久新增和刪除路由

linux永久新增和刪除路由

ps:可臨時加測試一下

ifconfig eth0 192.168.1.254 broadcast 192.168.1.255 netmask 255.255.255.0

ifconfig eth1 192.168.2.254 broadcast 192.168.2.255 netmask 255.255.255.0

 

 

永久新增

新增

    route add -net 192.168.1.0 netmask 255.255.255.0 gw 172.16.1.100

    route add -net 192.168.2.0 netmask 255.255.255.0 gw 172.16.1.100

      

新增預設路由

    route add -net default gw 172.16.1.100

 

永久刪除

route del -net 172.16.86.0/24

 

檢視路由表

route -n