Zgemma and OpenVPN

dar1437

Worldz Biggest Oddball
VIP Member
Joined
Dec 10, 2009
Messages
4,784
Reaction score
9,699
Location
Colorado Lounge
I've been trying to sort out OpenVPN on my Zgemma, with OpenATV6.1 and PIA.

I've followed the instruction (textbook) but i'm not sure that it's working?

Sometimes when i click start, it says running, and other times it does nothing. It was doing the same things when i was using the wrong password (my login one by mistake) lol

In the log, it sais:

Options error: Unrecognised option or missing or extra parameter(s) in /etc/ openvpn/ rpcbind.conf:8: passwd: (2.4.3)

? :)
 
do you have this line in your conf file

auth-user-pass auth.txt

then a file named auth.txt with username and password (username 1st line password on 2nd line)
 
I don't think so?

I got 4 files which i ftpd over:

Client.conf
Ca.rsa.2048
Crl.sa.2048.pem
Password.conf

I got the user and password in the password.conf
 
I don't think so?

I got 4 files which i ftpd over:

Client.conf
Ca.rsa.2048
Crl.sa.2048.pem
Password.conf

I got the user and password in the password.conf

what error/info is printed when running openvpn from the command line?
 
what error/info is printed when running openvpn from the command line?
Sorry mate, you've lost me now lol
I'm a bit of a novice. :)

I seem to have got a plug-in called Vpn Config Changer which i think may be interfering with it. (Can't seem to find it in remove plugins?
 
do you know how to access the zgemma receiver command line interface using telnet?

you should first make sure you can run the ovpn file via commandline before trying the gui

steps.
copy all of the keys and certs and one of .ovpn files they gave you to /etc/openvpn. how many files will depend on their config

now from the cli run this command
Code:
You don't have permission to view the code content. Log in or register now.

now the service should start and ask you for your username and password, do this

if it runs you should see code like below appear in the CLI

Code:
You don't have permission to view the code content. Log in or register now.
 
another thing that comes to mind to try is cat the password file, this is beacuse depending on what you used to create the password file it can be in the wrong format.

to cat the password file from the command line just run the following command.
Code:
You don't have permission to view the code content. Log in or register now.

if it comes out in a load of special character delete it and rewrite it using nano or vi.
 
You have put all four files in folder installed OpenVPN then FTP it to “ETC”

Your user and password should be like.....


User
Password



NOT....
User Password
 
can you paste the conf file = remove any sensitive data
 
client
dev tun
proto udp
remote germany.privateinternetaccess.com 1198
resolv-retry infinate
nobind
persist-key
persist-tun
cipher aes-128-cbc
auth sha1
tls-client
remote-cert-tls server
auth-user-pass password.conf
comp-lzo
verb 1
reneg-sec 0
crl-verify crl.rsa.2048.pem
ca ca.rsa.2048.crt
disable-occ

@alankellyeire i gave the telnet a go, but got no sense. (probably me lol)
 
@alankellyeire

I tried the cat /etc/openvpn/<passwordfile>

and it showed the user id but no password?

cant try the openvpn /etc/openvpn/<nameofopvnfile.ovpn>,
no file there with .ovpn?
tried the
Crl.sa.2048.pem on the off chance :)
 
im having exact the same problems mate! comes up running sometimes but only for a few seconds then back to stopped,

ill keep trying tho lol
 
You have put all four files in folder installed OpenVPN then FTP it to “ETC”

Your user and password should be like.....


User
Password



NOT....
User Password

ive only got 3 files in folder.....ca. ipvanish.com, client.conf and login

what am I missing then?

cheers.
 
try these files. vpn is germany and PIA.
You will need to login to PIA for your user and pass.
I just made dummy user and password. Install openvpn on zgemma i suggest you use openatv 6.1
Put four files in folder then FTP it to “etc”

There is guide on PIA site.
 

Attachments

  • OpenVPN.rar
    2.2 KB · Views: 20
Last edited:
I've being using easyVPN on myZgemma H2.S since launch but recently when entering the plugin I am shown a red button and asked to select provider every time after which I get the main menu showing the green button and options 1234. Everything appears okay at this point but when I press either red or exit to leave the plugin I am again shown the red button select provider page which is a bit disconcerting as it looks like the VPN has switched-off when actually it hasn't.

I've have uninstalled and reinstalled and select clear old files to no avail.

It never used to behave like this and can lead to confusion as to whether or not the VPN is active.
 
Sorry
try these files. vpn is germany and PIA.
You will need to login to PIA for your user and pass.
I just made dummy user and password. Install openvpn on zgemma i suggest you use openatv 6.1
Put four files in folder then FTP it to “etc”

There is guide on PIA site.
Sorry for dual post. But forgot to mention when OpenVPN is installed reboot box.
Then FTP folder in and set for auto start then reboot one last time.

This is for PIA files only to the above quote. Other VPNs will be differ as files i uploaded are PIA config.

Thanks river.
 
Last edited:
@alankellyeire

I tried the cat /etc/openvpn/<passwordfile>

and it showed the user id but no password?

cant try the openvpn /etc/openvpn/<nameofopvnfile.ovpn>,
no file there with .ovpn?
tried the
Crl.sa.2048.pem on the off chance :)

try running from the commandline. use these commands and it should ask you for username and password.

cp /etc/openvpn/Client.conf /etc/openvpn/test.ovpn

open the test.ovpn file and comment out the auth-user-pass password.conf. to comment it out just put a # in front of the line
Code:
You don't have permission to view the code content. Log in or register now.

now run the file using the command below.
cat /etc/openvpn/test.ovpn

I'm assuming the folder you have the open files in is called "openvpn" in the commands above if it is different change it to what you called it.

Please rememeber that linux is case sensentive so if you have called it OpenVpn or sommething similar you will have to change it to that.

you could also try copying one of the .ovpn files that you got from your vpn provider into the openvpn folder and try running that.

as @river4ever said always give a reboot after transferring over files
 
try running from the commandline. use these commands and it should ask you for username and password.

cp /etc/openvpn/Client.conf /etc/openvpn/test.ovpn

open the test.ovpn file and comment out the auth-user-pass password.conf. to comment it out just put a # in front of the line
Code:
You don't have permission to view the code content. Log in or register now.

now run the file using the command below.
cat /etc/openvpn/test.ovpn

I'm assuming the folder you have the open files in is called "openvpn" in the commands above if it is different change it to what you called it.

Please rememeber that linux is case sensentive so if you have called it OpenVpn or sommething similar you will have to change it to that.

you could also try copying one of the .ovpn files that you got from your vpn provider into the openvpn folder and try running that.

as @river4ever said always give a reboot after transferring over files
Cheers, I'll have another play about this evening.

I never had any .ovpn file from PIA only the 2 files and 2 folders i posted. :)
 
Back
Top