Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.

Ubuntu server Vpn setup?

Hey guys! so I recently downloaded ubuntu server 13.04 onto my older laptop. I have my newer laptop which i want to take to school and use with unrestricted wifi, but the connection at my school happens to block a lot of websites from being used. So what i want to do is set up my old laptop as a vpn so i can run my traffic through the connection to get around the blockade. The problem is i have looked online for a while to find how to do it exactly, but a lot of different ways came up. So if someone could find me a way to do it that works I'll give an easy 10 points. It would be very much appreciated! thanks :D

3 Answers

Relevance
  • Anonymous
    8 years ago
    Favorite Answer

    Run this command in a terminal: sudo apt-get install openvpn

    Create a text file somewhere with this text inside it:

    client

    dev tun0

    proto udp

    remote vpn.server.address.com

    resolv-retry infinite

    nobind

    ca /path/to/ca.pem

    auth-user-pass

    Replace "vpn.server.address.com" with the address your VPN provider gives you

    Replace "/path/to/ca.pem" with the path to the certificate file your VPN provider should give you. If you don't have one, you might be able to make this work by removing that line. When I tried, that line was required.

    Save the file and remember where you saved it.

    Now run: sudo openvpn --config /path/to/the/file/you/saved

    I have tested this and I can confirm that it works with my VPN provider.

    If you are having issues, you could try changing "proto udp" to "proto tcp" because some routers or firewalls will not allow the UDP protocol to work without additional setup.

    NOTE: This setup will only work for OpenVPN servers. Another common protocol is PPTP, but it is far less secure due to the encryption method it uses.

    I hope this helps.

  • Anonymous
    7 years ago

    We highly recommend making use of http://www.vpnpower.net/ to unblock sites. I am using their services for more than 3 years without having problems.

  • Anonymous
    7 years ago

    My partner and i endorse applying http://www.vpnpower.net/ to unblock sites. I am using their services for more than 3 years without any difficulties.

Still have questions? Get your answers by asking now.