Page 1 of 6 123 ... LastLast
Results 1 to 10 of 54

Thread: HOWTO: PPTP GUI (Connecting to a Windows VPN)

  1. #1
    Join Date
    Nov 2004
    Location
    TeXas
    Beans
    14

    Arrow HOWTO: PPTP GUI (Connecting to a Windows VPN)


    This is my first attempt at a how-to, please let me know your results.
    My school, SHSU, uses a Windows based VPN to allow unrestricted access to the wireless network. I, like many others like a nice GUI to assist in such configurations. The client is a proggie written by Quozl, called pptpconfig.

    Here is how to go about getting it:

    Open up a terminal and type:
    Code:
    sudo gedit /etc/apt/sources.list
    Add the line
    to the bottom of the list, save, close and go back to the terminal and type:

    Code:
    sudo apt-get update
    sudo apt-get install pptpconfig
    killall gnome-panel
    It creates some Gnome menus, but it is unorganized and not run as sudo. Edit your menus by following this simple tutorial - Gnome Menu Editor
    Delete the entry it created and make a new one under Applications>Internet or wherever and using the command gksudo pptpconfig
    Good Luck!
    Last edited by ernestoongaro; April 23rd, 2005 at 04:35 AM.

  2. #2
    Join Date
    Mar 2006
    Beans
    21

    Re: HOWTO: PPTP GUI (Connecting to a Windows VPN)

    The following explains both pptp-linux and pptpconfig, for Breezy (Ubuntu 5.10):
    http://pptpclient.sourceforge.net/howto-ubuntu.phtml

  3. #3
    Join Date
    Aug 2006
    Beans
    5

    Re: HOWTO: PPTP GUI (Connecting to a Windows VPN)

    I followed the directions by ernestoongaro and it worked correctly the first time! Thank you!

  4. #4
    Join Date
    Sep 2006
    Beans
    1

    Re: HOWTO: PPTP GUI (Connecting to a Windows VPN)

    I have tried and it'w works perfectly.

    05.09.2006

  5. #5
    Join Date
    Jul 2006
    Location
    Sydney
    Beans
    30
    Distro
    Ubuntu 6.10 Edgy

    Re: HOWTO: PPTP GUI (Connecting to a Windows VPN)

    What works perfectly first time - presumeably the connection to your windows server.

    Can you explain how you access the server after connection please. In my case, I connect perfectly too, but I am unable as yet to open the folders on the server.

    I am interested to learn how you access the server after connection - maybe this will throw some light on my 4 week old problem,

    Cheers
    Geoff

  6. #6
    Join Date
    Jul 2006
    Location
    Surrey, UK
    Beans
    57
    Distro
    Ubuntu 8.04 Hardy Heron

    Re: HOWTO: PPTP GUI (Connecting to a Windows VPN)

    Try clicking on Places, "Connect to server", Choose windows share, and enter the details. HTH..

  7. #7
    Join Date
    Jul 2006
    Location
    Sydney
    Beans
    30
    Distro
    Ubuntu 6.10 Edgy

    Re: HOWTO: PPTP GUI (Connecting to a Windows VPN)

    Thanks for the follow up. yes I eventually worked it out.
    To mount the folder on the remote server:
    Places/Connect to Server
    Service type: windows share
    Server (url): 192.168.16.2 (no slashes etc - just the number address)
    Folder: Company (or whatever the shared folder is on the server)
    Username: fnerk
    DomainName: XXXX (not needed I think)
    Name for Connection: XXXVPN (not important)
    then click on Connect.

  8. #8
    Join Date
    Nov 2005
    Location
    New York, USA
    Beans
    1,223
    Distro
    Ubuntu 14.04 Trusty Tahr

    Re: HOWTO: PPTP GUI (Connecting to a Windows VPN)

    This was exactly what I was looking for!

    One last tweak. After you have opened your remote and are displaying it in nautilus, add it to the nautilus bookmarks. This way, after you open the VPN with pptpconfig, all you have to do is go to Places and click on your bookmark. You can edit the bookmark name to call it whatever you want after you save it by clicking in nautilus bookmarks, edit bookmarks. Notice all this is in nautilus, not firefox. Thanks again. This was an annoyance for me for my work computer that is finally resolved.
    Using Ubuntu since Warty Warthog (4.10)
    32 bit 5.04>5.10>6.06>6.10>7.04>7.10>8.04>8.10>9.04>9.10
    64 bit 9.10 upgraded to 10.04>10.10>11.04>11.10>12.04>14.04

  9. #9
    Join Date
    Feb 2006
    Location
    Kentucky
    Beans
    417

    Re: HOWTO: PPTP GUI (Connecting to a Windows VPN)

    Has anyone got this working correctly on Edgy? I know that I had it working in Dapper but I have been trying for an hour or so on Edgy and it seems to be a no go.
    Thanks,

    etank

  10. #10
    Join Date
    Jun 2005
    Location
    Texas
    Beans
    275
    Distro
    The Feisty Fawn Testing

    Re: HOWTO: PPTP GUI (Connecting to a Windows VPN)

    The PPTPCONFIG utility will not work correctly on Edgy.

    So, what you have to do is:

    1. Use the pptpconfig to create your initial pptp configuration and make sure you choose client-to-lan.
    2. Create an executable script in /etc/pptp/ip-up.d/ which contains the routing information you need.
    3. Use the commands sudo pon <vpn-name> and sudo poff <vpn-name> to get it working.

    Here's an example of the script you'd want...
    Code:
    #!/bin/sh
    if [ "${PPP_IPPARAM}" = "tunnelname" ]; then
       route add -net  192.168.100.0 netmask 255.255.255.0 dev ppp0
       # ...etc...
    fi
    It's irritating I know....
    ---------------------------------------------------
    Monkeys Monkeys Everywhere...

Page 1 of 6 123 ... LastLast

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •