Arch Linux pptpclient

So networkManager is crap, and I don’t use gnome.

A nice alternative I found on the archwiki page is pptpclient: https://wiki.archlinux.org/index.php/PPTP_VPN_client_setup_with_pptpclient

Basically it boils down to:

[code]
sudo pacman -S pptpclient
sudo pptpsetup –create citesVPN –server vpn.cites.illinois.edu –username YOURNETID –password YOURPASSWORD –encrypt
[/code]

hen when you want to actually use it:

the ip route will make it so all of your network traffic runs through the vpn.

[code]
sudo pon citesVPN
sudo ip route add default dev ppp0
[/code]

then to shut off the vpn

[code]
sudo poff citesVPN
[/code]

And that’s about it…