Related
As many of you are aware, the Thunderbolt offers USB Internet Connection mode. This allows you to connect your thunderbolt via USB to a PC and use the phones internet connection. This is similar to the WiFi tethering thats currently free for a limited time. Eventually Verizon will start charging for WiFi tethering, but I'm wondering if they have the ability to cut off (unless your pay) the Internet Connection mode once the promotion ends.
The difference I've noticed is that the WiFi tethering is an actual installed application (hence very easily controllable by VZW), whereas the Internet Connection mode is embedded into the operating system (evinced by the fact thats its in the menu options, as well as the option to change what type of connection you want when you plug the USB cable into your computer).
I think once the promotion ends for free WiFi tethering, the USB tethering will still work and remain free unless VZW pushes an update to non rooted phones preventing this?
I ask because I just switched from my Thunderbolt (very poor battery etc even when rooted) to a Droid Charge. I instantly noticed that when I check the settings for internet connection mode, its not 'integrated' in the same sense as the Thunderbolt. Instead, both the WiFi hotspot tethering, as well as USB tethering are in essence a 'third party' application, which upon being launched, present you with a message stating the ability to tether is free during the promotional period, and thereafter you will be charged for data usage.
Any input on this? It's a shame to see it completely changed on the Droid Charge.. Maybe Verizon missed out on the Thunderbolt and USB tethering will always be available for free? We shall see in the months to come.
I know the word of a VZW store associate isn't really worth anything, but, before I bought my ThunderBolt, I was told that wired tethering will go "under the radar", as long as the data usage "isn't too much". The rep directed me to download "PDANet" from Market for this functionality, and she didn't even know at the time that native wired tethering was present on the ThunderBolt.
Also pdanet has been removed from the market though you can just download the apk from their site and install it now. Also I have not herd of anything with verizon but i know AT&T did send out a message to all the people that were using free teathering apps on thier iphones a text messages letteing them know they would be charged if continuing use. I guess Cell companys can tell if your using them some how.
thetwiztidfreak said:
Also pdanet has been removed from the market though you can just download the apk from their site and install it now. Also I have not herd of anything with verizon but i know AT&T did send out a message to all the people that were using free teathering apps on thier iphones a text messages letteing them know they would be charged if continuing use. I guess Cell companys can tell if your using them some how.
Click to expand...
Click to collapse
ATT never sent me a text and I dont have a tether plan. I am a heavy barnacle user at work, makes my 4gclear look like a joke. My gf just got a fascinate(galaxy s), and it seems verizons has native blocked-ish. i rooted my boss's captivate (galaxy s), and he has no tether plan, and he uses USB tether at work everyday. He didnt get a message either. But my GFs natives /ad hoc make her go to the verizon web site.
I'm worried now about using my barnacle. It should be someting like. 3g free, pay for 4g, something lame like that, rather than be phonenazis.
dumb question, how do you use the USB tethering?
Sent from my thunderbolt 4G using Tapatalk
I doubt it has anything to do with app vs. built-in functionality... they can't "easily track it" just because it's an app. I think it would have to do with the way the packets are being routed, and I don't know *how* they're (supposedly) tracking it when you use wifi tethering, so I wouldn't be so sure they won't be able to track it via USB.
It could have to do with looking for packets for protocols that apps don't support (bittorrent?). I'm really not sure. Anybody know the details of how they can tell?
dbow32 said:
dumb question, how do you use the USB tethering?
Sent from my thunderbolt 4G using Tapatalk
Click to expand...
Click to collapse
in settings - > wireless & networks at the bottom there is internet connection mode.
Just bringing this topic back up, but I tried this mode today, and I got a popup like this. It seems they can find out about ICM. I guess this sucks for those of us who thought we could get away with it.
what25 said:
Just bringing this topic back up, but I tried this mode today, and I got a popup like this. It seems they can find out about ICM. I guess this sucks for those of us who thought we could get away with it.
Click to expand...
Click to collapse
This, my friend, is why god invented PDAnet.
Yep... Pdanet works flawlessly. Go find it, worth the leg work. It's not in the market, but still very easy to find and set up.
miketoasty said:
This, my friend, is why god invented PDAnet.
Click to expand...
Click to collapse
I don't use PDANet. I use Wireless Tether and then tunnel all traffic through an encrypted VPN, so Verizon has no way to identify the traffic. Also secures things on public WiFi.
nerozehl said:
then tunnel all traffic through an encrypted VPN,
Click to expand...
Click to collapse
Can you point me to a tutorial on how to set up the vpn part of this?
I've already got wireless tether installed and working.
zxsix said:
Can you point me to a tutorial on how to set up the vpn part of this?
I've already got wireless tether installed and working.
Click to expand...
Click to collapse
What O/S are you running on your server? If you're running FreeBSD, I'll gladly give you the configuration scripts/files I'm using.
nerozehl said:
What O/S are you running on your server? If you're running FreeBSD, I'll gladly give you the configuration scripts/files I'm using.
Click to expand...
Click to collapse
No server of my own. Windows 7 x64 machine.
I think my router has vpn capability. I'll play with that.
Normally I use PPTP and L2TP/IPsec VPNs for work, but I used OpenVPN instead since it's easier to use and doesn't require too much server-side work. It's natively supported in CM7 and you can get a binary of openvpn with a nice GUI on the market, if you're using Froyo or the new GB leak.
Make sure your phone's kernel supports TUN/TAP. If enough people care about setting up tunnelling, I'll make a post somewhere with a full tutorial.
Here are some of my configuration files (FreeBSD 8.2-RELEASE)
/usr/local/etc/openvpn/openvpn.conf:
Code:
# OpenVPN configuration on Mephisto
# Up/Down Scripts
up /usr/local/etc/openvpn/up.sh
down /usr/local/etc/openvpn/down.sh
# Bridge/Adapter and UDP/IP settings
server-bridge 10.4.11.10 255.255.255.0 10.4.11.200 10.4.11.220
port 1194
proto udp
dev tap0
keepalive 10 120
comp-lzo
# Force all-traffic tunneling and push a DNS server
push "redirect-gateway def1"
push "dhcp-option DNS 67.19.72.206"
# Certificate locations
dh /usr/local/etc/openvpn/keys/dh2048.pem
ca /usr/local/etc/openvpn/keys/ca.crt
cert /usr/local/etc/openvpn/keys/server.crt
key /usr/local/etc/openvpn/keys/server.key
# De-escalate permissions
user nobody
group nobody
# Logging information
status /usr/local/etc/openvpn/openvpn-status.log
verb 4
mute 20
/usr/local/etc/openvpn/up.sh: (chmod +x)
Code:
#!/bin/sh
# xl0 is the ethernet NIC on this server
/sbin/ifconfig bridge0 create
/sbin/ifconfig bridge0 addm xl0 addm $dev up
/sbin/ifconfig $dev up
/usr/local/etc/openvpn/down.sh: (chmod +x)
Code:
#!/bin/sh
/sbin/ifconfig bridge0 deletem $dev
/sbin/ifconfig bridge0 destroy
/sbin/ifconfig $dev destroy
/etc/rc.conf: (snippet to show what you need to add for OpenVPN)
Code:
gateway_enable="YES"
if_tap_load="YES"
openvpn_enable="YES"
openvpn_if="tap"
openvpn_configfile="/usr/local/etc/openvpn/openvpn.conf"
openvpn_flags="--script-security 2"
Make sure the following kernel states are enabled:
Code:
net.inet.ip.forwarding: 1
net.inet.ip.fastforwarding: 1
These files are for FreeBSD, but the configurtion file should work on any implementation.
I take it apps like barnacle and wireless tether go undected right?
Sent from Desire HD or Inspire 4G or whatever this thing is called via premium XDA app.
lrs421 said:
I take it apps like barnacle and wireless tether go undected right?
Sent from Desire HD or Inspire 4G or whatever this thing is called via premium XDA app.
Click to expand...
Click to collapse
So far i didn't get notices while using wireless tether. Never used barnacle tether though.
I remember reading somewhere about a 3G phone on Verizon that when you turn on the native hotspot app, the NAI used by the phone to obtain an IP address for your networked devices, and subsequently service the IP requests for those devices, is made through a DIFFERENT NAI than the phone when you are making requests from your mobile phone.
There must also be some other differences. Recall a while ago in the general forum someone made a complaint about their Thunderbolt mobile browsers being unable to access images from imgur.com. I experienced the same issue. The REALLY wierd thing though is that if I turned on hotspot and went on my laptop through the hotspot, I COULD see images on imgur.com. This means that native wifi hotspot also sends you to a different DNS server than internet requests made through the phone.
It would be interesting to see at what level that happens in the application/operating system/radio stack. It's possible (likely even probable) that wired tether apps specifically like PDAnet somehow work around these differences. If the NAI is spoofed or if the requests are masked to look like they are coming from an application on the phone, I don't see how it is possible for Verizon to know the difference, or ever limit it. They would have to do deep packet inspection and see what you are doing with your internet traffic at the application level, which I think would be much more trouble than it is worth, not to mention bordering on illegal.
tl;dr: I don't think Verizon can ever stop PDAnet.
I know that so far I have not had any issues on my Dinc using both the wired and wifi tethering native in OpenVPN. If verizon gets too smart about it all I will just set up a VPN to hide everything from them even more
I believe the native browser on the thunderbolt didn't give you the option of being recognized as a mobile browser or desktop browser, which could affect the way certain websites will show.
Sent from my ADR6400L using XDA App
So I have been looking for a way to say goodbye to AT&T's U-Verse and their terrible service/billing.
Now that I have a galaxy S3 and there is decent LTE coverage at home, I would like to use my Unlimited LTE as my main internet service.
This has worked out well tethering with FoxFi and I usually get around 15mb/s down / 6 mb/s up.
However I cannot figure out how to get incoming connections to uTorrent. I don't torrent very often but I like to maintain a good ratio and there are some things which I will seed forever, to make sure they are still available.
I haven't yet rooted my phone though I'm comfortable with it from prior experience. I wouldn't mind rooting it but if I can avoid it for the time being, why bother?
Has anyone had any trouble with Verizon and torrents on an unlimited plan? I don't use an exorbitant amount of data but I wonder about my privacy.
I would be very appreciative if someone could show me how to port-forward or otherwise open my phone to incoming connections from uTorrent through tethering. I have also considered using a VPN to increase my privacy, so if I could use that with my phone connection, I would be very happy.
Thank you to any who devote their time to my cause.
Sorry, I dont have a solution for you. but i would like to know the answer to this as well
i torrent just fine when tethering my Galaxy nexus on verizon (using PDAnet) i use about 20gigs a month or so and the max i ever went with it was 60gigs. but i have not torrent in a long time and have been using my tethering for WoW and L4D2 and downloading steam games
Whoa, you're on u-verse and having bad service and bill? Might want to shoot me a private message to talk about it and I can take a quick looksee of what's going on (I'm a tier 2 technical support agent for u-verse, and you wonder why I'm on Verizon Wireless )
Anyways, the only thing I've learned is that setting up utorrent on the phone is a pain in the ass but will work (been awhile since I've done it) but only when it's on 4G, if it's on the 3G network it won't let you do it (I can't point my figure on why).
scsa20 said:
Whoa, you're on u-verse and having bad service and bill? Might want to shoot me a private message to talk about it and I can take a quick looksee of what's going on (I'm a tier 2 technical support agent for u-verse, and you wonder why I'm on Verizon Wireless )
Anyways, the only thing I've learned is that setting up utorrent on the phone is a pain in the ass but will work (been awhile since I've done it) but only when it's on 4G, if it's on the 3G network it won't let you do it (I can't point my figure on why).
Click to expand...
Click to collapse
Thanks for the consideration. I'll be in touch.
I tried to use uTorrent on my S3, but the private tracker I use only allows supported clients. There is no Android option available. I am going to suggest they add one, but in the mean time, I'm wishing I could run a Linux client on my phone or figure out a way to enable incoming connections over a WiFi/USB tether. Don't know where to start with that, though.
You might want to look at your computer's built in firewall. From my understanding of port forwarding it allows certain traffic to bypass a firewall to a specific client. I don't recall foxfi having any built in firewall so anything connected to it should be in a DMZ
Sent from my SCH-I535 using xda app-developers app
Jarredw said:
You might want to look at your computer's built in firewall. From my understanding of port forwarding it allows certain traffic to bypass a firewall to a specific client. I don't recall foxfi having any built in firewall so anything connected to it should be in a DMZ
Sent from my SCH-I535 using xda app-developers app
Click to expand...
Click to collapse
The built in firewall doesn't block incoming connections when I am using my home wifi (I have set up port forwarding in the router). The only thing I change is that I connect to FoxFi and the port is no longer accessible from outside (no connections are being made to upload in uTorrent.)
BUMP?
Has Anyone gotten anywhere with this, I know its not a firewall somewhere down the line the port is getting blocked but all my firewalls are off....
Mike
androidkitty said:
Thanks for the consideration. I'll be in touch.
I tried to use uTorrent on my S3, but the private tracker I use only allows supported clients. There is no Android option available. I am going to suggest they add one, but in the mean time, I'm wishing I could run a Linux client on my phone or figure out a way to enable incoming connections over a WiFi/USB tether. Don't know where to start with that, though.
Click to expand...
Click to collapse
You should see if they support tixati. I have had nothing but problems with utorrent in the past couple years. Tixati may not look superior at first but it has all the same options plus more. Probably what really draws me to tixati is it allocates the files before download.
VPN Fixed it, Kinda
androidkitty said:
The built in firewall doesn't block incoming connections when I am using my home wifi (I have set up port forwarding in the router). The only thing I change is that I connect to FoxFi and the port is no longer accessible from outside (no connections are being made to upload in uTorrent.)
Click to expand...
Click to collapse
Hey I had the Idea to set up a VPN on the computer, and It did fix the connection problem, got the green, BUT my DL speeds went to crap, Which makes sense, So I guess if you wanna either find a decent VPN provider that can handle the through put could possibly solve the issue...I just jumped on the first free one I came across..
Hope It Helps
Mike
Which VPN did you use eventually mike ?
dumbledon said:
Which VPN did you use eventually mike ?
Click to expand...
Click to collapse
I Started with OpenVPN, which worked OK, But was a PITA to setup, I eventually went to a free VPN through a website, and client configuration, They'd change the password daily, you just jump to the site, log-in get the new Password and your good to go, Speeds where about the same...
And It's been awhile, but I found out the the Issue was AT&T blocking certain websites (Including at the time, My Free Host for my Forum which is now on a VPS..) and have since moved to T-mobile....
Been Awhile and memory isn't as great as it was, Hope this is what you are looking for,
Mike
I was just wondering if anyone has had any luck with FoxFi and wifi tethering with the One S on stock software that uses t-mobile?
I have tried it on both my One S and GS3 and both show enabled and when I try to connect with a windows 7 laptop says it is unable to connect right away.
That is both it encryption on and off. Also tried different unused AP names.
I know it is not supported with the GS3 but anyone out there have luck with the One S?
Not sure if needed something with the phone setup that may need to be different.
Anyone?
I tried FoxFi, tethering my phone to my laptop running mint 13 and then my desktop running windows 7, both connected and worked with no problem. Now I'm running CM10 and using native tethering.
Ok got the app atleast connecting to the computer with the 1.91.3 from foxfi.com/bin
but now even though I am connecting it seems like certain things work and others dont
my google talk program found internet and connected but loaded chrome and it gave me t-mobile upsell error message
Read at the end of this thread, the solution offered today works without touching APN's.
http://forum.xda-developers.com/showthread.php?t=1713107
T-MobileUS HTC One S running Stock Rooted 2.21.
My experience making FoxFi work on T-Mobile
My experience is that T-Mobile will check the user agent string and block non-mobile ones.
This happens when using wifi, bluetooth, and USB connections to FoxFi.
I can connect to my T-Mobile phone using wifi with FoxFi from another mobile phone or tablet just fine.
If you use an https page from your desktop, you can usually get through. I've read the HTTPS encrypts the user agent string, so T-Mobile can't read it.
If you try to access a plain HTTP page from your desktop browser, it seems T-Mobile puts a 10-30 second block on all your traffic.
Some people say they change the user agent string on their desktop computers to get around this. Then T-Mobile thinks your desktop browser is a cell phone browser and lets it though. But that can force you to see a mobile version of a website.
You can also use FTP, SFTP, ... from your computer and probably get through fine since there are no user agent strings on those protocols.
A slightly easier option is to use a VPN on your computer. ProXPN has a pretty simple free version. AnchorFree's Hotspot Shield has a free version, but it adds ads to the web pages you view. Or you could use a company VPN if it makes everything go through it. That encrypts the traffic and T-Mobile can't read the user agent string.
Hi guys,
I am loving the Nexus 5. I've ordered it, and should be here in 2 days. Only issue is, I need the program android-wifi-tether https://code.google.com/p/android-wifi-tether/ to be working on this phone.
You see, I have a data plan from my carrier which DOES NOT ALLOW you to tether = (. However, the program wifi tether works great to get around this. Previously I used to use an App called Fox-Fi which did something similar.
Currently I'm running a TW based Samsung S3, because WiFi Tether will only work on TW-based roms, not AOSP-based roms.
Do you think there is any chance to get WiFi Tether, (or similar) App that will work on the Google Nexus 5?
Thoughts?
It looks like the biggest requirement is Netfilter, which is essentially IP tables. Try installing IP tables, and see if the program will run. Otherwise, you can always use another tethering app like easytether, or another program (I know that there are loads out there). If you are rooted, it should not be much of a hassle to install.
Es Filexplorer will do it for you once rooted and a great file management app also
Thanks guys. I'll give it a shot once device is in my hands. Thanks.
Another method for this I use that sometimes works is to tether using the default app and just use a User Agent switch in google chrome for HTML traffic. My video games as well as spotify ETC work like normal I only need the UA switcher for traffic within the browser.
Wait, am I missing something here? OP, tethering is a standard feature in Nexus phones, esp now that Verizon is out of the equation.
Why can't you just use the built-in tethering? If it's an issue of your provider being able to track that, then I don't think any of the 3rd party tools are going to help. Typically, just a user-agent switcher can take care of the problem on the device that you're tethered to.
I'm dealing with this issue right now. I had a note 2 running macks rom on my sprint note 2 that let you hotspot free. The N5 tether/hotspot does not work. We need a work around..
Engineer4life said:
I'm dealing with this issue right now. I had a note 2 running macks rom on my sprint note 2 that let you hotspot free. The N5 tether/hotspot does not work. We need a work around..
Click to expand...
Click to collapse
My carrier has 2 data plans. 6gb for $30 gives you LTE and tether/hotspot. Or Unlimited LTE for $45 -but tether/hotspot is disabled/not allowed.
I'm on the $45 plan and built-in tether does not work. But the app "wifi-tether" gets around this and works Great!
The issue isn't user-agent. With built-in tether I can't even get a data signal. It will create the a dud Wi-Fi hotspot.
Let's hope IPTables works! I'm sure Bluetooth tether and USB tether may still work, but is much more annoying.
prettyha8 said:
My carrier has 2 data plans. 6gb for $30 gives you LTE and tether/hotspot. Or Unlimited LTE for $45 -but tether/hotspot is disabled/not allowed.
I'm on the $45 plan and built-in tether does not work. But the app "wifi-tether" gets around this and works Great!
The issue isn't user-agent. With built-in tether I can't even get a data signal. It will create the a dud Wi-Fi hotspot.
Let's hope IPTables works! I'm sure Bluetooth tether and USB tether may still work, but is much more annoying.
Click to expand...
Click to collapse
which version of the wifi tether app did you use that works? It seems some versions are picky about some phones I just want to get everything I need for when my Nexus 5 arrives
orthonovum said:
which version of the wifi tether app did you use that works? It seems some versions are picky about some phones I just want to get everything I need for when my Nexus 5 arrives
Click to expand...
Click to collapse
For my TW-based Samsung Galaxy S3, I used the file "wifi_tether_v3_4-experimental1.apk", then I changed the SSID and changed the WPA2-PSK phasephrase.
*** I think the trick was, if you did NOT change the default SSID or added a WPA2 password the App did not work. After you set a WPA2 password, you can then turn off encryption or change the SSID back to default.
But I don't think know if this will work for the Nexus 5. **Fingers-crossed!
bump
There is another thread with more discussion on this matter here: http://forum.xda-developers.com/showthread.php?t=2512674
prettyha8 said:
The issue isn't user-agent. With built-in tether I can't even get a data signal. It will create the a dud Wi-Fi hotspot.
Click to expand...
Click to collapse
Is that the case on a Nexus device or something else? In theory my plan doesn't allow tethering, but I've never had an issue with the built-in hotspot. I'm just trying to figure out how your carrier would even know you were using a hotspot versus having data requests come from the phone itself. The traffic should look the same, for the most part.
bobalias said:
Is that the case on a Nexus device or something else? In theory my plan doesn't allow tethering, but I've never had an issue with the built-in hotspot. I'm just trying to figure out how your carrier would even know you were using a hotspot versus having data requests come from the phone itself. The traffic should look the same, for the most part.
Click to expand...
Click to collapse
I believe when you tether, your phone creates a secondary data connection pipe for tethering data. Apps like WiFi-Tether spoof this, and can even create an internal proxy server, such that all tethered data will look like on-device mobile browsing data.
My carrier let's me only create one data connection, thus tether is not allowed. However if I insert my SIM into a "MiFi device", then I can "share" the data connection, as only 1 data connection is being established.
I MIGHT BE WRONG, but this is what it looks like is happening in my findings. Hence the use of IPTABLES to re-route.
I'm not sure why AOSP-based custom Roms could never get WiFi tether working, but TouchWiz (TW) based roms could. I assume something in the kernel. However, I need this working badly.
Interesting, I'd never really given the process a detailed consideration but that sounds like a plausible explanation for both how they detect it, how they block it, and how software modifications let you get around it.
I am currently using wifi tether on evo lte on sprint, fine. Thinking of getting nexus 5. Will this app work on it? that link to the other thread was about tmobile and data plans and stock hotspot app. I am interested in wifi tether app with root. What are the settings to make this work on N5?
Thanks
Dungeon47 said:
There is another thread with more discussion on this matter here: http://forum.xda-developers.com/showthread.php?t=2512674
Click to expand...
Click to collapse
Dig through this thread. Somewhere there's a post explaining what to do to stop your carrier from checking if you are tethering. It requires editing a database and changing the proxy to ipv4 instead of ipv6.
Sent from my Nexus 7 using Tapatalk
Hey I'm trying to find a way to work around my hotspot tethering limit. I have unlimited data and want to use the most out of it, I have had unlimited data for about 3 weeks now and I have used 200 gigs of data and I want o be able to co next my Xbox and laptop for more than just a day or 2 because I only get 5 gigs of hotspot. So if anyone has a workaround for the tmobile s5 please comment and let me know
sgs5tetherhelp said:
Hey I'm trying to find a way to work around my hotspot tethering limit. I have unlimited data and want to use the most out of it, I have had unlimited data for about 3 weeks now and I have used 200 gigs of data and I want o be able to co next my Xbox and laptop for more than just a day or 2 because I only get 5 gigs of hotspot. So if anyone has a workaround for the tmobile s5 please comment and let me know
Click to expand...
Click to collapse
Are you rooted?
Yes via towel root
sgs5tetherhelp said:
Yes via towel root
Click to expand...
Click to collapse
https://play.google.com/store/apps/details?id=net.snclab.wifitetherrouter
I use it on my T-Mobile phones. Follow the link in the description for settings. Gotta warn ya though, it might not work without further tweaks. You might need to google up some more specific instructions. The problem with this app (not the app's fault though) is that every phone/brand/ROM is different and needs different settings, and unfortunately these settings don't have descriptions. Plus the author is Italian and his English ain't too good.
You'll probably also have to create a new APN for tethering. Go to your System Settings, More networks, Mobile Networks, Access Point Names, then hit the menu button to add a new APN. Copy everything in the default APN down, then make everything in the new APN exactly the same, but instead of IPv6, use IPv4.
For tethering to just your laptop though, I recommend PdaNet+ (not a root app) and using USB tethering. The reason is that using your phone as a wifi hotspot is a processor and battery hog, and the more it's used, the hotter your phone will get and the more your battery gets used (shortening its overall lifespan). USB tethering however basically turns your phone into a conduit, rather than a rebroadcaster, and won't fry your phone. It works by using a companion program on your computer (also does bluetooth, but it's much slower), and has the option (which you need to use) to "hide tether usage". Another cool feature is you can set it up so text messages will pop up on your computer. The one single issue with USB tethering with PdaNet is with Netflix. If you try to watch something, it'll take you to the page saying your computer doesn't meet the minimum system requirements. Whatever VPN/proxy/whatever that it uses to mask your usage doesn't jive with Microsoft Silverlight, which Netflix uses. The way around this is to disable the "hide tether usage" option when loading a video, and as soon as it starts loading, select "hide tether usage" again, and you're good to go.
The really cool thing is that these two apps work simultaneously. I use PdaNet to USB tether my phone to my laptop (which is plugged into my 42" TV). The same phone is running Wifi Tether Router so I can use my tablet on wifi. Seriously, how cool is that?!? Complete home internet and cell service for $89.08/month (after taxes).