OpenVPN 2.2.2 + GDAdmin Server/Client GUI (Lucid 528-004)

Configuration wizards, scanners, remote desktop, etc.
Post Reply
Message
Author
User avatar
chrome307
Posts: 708
Joined: Thu 15 Jan 2009, 11:00

OpenVPN 2.2.2 + GDAdmin Server/Client GUI (Lucid 528-004)

#1 Post by chrome307 »

Homepage:

http://openvpn.net/

What is OpenVPN?

With OpenVPN, you can:

tunnel any IP subnetwork or virtual ethernet adapter over a single UDP or TCP port,
configure a scalable, load-balanced VPN server farm using one or more machines which can handle thousands of dynamic connections from incoming VPN clients,
use all of the encryption, authentication, and certification features of the OpenSSL library to protect your private network traffic as it transits the internet,
use any cipher, key size, or HMAC digest (for datagram integrity checking) supported by the OpenSSL library,
choose between static-key based conventional encryption or certificate-based public key encryption,
use static, pre-shared keys or TLS-based dynamic key exchange,
use real-time adaptive link compression and traffic-shaping to manage link bandwidth utilization,
tunnel networks whose public endpoints are dynamic such as DHCP or dial-in clients,
tunnel networks through connection-oriented stateful firewalls without having to use explicit firewall rules,
tunnel networks over NAT,
create secure ethernet bridges using virtual tap devices, and
control OpenVPN using a GUI on Windows or Mac OS X.


Firstly you need to download this as the pet files are compiled with SSL support:

DOWNLOAD - openssl-1.0.0d-w-20110209.pet :

http://ftp.nluug.nl/ftp/pub/os/Linux/di ... 110209.pet

I have attached 'sample' configuration files, but you should be able to create your own using the GUI.

Image

Image

Image
Attachments
Sample Configuration Files.zip
(5.97 KiB) Downloaded 1801 times
gadmin-openvpn-client-0.1.8-i686.pet
(75.89 KiB) Downloaded 2788 times
gadmin-openvpn-server-0.1.6-i686.pet
(80.2 KiB) Downloaded 1865 times

User avatar
stiginge
Posts: 420
Joined: Thu 22 Mar 2007, 10:10
Location: Kerry, Ireland

#2 Post by stiginge »

hi, I downloaded and extracted to ~ openssl-1.0.0d-w-20110209.pet, however when I click on this to install pet i get:

Code: Select all

Error, package  openssl-1.0.0d-w-20110209.pet failed to install
What could the reason for this be??

running 529 full
Buy silver, crash JPMorgan

User avatar
Semme
Posts: 8399
Joined: Sun 07 Aug 2011, 20:07
Location: World_Hub

#3 Post by Semme »

Sounds like a space problem. Is there at least 75mb's or so for personal storage?

It dwnldd with a pet extension or you renamed it?

Rt-clk >> md5sum check >> a14aafc31edbb2c02ec222e8c4bf29a5

If they don't match:

Code: Select all

wget http://ftp.nluug.nl/ftp/pub/os/Linux/distr/puppylinux/pet_packages-lucid/openssl-1.0.0d-w-20110209.pet
.. from your dwnld directory.

User avatar
stiginge
Posts: 420
Joined: Thu 22 Mar 2007, 10:10
Location: Kerry, Ireland

#4 Post by stiginge »

Good semme, that work for gadmin. Do you have any gadmin configuration file and settings (user/pass) for a workable vpn?
Buy silver, crash JPMorgan

User avatar
Semme
Posts: 8399
Joined: Sun 07 Aug 2011, 20:07
Location: World_Hub

#5 Post by Semme »


jjcoolaus
Posts: 1
Joined: Thu 09 May 2013, 11:22

#6 Post by jjcoolaus »

Hi,
Looks like a great tool :D

but when i open the client I get the error in red "OpenVPN is not installed or not in your path"

I have tried installing the openvpn-2.2.2 pet again but get the same error. What am I doing wrong please?
Thanks
Jason

User avatar
stiginge
Posts: 420
Joined: Thu 22 Mar 2007, 10:10
Location: Kerry, Ireland

#7 Post by stiginge »

those are useless because they dont provide the vpn server details - ip, username,pw.
Buy silver, crash JPMorgan

surender
Posts: 67
Joined: Sun 31 Mar 2013, 01:39

#8 Post by surender »

/bin link set dev tun0 linux ip link set failed

surender
Posts: 67
Joined: Sun 31 Mar 2013, 01:39

#9 Post by surender »

--with-iproute-path=/bin/ip
but you have compiled as --with-iproute-path=/bin how can rectify this please anyone can help me please

User avatar
fabrice_035
Posts: 765
Joined: Mon 28 Apr 2014, 17:54
Location: Bretagne / France

#10 Post by fabrice_035 »

You can create symbolic link for 'IP', command line:

Code: Select all

ln -s /bin/busybox /usr/sbin/ip
And this sample configuration work fine for me, named vpnconf.conf for thix example: (dont forget replace SERVERNAME)

Code: Select all

cd /etc/openvpn
client
dev tun
remote SERVERNAME 1194
proto udp
nobind
resolv-retry infinite
persist-key
persist-tun
ca certs/ca.crt
cipher BF-CBC
comp-lzo
verb 3
auth-user-pass
route-method exe
route-delay 2
dhcp-option DNS 8.8.8.8
i'm not use front end, just command line

Code: Select all

openvpn /etc/openvpn/vpnconf.conf 
and perhaps first (not sure)

Code: Select all

openvpn --genkey --secret /etc/openvpn/keys/shared.key

Bye.

Post Reply