[MaxOSX] 路由操作

时间:2022-08-24 01:13:33

查看当前路由情况

netstat -nr

添加路由

sudo route -n add x.x.x.x/24 x.x.x.x 

可以简单这样子理解:

第1个参数 x.x.x.x/24是远程地址

第2个参数 x.x.x.x 是本地地址

绑定到指定设备

sudo route add -net 172.16.50 -interface ppp0

其中ppp0就是你的设备名字

删除路由

sudo route -n delete x.x.x.x/24 x.x.x.x

Have fun with MacOSX!