| 日 | 一 | 二 | 三 | 四 | 五 | 六 |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | 4 | |||
| 5 | 6 | 7 | 8 | 9 | 10 | 11 |
| 12 | 13 | 14 | 15 | 16 | 17 | 18 |
| 19 | 20 | 21 | 22 | 23 | 24 | 25 |
| 26 | 27 | 28 | 29 |
Configuring VPN on Ubuntu 7.04
Feisty/Edgy
You will need NetworkManager installed:
sudo apt-get install network-manager-gnome network-manager-pptp
sudo NetworkManager restart
Dapper/Breezy/Hoary
After much searching for how to connect to a plain old PPTP VPN, I finally figured out how to do it, and since there's no guide on here that doesn't relate to the Cisco client, I figured I'd post one. The source of this information is at the bottom of the post. Here goes:
1. First, you need to install the pptp-client for Linux. Open up the terminal and type in:
sudo apt-get install pptp-linux
Run this command.
sudo gedit /etc/apt/sources.list
# James Cameron's PPTP GUI packaging
deb http://quozl.netrek.org/pptp/pptpconfig ./
3. Run these commands in the terminal:
sudo apt-get update
sudo apt-get install pptpconfig
sudo pptpconfig
**NOTE: You must run pptpconfig as root, otherwise, it will not work.
5. Enter in the info for your VPN to the GUI, click "Add," select the server you just added by clicking on it, and then hit "Start." Make sure that your options are set, as well. If you are unsure of what options your VPN needs, contact your system administrator.
For a more complete guide, check out this site:
http://pptpclient.sourceforge.net/ho....phtml#install
Finally, if you are getting this error: "cannot determine proxy address for arp" and VPN simply hangs there, then you need to add a route manually like this:
route add -net 192.168.0.0 netmask 255.255.255.0 dev ppp0
Also, you need to add the require-mppe-128 option if you get this error: "LCP terminated by peer (weird characters)"

Recent comments