hi there,

I have seen a similar question in this forum.

Follow the instructions, it's described on koolu's forum:
http://forum.koolu.org/viewtopic.php?f=10&t=89

If you dont have access i just copy paste the instructions below.

Yes, you can use the USB to browse the web...

You need to do three things to enable the internet.


1. First make sure that network forwarding is working on the computer
that the phone is connected to.

2. Add the default route to the phone:

Code: Select all
    route add default gw 192.168.0.200 dev usb0


3. Add the dns for proper name resolution

Code: Select all
    setprop net.dns1 192.168.0.200



You should be able to ping the computer the phone is connected to:

Code: Select all
    ping 192.168.0.200


You should also be able to ping IP addresses outside of that subnet if
the route has been set up properly.

The route can be verified by:

Code: Select all
    cat /proc/net/route

---


regards

-roger


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to