<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Howto use 3G dongle Huawei E1750 in OpenWrt</title>
	<atom:link href="http://www.it-slav.net/blogs/2010/06/12/howto-use-3g-dongle-huawei-e1750-in-openwrt/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.it-slav.net/blogs/2010/06/12/howto-use-3g-dongle-huawei-e1750-in-openwrt/</link>
	<description>Another Blog from a Geek that has no life</description>
	<lastBuildDate>Mon, 30 Jan 2012 11:58:19 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: peter</title>
		<link>http://www.it-slav.net/blogs/2010/06/12/howto-use-3g-dongle-huawei-e1750-in-openwrt/comment-page-1/#comment-7082</link>
		<dc:creator>peter</dc:creator>
		<pubDate>Sat, 05 Mar 2011 18:24:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=1838#comment-7082</guid>
		<description>Does it work with Ubuntu? 
If yes, do as I, copy the config files from there. 
If no, then I do not have a clue without having the device myself.</description>
		<content:encoded><![CDATA[<p>Does it work with Ubuntu?<br />
If yes, do as I, copy the config files from there.<br />
If no, then I do not have a clue without having the device myself.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: codetypo</title>
		<link>http://www.it-slav.net/blogs/2010/06/12/howto-use-3g-dongle-huawei-e1750-in-openwrt/comment-page-1/#comment-7081</link>
		<dc:creator>codetypo</dc:creator>
		<pubDate>Sat, 05 Mar 2011 18:16:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=1838#comment-7081</guid>
		<description>I am configuring my franklin wireless u600 modem to work on openwrt.
The set up is as follows:

I configured the prod/vendor id :

/etc/modules.d/60-usb-serial
[code]root@OpenWrt:/etc# vi modules.d/60-usb-serial
usbserial vendor=0x1fac product=0x150
[/code]

Next using the configurations in the devices txt, I entered the following in usb-modeswitch.conf:
[code]
########################################################
# Franklin Wireless U210
#
# Contributor: Adam J. Porter

DefaultVendor= 0x1fac
DefaultProduct=0x0150

TargetVendor=  0x1fac
TargetProduct= 0x0151

CheckSuccess=20

MessageContent=&quot;555342431234567824000000800108df200000000000000000000000000000&quot;


##############################################################
[/code]
(This was the only one to match my modem.So changed the default product to 0x0150 as this is what it showed up as -dmesg)

After I entered to following network configurations:
[code]
config interface wan
			option proto &#039;3g&#039;
			option service &#039;cdma&#039;
            option &#039;device&#039; &#039;/dev/ttyUSB0&#039;
			option apn &#039;internet&#039;


[/code]

After I rebooted the router and entered the usb_modeswitch command:

[code]
root@OpenWrt:/etc# usb_modeswitch

Looking for target devices ...
 No devices in target mode or class found
Looking for default devices ...
 Found default devices (1)
Accessing device 004 on bus 001 ...
Using endpoints 0x08 (out) and 0x87 (in)
Inquiring device details; driver will be detached ...
Looking for active driver ...
 No driver found. Either detached before or never attached

SCSI inquiry data (for identification)
-------------------------
  Vendor String: Franklin
   Model String: Auto-Installer
Revision String: 2.31
-------------------------

USB description data (for identification)
-------------------------
Manufacturer: Franklin Wireless Corp.
     Product: USB Micro SD Storage
  Serial No.: 216169176500
-------------------------
Setting up communication with interface 0 ...
Trying to send the message to endpoint 0x08 ...
 OK, message successfully sent

Checking for mode switch (max. 20 times, once per second) ...
 Waiting for original device to vanish ...
 Original device can&#039;t be accessed anymore. Good.
 Searching for target devices ...
 Searching for target devices ...
 Searching for target devices ...
 Searching for target devices ...
 Searching for target devices ...
 Searching for target devices ...
 Searching for target devices ...
 Found correct target device

Mode switch succeeded. Bye.
[/code]

I then did a dmesg and the follwoing showed up saying that usb_modeswitch did not claim the device  (vend/prod 0x1fac/0x151) 
Also I believe the  (vend/prod 0x198f/0x220) is the wimax part.But not concerned with that at the momment.
$dmesg
[code]
.......usbserial.c: Generic converter now disconnected from ttyUSB0
usbdevfs: process 555 (usb_modeswitch) did not claim interface 0 before use
usb.c: USB disconnect on device 00:03.1-1.1.2 address 4
hub.c: new USB device 00:03.1-1.1.1, assigned address 5
usb.c: USB device 5 (vend/prod 0x198f/0x220) is not claimed by any active driver.
hub.c: new USB device 00:03.1-1.1.2, assigned address 6
usb.c: USB device 6 (vend/prod 0x1fac/0x151) is not claimed by any active driver.
[/code]

Maybe this is the wring prod/vendor ids but can you tell me how the fix this thanks.</description>
		<content:encoded><![CDATA[<p>I am configuring my franklin wireless u600 modem to work on openwrt.<br />
The set up is as follows:</p>
<p>I configured the prod/vendor id :</p>
<p>/etc/modules.d/60-usb-serial<br />
[code]root@OpenWrt:/etc# vi modules.d/60-usb-serial<br />
usbserial vendor=0x1fac product=0x150<br />
[/code]</p>
<p>Next using the configurations in the devices txt, I entered the following in usb-modeswitch.conf:<br />
[code]<br />
########################################################<br />
# Franklin Wireless U210<br />
#<br />
# Contributor: Adam J. Porter</p>
<p>DefaultVendor= 0x1fac<br />
DefaultProduct=0x0150</p>
<p>TargetVendor=  0x1fac<br />
TargetProduct= 0x0151</p>
<p>CheckSuccess=20</p>
<p>MessageContent="555342431234567824000000800108df200000000000000000000000000000"</p>
<p>##############################################################<br />
[/code]<br />
(This was the only one to match my modem.So changed the default product to 0&#215;0150 as this is what it showed up as -dmesg)</p>
<p>After I entered to following network configurations:<br />
[code]<br />
config interface wan<br />
			option proto '3g'<br />
			option service 'cdma'<br />
            option 'device' '/dev/ttyUSB0'<br />
			option apn 'internet'</p>
<p>[/code]</p>
<p>After I rebooted the router and entered the usb_modeswitch command:</p>
<p>[code]<br />
root@OpenWrt:/etc# usb_modeswitch</p>
<p>Looking for target devices ...<br />
 No devices in target mode or class found<br />
Looking for default devices ...<br />
 Found default devices (1)<br />
Accessing device 004 on bus 001 ...<br />
Using endpoints 0x08 (out) and 0x87 (in)<br />
Inquiring device details; driver will be detached ...<br />
Looking for active driver ...<br />
 No driver found. Either detached before or never attached</p>
<p>SCSI inquiry data (for identification)<br />
-------------------------<br />
  Vendor String: Franklin<br />
   Model String: Auto-Installer<br />
Revision String: 2.31<br />
-------------------------</p>
<p>USB description data (for identification)<br />
-------------------------<br />
Manufacturer: Franklin Wireless Corp.<br />
     Product: USB Micro SD Storage<br />
  Serial No.: 216169176500<br />
-------------------------<br />
Setting up communication with interface 0 ...<br />
Trying to send the message to endpoint 0x08 ...<br />
 OK, message successfully sent</p>
<p>Checking for mode switch (max. 20 times, once per second) ...<br />
 Waiting for original device to vanish ...<br />
 Original device can't be accessed anymore. Good.<br />
 Searching for target devices ...<br />
 Searching for target devices ...<br />
 Searching for target devices ...<br />
 Searching for target devices ...<br />
 Searching for target devices ...<br />
 Searching for target devices ...<br />
 Searching for target devices ...<br />
 Found correct target device</p>
<p>Mode switch succeeded. Bye.<br />
[/code]</p>
<p>I then did a dmesg and the follwoing showed up saying that usb_modeswitch did not claim the device  (vend/prod 0x1fac/0&#215;151)<br />
Also I believe the  (vend/prod 0x198f/0&#215;220) is the wimax part.But not concerned with that at the momment.<br />
$dmesg<br />
[code]<br />
.......usbserial.c: Generic converter now disconnected from ttyUSB0<br />
usbdevfs: process 555 (usb_modeswitch) did not claim interface 0 before use<br />
usb.c: USB disconnect on device 00:03.1-1.1.2 address 4<br />
hub.c: new USB device 00:03.1-1.1.1, assigned address 5<br />
usb.c: USB device 5 (vend/prod 0x198f/0x220) is not claimed by any active driver.<br />
hub.c: new USB device 00:03.1-1.1.2, assigned address 6<br />
usb.c: USB device 6 (vend/prod 0x1fac/0x151) is not claimed by any active driver.<br />
[/code]</p>
<p>Maybe this is the wring prod/vendor ids but can you tell me how the fix this thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: peter</title>
		<link>http://www.it-slav.net/blogs/2010/06/12/howto-use-3g-dongle-huawei-e1750-in-openwrt/comment-page-1/#comment-7080</link>
		<dc:creator>peter</dc:creator>
		<pubDate>Fri, 04 Mar 2011 19:09:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=1838#comment-7080</guid>
		<description>If you give me a modem I can try to get it running and tell you how.</description>
		<content:encoded><![CDATA[<p>If you give me a modem I can try to get it running and tell you how.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: codetypo</title>
		<link>http://www.it-slav.net/blogs/2010/06/12/howto-use-3g-dongle-huawei-e1750-in-openwrt/comment-page-1/#comment-7079</link>
		<dc:creator>codetypo</dc:creator>
		<pubDate>Fri, 04 Mar 2011 17:05:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=1838#comment-7079</guid>
		<description>Hi I am tring to install my u600 modem .How can i modify the steps or code for this to work?</description>
		<content:encoded><![CDATA[<p>Hi I am tring to install my u600 modem .How can i modify the steps or code for this to work?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: peter</title>
		<link>http://www.it-slav.net/blogs/2010/06/12/howto-use-3g-dongle-huawei-e1750-in-openwrt/comment-page-1/#comment-7042</link>
		<dc:creator>peter</dc:creator>
		<pubDate>Mon, 10 Jan 2011 07:48:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=1838#comment-7042</guid>
		<description>I cannot tell anything out of this small piece of information.</description>
		<content:encoded><![CDATA[<p>I cannot tell anything out of this small piece of information.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: codetypo</title>
		<link>http://www.it-slav.net/blogs/2010/06/12/howto-use-3g-dongle-huawei-e1750-in-openwrt/comment-page-1/#comment-7034</link>
		<dc:creator>codetypo</dc:creator>
		<pubDate>Sat, 08 Jan 2011 17:13:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=1838#comment-7034</guid>
		<description>hi I am tring to follow this tutorial using franklin wireless u600 3g/4g modem.
 but i get this message

usb.c: new USB bus registered, assigned bus number 1
ehci_hcd 00:03.1: illegal capability!
ehci_hcd 00:03.1: USB 0.0 enabled, EHCI 1.00, driver 2003-Dec-29/2.4
hub.c: USB hub found
hub.c: 2 ports detected
ip_conntrack version 2.1 (5953 buckets, 5953 max) - 352 bytes per conntrack
hub.c: new USB device 00:03.1-1, assigned address 2
hub.c: USB hub found
hub.c: 2 ports detected
hub.c: new USB device 00:03.1-1.2, assigned address 3
hub.c: USB hub found
hub.c: 4 ports detected
hub.c: new USB device 00:03.1-1.2.2, assigned address 4
usb.c: USB device 4 (vend/prod 0x1fac/0x150) is not claimed by any active driver
.
uhci.c: USB Universal Host Controller Interface driver v1.1
usb.c: registered new driver acm
acm.c: v0.21:USB Abstract Control Model driver for USB modems and ISDN adapters
usb.c: registered new driver serial
usbserial.c: USB Serial support registered for Generic
usbserial.c: USB Serial Driver core v1.4</description>
		<content:encoded><![CDATA[<p>hi I am tring to follow this tutorial using franklin wireless u600 3g/4g modem.<br />
 but i get this message</p>
<p>usb.c: new USB bus registered, assigned bus number 1<br />
ehci_hcd 00:03.1: illegal capability!<br />
ehci_hcd 00:03.1: USB 0.0 enabled, EHCI 1.00, driver 2003-Dec-29/2.4<br />
hub.c: USB hub found<br />
hub.c: 2 ports detected<br />
ip_conntrack version 2.1 (5953 buckets, 5953 max) &#8211; 352 bytes per conntrack<br />
hub.c: new USB device 00:03.1-1, assigned address 2<br />
hub.c: USB hub found<br />
hub.c: 2 ports detected<br />
hub.c: new USB device 00:03.1-1.2, assigned address 3<br />
hub.c: USB hub found<br />
hub.c: 4 ports detected<br />
hub.c: new USB device 00:03.1-1.2.2, assigned address 4<br />
usb.c: USB device 4 (vend/prod 0x1fac/0&#215;150) is not claimed by any active driver<br />
.<br />
uhci.c: USB Universal Host Controller Interface driver v1.1<br />
usb.c: registered new driver acm<br />
acm.c: v0.21:USB Abstract Control Model driver for USB modems and ISDN adapters<br />
usb.c: registered new driver serial<br />
usbserial.c: USB Serial support registered for Generic<br />
usbserial.c: USB Serial Driver core v1.4</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Luca Gibelli &#187; Huawei E1750 3G USB modem on OpenWRT Kamikaze</title>
		<link>http://www.it-slav.net/blogs/2010/06/12/howto-use-3g-dongle-huawei-e1750-in-openwrt/comment-page-1/#comment-6991</link>
		<dc:creator>Luca Gibelli &#187; Huawei E1750 3G USB modem on OpenWRT Kamikaze</dc:creator>
		<pubDate>Sat, 18 Dec 2010 23:03:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=1838#comment-6991</guid>
		<description>[...] Credits: Peter Andersson [...]</description>
		<content:encoded><![CDATA[<p>[...] Credits: Peter Andersson [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Luca G.</title>
		<link>http://www.it-slav.net/blogs/2010/06/12/howto-use-3g-dongle-huawei-e1750-in-openwrt/comment-page-1/#comment-6989</link>
		<dc:creator>Luca G.</dc:creator>
		<pubDate>Sat, 18 Dec 2010 18:03:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=1838#comment-6989</guid>
		<description>Whenever I tried to run usb_modeswitch I got the error msg:

&quot;no MessageEndpoint given. Can&#039;t send message. Aborting&quot;

I solved the problem by adding the line:

MessageEndpoint=0x01

to /etc/usb_modeswitch.conf

Thanks for your howto!</description>
		<content:encoded><![CDATA[<p>Whenever I tried to run usb_modeswitch I got the error msg:</p>
<p>&#8220;no MessageEndpoint given. Can&#8217;t send message. Aborting&#8221;</p>
<p>I solved the problem by adding the line:</p>
<p>MessageEndpoint=0&#215;01</p>
<p>to /etc/usb_modeswitch.conf</p>
<p>Thanks for your howto!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stephan&#39;s pieces of wisdom &#187; Blog Archive &#187; Installieren eines UMTS Modems ( Huawei e220) auf einem WRT160nl und Openwrt(Teil 3)</title>
		<link>http://www.it-slav.net/blogs/2010/06/12/howto-use-3g-dongle-huawei-e1750-in-openwrt/comment-page-1/#comment-6966</link>
		<dc:creator>Stephan&#39;s pieces of wisdom &#187; Blog Archive &#187; Installieren eines UMTS Modems ( Huawei e220) auf einem WRT160nl und Openwrt(Teil 3)</dc:creator>
		<pubDate>Thu, 02 Dec 2010 23:09:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=1838#comment-6966</guid>
		<description>[...] Quellen http://www.it-slav.net/blogs/2010/06/12/howto-use-3g-dongle-huawei-e1750-in-openwrt/ http://josefsson.org/openwrt/dongle.html   posted by Stephan in Linux, Netzwerk, openwrt and have [...]</description>
		<content:encoded><![CDATA[<p>[...] Quellen <a href="http://www.it-slav.net/blogs/2010/06/12/howto-use-3g-dongle-huawei-e1750-in-openwrt/" rel="nofollow">http://www.it-slav.net/blogs/2010/06/12/howto-use-3g-dongle-huawei-e1750-in-openwrt/</a> <a href="http://josefsson.org/openwrt/dongle.html" rel="nofollow">http://josefsson.org/openwrt/dongle.html</a>   posted by Stephan in Linux, Netzwerk, openwrt and have [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: grqq</title>
		<link>http://www.it-slav.net/blogs/2010/06/12/howto-use-3g-dongle-huawei-e1750-in-openwrt/comment-page-1/#comment-6862</link>
		<dc:creator>grqq</dc:creator>
		<pubDate>Fri, 10 Sep 2010 05:58:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=1838#comment-6862</guid>
		<description>Thanks everything is working fine now.</description>
		<content:encoded><![CDATA[<p>Thanks everything is working fine now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mutte</title>
		<link>http://www.it-slav.net/blogs/2010/06/12/howto-use-3g-dongle-huawei-e1750-in-openwrt/comment-page-1/#comment-6860</link>
		<dc:creator>Mutte</dc:creator>
		<pubDate>Thu, 09 Sep 2010 05:06:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=1838#comment-6860</guid>
		<description>To create a start-up script (I prefer nano):

Simply edit /etc/rc.local

# Put your custom commands here that should be executed once
# the system init finished. By default this file does nothing.

usb_modeswitch
sleep 30
ifup ppp0

exit 0</description>
		<content:encoded><![CDATA[<p>To create a start-up script (I prefer nano):</p>
<p>Simply edit /etc/rc.local</p>
<p># Put your custom commands here that should be executed once<br />
# the system init finished. By default this file does nothing.</p>
<p>usb_modeswitch<br />
sleep 30<br />
ifup ppp0</p>
<p>exit 0</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mutte</title>
		<link>http://www.it-slav.net/blogs/2010/06/12/howto-use-3g-dongle-huawei-e1750-in-openwrt/comment-page-1/#comment-6859</link>
		<dc:creator>Mutte</dc:creator>
		<pubDate>Wed, 08 Sep 2010 18:55:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=1838#comment-6859</guid>
		<description>Everything is working now, but I will be back with a automatically start-up script (I hope).</description>
		<content:encoded><![CDATA[<p>Everything is working now, but I will be back with a automatically start-up script (I hope).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: peter</title>
		<link>http://www.it-slav.net/blogs/2010/06/12/howto-use-3g-dongle-huawei-e1750-in-openwrt/comment-page-1/#comment-6858</link>
		<dc:creator>peter</dc:creator>
		<pubDate>Wed, 08 Sep 2010 14:50:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=1838#comment-6858</guid>
		<description>@Mutte: No problem, sorry about the typo.</description>
		<content:encoded><![CDATA[<p>@Mutte: No problem, sorry about the typo.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: peter</title>
		<link>http://www.it-slav.net/blogs/2010/06/12/howto-use-3g-dongle-huawei-e1750-in-openwrt/comment-page-1/#comment-6857</link>
		<dc:creator>peter</dc:creator>
		<pubDate>Wed, 08 Sep 2010 14:50:06 +0000</pubDate>
		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=1838#comment-6857</guid>
		<description>@qrqq: Yes, my consultant fee is 100 EUR/h and estimate it to be approx 1 hour dev, including test and documentation.</description>
		<content:encoded><![CDATA[<p>@qrqq: Yes, my consultant fee is 100 EUR/h and estimate it to be approx 1 hour dev, including test and documentation.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mutte</title>
		<link>http://www.it-slav.net/blogs/2010/06/12/howto-use-3g-dongle-huawei-e1750-in-openwrt/comment-page-1/#comment-6856</link>
		<dc:creator>Mutte</dc:creator>
		<pubDate>Wed, 08 Sep 2010 11:43:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=1838#comment-6856</guid>
		<description>usb-modeswitch is working. 

Thanks!</description>
		<content:encoded><![CDATA[<p>usb-modeswitch is working. </p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: grqq</title>
		<link>http://www.it-slav.net/blogs/2010/06/12/howto-use-3g-dongle-huawei-e1750-in-openwrt/comment-page-1/#comment-6855</link>
		<dc:creator>grqq</dc:creator>
		<pubDate>Wed, 08 Sep 2010 09:14:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=1838#comment-6855</guid>
		<description>I&#039;m pretty much linux noob so how I can make this startup script? Can You  provide me any examples?</description>
		<content:encoded><![CDATA[<p>I&#8217;m pretty much linux noob so how I can make this startup script? Can You  provide me any examples?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: peter</title>
		<link>http://www.it-slav.net/blogs/2010/06/12/howto-use-3g-dongle-huawei-e1750-in-openwrt/comment-page-1/#comment-6854</link>
		<dc:creator>peter</dc:creator>
		<pubDate>Wed, 08 Sep 2010 08:00:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=1838#comment-6854</guid>
		<description>Well, It is linux and very flexible so please feel free to implement it. I have not done it because it has not been painfull enough to not have this feature. But a simple startup script should fix it.</description>
		<content:encoded><![CDATA[<p>Well, It is linux and very flexible so please feel free to implement it. I have not done it because it has not been painfull enough to not have this feature. But a simple startup script should fix it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: grqq</title>
		<link>http://www.it-slav.net/blogs/2010/06/12/howto-use-3g-dongle-huawei-e1750-in-openwrt/comment-page-1/#comment-6853</link>
		<dc:creator>grqq</dc:creator>
		<pubDate>Wed, 08 Sep 2010 07:49:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=1838#comment-6853</guid>
		<description>I have a problem. Everything works fine but every time I reboot the device a have to type usb_modeswitch and ifup ppp0 to enable the Internet connection. Is there any way to avoid this and enable this commands automatticly? Please help me.</description>
		<content:encoded><![CDATA[<p>I have a problem. Everything works fine but every time I reboot the device a have to type usb_modeswitch and ifup ppp0 to enable the Internet connection. Is there any way to avoid this and enable this commands automatticly? Please help me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: peter</title>
		<link>http://www.it-slav.net/blogs/2010/06/12/howto-use-3g-dongle-huawei-e1750-in-openwrt/comment-page-1/#comment-6852</link>
		<dc:creator>peter</dc:creator>
		<pubDate>Tue, 07 Sep 2010 15:26:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=1838#comment-6852</guid>
		<description>oups, try
opkg install usb-modeswitch</description>
		<content:encoded><![CDATA[<p>oups, try<br />
opkg install usb-modeswitch</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mutte</title>
		<link>http://www.it-slav.net/blogs/2010/06/12/howto-use-3g-dongle-huawei-e1750-in-openwrt/comment-page-1/#comment-6851</link>
		<dc:creator>Mutte</dc:creator>
		<pubDate>Tue, 07 Sep 2010 13:33:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=1838#comment-6851</guid>
		<description>Sorry, but it give me the same problem. Now I have double-checked the spelling.
Do you have any binary package link?

Log:

root@OpenWrt:~# opkg update
Downloading http://downloads.openwrt.org/backfire/10.03/brcm47xx/packages/Packages.gz.
Inflating http://downloads.openwrt.org/backfire/10.03/brcm47xx/packages/Packages.gz.
Updated list of available packages in /var/opkg-lists/packages.
root@OpenWrt:~# opkg install usb-switch
Collected errors:
 * opkg_install_cmd: Cannot install package usb-switch.</description>
		<content:encoded><![CDATA[<p>Sorry, but it give me the same problem. Now I have double-checked the spelling.<br />
Do you have any binary package link?</p>
<p>Log:</p>
<p>root@OpenWrt:~# opkg update<br />
Downloading <a href="http://downloads.openwrt.org/backfire/10.03/brcm47xx/packages/Packages.gz" rel="nofollow">http://downloads.openwrt.org/backfire/10.03/brcm47xx/packages/Packages.gz</a>.<br />
Inflating <a href="http://downloads.openwrt.org/backfire/10.03/brcm47xx/packages/Packages.gz" rel="nofollow">http://downloads.openwrt.org/backfire/10.03/brcm47xx/packages/Packages.gz</a>.<br />
Updated list of available packages in /var/opkg-lists/packages.<br />
root@OpenWrt:~# opkg install usb-switch<br />
Collected errors:<br />
 * opkg_install_cmd: Cannot install package usb-switch.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: peter</title>
		<link>http://www.it-slav.net/blogs/2010/06/12/howto-use-3g-dongle-huawei-e1750-in-openwrt/comment-page-1/#comment-6850</link>
		<dc:creator>peter</dc:creator>
		<pubDate>Tue, 07 Sep 2010 12:51:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=1838#comment-6850</guid>
		<description>try:
opkg install usb-switch

Not 
opkg install usb-swtitch</description>
		<content:encoded><![CDATA[<p>try:<br />
opkg install usb-switch</p>
<p>Not<br />
opkg install usb-swtitch</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mutte</title>
		<link>http://www.it-slav.net/blogs/2010/06/12/howto-use-3g-dongle-huawei-e1750-in-openwrt/comment-page-1/#comment-6849</link>
		<dc:creator>Mutte</dc:creator>
		<pubDate>Tue, 07 Sep 2010 11:54:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=1838#comment-6849</guid>
		<description>Hi
Sorry about the miss-spelling, my keyboard must have a virus ;). 

My Router have a working internet connection. But there is no usb-switch download. Do you have any other link?

Log:

root@OpenWrt:~# opkg update
Downloading http://downloads.openwrt.org/backfire/10.03/brcm47xx/packages/Packages.gz.
Inflating http://downloads.openwrt.org/backfire/10.03/brcm47xx/packages/Packages.gz.
Updated list of available packages in /var/opkg-lists/packages.
root@OpenWrt:~# opkg install usb-swtitch
Collected errors:
 * opkg_install_cmd: Cannot install package usb-swtitch.
root@OpenWrt:~#

/Mutte</description>
		<content:encoded><![CDATA[<p>Hi<br />
Sorry about the miss-spelling, my keyboard must have a virus <img src='http://www.it-slav.net/blogs/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> . </p>
<p>My Router have a working internet connection. But there is no usb-switch download. Do you have any other link?</p>
<p>Log:</p>
<p>root@OpenWrt:~# opkg update<br />
Downloading <a href="http://downloads.openwrt.org/backfire/10.03/brcm47xx/packages/Packages.gz" rel="nofollow">http://downloads.openwrt.org/backfire/10.03/brcm47xx/packages/Packages.gz</a>.<br />
Inflating <a href="http://downloads.openwrt.org/backfire/10.03/brcm47xx/packages/Packages.gz" rel="nofollow">http://downloads.openwrt.org/backfire/10.03/brcm47xx/packages/Packages.gz</a>.<br />
Updated list of available packages in /var/opkg-lists/packages.<br />
root@OpenWrt:~# opkg install usb-swtitch<br />
Collected errors:<br />
 * opkg_install_cmd: Cannot install package usb-swtitch.<br />
root@OpenWrt:~#</p>
<p>/Mutte</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: peter</title>
		<link>http://www.it-slav.net/blogs/2010/06/12/howto-use-3g-dongle-huawei-e1750-in-openwrt/comment-page-1/#comment-6847</link>
		<dc:creator>peter</dc:creator>
		<pubDate>Tue, 07 Sep 2010 08:23:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=1838#comment-6847</guid>
		<description>I do not understand &quot;update oplg&quot;?

You must have a working internet connection for yor OpenWrt router and must be able to run:
opkg update

If that does not work, google is your friend.</description>
		<content:encoded><![CDATA[<p>I do not understand &#8220;update oplg&#8221;?</p>
<p>You must have a working internet connection for yor OpenWrt router and must be able to run:<br />
opkg update</p>
<p>If that does not work, google is your friend.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mutte</title>
		<link>http://www.it-slav.net/blogs/2010/06/12/howto-use-3g-dongle-huawei-e1750-in-openwrt/comment-page-1/#comment-6846</link>
		<dc:creator>Mutte</dc:creator>
		<pubDate>Tue, 07 Sep 2010 05:20:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.it-slav.net/blogs/?p=1838#comment-6846</guid>
		<description>I can&#039;t download usb-switch. 
I have tried to update oplg with no success. Any ideas?</description>
		<content:encoded><![CDATA[<p>I can&#8217;t download usb-switch.<br />
I have tried to update oplg with no success. Any ideas?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

