By Euphorical
Hello, when setting up my VPN I used this tutorial: https://www.digitalocean.com/community/articles/how-to-setup-your-own-vpn-with-pptp
It works but when I connect to it, it is very slow and only a few websites load. I have gone and viewed the logs file for errors and it says: PPP: compressor dropped pkt
I’ve tried the same thing on another droplet but I get the same problem. Also, I have tried searching Google but the only results I get aren’t for Ubuntu.
If anyone has any advice I’d appreciate it and follow through. For the time being, I am using openvpn connect.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Hey guys, I’ve fixed the problem, You’ve gotta do:
<br>
<br>Below is my workaround script, place it into file ‘/etc/ppp/ip-up.d/mppefixmtu’ and ensure that it is executable (‘chmod +x mppefixmtu’):
<br>
<br>#!/bin/sh
<br>CURRENT_MTU=“ifconfig $1 | grep -Po '(?<=MTU:)([0-9]+)'”
<br>FIXED_MTU=“expr $CURRENT_MTU + 4”
<br>ifconfig $1 mtu $FIXED_MTU
<br>echo “Increased MTU for $1 to $FIXED_MTU (from $CURRENT_MTU) to fix MPPE Microsoft Point-to-Point bug #330973”
<br>
<br>Taken from: http://danielsokolowski.blogspot.com/2013_04_01_archive.html
The comment’s didn’t work so just go to: http://danielsokolowski.blogspot.com/2013_04_01_archive.html
Hello,
I had the same problem on centos 6.5, some pages simply wont load, however I just added
ifconfig $1 mtu 1400
to /etc/ppp/ip-up and it worked
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.
