Afrihost PPTP lower latency service: CAPETOWN edition

This service provides you with a possibly lower-latency connection to international sites, by forwarding your traffic from Cape Town. This may improve gaming latency towards the UK and the Americas.

Restrictions apply:

PPTP overview (point to point tunnelling protocol)

You can connect to this PPTP server with these settings:

Additionally, you need to ensure that your router allows your system to make PPTP connections:

Operating systems

Windows 10

Windows 10 supports PPTP by default, but you will need to persuade it to connect to this particular PPTP server because there is no encryption.

  1. In the menu, use the "Search" function, and type "VPN"
  2. Add a VPN connection with these settings:
    • VPN provider: Windows (built-in)
    • Connection name: "Phone home" (or something suitable for your network)
    • Server name or address: "pptp.afrihost.capetown"
    • VPN type: Point to Point Tunneling Protocol (PPTP)
    • Type of sign-in info: User name and password
    • User name: yourusername@afrihost.co.za
  3. Set advanced settings for the VPN
  4. Set the "Allow PAP" advanced option, and click "OK"
  5. Connect to the VPN, and enter your connectivity password.

Linux

You need pptpd and pppd, and you're almost there:
# sudo apt install pptpd pppd
And then you can dial it up like this:
# sudo pppd noauth name myusername@afrihost.co.za password mysecretpassword \
  pty "pptp pptp.afrihost.capetown --nolaunchpppd" \
  nodetach defaultroute replacedefaultroute
Using interface ppp0
Connect: ppp0 <--> /dev/pts/7
PAP authentication succeeded
replacing old default route to wlan0 [192.168.0.1]
local  IP address 10.228.0.2
remote IP address 10.228.0.1

You can disconnect with Ctrl+C or killall pppd