静态路由设置

静态路由设置

macOS上设置

查看路由表

netstate -rn

添加路由

# 配置 -> 从r2s的eth0[192.168.11.1]出 -> 到目标网络[10.10.10.0/24]
sudo route -n add -net 10.10.10.0/24 192.168.11.1

# 配置 -> 从nas的eth0[192.168.2.8]出 -> 到目标网络[10.10.10.7/32]
sudo route -n add -net 10.10.10.7/32 192.168.2.8

删除一条路由

sudo route -n delete -net 10.10.10.0/24 192.168.2.8

Windows上设置

参考:
https://blog.csdn.net/qq_36743482/article/details/73610171
vpn 与 windows路由设置
https://blog.jtwo.me/configure-routing-table-for-vpn-diversion/

查看ip信息

ipconfig

ipconfig /all # 查看详细

netsh interface ip show config

netsh interface ipv4 show address 

查看路由表

route print #(或者 route print -4)

版权所有,转载请注明出处 luowei.github.io.