• Visitors can check out the Forum FAQ by clicking this link. You have to register before you can post: click the REGISTER link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. View our Forum Privacy Policy.
  • Want to receive the latest contracting news and advice straight to your inbox? Sign up to the ContractorUK newsletter here. Every sign up will also be entered into a draw to WIN £100 Amazon vouchers!
Collapse

You are not logged in or you do not have permission to access this page. This could be due to one of several reasons:

  • You are not logged in. If you are already registered, fill in the form below to log in, or follow the "Sign Up" link to register a new account.
  • You may not have sufficient privileges to access this page. Are you trying to edit someone else's post, access administrative features or some other privileged system?
  • If you are trying to post, the administrator may have disabled your account, or it may be awaiting activation.

Previously on "vpn server software"

Collapse

  • VectraMan
    replied
    I was reading about OpenVPN the other day; looked quite good, and has a sensible (i.e. shared key) mode of operation rather than the overly complex insanity that is some types of VPN.

    IIRC it uses UDP on a particular port which you need to make sure is forwarded from your router to the server (assuming typical NAT based router).

    Leave a comment:


  • ee61re
    replied
    If you need Remote Desktop capability, and simple file sharing / syncing - Microsoft Live Mesh will do it.

    Leave a comment:


  • doodab
    replied
    Yeah you do have to configure it.

    When running as a server service (just go into services,msc and enable the service), you need to put a config file in the config subdirectory of the install directory, it will start a server listener for each file it finds with a name XXX.ovpn.

    My config looks something like

    Code:
    mode p2p
    secret test.key
    dev tun
    float 
    ifconfig 192.168.5.1 192.168.5.2
    proto udp
    lport 8000
    and the client looks something like

    Code:
    mode p2p
    secret test.key
    dev tun
    remote a.b.c.d 8000
    ifconfig 192.168.5.2 192.168.5.1
    proto udp
    nobind
    Where a.b.c.d is the external address of my router and I have port forward set up from port 8000 to port 8000 on the desktop.

    When connected this gives a network segment 192.168.5.x connecting the two machines, so then I can use remote desktop, browse via explorer and so on.

    I will try and find the instructions for generating the test.key (which is a static encryption key). You can also use PKI and dynamically generated keys but I've not got around to setting that up.

    Edit: openvpn -genkey seems to be the command to generate a static key file.
    Last edited by doodab; 29 June 2011, 18:53.

    Leave a comment:


  • chef
    replied
    weirdly i found an old mail from you with exactly that recommendation, its installed Im now trying to work out how to ###k to configure it to run as a server when i connect it fails but that could well be because Ive not edited any config files in any way..

    Leave a comment:


  • doodab
    replied
    OpenVPN - Open Source VPN

    Works a treat for me.

    The computer running the server has to be switched on (this can be got around using wake on lan magic packets if need be) then I just fire up the client, connect to the remote machine and fire up remote desktop or VNC to get a desktop session.

    Leave a comment:


  • chef
    started a topic vpn server software

    vpn server software

    i want to setup a vpn to allow me to connect from laptop on a free wifi (i.e hotel etc.) to my main workhorse desktop at home, any suggestions of (ideally free) vpn server software to allow me to do this?

Working...
X