Page 1 of 1

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

Posted: Wed 14 Mar 2012, 10:52
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

Posted: Tue 23 Apr 2013, 16:30
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

Posted: Tue 23 Apr 2013, 20:24
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.

Posted: Wed 24 Apr 2013, 12:04
by stiginge
Good semme, that work for gadmin. Do you have any gadmin configuration file and settings (user/pass) for a workable vpn?

Posted: Wed 24 Apr 2013, 20:51
by Semme

Posted: Thu 09 May 2013, 11:27
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

Posted: Thu 09 May 2013, 14:32
by stiginge
those are useless because they dont provide the vpn server details - ip, username,pw.

Posted: Wed 08 Jan 2014, 04:43
by surender
/bin link set dev tun0 linux ip link set failed

Posted: Wed 08 Jan 2014, 21:44
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

Posted: Fri 26 Dec 2014, 19:58
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.