Page 2 of 4

Re: Blue Screen with Prolink H9601c USB ADSL Modem

Posted: Mon Oct 25, 2010 11:45 am
by Neo
Personally, I like to answer questions with some technical value. For example, programming, embedded, computer science topics such as AI, NN, etc... I'm not much interested with simple stuff like computer maintenance, configuring devices, etc... where a manual or internet help exists already but I like to be a help as much as possible.

Re: Blue Screen with Prolink H9601c USB ADSL Modem

Posted: Fri Oct 29, 2010 10:49 am
by Nipuna
Hey Buddy

Is there any 1 port router, that can supply power via USB? Because I don't like to power it Up with AC current because in our aria Power always going. :lol:
I can Supply power to it via UPS but I like to know about an USB Power router.

Thanks

Re: Blue Screen with Prolink H9601c USB ADSL Modem

Posted: Mon Nov 01, 2010 6:28 pm
by Nipuna
hello is there any router like that?

Thanks

Re: Blue Screen with Prolink H9601c USB ADSL Modem

Posted: Mon Nov 01, 2010 6:36 pm
by Neo
The USB routers I know needs to be powered up with an external power adapter due to high consumption or power. Though I understand the situation, I don't see a way out other supplying power to router using the system power supply unit. In that way you can avoid the external power adapter.

Re: Blue Screen with Prolink H9601c USB ADSL Modem

Posted: Mon Nov 01, 2010 7:01 pm
by Nipuna
OK. When I buy one i will use it Via my UPS

Re: Blue Screen with Prolink H9601c USB ADSL Modem

Posted: Thu Mar 31, 2011 10:19 pm
by Mysoogal
this might work

ECIADSL - Howto for USB ADSL Modems http://forum.linuxmint.com/viewtopic.php?f=90&t=12462

its for linux mint 9 but, its same for ubuntu so you can follow it

Re: Blue Screen with Prolink H9601c USB ADSL Modem

Posted: Fri Apr 01, 2011 9:05 am
by Nipuna
Mysoogal wrote:this might work

ECIADSL - Howto for USB ADSL Modems http://forum.linuxmint.com/viewtopic.php?f=90&t=12462

its for linux mint 9 but, its same for ubuntu so you can follow it
Thanks Friend I bought a Router and ECIADSL isn't working with New Ubuntu Versions.

Re: Blue Screen with Prolink H9601c USB ADSL Modem

Posted: Fri Apr 01, 2011 6:38 pm
by Neo
Is the newly bought router support Ethernet connectivity or is it a USB one as before?

Re: Blue Screen with Prolink H9601c USB ADSL Modem

Posted: Fri Apr 01, 2011 7:22 pm
by Nipuna
Neo wrote:Is the newly bought router support Ethernet connectivity or is it a USB one as before?
It Supports Both Ethernet and USB and I use Ethernet because It doesn't require Drivers to be installed.

Re: Blue Screen with Prolink H9601c USB ADSL Modem

Posted: Mon Apr 04, 2011 11:34 am
by Neo
It Supports Both Ethernet and USB and I use Ethernet because It doesn't require Drivers to be installed.
Exactly.

So when you use it over Ethernet on Ubuntu, you only need to set the default gateway with the router's IP. No need to set any other driver.

If you haven't done that already, here is how...

Open /etc/network/interfaces file:

Code: Select all

$ sudo vi /etc/network/interfaces
Set gateway using following syntax:

Code: Select all

gateway {router-ip}
For example, set gateway to 192.168.0.5, enter:

Code: Select all

gateway 192.168.0.5
At the end it should look like as follows:

Code: Select all

iface eth0 inet static
address 192.168.0.1
netmask 255.255.255.0
gateway 192.168.0.5
Save and close the file. Restart networking:

Code: Select all

$ sudo /etc/init.d/networking restart
Verify new routing is working, enter:

Code: Select all

$ ping 192.168.0.5
$ route -n
$ host google.com