<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="https://wiki.maemo.org/skins/common/feed.css?207"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title>maemo.org wiki - User contributions [en]</title>
		<link>https://wiki.maemo.org/Special:Contributions/200.110.82.230</link>
		<description>From maemo.org wiki</description>
		<language>en</language>
		<generator>MediaWiki 1.15.5-7</generator>
		<lastBuildDate>Sat, 11 Apr 2026 20:12:59 GMT</lastBuildDate>
		<item>
			<title>Talk:USB networking</title>
			<link>https://wiki.maemo.org/Talk:USB_networking</link>
			<guid>https://wiki.maemo.org/Talk:USB_networking</guid>
			<description>&lt;p&gt;200.110.82.230:&amp;#32;/* internet browsing via usb */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;(axique) I tried to add a dummy devices on my N800&lt;br /&gt;
gconftool -s -t string /system/osso/connectivity/IAP/DEFAULT/type DUMMY&lt;br /&gt;
but it does not show up in the connection list. &lt;br /&gt;
I don't know how this syntax must be changed to archive this.&lt;br /&gt;
(PS: feel free to remove this comment)&lt;br /&gt;
&lt;br /&gt;
Dummy connections are broken in Diablo due to the new icd2 daemon -qwerty12&lt;br /&gt;
== unmounting mmc cards when using usb networking ==&lt;br /&gt;
&lt;br /&gt;
Is there some reason why there is &lt;br /&gt;
&amp;lt;nowiki&amp;gt;        umount /media/mmc1&lt;br /&gt;
        umount /media/mmc2&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
in usb networking setup script? IMO it is perfectly possible to have mounted cards while using usb networking mode. --[[User:fanoush|fanoush]] 19:56, 4 July 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
Idem here I see no reason to unount the file systems --[[User:keesj|keesj]] 21:53, 4 July 2008 (UTC)&lt;br /&gt;
&lt;br /&gt;
At last! Someone with the insight to solve the prolbem!&lt;br /&gt;
&lt;br /&gt;
== Current state of this &amp;quot;feature&amp;quot; ==&lt;br /&gt;
&lt;br /&gt;
I have the patch for bug 3243 installed (via the recently-released Community SSU feature) on an N800 running OS2008.  I have the USB Networking control panel installed; after running:&lt;br /&gt;
* lsmod lists g_ether (alongside g_file_storage)&lt;br /&gt;
* ifconfig lists the usb0 interface&lt;br /&gt;
&lt;br /&gt;
The control panel window displays nothing but the &amp;quot;Setup&amp;quot; button; Refresh does nothing.  Not clear how to uninstall this; I guess ifdown, then rmmod.&lt;br /&gt;
&lt;br /&gt;
I also have the Advance Power Meter applet, which provides a switch between Host and OTG USB mode.  With OTG selected, the N800 behaves as always when connected to the computer: the external cards are presented as storage devices.&lt;br /&gt;
&lt;br /&gt;
With Host selected, on first connection, I was asked for a .INF file.  I tried installing the &amp;quot;newer&amp;quot; .INF for the N900.  Windows installed it with no complaint; however, the device did not show up in Windows' Hardware Manager -- until I selected &amp;quot;Show hidden devices&amp;quot;.  It doesn't appear in the Network Connections control panel.&lt;br /&gt;
&lt;br /&gt;
When I try to uninstall (from Device Manager), I got: &amp;quot;Failed to uninstall device.  The device may be required to boot up the computer.&amp;quot;  This was puzzling, until I found [http://support.microsoft.com/kb/315539 this Microsoft KB entry] which explains how to show ''all'' the hidden entries; the driver can be uninstalled from the second, ghosted node.&lt;br /&gt;
&lt;br /&gt;
Trying now to re-install on Windows using the older (770) .INF, but Windows is no longer noticing when the device is plugged in (in Host mode).&lt;br /&gt;
&lt;br /&gt;
== Set proxy ==&lt;br /&gt;
In the FAQ part of this page there is question: &amp;quot;My tablet can now talk to my XP machine, but how do I get out to the rest of the network?&amp;quot;. It says just to edit the 'Dummy network' access point to add proxies. When I did this on my N900 I couldn't avoid entering a SSID for the 'Dummy network'. Now I aways get an error when switching to the dummy network because this SSID isn't found. How can I set the proxy without entering an SSID? It seems that the solution is to rerun &amp;quot;gconftool-2 -s -t string /system/osso/connectivity/IAP/DUMMY/type DUMMY&amp;quot; once the proxies have been set.&lt;br /&gt;
&lt;br /&gt;
== How do I set up DNS once I have connected the tablet and the host? ==&lt;br /&gt;
I did this differently on my N900. I added &amp;quot;resolv-file=/var/run/resolv.conf.usb0&amp;quot; at the end of /etc/dnsmasq.conf and the 2 following lines to /etc/network/interfaces in the &amp;quot;iface usb0 inet static&amp;quot; stanza:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
	up echo nameserver 172.16.47.1 &amp;gt; /var/run/resolv.conf.usb0&lt;br /&gt;
	up kill -SIGHUP `pidof dnsmasq`&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
This seems a more standard way of adding a namesaver to dnsmasq. I don't know if I should remove /var/run/resolv.conf.usb0 when I take the USB interface down. On the host in the &amp;quot;iface usb0 inet static&amp;quot;, I added:&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
	up iptables -A PREROUTING -t nat -p udp -i $IFACE -d $IF_ADDRESS --dport domain -j DNAT --to-destination $(sed -ne '/^nameserver /{s///p;q}' /etc/resolv.conf)&lt;br /&gt;
	up iptables -A PREROUTING -t nat -p tcp -i $IFACE -d $IF_ADDRESS --dport domain -j DNAT --to-destination $(sed -ne '/^nameserver /{s///p;q}' /etc/resolv.conf)&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
to redirect the N900's dns queries to the correct nameserver. This avoids having to run a name server on my host.&lt;/div&gt;</description>
			<pubDate>Thu, 03 May 2012 17:56:47 GMT</pubDate>			<dc:creator>200.110.82.230</dc:creator>			<comments>https://wiki.maemo.org/Talk:USB_networking</comments>		</item>
	</channel>
</rss>