I have a client installed with pptp-linux
. I would like for it to be connected to a VPN (for VPN resources) as well as be connected to the internet for normal web browsing. I know this is not as secure as totally VPN, but it is ok for this setup.
Currently I have a file called settings
in /etc/ppp/peers/settings
that has this:
pty "pptp $VPNHOSTNAME --nolaunchpppd --debug"
name $USERNAME
password $PASSWORD
remotename PPTP
require-mppe-128
require-mschap-v2
refuse-eap
refuse-pap
refuse-chap
refuse-mschap
noauth
debug
persist
maxfail 0
defaultroute
replacedefaultroute
usepeerdns
I fount this tutorial which tells how to do split tunnel with a GUI.
However is there a way to accomplish this same task using the command line or a line in /etc/ppp/peers/settings
?