История изменений
Исправление
Novator,
(текущая версия)
:
Вот самый правильный скрипт:
#!/bin/sh
VPNINT=tun0
VPNIP=10.8.0.6
ip rule del from $VPNIP
ip route add default dev $VPNINT table VPN
ip rule add from $VPNIP lookup VPN
Иначе маршруты не подчищаются.
Проверять такими командами:
ip rule show
ip route show
ip route show table VPN
ip route show table all
Надеюсь, теперь всё...
Исходная версия
Novator,
:
Вот самый правильный скрипт:
#!/bin/sh
VPNINT=tun0
VPNIP=10.8.0.6
ip rule del from $MOONVPNIP
ip route add default dev $VPNINT table VPN
ip rule add from $MOONVPNIP lookup VPN
Иначе маршруты не подчищаются.
Проверять такими командами:
ip rule show
ip route show
ip route show table VPN
ip route show table all
Надеюсь, теперь всё...