|
|
|
|
|
 |
project |
|
 |
 |
|
 |
 |
 |
| documentation |
 |
 |
|
 |
 |
 |
| team |
 |
 |
|
 |
 |
 |
 |
 |
 |
 |
| |
PPTP Client
Fedora Core 4 HOWTO
by James Cameron 27th October 2005
This describes how to install PPTP Client on a Fedora Core 4 system.
It was based on mailing list postings
and has not been tested by the release engineer yet.
The process involves installing MPPE (if your kernel is before
2.6.15), then PPTP followed by configuration.
Installation
- install MPPE capability:
MPPE is Microsoft Point-To-Point Encryption, and is described in
RFC3078. You will need to install it if your PPTP Server requires it,
and if your kernel is before 2.6.15. Microsoft Windows VPN Server
requires MPPE. If you do not require MPPE, skip this step.
If you can upgrade to 2.6.15 or later, do so, then skip the remainder
of this step.
Our thanks to Matt Domsch of Dell for his contribution to this step
using the Dynamic Kernel
Module Support.
- install the kernel-devel package for your kernel (or
kernel-smp-devel if you are running an SMP kernel), for
example:
| # yum install kernel-devel
|
- check that your system is running the kernel corresponding to the
package requested in the previous step. Use the uname command
to display the version of the running kernel, for example:
If the version shown is not the version installed in the previous
step, reboot into that kernel. Otherwise the dkms build below
may fail, because the kernel package for the current kernel may not be
installed.
- install the dkms package:
- download the kernel_ppp_mppe dkms rpm
(mirror link)
and install it:
| # rpm --install kernel_ppp_mppe-1.0.2-3dkms.noarch.rpm |
- test that the MPPE module loads on request:
| # modprobe ppp-compress-18 && echo success
|
Note: this may fail if the ppp_generic module was already
loaded when the kernel_ppp_mppe package was installed, as the
original module is replaced on disk but not in memory. Check this by
unloading the module, e.g. using "rmmod ppp_generic" or rebooting.
Then repeat the modprobe.
Note: if you wish to build the kernel from source, see our really complex instructions.
- download the PPTP client program pptp rpm
(mirror link)
and install it like this:
| # rpm --install pptp-1.7.0-1.i386.rpm |
Note: alternatively we've been told that you can get it from Fedora Extras, like this:
- verify that you have dependencies installed for the packages in
the next step; (usually this is only a problem if you did a custom
install):
| # yum install libxml libglade
|
These packages are also available on the distribution media.
- download the configuration program interpreter php-pcntl rpm
(mirror link)
and install it like this:
| # rpm --install php-pcntl-4.4.0-1.i386.rpm |
- download the configuration program GTK+ interface php-gtk-pcntl rpm
(mirror link)
and install it like this:
| # rpm --install php-gtk-pcntl-1.0.2-1.i386.rpm |
- download the configuration program pptpconfig rpm
(mirror link)
and install it like this:
| # rpm --install pptpconfig-20040722-6.noarch.rpm |
Configuration
- obtain from your PPTP Server administrator:
- the IP address or host name of the server,
- the authentication domain name, (e.g. WORKGROUP),
- the username you are to use,
- the password you are to use,
- whether encryption is required.
- run pptpconfig as root, and a window should appear,

- enter the server, domain, username and password into the Server tab,
- if you decided in Installation step 1 above that you would need
MPPE, and if your administrator says encryption is required, then on
the Encryption tab, click on Require Microsoft
Point-to-Point Encryption (MPPE),

- click on Add, and the tunnel will appear in the list,
- click on the tunnel to select it, click on Start, and a
window will appear with the tunnel connection log and status,
- if the connection fails, you will need to gather more information,
so on the Miscellaneous tab, click on Enable connection
debugging facilities, click Update, try Start again,
then look at the Diagnosis HOWTO for
whatever error is displayed.

- if the connection succeeded, you can try the Ping test
button. If the ping fails, you should try to find out why before
proceeding. If the ping works, then the tunnel is active and you may
now work on routing.
- decide whether all your network traffic should go via the tunnel
or not. If so, Stop the tunnel, select it again, then on the
Routing tab, click on All to Tunnel, then click
Update and try Start again. Now try to access the
network behind the server.
- on the other hand, if only some of your network traffic should go
via the tunnel, you will need to obtain from the server administrator
or folk lore a series of network routes to enter. Stop the
tunnel, select it again, then click on either Client to LAN or
LAN to LAN on the Routing tab, use the Edit Network
Routes button to enter the routes one by one, and then try
Start again. Now try to access the network behind the
server.

For further help with Routing, read our Routing
HOWTO.
Diagnosing Problems
If you have problems with the tunnel and need to ask for help, start
pppd with complete logging:
# script pptp.log
Script started, file is pptp.log
# pppd call tunnelname dump debug logfd 2 nodetach
# exit
Script done, file is pptp.log
|
where tunnelname is the name of the tunnel you created in the
configuration program. For more detail, see enabling debug logging.
This will give you a file pptp.log that you can use to search
for known solutions in the Diagnosis
HOWTO or attach to an e-mail to the mailing
list.
If you have comments on this document, please send them to the author
at james.cameron at hp.com. But if you need help, use the mailing list so that we can share the
load.
| Date | Change |
| 2005-10-27 |
Add kernel version check and possibility of already loaded ppp_generic
module, per the feedback
from Paul Howarth.
|
| 2005-08-03 |
Upgrade instructions to latest versions.
|
| 2005-08-03 |
dkms is now in Fedora Extras, which I'm told is available to
all users after installation, so changed the instructions to just use
yum.
|
| 2005-07-02 |
Added requirement for kernel-devel package, thanks to Ted Rule, Paul Howarth, and epsilon.
|
| 2005-06-20 |
Removed accidental reference to "Fedora Core 3" that had been
inherited from the previous version.
|
| 2005-06-18 |
Add Fedora Extras reference to pptp, after feedback. Yet to be tested.
|
| 2005-06-17 |
First draft, inherited from Fedora Core 3 HOWTO.
|
|