HTC Incredible :: OpenVPN - Interface Stays Down - Clears Routing Table
Nov 19, 2010
Been trying to get OpenVPN to work properly and have not had much luck.
Here are my specs.
HTC Incredible
Virtuous v3.1.0
2.6.32-Hydra-ssuv-v05
OpenVPN binary has been installed. I have also install busybox and then softlinked ifconfig and route to the commands the same way CM6 has it.
I was able to get OpenVPN to work properly within CM6 without much hassle. I have found battery life and experience better for me with Virtuous ROM so I went back to it.
When I launch the connection to establish the VPN session it connects but I am not able to work within the network. I was not able to communicate even with the VPN server.
I ran a netcfg and discovered that tap0 was down. I brought it up but its routing table was empty. I filled it in and was able to communicate with the VPN server and my advertised networks. If I drop my VPN connection, tap0 goes down and the routing table is cleared.
The VPN server works. It works with my other boxes and worked with this phone under CM6.
View 2 Replies
Sep 13, 2010
I've been messing around with Tasker for the last several days, and it's raised a concern I've had with android itself. Is there a definitive answer to how audio is routed? I see that there are at least 6 audio stream types: call, system, ringer, media, alarm, notification. I also see (using Smart Volume or Quick Settings, etc.) that there are corresponding audio volume controls for each of the above.
My question is, which speaker do each of the audio streams get routed to? Obviously, there are different setups for when the headphones are plugged in and not. Here's what I see empirically so far: When the physical headphones are unplugged, the system, ringer, media, alarm and notification streams get routed to the external speaker. The call stream is routed to the earpiece.
When the headphones are plugged in, the alarm and notification streams seem to be routed to the external speaker (speakerphone, I guess). The call, system and media streams get routed to the headphones. The ringer stream has been behaving oddly. Sometimes it comes through the headphones, and sometimes through the ext. speaker.
View 2 Replies
View Related
Apr 28, 2010
I got google voice to route all of my calls but im not sure if text messaging is going through it for free? I didn't find any settings to change my messaging.
View 5 Replies
View Related
Sep 11, 2010
I recently got the HTC Incredible and for some reason I've come to notice that the Backlight on the softkeys always stays on and is always very bright. I was wondering whether this way the way the phone was suppose to work or its something that not functioning on my end. I was also wondering if it does stay on all the time is there an app or option on the phone that can change it so that it times out after a while or dims.
View 1 Replies
View Related
May 26, 2010
My screen will not timeout unless I press the lock button. This started about 2 weeks ago. It will occassionally work fine. I changed the timeout settings to 30 seconds from 1 minute...still same problem. I have removed the battery also. I saw a few people with droid had the identical problem with no replies with a fix.
View 5 Replies
View Related
May 29, 2012
I've noticed lately that contacts that I view or edit on my Droid Bionic start appearing as uncategorized in my Outlook 2010 account. It is becoming annoying having to re-categorize every contact that I view or edit on my phone.
It seems that interacting with these contacts removes their categories from the Outlook side of things. Any information on why this might be and how to stop it from happening?
My Outlook 365 account is synced to my phone via Corporate Sync. I just checked my Contact settings and it is storing new contacts in my corporate sync account, if this matters.
View 1 Replies
View Related
Jul 5, 2010
So I was wondering if this is happening to anyone else. If my time since last reboot is high(I am saying over 200hrs) and I use my camera it will stay running in the background. The only way I have found to cure it is to reboot.
View 9 Replies
View Related
Apr 16, 2010
In my android app I have a Tabhost with a ListView as one of the tabs. By clicking on an item in the ListView (an address) I start an Intent to Google Maps for directions and the choice dialog pops up for google maps, web browser etc. Problem is if I press the hard back button then the launch dialog goes away but also the ListView is cleared. Any idea why?
View 1 Replies
View Related
Aug 13, 2010
Is there an equivalent view structure to the iPhone default table cell? The default table cell formats an image (icon) and text in a nice looking way. Are there suggested equivalents for Android? Is there a sample somewhere?
View 1 Replies
View Related
Aug 19, 2010
I want to create say 5 different types of cells in table along with identifiers and load them appropriately as per the given data depending upon the type?
Creating TableRow inside TableLayout seems to be one of the options but how to dynamically create the tableRows depending upon the type?
View 1 Replies
View Related
Jul 15, 2009
Here is my screen description: It is a TableLayout and it contains multiple Rows. I have set TableRow as clickable, as I want to go to next screen on click of a tableRow. Everything I am doing through Java programming (instead of XML layout, because number of TableRows changes each time) On next screen, I wanted to display all the views of that particular clicked TableRow. Here the problem i am facing is how to capture particular tableRow on onclick() even and how do I get all the textviews of that particular Row. I tried to set id at runtime, and tried to get id of view, but it's not working, giving error resourcenotfoundexception.
View 2 Replies
View Related
May 28, 2010
The table "credentials" does show up in the adb shell.
I've checked logcat and it doesn't seem to report a problem...
CODE:........
I've been pouring over this and I bet its some silly syntax typo! Or, at least I hope it is something trivial.
View 3 Replies
View Related
Nov 4, 2010
I have a table layout with a few predefined rows in it. Each row has only two columns.
Now I need to dynamically add additional rows in it.
I have two problems:
1) When programmatically inflating, I cannot set the index of the newly created row (I want it in place 'n') 2) After inflation, the inserted (actually appended) row doesn't listen to parent table's stretch column property.
So here are my questions:
q1) Can I set the place where to insert the inflated row programatically ?
q2) Why doesn't the new row inflate properly (the second column is not shown because the first column doesn't contains a TextView with fill_parent.
In the end I need the first column to occupy 80% of the screen width, and the second column remaining 20%.
q3) is that doable with programmatic row insertions ?
View 2 Replies
View Related
Aug 23, 2010
I really like the interface the Nexus One has for the gallery. Is there a way to make my Inc do that? I don't think Sense does a great job with it's photo gallery...
View 2 Replies
View Related
Jun 20, 2010
I have a car charger with a USB interface that I used for my ipod. Should I be able to use this with my Incredible along with HTC cable or do i have to buy a charger specific to my phone?
View 4 Replies
View Related
Jul 8, 2010
When a button is clicked, the following method is run:
public void createTableRow(View v) {
TableLayout tl = (TableLayout) findViewById(R.id.spreadsheet);
TableRow tr = new TableRow(this);
LayoutParams lp = new LayoutParams(LayoutParams.FILL_PARENT, LayoutParams.WRAP_CONTENT);
tr.setLayoutParams(lp);
TextView tvLeft = new TextView(this);
tvLeft.setLayoutParams(lp);......................
R.id.spreadsheet is an xml TableLayout. I can see from debugging that the method is being accessed, but nothing is drawn to the screen. What gives? Do I need to reset the Content View somehow?
View 1 Replies
View Related
Nov 10, 2009
Several threads have indicated that the Droid supports OpenVPN connections, but for the life of me, I can't figure out how to configure this. The only VPN option that even looks close is "Add L2TP/IPSec CRT VPN", but I can't figure out how to load the user and CA certificates...hell, I don't even know if this is the correct option for an OpenVPN connection.
View 1 Replies
View Related
Sep 19, 2010
Does KaosFroyo v34 have SetCPU built in? Or is it even compatible with this kernel? If yes, where do I find it? I really want to tweak things to see if I can get this battery to last longer.
Also, any idea how to set a CA/user certificates in: Settings>Wireless & Networks>VPN Settings>Add VPN>Add OpenVPN VPN (when I select either of those, the only option I have is "Cancel")
View 4 Replies
View Related
Feb 13, 2013
i want to use open vpn in android 4.0.3 and kernel 3.0.8 but the prblm is its cannot connect TUN cannot open error comes. need to root tablet but how to root ?
My Model :
Bsnl Penta IS703C
android 4.0.3
kernel 3.0.8 ?
and one thing when we root is the OS also changes if your team can change my os also
View 1 Replies
View Related
Nov 15, 2012
Download a terminal client, e.g. ConnectBot and connect to your local shell.Enter `su` to become root. (Double check with whoami afterwards). Enable wifi tethering and ensure your data connection is working (connect to VPN)
Run `netcfg` and note your interface names (typically tun0 and wlan0 (ignore m.wlan0 or similar, only take the one with a real mac address), as is on my SGSII)..Double check the subnet for your wlan0 device and enter the following commands:
iptables -A POSTROUTING -s 192.168.43.0/24 -j MASQUERADE -t nat
(setup a postrouting entry for the tethered devices subnet, implementing NAT)
iptables -A FORWARD -j ACCEPT -i wlan0 -o tun0
forward packets from tethered devices across the tunnel
iptables -A FORWARD -j ACCEPT -i tun0 -o wlan0
forward packets from the tunnel to the tethered devices
Note, because you are using NAT, you will need to configure port forwards on your Android device to be able to run servers etc on tethered devices. Unlikely you'll need to worry about that though. Feedback if it worked or not. Posting this now from my home IP, OpenVPN for Android and these iptable rules!
View 2 Replies
View Related
May 22, 2012
Is it possible to write a in-app openvpn connection (via streams and sockets)? If it is, then is there any android application which managed that already? I have also problems finding in-depth openvpn protocol description.
View 4 Replies
View Related
May 4, 2010
Edit: Here's the original thread by igl007, w/ video:
http://androidforums.com/support-troubleshooting-incredible/70366-unresponsive-screen-when-car-dock.html[/QUOTE]
View 5 Replies
View Related
Sep 15, 2010
I don't know that this is only a "problem" with the DINC but its what I have and am seeing it on.
I have noticed that from time to time my DINC will just turn itself on without me touching it. Its sitting on my desk and suddenly the screen lights up and the screen where you would swipe down to unlock it is there.
There does not appear to be a predictable timing to this. Some times it occurs 3 or 4 times in 10 minutes, sometimes it will go over an hour or two before doing it.
I never get text messages and my email is set to only update/synch when open it up and visit a folder. I'm curious if this contributes ot how short a battery life I have.
View 2 Replies
View Related
Jun 4, 2010
For some reason my wifi at home won't connect to my phone now. It did when I first got the phone, but now if I turn on wifi and try to connect to it the phone doesn't even try and it just stays at a "disconnected" state. Any ideas why this is? I will be trying it on a different wifi connection later, but nothing has changed for my wifi connection so I am not sure why it just randomly stopped working.
View 3 Replies
View Related
Mar 19, 2010
Is there a way to change the route that is shown using navigation? The way that is mapped out is not the way that I want to go. how to change it?
View 10 Replies
View Related
Aug 17, 2010
I have just upgraded to Android 2.1 on Orange(UK). When I connect to WiFi (home WEP and open), it says I am connected - shows IP address etc., but nothing actually works through the WiFi - can't sync Exchange email, can't download from market, won't even update location on Google Maps. If I switch WiFi off everything works fine over mobile network, but that is unsustainable due to data charges.
View 5 Replies
View Related
Nov 5, 2012
If a kernel does not have the Advanced Routing feature (which is needed for VPNC widget - Cisco VPN) is it possible to add this via module like tun.ko module? The Adv. Routing is not needed for connecting but the connection is soon lost.
View 1 Replies
View Related
Jun 30, 2010
Has anyone gotten audio routing to work succesfully on eclair? SetRouting and a number of functions don't work anymore.
View 3 Replies
View Related
Nov 2, 2009
I know that Lexus navigation systems will take a look at live traffic conditions and reroute you according to congestion and accidents. Since the Droid has the ability to do live traffic in the map layer...does anyone know if it takes this information into account when calculating the directions.
View 13 Replies
View Related
Jun 27, 2010
if it was possible to route audio files from the phone to a bluetooth headset on versions of Android API Level 7 and under (so versions older than the new Froyo) If so, do you know of any sample code I could look at to figure out how to do this? Or perhaps just point me in the right direction?
View 2 Replies
View Related