APPENDIX
A1. Install MPPE Kernel Module on Fedora Core 4 / 5 / 6
In summary, Fedora Core 5 or above, the Kernel has built-in MPPE functionality.
Kernel version 2.6.15 or above has MPPE built-in which is required for MSCHAPv2. Fedora Core 5 and 6 kernel version on the CD are 2.6.15 and 2.6.18 respectively. That means you do not need to install the MPPE module as you have to for Fedora Core 4. Information for FC4 and MPPE is in Appendix A1.2.
To test if your kernel supports MPPE:
[root@pptp ~]# modprobe ppp-compress-18 && echo ok
It should return an "ok". Then move to step 8.
Note: The latest kernel for Fedora Core 5/6 at the time of writing is 2.6.20.
MPPE support is required for MSCHAPv2. Depending on the kernel version, you may or may not require to perform this step. Kernel version 2.6.15 or above has MPPE built-in. If you are using the latest FC4 2.6.15 kernel, you can go to Step 8 now. If you are using an older kernel which does not support MPPE, you will have to add this feature to it.
To test if your kernel supports MPPE:
[root@pptp ~]# modprobe ppp-compress-18 && echo ok
If it returns an "ok", you can safely skip this step and move to Step 8 . If you see "FATAL: Module ppp_mppe not found.", install MPPE support as described in the following procedure:
Download the MPPE module builder in rpm format from here. The required RPMs are::
dkms-2.0.6-1.noarch.rpm kernel_ppp_mppe-1.0.2-3dkms.noarch.rpm
Install them with command "rpm -ivh".
[root@pptp ~]# rpm -ivh dkms-2.0.6-1.noarch.rpm [root@pptp ~]# rpm -ivh kernel_ppp_mppe-1.0.2-3dkms.noarch.rpm
If you upgrade your kernel to 2.6.13 or above, kernel_ppp_mppe version 1.0.2 or above must be used. Otherwise, the pptp tunnel will not connect and you will see error message "This system lacks kernel support for PPP." in /var/log/messages.
Please see A1.3 Kernel Upgrade and dkms_autoinstaller for more information on dkms.
If you upgrade your kernel after installing dkms, thanks to the dkms_autoinstaller service, you will not have to worry about the dkms kernel module. dkms_autoinstaller runs on every bootup. It checks the dkms module to ensure it match the kernel version. If a mismatch is found, it will create a proper one for the boot kernel.
For dkms_autoinstaller to work, you will need the correct kernel-devel version installed in your system. It is always a good idea to install the kernel-devel rpm alongside with your new kernel.