VPN設定
VPN設定で
「すべてのトラフィックをVPN接続経由で送信」
は外す。
Interface確認
以下のコマンドで、VPN接続のinterfaceを確認
ifconfig
経路設定
以下のファイルで、VPN接続のinterface「ppp0」に向けるIPアドレスを指定する。
/etc/ppp/ip-up
#!/bin/sh
if [ "$1" = "ppp0" ]; then
/sbin/route add -net 172.31.0.0/16 -interface ppp0
/sbin/route add -net 192.168.1.0/24 -interface ppp0
/sbin/route add -net 192.168.2.0/24 -interface ppp0
/sbin/route add -net 192.168.3.0/24 -interface ppp0
/sbin/route add -net 192.168.4.0/24 -interface ppp0
fi
参考