<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://wiki.webos-internals.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Sgonzalez</id>
	<title>WebOS Internals - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://wiki.webos-internals.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Sgonzalez"/>
	<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/wiki/Special:Contributions/Sgonzalez"/>
	<updated>2026-04-24T11:50:20Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.35.1</generator>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=USBnet_Setup&amp;diff=14303</id>
		<title>USBnet Setup</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=USBnet_Setup&amp;diff=14303"/>
		<updated>2011-03-19T03:56:44Z</updated>

		<summary type="html">&lt;p&gt;Sgonzalez: /* Mac OS X */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Introduction =&lt;br /&gt;
USBnet allows you to create an IP network over the USB cable. This will allow you to talk to your WebOS Device without WiFi or Bluetooth, and it keeps the battery charged.&lt;br /&gt;
&lt;br /&gt;
== Device Setup ==&lt;br /&gt;
=== With Linux Access to Your Device ===&lt;br /&gt;
&lt;br /&gt;
''To enable Linux Access to your device, see [[Portal:Accessing_Linux|Accessing Linux]]''&lt;br /&gt;
&lt;br /&gt;
# Run '''usbnet enable''' as root.&lt;br /&gt;
# Restart the device as instructed.&lt;br /&gt;
# After the reboot, run '''ifconfig''' as root and verify you now have a usb0 interface.&lt;br /&gt;
#* Note the IP Address listed, it is needed in the Computer Setup.  The default should be 192.168.0.202.&lt;br /&gt;
#* If desired, the IP can be changed in /etc/network/interfaces.&lt;br /&gt;
#** After a change, run ''''ifdown usb0; ifup usb0'' as root to pick up the change.&lt;br /&gt;
&lt;br /&gt;
==== Optional Setup to enable DHCP ====&lt;br /&gt;
If you do not want to have to manually setup the network on your computer, do the following to enable the DHCP server on your device to serve requests on the usb0 interface.&lt;br /&gt;
# Open ''/etc/dnsmasq.palm.conf'' in your editor of choice.&lt;br /&gt;
#* '''vi''' is available on a stock WebOS Device, for a quick tutorial on its use, see: http://www.unix-manuals.com/tutorials/vi/vi-in-10-1.html&lt;br /&gt;
# Add '''interface=usb0''' below the existing interface line.&lt;br /&gt;
# Add '''dhcp-range=192.168.0.11,192.168.0.12,12h''' below the existing dhcp-range. &lt;br /&gt;
# Run '''stop dnsmasq; start dnsmasq''' as root to apply the changes. &lt;br /&gt;
&lt;br /&gt;
== Computer Setup ==&lt;br /&gt;
=== Microsoft Windows ===&lt;br /&gt;
''Note: If you have previously installed Novacom, bring up Windows Task Manager before proceeding.  Once you install USBnet with the instructions below, you may discover a conflict between USBnet and novacomd where the novacomd process will consume lots of CPU and your machine will become very unresponsive.  Since you have Task Manager up already, you can easily use it to kill novacomd if this occurs.''&lt;br /&gt;
==== Windows XP ====&lt;br /&gt;
===== Driver Installation =====&lt;br /&gt;
#Download the driver here: [http://gitorious.org/webos-internals/usbnet-pre/blobs/raw/master/windows/usbnet-pre.inf usbnet-pre windows driver(32 bit)] or [http://gitorious.org/webos-internals/usbnet-pre/blobs/raw/master/windows/usbnet-pre-64.inf usbnet-pre windows driver(64 bit)] and save the file to disk as usbnet-pre.inf &lt;br /&gt;
#Plug the Pre into your computer. The Add New Hardware Wizard should come up, asking to install an ethernet gadget. &lt;br /&gt;
#Follow detailed instructions (screenshots and all) here if you are unfamiliar with installing drivers: [http://docwiki.gumstix.org/index.php/Windows_XP_usbnet Windows XP USBnet install] &lt;br /&gt;
#When you finish, you should have a new network icon in &amp;quot;Network Connections&amp;quot;&lt;br /&gt;
===== Network Setup =====&lt;br /&gt;
#Goto &amp;quot;Network Connections&amp;quot; via Network Places or the Control Panel &lt;br /&gt;
#Right-click on the new network, which probably be named Local Area Connection 2 &lt;br /&gt;
#Select Properties &lt;br /&gt;
#Double click on Internet Protocol (TCP/IP) &lt;br /&gt;
#Click Advanced &lt;br /&gt;
#Un-check Automatic metric, put 100 in its place. This will keep Windows from attempting to [http://support.microsoft.com/default.aspx/kb/299540 route] traffic over the Pre (it won't work anyway). Note: 100 may be too high. If it seems that network traffic is being routed to the pre (IE - your internet connection apparently dies), try setting this to something lower (like 60).&lt;br /&gt;
#Click OK &lt;br /&gt;
===== Setting the IP Address Manually =====&lt;br /&gt;
# If you did not enable DHCP, you will need to set an IP address manually: &lt;br /&gt;
## Set your IP address as 192.168.0.203&lt;br /&gt;
##* This could be anything except the IP address of the WebOS device's usb0 interface, if you changed the IP Address of the device, make sure to choose an IP address on the same subnet. &lt;br /&gt;
## Subnet mask: 255.255.255.0 &lt;br /&gt;
## Default Gateway: 192.168.0.202&lt;br /&gt;
##* This should be the IP address of the WebOS device's usb0 interface, if you changed the IP Address of the device, make sure to use that.&lt;br /&gt;
## Set DNS to your preferred servers.&lt;br /&gt;
# Hit OK &lt;br /&gt;
===== Testing the Connection =====&lt;br /&gt;
The network should now be setup. To verify the connection, ssh to the IP Address of your WebOS device's usb0 interface.  If unchanged it should be 192.168.0.202.  If everything is setup properly, you should be prompted for a login.&lt;br /&gt;
&lt;br /&gt;
===== Notes =====&lt;br /&gt;
&lt;br /&gt;
* This has only been tested on Windows XP 32 bit. For Windows 2000, you will need an additional download from Microsoft. The link is in the header of the INF file. &lt;br /&gt;
* I have several confirmations via the precentral forums that this only works on XP SP3. SP2 gives &amp;quot;error code 10, the device cannot start&amp;quot;. Has anyone followed this process and had it work on XP SP2? Update: Upgraded to SP3 on my laptop, and it immediately started working. ''- zinge''&lt;br /&gt;
* The 64 bit driver is unverified at this point, but I think it works. &lt;br /&gt;
* I was having all kinds of issues with this on my WinXP notebook. Clicking on the safely remove hardware icon in the tray indicated two devices associated with the Pre: Novacom and a USB drive. Stopping the Novacom service resolved the issues. Note that I need to do this each time that I attach the Pre via USB. ''- wayne47''&lt;br /&gt;
* In Step 9. UNCheck Automatic metric, put 100 in its place. ''- Sniperlcd''&lt;br /&gt;
** I put 100 and it didn´t work, but when i put 10, it worked.... i think metric should be 10&lt;br /&gt;
&lt;br /&gt;
==== Windows Vista (64-bit) ====&lt;br /&gt;
&lt;br /&gt;
* If driver/device fails to come online in network sharing center, go to ''Start-&amp;gt;(Right Click) Computer-&amp;gt;Properties-&amp;gt;Device Manager'' and look for the device &amp;quot;Linux USB Ethernet/RNDIS Gadget&amp;quot; you can then right click and disable/enable the device. &lt;br /&gt;
* This device/driver can also be cycled with MS Windows own [http://support.microsoft.com/kb/311272 DevCon] application.&lt;br /&gt;
* For network setup and testing, see the relevant sections under Windows XP.&lt;br /&gt;
&lt;br /&gt;
==== Windows 7 (64-bit) ====&lt;br /&gt;
&lt;br /&gt;
* Windows 7 has the driver it needs already, but it won't set it up by itself.   The driver you want is under &amp;quot;Microsoft Corporation&amp;quot; &amp;gt; &amp;quot;Remote NDIS based Internet Sharing Device.&amp;quot;.  See http://mytether.net/#other for complete directions.&lt;br /&gt;
* For network setup and testing, see the relevant sections under Windows XP.&lt;br /&gt;
&lt;br /&gt;
==== Windows 7 RC Build 7100 (64-bit) ====&lt;br /&gt;
&lt;br /&gt;
* User lars47 confirms this is working on Windows 7 x64. Wrestled with the driver installation at first, it would not install, Windows complained of a file in use. I rebooted, and the next time I plugged in the Pre via USB, it &amp;quot;just worked&amp;quot;. Unsure if I caused the problem, or if a reboot is required/recommended.&lt;br /&gt;
* For network setup and testing, see the relevant sections under Windows XP.&lt;br /&gt;
&lt;br /&gt;
=== Apple MacOS ===&lt;br /&gt;
==== Mac OS X ====&lt;br /&gt;
&lt;br /&gt;
* [[User:mdklein|mdklein]] notes that as of 1.0.4 the g_composite driver appears to only operate usbnet in rndis mode which is not the method OS-X includes. He has made a version that implements CDC-ECM, but it breaks a few other things. Working on this.&lt;br /&gt;
* Allegedly, Mac OS X 10.4 should create a usb0 interface after you plug in a usbnet enabled pre. 10.5 needs a modified driver, which is not working for me (and carazy) yet. See [http://bugcommunity.com/wiki/index.php/Start_Guide_Mac_OS_X_10.5 this page] for more details.&lt;br /&gt;
* I don't know of anyone that has gotten USBNet driver to work on Mac OSX at all so for the time being, count it as unsupported. If anyone can figure it out please shed some light on us.&lt;br /&gt;
* MacOS X does not directly support RNDIS. The link provided is for a CDC Ethernet driver with a system-specific patch, which won't work.&lt;br /&gt;
* Both [http://mac.eltima.com/sync-mac.html Syncmate] and [http://www.markspace.com/products/windowsmobile/mac/windows-mobile-sync-software.html Missing Sync] appear to provide a RNDIS driver to access WinCE devices, which '''does not''' work with the Pre/Pixi. Someone should investigate.&lt;br /&gt;
&lt;br /&gt;
=== GNU/Linux ===&lt;br /&gt;
==== Ubuntu ====&lt;br /&gt;
* Once usbnet was enabled on the Pre, my Ubuntu 9.04 (64 bit) immediately identified the Pre in the NetworkManager and worked without modification to the OS. It seems to already have a driver that works.&lt;br /&gt;
* In order to prevent Ubuntu Linux from automatically trying to connect to the internet while the phone is connected via USBnet: &lt;br /&gt;
** In the Network Manager icon, click &amp;quot;Edit Connections&amp;quot;&lt;br /&gt;
** Select the usb0 interface and select &amp;quot;Edit&amp;quot;&lt;br /&gt;
** Uncheck the box that says &amp;quot;Connect Automatically&amp;quot; (this is optional, but could prevent headaches)&lt;br /&gt;
** Under IPv4 Settings select Routes&lt;br /&gt;
*** Check the box next to &amp;quot;Use this connection only for resources on its network&amp;quot;&lt;br /&gt;
** Click Ok, Apply. Now you should be able to access your regular wifi/lan/internet&lt;br /&gt;
==== Gentoo ====&lt;br /&gt;
* If you are using a default kernel, and you enabled DHCP on the WebOS Device, this should work out of the box.&lt;br /&gt;
** Simply run as root dhcpcd usb0 once the device is connected.&lt;br /&gt;
** If you did not enable DHCP, see the Windows XP section for the relevant TCP/IP information.&lt;br /&gt;
* If you are using a custom kernel, make sure you have usbnet, cdc_ether and rndis_host either compiled-in or available as modules.  The relevant kernel options are (from kernel 2.6.36-gentoo-r5):&lt;br /&gt;
 Modules: usbnet cdc_ether rndis_host&lt;br /&gt;
 Kernel Options:&lt;br /&gt;
  Device Drivers  ---&amp;gt;&lt;br /&gt;
   [*] Network device support  ---&amp;gt;&lt;br /&gt;
    USB Network Adapters  ---&amp;gt;&lt;br /&gt;
     &amp;lt;M&amp;gt; Multi-purpose USB Networking Framework&lt;br /&gt;
     &amp;lt;M&amp;gt;   CDC Ethernet support (smart devices such as cable modems)&lt;br /&gt;
     &amp;lt;M&amp;gt;   Host for RNDIS and ActiveSync devices (EXPERIMENTAL)&lt;/div&gt;</summary>
		<author><name>Sgonzalez</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Application_talk:FreeTether&amp;diff=14251</id>
		<title>Application talk:FreeTether</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Application_talk:FreeTether&amp;diff=14251"/>
		<updated>2011-03-17T12:05:25Z</updated>

		<summary type="html">&lt;p&gt;Sgonzalez: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* I reworked the USBnet page a bit, if possible you should mention that the reader should see the 'Computer Setup' section, also you could link directly to it via [[USBnet_Setup#Computer_Setup]] --[[User:Sgonzalez|Sgonzalez]] 12:05, 17 March 2011 (UTC)&lt;br /&gt;
* Also, I kinda get the desire to keep the talk page empty, but you should at least leave up a blurb that you have assumed maintainership of this page and that you would like all changes to be discussed here prior to them being made, to avoid problems in the future. --[[User:Sgonzalez|Sgonzalez]] 12:05, 17 March 2011 (UTC)&lt;/div&gt;</summary>
		<author><name>Sgonzalez</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Talk:USBnet_networking_setup&amp;diff=14249</id>
		<title>Talk:USBnet networking setup</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Talk:USBnet_networking_setup&amp;diff=14249"/>
		<updated>2011-03-17T12:01:20Z</updated>

		<summary type="html">&lt;p&gt;Sgonzalez: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* This page seems to be a duplicate of http://www.webos-internals.org/wiki/USBnet_Setup&lt;br /&gt;
* I read through both pages and concur,  changing this page to a redirect [[User:Sgonzalez|Sgonzalez]]&lt;/div&gt;</summary>
		<author><name>Sgonzalez</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Talk:USBnet_networking_setup&amp;diff=14247</id>
		<title>Talk:USBnet networking setup</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Talk:USBnet_networking_setup&amp;diff=14247"/>
		<updated>2011-03-17T12:01:08Z</updated>

		<summary type="html">&lt;p&gt;Sgonzalez: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;This page seems to be a duplicate of http://www.webos-internals.org/wiki/USBnet_Setup&lt;br /&gt;
I read through both pages and concur,  changing this page to a redirect [[User:Sgonzalez|Sgonzalez]]&lt;/div&gt;</summary>
		<author><name>Sgonzalez</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=USBnet_networking_setup&amp;diff=14245</id>
		<title>USBnet networking setup</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=USBnet_networking_setup&amp;diff=14245"/>
		<updated>2011-03-17T12:00:23Z</updated>

		<summary type="html">&lt;p&gt;Sgonzalez: Redirce to USBnet_setup, all information is available there&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[USBnet_Setup]]&lt;/div&gt;</summary>
		<author><name>Sgonzalez</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=USBnet_Setup&amp;diff=14243</id>
		<title>USBnet Setup</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=USBnet_Setup&amp;diff=14243"/>
		<updated>2011-03-17T11:59:47Z</updated>

		<summary type="html">&lt;p&gt;Sgonzalez: General cleanup, formatting, created more logical sections&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;= Introduction =&lt;br /&gt;
USBnet allows you to create an IP network over the USB cable. This will allow you to talk to your WebOS Device without WiFi or Bluetooth, and it keeps the battery charged.&lt;br /&gt;
&lt;br /&gt;
== Device Setup ==&lt;br /&gt;
=== With Linux Access to Your Device ===&lt;br /&gt;
&lt;br /&gt;
''To enable Linux Access to your device, see [[Portal:Accessing_Linux|Accessing Linux]]''&lt;br /&gt;
&lt;br /&gt;
# Run '''usbnet enable''' as root.&lt;br /&gt;
# Restart the device as instructed.&lt;br /&gt;
# After the reboot, run '''ifconfig''' as root and verify you now have a usb0 interface.&lt;br /&gt;
#* Note the IP Address listed, it is needed in the Computer Setup.  The default should be 192.168.0.202.&lt;br /&gt;
#* If desired, the IP can be changed in /etc/network/interfaces.&lt;br /&gt;
#** After a change, run ''''ifdown usb0; ifup usb0'' as root to pick up the change.&lt;br /&gt;
&lt;br /&gt;
==== Optional Setup to enable DHCP ====&lt;br /&gt;
If you do not want to have to manually setup the network on your computer, do the following to enable the DHCP server on your device to serve requests on the usb0 interface.&lt;br /&gt;
# Open ''/etc/dnsmasq.palm.conf'' in your editor of choice.&lt;br /&gt;
#* '''vi''' is available on a stock WebOS Device, for a quick tutorial on its use, see: http://www.unix-manuals.com/tutorials/vi/vi-in-10-1.html&lt;br /&gt;
# Add '''interface=usb0''' below the existing interface line.&lt;br /&gt;
# Add '''dhcp-range=192.168.0.11,192.168.0.12,12h''' below the existing dhcp-range. &lt;br /&gt;
# Run '''stop dnsmasq; start dnsmasq''' as root to apply the changes. &lt;br /&gt;
&lt;br /&gt;
== Computer Setup ==&lt;br /&gt;
=== Microsoft Windows ===&lt;br /&gt;
''Note: If you have previously installed Novacom, bring up Windows Task Manager before proceeding.  Once you install USBnet with the instructions below, you may discover a conflict between USBnet and novacomd where the novacomd process will consume lots of CPU and your machine will become very unresponsive.  Since you have Task Manager up already, you can easily use it to kill novacomd if this occurs.''&lt;br /&gt;
==== Windows XP ====&lt;br /&gt;
===== Driver Installation =====&lt;br /&gt;
#Download the driver here: [http://gitorious.org/webos-internals/usbnet-pre/blobs/raw/master/windows/usbnet-pre.inf usbnet-pre windows driver(32 bit)] or [http://gitorious.org/webos-internals/usbnet-pre/blobs/raw/master/windows/usbnet-pre-64.inf usbnet-pre windows driver(64 bit)] and save the file to disk as usbnet-pre.inf &lt;br /&gt;
#Plug the Pre into your computer. The Add New Hardware Wizard should come up, asking to install an ethernet gadget. &lt;br /&gt;
#Follow detailed instructions (screenshots and all) here if you are unfamiliar with installing drivers: [http://docwiki.gumstix.org/index.php/Windows_XP_usbnet Windows XP USBnet install] &lt;br /&gt;
#When you finish, you should have a new network icon in &amp;quot;Network Connections&amp;quot;&lt;br /&gt;
===== Network Setup =====&lt;br /&gt;
#Goto &amp;quot;Network Connections&amp;quot; via Network Places or the Control Panel &lt;br /&gt;
#Right-click on the new network, which probably be named Local Area Connection 2 &lt;br /&gt;
#Select Properties &lt;br /&gt;
#Double click on Internet Protocol (TCP/IP) &lt;br /&gt;
#Click Advanced &lt;br /&gt;
#Un-check Automatic metric, put 100 in its place. This will keep Windows from attempting to [http://support.microsoft.com/default.aspx/kb/299540 route] traffic over the Pre (it won't work anyway). Note: 100 may be too high. If it seems that network traffic is being routed to the pre (IE - your internet connection apparently dies), try setting this to something lower (like 60).&lt;br /&gt;
#Click OK &lt;br /&gt;
===== Setting the IP Address Manually =====&lt;br /&gt;
# If you did not enable DHCP, you will need to set an IP address manually: &lt;br /&gt;
## Set your IP address as 192.168.0.203&lt;br /&gt;
##* This could be anything except the IP address of the WebOS device's usb0 interface, if you changed the IP Address of the device, make sure to choose an IP address on the same subnet. &lt;br /&gt;
## Subnet mask: 255.255.255.0 &lt;br /&gt;
## Default Gateway: 192.168.0.202&lt;br /&gt;
##* This should be the IP address of the WebOS device's usb0 interface, if you changed the IP Address of the device, make sure to use that.&lt;br /&gt;
## Set DNS to your preferred servers.&lt;br /&gt;
# Hit OK &lt;br /&gt;
===== Testing the Connection =====&lt;br /&gt;
The network should now be setup. To verify the connection, ssh to the IP Address of your WebOS device's usb0 interface.  If unchanged it should be 192.168.0.202.  If everything is setup properly, you should be prompted for a login.&lt;br /&gt;
&lt;br /&gt;
===== Notes =====&lt;br /&gt;
&lt;br /&gt;
* This has only been tested on Windows XP 32 bit. For Windows 2000, you will need an additional download from Microsoft. The link is in the header of the INF file. &lt;br /&gt;
* I have several confirmations via the precentral forums that this only works on XP SP3. SP2 gives &amp;quot;error code 10, the device cannot start&amp;quot;. Has anyone followed this process and had it work on XP SP2? Update: Upgraded to SP3 on my laptop, and it immediately started working. ''- zinge''&lt;br /&gt;
* The 64 bit driver is unverified at this point, but I think it works. &lt;br /&gt;
* I was having all kinds of issues with this on my WinXP notebook. Clicking on the safely remove hardware icon in the tray indicated two devices associated with the Pre: Novacom and a USB drive. Stopping the Novacom service resolved the issues. Note that I need to do this each time that I attach the Pre via USB. ''- wayne47''&lt;br /&gt;
* In Step 9. UNCheck Automatic metric, put 100 in its place. ''- Sniperlcd''&lt;br /&gt;
** I put 100 and it didn´t work, but when i put 10, it worked.... i think metric should be 10&lt;br /&gt;
&lt;br /&gt;
==== Windows Vista (64-bit) ====&lt;br /&gt;
&lt;br /&gt;
* If driver/device fails to come online in network sharing center, go to ''Start-&amp;gt;(Right Click) Computer-&amp;gt;Properties-&amp;gt;Device Manager'' and look for the device &amp;quot;Linux USB Ethernet/RNDIS Gadget&amp;quot; you can then right click and disable/enable the device. &lt;br /&gt;
* This device/driver can also be cycled with MS Windows own [http://support.microsoft.com/kb/311272 DevCon] application.&lt;br /&gt;
* For network setup and testing, see the relevant sections under Windows XP.&lt;br /&gt;
&lt;br /&gt;
==== Windows 7 (64-bit) ====&lt;br /&gt;
&lt;br /&gt;
* Windows 7 has the driver it needs already, but it won't set it up by itself.   The driver you want is under &amp;quot;Microsoft Corporation&amp;quot; &amp;gt; &amp;quot;Remote NDIS based Internet Sharing Device.&amp;quot;.  See http://mytether.net/#other for complete directions.&lt;br /&gt;
* For network setup and testing, see the relevant sections under Windows XP.&lt;br /&gt;
&lt;br /&gt;
==== Windows 7 RC Build 7100 (64-bit) ====&lt;br /&gt;
&lt;br /&gt;
* User lars47 confirms this is working on Windows 7 x64. Wrestled with the driver installation at first, it would not install, Windows complained of a file in use. I rebooted, and the next time I plugged in the Pre via USB, it &amp;quot;just worked&amp;quot;. Unsure if I caused the problem, or if a reboot is required/recommended.&lt;br /&gt;
* For network setup and testing, see the relevant sections under Windows XP.&lt;br /&gt;
&lt;br /&gt;
=== Apple MacOS ===&lt;br /&gt;
==== Mac OS X ====&lt;br /&gt;
&lt;br /&gt;
* [http://www.wikidot.com/user:info/mdklein mdklein] notes that as of 1.0.4 the g_composite driver appears to only operate usbnet in rndis mode which is not the method OS-X includes. He has made a version that implements CDC-ECM, but it breaks a few other things. Working on this.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''*Allegedly, Mac OS X 10.4 should create a usb0 interface after you plug in a usbnet enabled pre. 10.5 needs a modified driver, which is not working for me (and carazy) yet. See [http://bugcommunity.com/wiki/index.php/Start_Guide_Mac_OS_X_10.5 this page] for more details.&lt;br /&gt;
&lt;br /&gt;
''*I don't know of anyone that has gotten USBNet driver to work on Mac OSX at all so for the time being, count it as unsupported. If anyone can figure it out please shed some light on us.&lt;br /&gt;
&lt;br /&gt;
MacOS X does not directly support RNDIS. The link provided is for a CDC Ethernet driver with a system-specific patch, which won't work.&lt;br /&gt;
&lt;br /&gt;
Both [http://mac.eltima.com/sync-mac.html Syncmate] and [http://www.markspace.com/products/windowsmobile/mac/windows-mobile-sync-software.html Missing Sync] appear to provide a RNDIS driver to access WinCE devices, which '''does not''' work with the Pre/Pixi. Someone should investigate.&lt;br /&gt;
&lt;br /&gt;
=== GNU/Linux ===&lt;br /&gt;
==== Ubuntu ====&lt;br /&gt;
* Once usbnet was enabled on the Pre, my Ubuntu 9.04 (64 bit) immediately identified the Pre in the NetworkManager and worked without modification to the OS. It seems to already have a driver that works.&lt;br /&gt;
* In order to prevent Ubuntu Linux from automatically trying to connect to the internet while the phone is connected via USBnet: &lt;br /&gt;
** In the Network Manager icon, click &amp;quot;Edit Connections&amp;quot;&lt;br /&gt;
** Select the usb0 interface and select &amp;quot;Edit&amp;quot;&lt;br /&gt;
** Uncheck the box that says &amp;quot;Connect Automatically&amp;quot; (this is optional, but could prevent headaches)&lt;br /&gt;
** Under IPv4 Settings select Routes&lt;br /&gt;
*** Check the box next to &amp;quot;Use this connection only for resources on its network&amp;quot;&lt;br /&gt;
** Click Ok, Apply. Now you should be able to access your regular wifi/lan/internet&lt;br /&gt;
==== Gentoo ====&lt;br /&gt;
* If you are using a default kernel, and you enabled DHCP on the WebOS Device, this should work out of the box.&lt;br /&gt;
** Simply run as root dhcpcd usb0 once the device is connected.&lt;br /&gt;
** If you did not enable DHCP, see the Windows XP section for the relevant TCP/IP information.&lt;br /&gt;
* If you are using a custom kernel, make sure you have usbnet, cdc_ether and rndis_host either compiled-in or available as modules.  The relevant kernel options are (from kernel 2.6.36-gentoo-r5):&lt;br /&gt;
 Modules: usbnet cdc_ether rndis_host&lt;br /&gt;
 Kernel Options:&lt;br /&gt;
  Device Drivers  ---&amp;gt;&lt;br /&gt;
   [*] Network device support  ---&amp;gt;&lt;br /&gt;
    USB Network Adapters  ---&amp;gt;&lt;br /&gt;
     &amp;lt;M&amp;gt; Multi-purpose USB Networking Framework&lt;br /&gt;
     &amp;lt;M&amp;gt;   CDC Ethernet support (smart devices such as cable modems)&lt;br /&gt;
     &amp;lt;M&amp;gt;   Host for RNDIS and ActiveSync devices (EXPERIMENTAL)&lt;/div&gt;</summary>
		<author><name>Sgonzalez</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Application_talk:FreeTether&amp;diff=14199</id>
		<title>Application talk:FreeTether</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Application_talk:FreeTether&amp;diff=14199"/>
		<updated>2011-03-16T16:26:15Z</updated>

		<summary type="html">&lt;p&gt;Sgonzalez: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Outdated Info===&lt;br /&gt;
With some testing of enabling/disabling usbnet and playing with /etc/dnsmasq.palm.conf as per the USBnet page, it seems that these steps are no longer needed to get USB tethering working.  As a result I'm removing this section. [[User:Sgonzalez|Sgonzalez]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I've been working with the developers of freeTether and getting their insight/blessing on the wiki content. Please consult the developers if you feel that some of the content is not needed in your opinion before removing the content. I understand that wikis are editable for the public, but consideration has to be taken into account whether or not people other than some need that content for help such is the case with setting up USBNet.&lt;br /&gt;
&lt;br /&gt;
The USBnet section is needed for some users that do not know how to get it working. If it works for you out of the box, then there you can just skip that part. Why do you think it does not need to be there?&lt;br /&gt;
&lt;br /&gt;
The USBnet content with reference to enabling usbnet and the dnsmasq edits are not needed.  As far as I know this is because it is handled in freetether automatically, so to direct users to muck around with this seems wrong.  Outright removal of the link isn;t correct, because it also covers getting the connected computer working, which is still needed, but we should at least indicate either next to the link or on the USBnet page itself that certain steps are not needed for the current version of freeTether.  In any event, it would be a good idea to find out from the devs themselves it these steps are in fact deprecated. [[User:Sgonzalez|Sgonzalez]]&lt;br /&gt;
&lt;br /&gt;
Ok. I will edit the Wiki when I get to a computer and rework that section a bit to just discuss its use for setting up the drivers to work with th OS the person may be using. I admit it was not clear about that part. You are correct about freetether already doing the dhcp/dnsmasq stuff.&lt;br /&gt;
&lt;br /&gt;
thanks for your input. Sorry if I came off a bit brash. It was a long day.  :)&lt;br /&gt;
&lt;br /&gt;
No problem, just trying to give back a bit in thanks for the FOSS. [[User:Sgonzalez|Sgonzalez]]&lt;/div&gt;</summary>
		<author><name>Sgonzalez</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Application_talk:FreeTether&amp;diff=14195</id>
		<title>Application talk:FreeTether</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Application_talk:FreeTether&amp;diff=14195"/>
		<updated>2011-03-16T12:59:22Z</updated>

		<summary type="html">&lt;p&gt;Sgonzalez: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Outdated Info===&lt;br /&gt;
With some testing of enabling/disabling usbnet and playing with /etc/dnsmasq.palm.conf as per the USBnet page, it seems that these steps are no longer needed to get USB tethering working.  As a result I'm removing this section. [[User:Sgonzalez|Sgonzalez]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I've been working with the developers of freeTether and getting their insight/blessing on the wiki content. Please consult the developers if you feel that some of the content is not needed in your opinion before removing the content. I understand that wikis are editable for the public, but consideration has to be taken into account whether or not people other than some need that content for help such is the case with setting up USBNet.&lt;br /&gt;
&lt;br /&gt;
The USBnet section is needed for some users that do not know how to get it working. If it works for you out of the box, then there you can just skip that part. Why do you think it does not need to be there?&lt;br /&gt;
&lt;br /&gt;
The USBnet content with reference to enabling usbnet and the dnsmasq edits are not needed.  As far as I know this is because it is handled in freetether automatically, so to direct users to muck around with this seems wrong.  Outright removal of the link isn;t correct, because it also covers getting the connected computer working, which is still needed, but we should at least indicate either next to the link or on the USBnet page itself that certain steps are not needed for the current version of freeTether.  In any event, it would be a good idea to find out from the devs themselves it these steps are in fact deprecated. [[User:Sgonzalez|Sgonzalez]]&lt;/div&gt;</summary>
		<author><name>Sgonzalez</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Application_talk:FreeTether&amp;diff=14193</id>
		<title>Application talk:FreeTether</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Application_talk:FreeTether&amp;diff=14193"/>
		<updated>2011-03-16T12:57:33Z</updated>

		<summary type="html">&lt;p&gt;Sgonzalez: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Outdated Info===&lt;br /&gt;
With some testing of enabling/disabling usbnet and playing with /etc/dnsmasq.palm.conf as per the USBnet page, it seems that these steps are no longer needed to get USB tethering working.  As a result I'm removing this section. [[User:Sgonzalez|Sgonzalez]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I've been working with the developers of freeTether and getting their insight/blessing on the wiki content. Please consult the developers if you feel that some of the content is not needed in your opinion before removing the content. I understand that wikis are editable for the public, but consideration has to be taken into account whether or not people other than some need that content for help such is the case with setting up USBNet.&lt;br /&gt;
&lt;br /&gt;
The USBnet section is needed for some users that do not know how to get it working. If it works for you out of the box, then there you can just skip that part. Why do you think it does not need to be there?&lt;br /&gt;
&lt;br /&gt;
The USBnet content with reference to enabling usbnet and the dnsmasq edits are not needed.  As far as I know this is because it is handled in freetether automatically, so to direct users to muck around with this seems wrong.  Outright removal of the link isn;t correct, because it also covers getting the connected computer working, which is still needed, but we should at least indicate either next to the link or on the USBnet page itself that certain steps are not needed for the current version of freeTether. [[User:Sgonzalez|Sgonzalez]]&lt;/div&gt;</summary>
		<author><name>Sgonzalez</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Application_talk:FreeTether&amp;diff=14191</id>
		<title>Application talk:FreeTether</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Application_talk:FreeTether&amp;diff=14191"/>
		<updated>2011-03-16T12:57:16Z</updated>

		<summary type="html">&lt;p&gt;Sgonzalez: /* Outdated Info */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Outdated Info===&lt;br /&gt;
With some testing of enabling/disabling usbnet and playing with /etc/dnsmasq.palm.conf as per the USBnet page, it seems that these steps are no longer needed to get USB tethering working.  As a result I'm removing this section. [[User:Sgonzalez|Sgonzalez]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
I've been working with the developers of freeTether and getting their insight/blessing on the wiki content. Please consult the developers if you feel that some of the content is not needed in your opinion before removing the content. I understand that wikis are editable for the public, but consideration has to be taken into account whether or not people other than some need that content for help such is the case with setting up USBNet.&lt;br /&gt;
&lt;br /&gt;
The USBnet section is needed for some users that do not know how to get it working. If it works for you out of the box, then there you can just skip that part. Why do you think it does not need to be there?&lt;br /&gt;
&lt;br /&gt;
The USBnet content with reference to enabling usbnet and the dnsmasq edits are not needed.  As far as I know this is because it is handled in freetether automatically, so to direct users to muck around with this seems wrong.  Outright removal of the link isn;t correct, because it also covers getting the connected computer working, which is still needed, but we should at least indicate either next to the link or on the USBnet page itself that certain steps are not needed for the current version of freeTether.&lt;/div&gt;</summary>
		<author><name>Sgonzalez</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=USBnet_Setup&amp;diff=14041</id>
		<title>USBnet Setup</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=USBnet_Setup&amp;diff=14041"/>
		<updated>2011-03-15T20:36:12Z</updated>

		<summary type="html">&lt;p&gt;Sgonzalez: /* Linux Support */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;USBnet allows you to create an IP network over the USB cable. This will allow you to talk to your Pre without WiFi or Bluetooth, and it keeps the battery charged.&lt;br /&gt;
&lt;br /&gt;
This page is a duplicate of [[USBnet networking setup]]&lt;br /&gt;
&lt;br /&gt;
== With Linux Access ==&lt;br /&gt;
&lt;br /&gt;
run&lt;br /&gt;
&lt;br /&gt;
'''usbnet enable'''&lt;br /&gt;
&lt;br /&gt;
as root and then restart the device as instructed. When it comes back up, run 'ifconfig' and verify you now have a usb0 interface. Mine had the IP of 192.168.0.202. The IP can be changed in /etc/network/interfaces. After a change, bounce the usb0 interface: ifdown usb0; ifup usb0&lt;br /&gt;
&lt;br /&gt;
== Optional Setup to enable DHCP (so you don't have to set the IP address below) ==&lt;br /&gt;
&lt;br /&gt;
#Edit /etc/dnsmasq.palm.conf &lt;br /&gt;
#Add interface=usb0 below the existing interface line &lt;br /&gt;
#Add dhcp-range=192.168.0.11,192.168.0.12,12h below the existing dhcp-range &lt;br /&gt;
#Restart the dnsmasq process: stop dnsmasq; start dnsmasq &lt;br /&gt;
&lt;br /&gt;
== On Windows XP ==&lt;br /&gt;
&lt;br /&gt;
#Download the driver here: [http://gitorious.org/webos-internals/usbnet-pre/blobs/raw/master/windows/usbnet-pre.inf usbnet-pre windows driver(32 bit)] or [http://gitorious.org/webos-internals/usbnet-pre/blobs/raw/master/windows/usbnet-pre-64.inf usbnet-pre windows driver(64 bit)] and save the file to disk as usbnet-pre.inf &lt;br /&gt;
#Plug the Pre into your computer. The Add New Hardware Wizard should come up, asking to install an ethernet gadget. &lt;br /&gt;
#Follow detailed instructions (screenshots and all) here if you are unfamiliar with installing drivers: [http://docwiki.gumstix.org/index.php/Windows_XP_usbnet Windows XP USBnet install] &lt;br /&gt;
#When you finish, you should have a network setup. Goto &amp;quot;Network Connections&amp;quot; via Network Places or the Control Panel &lt;br /&gt;
#If you have previously installed Novacom on this machine, bring up Windows Task Manager before proceeding. You may find discover a conflict between USBnet and novacomd where the novacomd process will consume lots of CPU and your machine will become very unresponsive. Since you have Task Manager up already, you can easily use it to kill novacomd if this occurs. &lt;br /&gt;
#Right-click on the new network, which probably be named Local Area Connection 2 &lt;br /&gt;
#Select Properties &lt;br /&gt;
#Double click on Internet Protocol (TCP/IP) &lt;br /&gt;
#Click Advanced &lt;br /&gt;
#UNCheck Automatic metric, put 100 in its place. This will keep Windows from attempting to [http://support.microsoft.com/default.aspx/kb/299540 route] traffic over the Pre (it won't work anyway). Note: 100 may be too high. If it seems that network traffic is being routed to the pre (IE - your internet connection apparently dies), try setting this to something lower (like 60).&lt;br /&gt;
#Click OK &lt;br /&gt;
#If you did not enable DHCP, you will need to set an IP address manually: &lt;br /&gt;
##Set your IP address as 192.168.0.203 ( could be anything except 192.168.0.202, assuming this is the Pre's address) &lt;br /&gt;
##Subnet mask: 255.255.255.0 &lt;br /&gt;
##Default Gateway: 192.168.0.202 (your Pre's address for the usb0 interface) &lt;br /&gt;
##Set DNS to your preferred servers. Addresses are not currently resolving for me, regardless of the server I use &lt;br /&gt;
#Hit OK &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The network should now be setup. To verify, ssh to 192.168.0.202, and you should be prompted for a login.&lt;br /&gt;
&lt;br /&gt;
== Notes: ==&lt;br /&gt;
&lt;br /&gt;
*This has only been tested on Windows XP 32 bit. For Windows 2000, you will need an additional download from Microsoft. The link is in the header of the INF file. &lt;br /&gt;
&lt;br /&gt;
- From zinge: I have several confirmations via the precentral forums that this only works on XP sp3. Sp2 gives &amp;quot;error code 10, the device cannot start&amp;quot;. Has anyone followed this process and had it work on XP sp2? Update: Upgraded to SP3 on my laptop, and it immediately started working.&lt;br /&gt;
&lt;br /&gt;
*The 64 bit driver is unverified at this point, but I think it works. &lt;br /&gt;
*wayne47: I was having all kinds of issues with this on my WinXP notebook. Clicking on the safely remove hardware icon in the tray indicated two devices associated with the Pre: Novacom and a USB drive. Stopping the Novacom service resolved the issues. Note that I need to do this each time that I attach the Pre via USB. &lt;br /&gt;
&lt;br /&gt;
== On Mac OS X ==&lt;br /&gt;
&lt;br /&gt;
*[http://www.wikidot.com/user:info/mdklein mdklein] notes that as of 1.0.4 the g_composite driver appears to only operate usbnet in rndis mode which is not the method OS-X includes. He has made a version that implements CDC-ECM, but it breaks a few other things. Working on this.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
''*Allegedly, Mac OS X 10.4 should create a usb0 interface after you plug in a usbnet enabled pre. 10.5 needs a modified driver, which is not working for me (and carazy) yet. See [http://bugcommunity.com/wiki/index.php/Start_Guide_Mac_OS_X_10.5 this page] for more details.&lt;br /&gt;
&lt;br /&gt;
''*I don't know of anyone that has gotten USBNet driver to work on Mac OSX at all so for the time being, count it as unsupported. If anyone can figure it out please shed some light on us.&lt;br /&gt;
&lt;br /&gt;
MacOS X does not directly support RNDIS. The link provided is for a CDC Ethernet driver with a system-specific patch, which won't work.&lt;br /&gt;
&lt;br /&gt;
Both [http://mac.eltima.com/sync-mac.html Syncmate] and [http://www.markspace.com/products/windowsmobile/mac/windows-mobile-sync-software.html Missing Sync] appear to provide a RNDIS driver to access WinCE devices, which '''does not''' work with the Pre/Pixi. Someone should investigate.&lt;br /&gt;
&lt;br /&gt;
== Windows Vista (64-bit) ==&lt;br /&gt;
&lt;br /&gt;
*If driver/device fails to come online in network sharing center, simply click start-&amp;gt;right click computer-&amp;gt; properties … Click Device manager and look for the device &amp;quot;Linux USB Ethernet/RNDIS Gadget&amp;quot; you can then right click disable/enable the device. That's all. &lt;br /&gt;
*This device/driver can also be cycled with MS Windows own [http://support.microsoft.com/kb/311272 DevCon] application.&lt;br /&gt;
&lt;br /&gt;
== Windows 7 (64-bit) ==&lt;br /&gt;
&lt;br /&gt;
* Windows 7 has the driver it needs already, but it won't set it up by itself.   The driver you want is under &amp;quot;Microsoft Corporation&amp;quot; &amp;gt; &amp;quot;Remote NDIS based Internet Sharing Device.&amp;quot;.  See http://mytether.net/#other for complete directions.&lt;br /&gt;
&lt;br /&gt;
== Windows 7 RC Build 7100 (64-bit) ==&lt;br /&gt;
&lt;br /&gt;
*User lars47 confirms this is working on Windows 7 x64. Wrestled with the driver installation at first, it would not install, Windows complained of a file in use. I rebooted, and the next time I plugged in the Pre via USB, it &amp;quot;just worked&amp;quot;. Unsure if I caused the problem, or if a reboot is required/recommended.&lt;br /&gt;
&lt;br /&gt;
== Linux Support ==&lt;br /&gt;
=== Ubuntu ===&lt;br /&gt;
* Once usbnet was enabled on the Pre, my Ubuntu 9.04 (64 bit) immediately identified the Pre in the NetworkManager and worked without modification to the OS. It seems to already have a driver that works.&lt;br /&gt;
* In order to prevent Ubuntu Linux from automatically trying to connect to the internet while the phone is connected via USBnet: &lt;br /&gt;
** In the Network Manager icon, click &amp;quot;Edit Connections&amp;quot;&lt;br /&gt;
** Select the usb0 interface and select &amp;quot;Edit&amp;quot;&lt;br /&gt;
** Uncheck the box that says &amp;quot;Connect Automatically&amp;quot; (this is optional, but could prevent headaches)&lt;br /&gt;
** Under IPv4 Settings select Routes&lt;br /&gt;
*** Check the box next to &amp;quot;Use this connection only for resources on its network&amp;quot;&lt;br /&gt;
** Click Ok, Apply. Now you should be able to access your regular wifi/lan/internet&lt;br /&gt;
=== Gentoo ===&lt;br /&gt;
* If you are using a default kernel, this should work out of the box.&lt;br /&gt;
** Simply run as root dhcpcd usb0 once the device is connected.&lt;br /&gt;
* If you are using a custom kernel, make sure you have usbnet, cdc_ether and rndis_host either compiled-in or available as modules.  The relevant kernel options are (from kernel 2.6.36-gentoo-r5):&lt;br /&gt;
 Modules: usbnet cdc_ether rndis_host&lt;br /&gt;
 Kernel Options:&lt;br /&gt;
  Device Drivers  ---&amp;gt;&lt;br /&gt;
   [*] Network device support  ---&amp;gt;&lt;br /&gt;
    USB Network Adapters  ---&amp;gt;&lt;br /&gt;
     &amp;lt;M&amp;gt; Multi-purpose USB Networking Framework&lt;br /&gt;
     &amp;lt;M&amp;gt;   CDC Ethernet support (smart devices such as cable modems)&lt;br /&gt;
     &amp;lt;M&amp;gt;   Host for RNDIS and ActiveSync devices (EXPERIMENTAL)&lt;/div&gt;</summary>
		<author><name>Sgonzalez</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Application:FreeTether&amp;diff=14035</id>
		<title>Application:FreeTether</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Application:FreeTether&amp;diff=14035"/>
		<updated>2011-03-15T20:29:27Z</updated>

		<summary type="html">&lt;p&gt;Sgonzalez: /* USB Tethering */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{application&lt;br /&gt;
|name=freeTether&lt;br /&gt;
|type=webOS&lt;br /&gt;
|version=Version: 0.99.13&lt;br /&gt;
|tag=Networking&lt;br /&gt;
|screenshot=freeTether_0.99.12_main.png&lt;br /&gt;
|description=}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Overview ==&lt;br /&gt;
[[image:Icon_FreeTether.png|frameless|left]]&lt;br /&gt;
freeTether is an open source tethering application for webOS that turns your device into an access point/gateway that allows you to share your device's cellular data connection with other devices via WiFi, Bluetooth or USB.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Installation ==&lt;br /&gt;
&lt;br /&gt;
The following information will help with installing freeTether on your device.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
{| style=&amp;quot;color:black; background-color:#FFDEDE; border:1px solid #cc3333;&amp;quot; VAlign=&amp;quot;middle&amp;quot; cellpadding=&amp;quot;20&amp;quot; cellspacing=&amp;quot;0&amp;quot; Width=&amp;quot;100%&amp;quot;&lt;br /&gt;
|&lt;br /&gt;
==== &amp;lt;span style=&amp;quot;color:#cc3333&amp;quot;&amp;gt;Notice/Warning&amp;lt;/span&amp;gt; ====&lt;br /&gt;
&amp;lt;br/ &amp;gt;&lt;br /&gt;
'''freeTether currently is in a beta/testing phase and as such its use falls under the WebOS-Internals Testing Feed Rules.'''&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
'''Please take a few mintues to read over, understand and agree to the [http://www.webos-internals.org/wiki/Testing_Feeds#Rules_that_you_must_agree_to_before_using_these_feeds WebOS-Internals Testing Feed Rules] before continuing.'''&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Preparing Your Device ====&lt;br /&gt;
The following steps should be taken to prepare your device for the installation of freeTether.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
===== Remove Other Tethering Solutions =====&lt;br /&gt;
It is highly recommended to remove all previous versions of freeTether and freeTetherD, as well as, Mobile Hotspot. Other tethering solutions may conflict with freeTether as well.&lt;br /&gt;
&lt;br /&gt;
===== Testing Feeds =====&lt;br /&gt;
freeTether is found in the WebOS-Internals Testing Feeds. The WebOS-Internals Testing Feeds need to be added to your Preware configuration. Please carefully follow the steps listed on the [http://www.webos-internals.org/wiki/Testing_Feeds#Configuring_the_WebOS_Internals_Testing_Feeds WebOS-Internals Testing Feed] page before continuing.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Method ====&lt;br /&gt;
The following method is the recommend way to install freeTether. By installing with Preware, you'll be certain to have access to the latest versions of freeTether.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
===== [http://www.webos-internals.org/wiki/Application:Preware Preware] =====&lt;br /&gt;
&lt;br /&gt;
# Open Preware&lt;br /&gt;
# Start typing “freetether” (no quotes), then press the enter/return key.&lt;br /&gt;
# Tap freeTether from the list&lt;br /&gt;
# Tap the Install button&lt;br /&gt;
&lt;br /&gt;
'''Or'''&lt;br /&gt;
&lt;br /&gt;
# Open Preware&lt;br /&gt;
# Tap Available Packages&lt;br /&gt;
# Tap Application &amp;gt; System Utilities&lt;br /&gt;
# Tap freeTether from the list&lt;br /&gt;
# Tap the Install button&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==== Updating ====&lt;br /&gt;
&lt;br /&gt;
freeTether is being heavily developed and will have many updates during the beta/testing phase. Check Preware often for the latest updates to freeTether.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting/FAQ ==&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
'''Q: What version of webOS is freeTether available for?'''&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
A: freeTether is only available for webOS 1.4.5 and later.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
'''Q: I think I've found a bug. What should I do?'''&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
A: freeTether is currently a beta/test release, so don't get all worked up if you encounter a bug. Please review the bug/features listed [http://redmine.webos-internals.org/projects/freetether/issues here] before submitting your own. You should also consider removing all other tethering solutions and then try again; as one of the other tethering solutions may be causing the issue with freeTether.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
'''Q: I don't see freeTether listed in Preware. What am I doing wrong?'''&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
A: Make sure you have both testing feeds configured. You need the &amp;quot;ALL&amp;quot; feed and your device specific feed. See the [http://www.webos-internals.org/wiki/Testing_Feeds WebOS-Internals Testing Feed] wiki page for more information.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
'''Q: Where can I find the testing feeds?'''&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
A: The Webos-Internals Testing Feed information can be found [http://www.webos-internals.org/wiki/Testing_Feeds#Configuring_the_WebOS_Internals_Testing_Feeds here].&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== System/Device Compatibility ==&lt;br /&gt;
Here is a list of some systems and their current status/compatibility with freeTether.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
{| border=&amp;quot;1&amp;quot; cellspacing=&amp;quot;0&amp;quot; cellpadding=&amp;quot;5&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;col&amp;quot;| &lt;br /&gt;
!scope=&amp;quot;col&amp;quot;| Bluetooth&lt;br /&gt;
!scope=&amp;quot;col&amp;quot;| USB&lt;br /&gt;
!scope=&amp;quot;col&amp;quot;| WIFI (Open)&lt;br /&gt;
!scope=&amp;quot;col&amp;quot;| WIFI (WPA)&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| Linux&lt;br /&gt;
| Good&lt;br /&gt;
| Good&lt;br /&gt;
| Good&lt;br /&gt;
| Good&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| MacOSX &amp;lt;=10.5&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
| ?&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| MacOSX 10.6&lt;br /&gt;
| Good&lt;br /&gt;
| Broken&lt;br /&gt;
| Good&lt;br /&gt;
| Good&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| Windows 7 (x86)&lt;br /&gt;
| ?&lt;br /&gt;
| Good&lt;br /&gt;
| Good&lt;br /&gt;
| Good&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| Windows 7 (x64)&lt;br /&gt;
| Can work&lt;br /&gt;
| Good&lt;br /&gt;
| Good&lt;br /&gt;
| Good&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| PS3&lt;br /&gt;
| N/A&lt;br /&gt;
| N/A&lt;br /&gt;
| Good&lt;br /&gt;
| Good&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| Wii&lt;br /&gt;
| N/A&lt;br /&gt;
| N/A&lt;br /&gt;
| Good&lt;br /&gt;
| Needs Work&lt;br /&gt;
|-&lt;br /&gt;
!scope=&amp;quot;row&amp;quot;| iPad&lt;br /&gt;
| N/A&lt;br /&gt;
| N/A&lt;br /&gt;
| Good&lt;br /&gt;
| Good&lt;br /&gt;
|-&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
== Usage ==&lt;br /&gt;
The following information will help to understand and use freeTether. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== Overview =====&lt;br /&gt;
Each tethered interface has a section describing how to enable/disable the interface for tethering and how to configure any preferences for that interface, as well as, a section on configuring the TCP/IP options that the tethered interfaces will use.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== &amp;lt;span style=&amp;quot;color:#8a0002&amp;quot;&amp;gt;WIFI Tethering&amp;lt;/span&amp;gt; =====&lt;br /&gt;
The following steps will assist you in configuring and using freeTether for WIFI tethering.&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:#3399ff&amp;quot;&amp;gt;'''Configure WIFI Preferences:'''&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
The WIFI Preferences can be accessed two ways.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
# Tap the WIFI row listed in the Tethered Interfaces list.&lt;br /&gt;
# Tap or Swipe down the app menu and select WIFI Prefs.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
'''Network:'''&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
This setting determines the name (SSID) of the WIFI hotspot network. Tap the Network row to change the SSID. ''(See Figure 1)''&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
'''Security:''' ''[Open | WPA2 Personal]''&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
This setting determines the type of security to be used for the WIFI hotspot network. Tap the Security row to change between the Open and WPA2 Personal. ''(See Figure 2)''&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;center&amp;gt;'''''[The following settings are only available if WPA2 Personal is selected for the type of security.]'''''&amp;lt;/center&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
'''Passphrase:'''&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
This setting determines the passphrase used. Tap the Passphrase row to toggle between showing or hiding of the passphrase.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
To configure your own passphrase, tap the Set Passphase button. A passphrase can be created two different ways. ''(See Figure 3)''&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
# Tap the text field ''(above the Generate Random button)'' and enter your passphrase. ''(The passphrase needs to have a minimum of eight (8) characters.)'' Then tap the Set Passphrase button.&lt;br /&gt;
# Tap the Generate Random button to have freeTether generate a passphrase for you. Then tap the Set Passphrase button.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:#3399ff&amp;quot;&amp;gt;'''Enable/Disable Wifi Tethering:'''&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Toggle the On/Off switch to enable or disable the freeTether WiFi tethering.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
&amp;lt;gallery widths=80px heights=80px perrow=7 caption=&amp;quot;Tethered WiFi Preferences&amp;quot;&amp;gt;&lt;br /&gt;
file:freetether_wifiprefs1.png|''Figure 1''&lt;br /&gt;
file:freetether_wifiprefs2.png|''Figure 2''&lt;br /&gt;
file:freetether_wifiprefs3.png|''Figure 3''&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== &amp;lt;span style=&amp;quot;color:#8a0002&amp;quot;&amp;gt;Bluetooth Tethering&amp;lt;/span&amp;gt; =====&lt;br /&gt;
The following steps will assist you in configuring and using freeTether for Bluetooth tethering.&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:#3399ff&amp;quot;&amp;gt;'''Configure Bluetooth Preferences:'''&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
The Bluetooth Preferences can be accessed two ways.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
# Tap the Bluetooth row listed in the Tethered Interfaces list.&lt;br /&gt;
# Tap or Swipe down the app menu and select Bluetooth Prefs.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
'''PAN Profile:''' ''[Enabled | Disabled]''&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
This setting attempts to enable Bluetooth PAN support for those carriers that may disable Bluetooth PAN support. ''(See Figure 1)''&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:#3399ff&amp;quot;&amp;gt;'''Enable/Disable Bluetooth Tethering:'''&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Toggle the On/Off switch to enable or disable the freeTether Bluetooth tethering.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
&amp;lt;gallery widths=80px heights=80px perrow=7 caption=&amp;quot;Tethered Bluetooth Preferences&amp;quot;&amp;gt;&lt;br /&gt;
file:freetether_btprefs.png|''Figure 1''&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== &amp;lt;span style=&amp;quot;color:#8a0002&amp;quot;&amp;gt;USB Tethering&amp;lt;/span&amp;gt; =====&lt;br /&gt;
&amp;lt;!-- THIS SEEMS TO BE NO LONGER NEEDED? The following steps will assist you in using freeTether for USB tethering. Configuring clients for USB tethering is somewhat outside the scope of this wiki, however, there is a WebOS-Internals wiki page on setting up USBNet, found [http://www.webos-internals.org/wiki/USBnet_Setup here]. --&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:#3399ff&amp;quot;&amp;gt;'''Enable/Disable USB Tethering:'''&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
Toggle the On/Off switch to enable or disable the freeTether USB tethering.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===== &amp;lt;span style=&amp;quot;color:#8a0002&amp;quot;&amp;gt;TCP/IP Preferences&amp;lt;/span&amp;gt; =====&lt;br /&gt;
The following steps will assist you in configuring the TCP/IP Preferences for freeTether.&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:#3399ff&amp;quot;&amp;gt;'''Configure TCP/IP Preferences:'''&amp;lt;/span&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
The TCP/IP Preferences can be accessed two ways.&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
# Tap the DHCP Server section listed below the Tethered Interfaces list.&lt;br /&gt;
# Tap or Swipe down the app menu and select TCP/IP Prefs.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
For a view of the TCP/IP Prefs... ''(See Figure 1)''&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
'''Gateway:'''&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
This setting determines the gateway address that is used by the tethered clients as their connection point to your device.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
'''Subnet:'''&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
This setting determines the subnet address that is used by the tethered clients. &lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
'''DHCP Start:'''&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
This setting determines the starting address used when allocating IP address to the tethered clients. &lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
'''Max Leases:'''&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
This setting determines the maximum number of addresses available for allocation to the tethered clients.&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
'''Lease Time:'''&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
This setting determines the length of time the tethered client's address allocation is valid. ''(Time is in seconds.)''&lt;br /&gt;
&amp;lt;br /&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
&amp;lt;gallery widths=80px heights=80px perrow=7 caption=&amp;quot;TCP/IP Preferences&amp;quot;&amp;gt;&lt;br /&gt;
file:freetether_tcpipprefs.png|''Figure 1''&lt;br /&gt;
&amp;lt;/gallery&amp;gt;&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Resources ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== Donation to Developers =====&lt;br /&gt;
::* Please see the official PreCentral Forum thread opening post for the donation link.&lt;br /&gt;
&lt;br /&gt;
===== Official Forum =====&lt;br /&gt;
::* [http://forums.precentral.net/webos-internals/272151-freetether-0-99-x.html Official PreCentral Forum Thread]&lt;br /&gt;
&lt;br /&gt;
===== Official Bug/Feature Request Site =====&lt;br /&gt;
::*[http://redmine.webos-internals.org/projects/freetether/issues Official Bug/Feature Request Site]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Status ==&lt;br /&gt;
freeTether currently is in a beta/testing phase and is being heavily developed.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===== Changelog =====&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
:'''0.99.13 - Current Release''' - (''Released Jan. 14th, 2011'')&lt;br /&gt;
:* Disable settings while interface active&lt;br /&gt;
:* Add TCP/IP Preferences&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
:'''0.99.12'''&lt;br /&gt;
:* Default to Open for wifi tethering&lt;br /&gt;
:* Styling tweaks&lt;br /&gt;
:* Show passphrase hint&lt;br /&gt;
:* Menu options for each interface&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
:'''0.99.11'''&lt;br /&gt;
:* Add client info scene&lt;br /&gt;
:* End freeTether service on app close&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
:'''0.99.10'''&lt;br /&gt;
:* Default to WPA for wifi tethering&lt;br /&gt;
:* Provide default passphrase&lt;br /&gt;
:* Enforce min passphrase length&lt;br /&gt;
:* Random passphrase generator&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
:'''0.99.9'''&lt;br /&gt;
:* Service fixes for race conditions and client list reporting&lt;br /&gt;
:* Save and restore interface state&lt;br /&gt;
:* Fix spinner states and multi-interface toggling&lt;br /&gt;
:* Fix client list to correctly update hostnames&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
:'''0.99.7'''&lt;br /&gt;
:* Bluetooth PAN profile&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
:'''0.99.6'''&lt;br /&gt;
:* USB, Bluetooth and WiFi support&lt;br /&gt;
:* webOS 1.4.5 and 2.x.x support&lt;br /&gt;
:* Improved UI&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===== Known Issues =====&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&lt;br /&gt;
Please see the issues list [http://redmine.webos-internals.org/projects/freetether/issues here] for more information on the known issues.&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;/div&gt;</summary>
		<author><name>Sgonzalez</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Application_talk:FreeTether&amp;diff=14025</id>
		<title>Application talk:FreeTether</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Application_talk:FreeTether&amp;diff=14025"/>
		<updated>2011-03-15T20:08:20Z</updated>

		<summary type="html">&lt;p&gt;Sgonzalez: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Confused?===&lt;br /&gt;
Hmmm, I'm looking for freetether, but all I see is an icon and a screen shot.  What gives? [[user:Goky|Goky]]&lt;br /&gt;
&lt;br /&gt;
===Outdated Info===&lt;br /&gt;
With some testing of enabling/disabling usbnet and playing with /etc/dnsmasq.palm.conf as per the USBnet page, it seems that these steps are no longer needed to get USB tethering working.  As a result I'm removing this section. [[User:Sgonzalez|Sgonzalez]]&lt;/div&gt;</summary>
		<author><name>Sgonzalez</name></author>
	</entry>
	<entry>
		<id>http://wiki.webos-internals.org/index.php?title=Application_talk:FreeTether&amp;diff=14021</id>
		<title>Application talk:FreeTether</title>
		<link rel="alternate" type="text/html" href="http://wiki.webos-internals.org/index.php?title=Application_talk:FreeTether&amp;diff=14021"/>
		<updated>2011-03-15T19:52:35Z</updated>

		<summary type="html">&lt;p&gt;Sgonzalez: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;===Confused?===&lt;br /&gt;
Hmmm, I'm looking for freetether, but all I see is an icon and a screen shot.  What gives? [[user:Goky]]&lt;br /&gt;
===Outdated Info===&lt;br /&gt;
With some testing of enabling/disabling usbnet and playing with /etc/dnsmasq.palm.conf as per the USBnet page, it seems that these steps are no longer needed to get USB tethering working.  As a result I'm removing this section. [[User:Sgonzalez|Sgonzalez]]&lt;/div&gt;</summary>
		<author><name>Sgonzalez</name></author>
	</entry>
</feed>