我有以下shell脚本
#!/bin/sh
echo "$dev : $ifconfig_local -> $ifconfig_remote gw: $route_vpn_gateway"
ip route add default via $route_vpn_gateway dev $dev table 20
ip rule add from $ifconfig_local table 20
ip rule add to $route_vpn_gateway table 20
ip route flush cache
exit 0
我没有使用ubuntu,而是使用了无法使用命令ip
的macOS,因此我必须按照this中所述安装iproute2mac
。问题是iproute2mac
没有rule
作为表达式,我也不知道如何用iproute2mac
来表达上面的代码。