OpenVPN Support? - T-Mobile Samsung Galaxy S II SGH-T989

Hey im trying to find a good openvpn app for my phone. Im using the openvpn application server(free vmware appliance) as a server and im trying to get differnet clients to connect.
I've read that we need a tun.ko file to make it work, and I thinkt he kernel(not sure which itis) that comes with the Droids and Clones rom already includes this as the DroidVPN app works, but thats for their own service only.
anyone know a good app for this?

Related

VPN application for Galaxy S3

Hii Guys,,
am based in uae and the viper is blocked, am looking for a free vpn application that best suit the S3, any suggestion please? i need it badly.....
There is a VPN client built into the phone check if it works for you
Sent from my GT-I9300 using xda app-developers app
Yes, but adding a VPN client forces additional security even when the VPN is not activated. I hate to key in a passcode every time I want to wake up my phone.. is there a play store alternative?
vinumsv said:
There is a VPN client built into the phone check if it works for you
Sent from my GT-I9300 using xda app-developers app
Click to expand...
Click to collapse
thanks for the reply, but i need the vpn setting, as the name, type and server address, from where i can get them?
BR,,
monestarazi said:
thanks for the reply, but i need the vpn setting, as the name, type and server address, from where i can get them?
BR,,
Click to expand...
Click to collapse
There are differencies between VPN app and VPN server.
What you're asking there is a VPN server, not a VPN app.
There are plenty of free VPN on the web, but they're, most of the tine, unsecured and bandwidth limited. Not a good idea in fact.
But, I don't have understand yet why would you want to use VPN. If a website is locked in your country, the most efficiency solution will be using a proxy. But if some udp/tcp are not available or restricted, there, the VPN could be usefull.
- VPN = creating a secure connexion between a point A and B using a dedicated udp/tcp port.
- Proxy = sending a tcp/udp request to a remote server, the server will do it for you and send the result back to you.
Please, be more accurate in what you're searching for
Hi,
I need something as the hot spotshield app, it can give u the privillage to use viper. I had before iphone, and it was working through it.
Regards..
Sent from my GT-I9300 using xda app-developers app
If u looking for paid then use purevpn or express vpn. I've used both and I'll recommend u go for purevpn its fast and they have an app as well.
Sent from my GT-I9300 using xda premium
Droidvpn is the best till now
100mb free per day
the only catch that u have 2 root ur phone
am using it in muscat oman
it works with me like a charm : )
excuse may english
Anyone having succes using OpenVPN from S3 to a Synology box?
If so... A tutorial would be nice..
Sent from my GT-I9300 using xda premium
monestarazi said:
Hi,
I need something as the hot spotshield app, it can give u the privillage to use viper. I had before iphone, and it was working through it.
Click to expand...
Click to collapse
*
HS shield is itself a VPN, add a VPN inside another is a bas idea, at least if I understand what you said.
The devs have made a android version (here) but only for 2.0+ and is not available for ICS.
A way do it without an app could be to retrieve VPN settings from inside HS shield if you're using it on your computer.
drkaosdk said:
Anyone having succes using OpenVPN from S3 to a Synology box?
Click to expand...
Click to collapse
Before trying to make OpenVPN work properly, do you have a fixed ip adress or a dynamic one ?
If you don't know, check your public adress before and after turning off/on your modem.
If you have a fixed one, just use your ip as VPN adress, set the port to 443 (for SSL encryption) and use the login you set in OpenVPN settings.
If you have a dynamic ip, you must use a dynamic DNS, such as DynDNS. This way you'll have an url adress (ex. hellow95.dyndns-server.com) that will always point to your ip.
There are many detailed tutorials on the web for this.
I'm a DynDNS client for about two years and I never been disapointed (I'm using it to link my dynamic ip that I can access my NAS everywhere), so you can go ahead without regrets.
Hellow95 said:
*
HS shield is itself a VPN, add a VPN inside another is a bas idea, at least if I understand what you said.
The devs have made a android version (here) but only for 2.0+ and is not available for ICS.
A way do it without an app could be to retrieve VPN settings from inside HS shield if you're using it on your computer.
Before trying to make OpenVPN work properly, do you have a fixed ip adress or a dynamic one ?
If you don't know, check your public adress before and after turning off/on your modem.
If you have a fixed one, just use your ip as VPN adress, set the port to 443 (for SSL encryption) and use the login you set in OpenVPN settings.
If you have a dynamic ip, you must use a dynamic DNS, such as DynDNS. This way you'll have an url adress (ex. hellow95.dyndns-server.com) that will always point to your ip.
There are many detailed tutorials on the web for this.
I'm a DynDNS client for about two years and I never been disapointed (I'm using it to link my dynamic ip that I can access my NAS everywhere), so you can go ahead without regrets.
Click to expand...
Click to collapse
Thanks mate.. Fixed ip
.. OpenVPN is a little different to setup than pptp vpn... Did you succeed with OpenVPN thru android to a Synology box? Tutorial for that? Maybe?
Sent from my GT-I9300 using xda premium
PPTP VPN is too unsecure by the way, try to stay away from this crap
Well, I've set mine a long time ago on my Debian (yes, I use a home-made NAS).
First, you have to install OpenVPN if you don't did yet.
If not ->
connect to your server via SSH and :
> ipkg update
> ipkg install openvpn
Click to expand...
Click to collapse
Then we create the init script vi /opt/etc/init.d/S20openvpn
#!/bin/sh
#
# Startup script for openvpn server
#
# Make sure IP forwarding is enabled
echo 1 > /proc/sys/net/ipv4/ip_forward
# Make device if not present (not devfs)
if ( [ ! -c /dev/net/tun ] ) then
# Make /dev/net directory if needed
if ( [ ! -d /dev/net ] ) then
mkdir -m 755 /dev/net
fi
mknod /dev/net/tun c 10 200
fi
# Make sure the tunnel driver is loaded
if ( !(lsmod | grep -q "^tun") ); then
insmod /lib/modules/tun.ko
fi
# If you want a standalone server (not xinetd), then comment out the return statement below
return 0
## This is for standalone servers only!!!!
# Kill old server if still there
if [ -n "`/opt/bin/pidof openvpn`" ]; then
/opt/bin/killall openvpn 2>/dev/null
fi
# Start the openvpn daemon - add as many daemons as you want
#/opt/sbin/openvpn --daemon --cd /opt/etc/openvpn --config openvpn.conf
/opt/sbin/openvpn --cd /opt/etc/openvpn --daemon --log-append /var/log/openvpn.log --config /opt/etc/openvpn/config/server.ovpn
# [EOF]
Click to expand...
Click to collapse
Now let's check if the module is loaded
> insmod /lib/modules/tun.ko
>dmesg | grep tun
Click to expand...
Click to collapse
By now OpenVPN should be good to go.
But before, we need to create en encryption key, you can follow the tuts here (it comes from Debian Wiki)
Then once your VPN server is set, just type the infos into Android and enjoy.
I use OpenVPN to manage throught SSH my NAS and access my Transmission server
P.S: the tuts is not from me, I pick it up from a french community nammed MyHost. But if you got some problems with it, don't hesitate to pm me.
Tutorial for OpenVPN using Galaxy Siii to a Synology Box...
Hellow95 said:
*
HS shield is itself a VPN, add a VPN inside another is a bas idea, at least if I understand what you said.
The devs have made a android version (here) but only for 2.0+ and is not available for ICS.
A way do it without an app could be to retrieve VPN settings from inside HS shield if you're using it on your computer.
Before trying to make OpenVPN work properly, do you have a fixed ip adress or a dynamic one ?
If you don't know, check your public adress before and after turning off/on your modem.
If you have a fixed one, just use your ip as VPN adress, set the port to 443 (for SSL encryption) and use the login you set in OpenVPN settings.
If you have a dynamic ip, you must use a dynamic DNS, such as DynDNS. This way you'll have an url adress (ex. hellow95.dyndns-server.com) that will always point to your ip.
There are many detailed tutorials on the web for this.
I'm a DynDNS client for about two years and I never been disapointed (I'm using it to link my dynamic ip that I can access my NAS everywhere), so you can go ahead without regrets.
Click to expand...
Click to collapse
Hi ..
Thanks for replying to this..
I have a fixed ip-adress ... I would really like if someone here can guide thru a setup/tutorial to get OpenVPN work using the OpenVPN software from : Arne Schwabe .. in android Market.. I have a Galaxy Siii and i want it to connect to the Synology Box with OpenVPN software enabled...
Anyone that can guide me thru that proces would be great.. ;-)
drkaosdk said:
Hi ..
Thanks for replying to this..
I have a fixed ip-adress ... I would really like if someone here can guide thru a setup/tutorial to get OpenVPN work using the OpenVPN software from : Arne Schwabe .. in android Market.. I have a Galaxy Siii and i want it to connect to the Synology Box with OpenVPN software enabled...
Anyone that can guide me thru that proces would be great.. ;-)
Click to expand...
Click to collapse
Got it working.. Pretty simple after all
Sent from my GT-I9300 using xda premium
hi,
Are you sure that Droidvpn ll work in Oman. Am also from Oman n would like to use viber all the time but its blocked!!. Ru sure boss ??
m4ever007 said:
Droidvpn is the best till now
100mb free per day
the only catch that u have 2 root ur phone
am using it in muscat oman
it works with me like a charm : )
excuse may english
Click to expand...
Click to collapse
What do u mean by rooting the device?
Sent from my GT-I9300 using xda app-developers app
Orbit is the best vpn hands down...it works great and is free!!!!!
Sent from my ASUS Transformer Pad TF300T using xda app-developers app
mickey878 said:
Orbit is the best vpn hands down...it works great and is free!!!!!
Sent from my ASUS Transformer Pad TF300T using xda app-developers app
Click to expand...
Click to collapse
Is this a vpn client?
Sent from my GT-I9300 using Tapatalk 2
Vpnc widget is usually very good if you're rooted.
Sent from my GT-I9300 using Tapatalk 2
am 100% sure
am using it right now
its the best one for daily use
auto reconecet when network change is the best option u can find
its not a pptp vpn
its more and more than that
the only issue is that u have to root ur phone
thats v easy
just go orgnl dvlp thread and find CF root 6.4 and just follow the instruction
i hope this is wt u are looking for
by the way viber is not blocked in oman any more
its officale unblocked by nawras and omantell
have fun man
Sent from my GT-I9300 using xda app-developers app

get-a-robot-vpnc working on ics?

I'm currently running Calk's 2.9.1 GB ROM, and I'm interested in making the jump to ICS. Get-a-robot vpnc is a must for my work vpn. Anyone have any luck with running that on an ICS ROM? My attempts on earlier "leaked" ics TW ROMs didn't work out and was forced to jump back to Calk's GB. Thanks for any tips.
Get-a-robot vpnc
woodspoon said:
I'm currently running Calk's 2.9.1 GB ROM, and I'm interested in making the jump to ICS. Get-a-robot vpnc is a must for my work vpn. Anyone have any luck with running that on an ICS ROM? My attempts on earlier "leaked" ics TW ROMs didn't work out and was forced to jump back to Calk's GB. Thanks for any tips.
Click to expand...
Click to collapse
Hello woodspoon,
Please post if you have find the answer.
Have a nice day on.
Nice Timing
amplatfus said:
Hello woodspoon,
Please post if you have find the answer.
Have a nice day on.
Click to expand...
Click to collapse
I just got something going last night as a matter of fact. In a nutshell, I was able to get a working VPN connection using the built-in VPN client with ParanoidAndroid 2.15 (based on CM10). Link: http://forum.xda-developers.com/showthread.php?t=1867283
I was also able to get connected using the VPNC app with a couple of other ROMs (re-calked 0.2.1, CM9 Beta 1) by creating my own /dev/net directory and giving it 777 permissions prior to starting VPNC (it was force closing every time prior to that change). However, I always got booted out soon after the connection was made in those instances due to an "INVALID_PAYLOAD" error.
I received a lot of help by trying suggestions in a Google Code page requesting an ipsec VPN client in stock android. The link to that is below, as well as three highlights from the page. Ultimately I used Option #1.
Good luck!
code.google.com said:
Issue 3902: Feature Request: "pure" ipsec vpn client (cisco-compatible)
http://code.google.com/p/android/issues/detail?id=3902
1) The IPSEC VPN with Group Authentication ACTUALLY WORKS !!! On Android 4 just select:
Issue has been resoved in ICS!!!!
Choose:
- IPSec Xauth PSK: Compatible with Cisco SSL-VPN
- IPSec ID: GROUP USERNAME
- Preshared Key: GROUP PASSWORD
Connect to VPN and then enter personal username and password.
2) What I did to get around it was install NCP Secure Client from the Market (THANK YOU to whomever posted that!). It's in testing now, and available as such till the end of the month. It's just a 3rd party IPsec client, so you don't even bother with the native ICS VPN settings.
The mappings for NCP are slightly different. Here's a helpful link. http://www.ncp-e.com/en/products/ipsec-vpn-client-for-android.html . Basically:
Pre-shared Key= Group Password
IKE ID= Group Name
IKE ID Type= Free String Used to Identify Groups
Exchange Mode= Agressive
3) For anyone on ICS 4.0.3, try:
https://play.google.com/store/apps/details?id=com.gmail.mjm4456.vpncillatrial&hl=en
This does not require root and works fine even under ICS 4.0.3 where the standard Android VPN configuration does not.
Click to expand...
Click to collapse
Thank you for updated reply.
But do you know if using stock 4.0.4 ICS on XT910 RAZR MAXX built in VPN client it this possible?
All the best.
No clue. According to Google's response, it should work. But in my experience it is a bit of a crapshoot. I'd suggest starting with the code feature request link I included above to set if anyone else has posted regarding that device. Or head to a store and just try it.

Does Andoid has BT DUN client app like ibluever?

I am debating to buy an iphone or Galaxy note. Hopefully Android has such app.
I was trying to use an Android device to act as BT DUN client, not BUN server.
I wasn't able to find BlueTooth DUN client on Android such as ibluever from Cydia on iphone.
Any suggestions? Thanks
this ?
Edit: Also this
No. They are not what I was talking about ;=)
I was looking for DUN client
. For example, an app that allows my android to connect to a device which can provide DUN. An app like ibluever So far I didn't find one.
These are the opposite of what I was looking for. ;=)
My bad. Try this one.
Yep this app looks promisin.Thanks ! But my android phone
is LG-P509 and is incompatible with blue vpn. So I could not try it on my phone. Did you or someone have sucessfull experience of using this app on Galaxy note to make direct modem connection to another non droid device? Thanks,
Lol
Lol:crying:
try "bt DUN" from google play

Looking for a Fire TV VPN Tutorial

I'm looking for a tutorial on how to set up a VPN on Fire TV (1st Gen) and/or a Fire TV Stick. I've seen a few add-ons that apparently install a VPN from a specific VPN provider, but I'd like to set up a VPN from the provider of my choice. (I currently have a Premiumize.me account, but that may soon change.)
For best results you will probably have to wait for the FireOS 5 update next month. FireOS 5 seems to be a lot better with the procedure to add VPN compatibility to the FireTV devices then FireOS 3.
I'm using unblock.us and all I have to configure is the DNS. No vpn configuration required.
Sent from my SGP611 using Tapatalk
Hobbes2099 said:
I'm using unblock.us and all I have to configure is the DNS. No vpn configuration required.
Sent from my SGP611 using Tapatalk
Click to expand...
Click to collapse
Hello
I have been using HideMyAss app sideloaded from the play store. It works great for my needs.
Mohit_Smarty said:
Hello
Click to expand...
Click to collapse
Hi!
fomoco460 said:
I have been using HideMyAss app sideloaded from the play store. It works great for my needs.
Click to expand...
Click to collapse
What I'm looking for is something that will mask my traffic in case my ISP (Comcast) doesn't "approve" of my Kodi use. Will HideMyAss accomplish that?
Raymondo17 said:
What I'm looking for is something that will mask my traffic in case my ISP (Comcast) doesn't "approve" of my Kodi use. Will HideMyAss accomplish that?
Click to expand...
Click to collapse
Yes it will. It is a VPN service all vpns hide your traffic from your isp.
Last question: can you use any VPN provider with it or one specific provider? I'm hoping to find a provider-agnostic add-on I can sideloaad on my Fire Tv.
This question has been asked before but I will answer your question anyway, next time try Google, YouTube or the search bar on Xda before posting though oks.
Not via an app (apk) you cannot, but there is a few vpn add ons In kodi (Google vpn kodi add ons) which if you have a vaild vpn account you can add/sign in to it & use it that way. Not sure if this is what your looking for but at the moment that's the only way I know of using a vpn app (apk)?
Only other way I know which works is to mirror/cast your phone to your fire stick, use a vpn app (apk) on there, turn it on & then open the kodi app (apk) up on your phone (not fire stick) & watch it being mirrored/casted to your tv. A bit of a long winded solution but if your that desperate to access American addons/content on your tv it does work this way, I just pick another addon but each to there own.
If this helped you press that thanks button
https://vpntips.com/fire-tv-vpn-install/
I used this method with pureVPN. prolly others would work too like the article said. Since the firetv has no vpn files your gonna need to install openvpn to put them there. after that I see apps from the appstore possibly working cause they now have the basevpn files. I could be wrong but just something to look out for.
N
Sent from my SM-G930V using Tapatalk
You need to keep in mind that some VPNs keep logs such as HMA. I personally went with a double router setup that will give you the ability to switch between secure and insecure connections.

[question] Blocking all Amazon...

Hello guys,
Im an app developer and recently for an app that Im building for my parish (for sunday services) I came up with this little device (firestick 2) and as it has android, I decide to port my Flutter / Web app to an androidTV native app. And so I did it, and the beta that I have is working... but I have a question.
I found DNS66 to block Ads.... but is there posible to block all Amazon requests so that I get empty rows (for recomendations, movies, shows, apps...) but at the same time, have internet for my app? I could achieve this if I dont connect the stick to the wifi at all, but then I dont have internet for my app, so that got me thinking... the "exception handling" so to speak for when there is no internet is an emtpy-feed launcher (wich is what I want).
I was planing to sniff the stick with wireshark and figure out the requests DNS names and block them with the DNS66, but maybe you guys already know them... or a method (non rooted) to achieve this. See, my goal is to get a reproducible method that I could write down in a guide, that my mom could follow if their church gets the stick, and I cannot expect her to crack-open the stick and solder...
Thank you for the help,
Try running it through pi hole. It should give you the information you want.
Its hard cause of the religious stuff... Wtf man?

Categories

Resources