![]() |
2007-07-04
, 15:20
|
Posts: 5 |
Thanked: 1 time |
Joined on Jul 2007
|
#2
|
![]() |
2007-07-05
, 18:09
|
Posts: 5 |
Thanked: 1 time |
Joined on Jul 2007
|
#3
|
![]() |
2007-07-14
, 20:39
|
Posts: 17 |
Thanked: 1 time |
Joined on Jul 2007
|
#4
|
![]() |
2007-07-14
, 21:37
|
|
Posts: 91 |
Thanked: 25 times |
Joined on Mar 2007
@ Marlow, Bucks
|
#5
|
![]() |
2007-07-16
, 16:51
|
|
Posts: 91 |
Thanked: 25 times |
Joined on Mar 2007
@ Marlow, Bucks
|
#6
|
![]() |
2007-07-18
, 21:53
|
|
Posts: 641 |
Thanked: 27 times |
Joined on Apr 2007
|
#7
|
#OpenVPN Server conf tls-client client dev tun proto udp tun-mtu 1500 remote (ipcop address here) 1194 #Comment the above line and uncoment the next line, if you want to connect on the Blue interface #remote (wifi access point address here) 1194 pkcs12 Nokia.p12 cipher BF-CBC comp-lzo verb 3 ns-cert-type server
openvpn --config /etc/openvpn/openvpn.conf
OK - I've got a howto guide to getting OpenVPN running on the N800 if anyone is interested.
You'll find it on my N800 blog. It's kind of work in progress - if anyone has any comments or corrections they'd be gratefully received.
Cheers,
![]() |
2007-07-18
, 22:35
|
|
Posts: 91 |
Thanked: 25 times |
Joined on Mar 2007
@ Marlow, Bucks
|
#8
|
![]() |
2007-07-18
, 22:37
|
|
Posts: 641 |
Thanked: 27 times |
Joined on Apr 2007
|
#9
|
It may be a dumb question, but have you edited the vpn shell script?
As downloaded, it looks like this:
#!/bin/sh
sudo gainroot
cd /etc/openvpn
openvpn --config n800remote.ovpn
which will work using the config file created in the howto.
Since you are using a different setup, it looks to me like at the very least you would need to edit it. Try this:
#!/bin/sh
sudo gainroot
cd /usr/sbin/
openvpn --config /etc/openvpn/openvpn.conf
Then, from /home/user, (which is where vpn should be stored) try running ./vpn
That shoud make you root, move you to the folder in which openvpn is located, and finally run openvpn, with the config file openvpn.conf located in /etc/openvpn/
Does that work?
![]() |
2007-07-19
, 08:06
|
|
Posts: 91 |
Thanked: 25 times |
Joined on Mar 2007
@ Marlow, Bucks
|
#10
|
openvpn_2.0-1maemo2_armel
and
liblzo1_1.08-3_armel
I already had an ipcop machine running openvpn, so I generated a config file from it and copied it to the n800. I think my problem is the choice of auth type... when I run the config on the n800 I get an error opening the .p12 file with OpenSSL in parentheses.
What I'm wondering, is the openssl build on the n800 unable to parse a p12 file? In the .ovpn file it includes a line "pkcs filename.p12", from the error I'm guessing this is where it's failing. If anyone has any ideas on how I can fix this, I'd love to hear them, I've been staring at this all night with no real luck.
Thanks