[Q] VPN Problem with evervolv 2014-01-02 (Kitkat) - Desire Q&A, Help & Troubleshooting

Hi,
currently I'm running the ev nightly-2014-01-02. Since several days I ty to activate a VPN connection into my home lan (connected with an AVM Router). It does NOT work. While the "internal" VPN Software does not tell me some interesting information a second try with VPNCilla shows:
--- cut here ---
Error on establish:
command '693 interface fwmark rule add tun0'
failed with '400 693 Failed to add fwmark rule (File exists)'
Possible reason: invalid server parameter or TUN device unavailable
---cut here ---
With this error message I find in google some information about a VPN problem in 4.4. BUT: my wife's brand new nexus 5 with Kitkat connects without trouble immediately with the same login data.
So what's the problem with ev here?
Any ideas?
Thanks in advance

Steill awaiting response
Really nobody here any ideas?

Related

FTP access problems HELP

Dear all,
I am new to all this.
Been trying to access the ftp site for upgrades however been unsuccessful.
I have read the wiki regarding the ftp server and did as it said.
I have been trying to access the frp server with my internet browsers (mozilla and internet explorer) with no luck.
Error message :" Connection timed out"
I have also downloaded ftp client software and again i keep getting the following error messages.
Connection Error
This could be caused by any of the following reasons:
Your network connection is down.
The host address is incorrect.
The server you are attempting to connect with is not available.
Click the Details button to view information from the connection log.
I have also spoken to my internet service provider but they seemed unable to help!!
I have tried but i don't seem to be getting anywhere!!!
Is there something i am missing ?? Please advise as i am getting tired of all this .
Thanks

[Q] Openvpn cannot get IP adress

Openvpn settings connect to Openvpn Server but I cannot access anything in the connected LAN.
Have tried severals of images and severals of configuration but nothings help.
Now I use NeoPhyTe_Mod_1.7.1_Sense-FroYo_FRF91 same **** here
I suspect the tap device not do get up and receive IP.
Hope anyone have some ideas, have tried to get this to work since June mount.
See pic for my config
Hello.
I have the same problem!!
Can anybody help??
Best regards Grisu
Problem known and explained here:
http://code.google.com/p/android-openvpn-settings/issues/detail?id=35
You need to either:
su
ip ru del table wifi
or
ip ru del table gprs
Depending in how you are connected

[Q] Rom with working VPN (PPTP) support

As stated in the topic I'm looking for a rom with working (!!) VPN support.
I currently have cm7.0.3 installed and can't connect to my VPN via PPTP or OpenVPN. Actually that is not correct... The icon in the statusbar states that I'm connected but no data will get through. I.e. doing a 'ping google.com' from the terminal emulator gives me an 'unable to resolve ...' error. same with any url in the browser and so on (no data connection).
one additional detail: via pptp i have to use encrypted connection ...
thanks for your time reading

VPN over WIFI fails : stock firmware 4.1.1

hey all,
i am trying to configure vpn to my computer (windows 7) and for some reason connecting through 3G to my computer using pptp works flawlessly.
but when i connect to a WIFI network,Any network it fails to connect giving me an Unsuccessful error.
i searched for a solution : maybe a different VPN client but none i found support pptp like the native one and to a windows 7/etc machine only free/paid services which is not what i want.
if any 1 encountered this kind of a a problem or can help me figure it out ?
thank you very much
Arik

[Q] OpenVPN Connect setup

Hi
I've got a paid VPN from ProXPN and I'm trying to set it up on my HTC One X using the official OpenVPN Connect app.
Copied my *.ovpn, *.crt and *.key files over from my laptop to the device, but get the following error:
"Error Parsing OpenVPN profile : ProXPN.ovpn : option_error: remote option not specified"
Does anyone know what I'm doing wrong, please?
Thanks
Rob
P.S. Not a huge issue if I can't get it working, as I'll just use the built-in VPN via pptp, but hopefully I'll be able to sort this out.
Rushey_Platt said:
Hi
I've got a paid VPN from ProXPN and I'm trying to set it up on my HTC One X using the official OpenVPN Connect app.
Copied my *.ovpn, *.crt and *.key files over from my laptop to the device, but get the following error:
"Error Parsing OpenVPN profile : ProXPN.ovpn : option_error: remote option not specified"
Does anyone know what I'm doing wrong, please?
Thanks
Rob
P.S. Not a huge issue if I can't get it working, as I'll just use the built-in VPN via pptp, but hopefully I'll be able to sort this out.
Click to expand...
Click to collapse
Judging by the error message I would say that your config file contains a typo or the line that specifies the remote address to connect to is missing or misformed.
http://openvpn.net/index.php/open-source/documentation/manuals/65-openvpn-20x-manpage.html
# The hostname/IP and port of the server.
# You can have multiple remote entries
# to load balance between the servers.
remote my-server-1 1194
Click to expand...
Click to collapse
And http://openvpn.net/index.php/open-source/documentation/howto.html#examples
Obviously you cannot copy paste the examples . Can you not get a ready made ovpn config file from those ProXPN dudes?
If this config file contains no sensitive information you could post it here for a quick syntax check?
pakjebakmeel said:
If this config file contains no sensitive information you could post it here for a quick syntax check?
Click to expand...
Click to collapse
I don't think any of this is sensitive (hopefuly!) so here it is:
Code:
client
dev tun
proto tcp
resolv-retry infinite
nobind
persist-key
persist-tun
ca ssl/ca.crt
cert ssl/client.crt
key ssl/client.key
cipher BF-CBC
keysize 512
comp-lzo
verb 4
mute 5
tun-mtu 1500
mssfix 1450
auth-user-pass
reneg-sec 0
route-method exe
route-delay 1 10
route-metric 512
route 0.0.0.0 0.0.0.0
# If you are connecting through an
# HTTP proxy to reach the actual OpenVPN
# server, put the proxy server/IP and
# port number here. See the man page
# if your proxy server requires
# authentication.
;http-proxy-retry # retry on connection failure
;http-proxy [proxy server] [proxy port #]
So yes, you're missing the 'remote' statement in your config file.. Client doesn't know to which server it has to connect if this line is omitted.
That explains.
Also, this config looks like a config for a Windows client. Can you not just use a prefab config file for linux?
Think this is what you're on about: http://www.proxpn.com/ ?
I don't know this service but maybe use something like this: http://downgoat.net/2013/04/20/proxpn-openvpn-on-linux-configuration/
client
dev tun
proto tcp
remote uk.proxpn.com 443
resolv-retry infinite
nobind
persist-key
persist-tun
ca ca.crt
cert client.crt
key client.key
cipher BF-CBC
keysize 512
comp-lzo
verb 3
mute 5
tun-mtu 1500
mssfix 1450
auth-user-pass
reneg-sec 0
redirect-gateway def1
Click to expand...
Click to collapse
Also, it uses this config to connect to VPN but you still need to provide a username and password because of the auth-user-pass statement. I've not seen this option in my Android client but maybe it appears on the connection preferences when it sees this statement? Or maybe it will ask you upon connecting.. Not sure but try this and see if you get an option to configure username and pass or whether it asks you upon connecting..
Make sure the ca.crt, client.crt and client.key files are in the same folder as the ovpn config file. I use /sdcard/openvpn.
If you get stuck enable logging on the connection and post that. (AFTER YOU HAVE REMOVED ANY SENSITIVE INFORMATION).
Great, thanks, that tip enabled me to successfully import the linux-based profile.
After import I was indeed asked for a username and password, and then it connected to ProXPN. However, it then got stuck in some sort of connect / disconnect loop, with the disconnect message disappearing so fast I can't actually read what it says!
Rob
Rushey_Platt said:
Great, thanks, that tip enabled me to successfully import the linux-based profile.
After import I was indeed asked for a username and password, and then it connected to ProXPN. However, it then got stuck in some sort of connect / disconnect loop, with the disconnect message disappearing so fast I can't actually read what it says!
Rob
Click to expand...
Click to collapse
Enable logging, that's what it's for.
Some loops are terminating because of session invalidated; others because of a transport error.
Rushey_Platt said:
Some loops are terminating because of session invalidated; others because of a transport error.
Click to expand...
Click to collapse
Maybe if you post the full log file we can see what's happening. As I don't know what the correct settings should be for this provider it makes it harder to troubleshoot.

Categories

Resources