将ubuntu shell脚本转换为macOS shell脚本

时间:2018-08-29 09:43:38

标签: macos shell ubuntu

我有以下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来表达上面的代码。

0 个答案:

没有答案