Ubuntu Networking :: Connecting 3g Modem Disconnects Home Lan?

Apr 3, 2010

running Ubuntu 9.10 x64bit fresh install and updated.When I connect with my 3g um150 modem it disconnects my home network?? I cannot get them to run both at the same time and of cousre the next thing would be to share the internet connection.

View 9 Replies


ADVERTISEMENT

Ubuntu Networking :: Qualcomm 3g Modem Disconnects After Few Seconds - Getting Failure Code 100

Sep 13, 2010

I have a Lenovo W510 Laptop with Ubuntu 10.04. The laptop has an on board Qualcomm 3g modem. I have managed to install the Qualcomm firmware and Network Manager detects the 3g device but when I try to connect it disconnects after a few seconds. My syslog has the error

Code: Got failure code 100: Unknown error

View 2 Replies View Related

Fedora Networking :: Router Disconnects On Connecting 14 Machine?

Jan 5, 2011

I recently installed Fedora 14 on my machine. Ever since I cannot connect to the Internet at home.henever I plugin in the ethernet cable the ADSL router disconnects and all machines connected to the router lose connection to the Internet.

View 9 Replies View Related

Ubuntu Networking :: 9.10 Not Connecting To Internet At Home But Connecting From Work

Feb 9, 2010

I just installed Ubuntu 9.10 and its great. However when I connect to the internet at home it shows that the connection has been established but I still cant connect to the internet. My flatmates are all able to connect. However, I am able to connect from work both wirelessly and through an ethernet cable.

View 2 Replies View Related

Ubuntu Networking :: Connecting Through A Cable Modem?

Jun 23, 2010

I am using ububntu 9.10,and have a cable modem internet connection. All I have is an ethernet cable given to me,and when plugged in a windows machine and fire a browser am redirected to default login page where i can login, but when i plug it into my linux machine,i cant get the same done. In network connections it doesnt shows my autoeth0, i have deleted my existing dsl settings(not autoeth0),made a new wired network,i doubt what should i put into MAC addrs field(i have put my machines mac given by lshw -c network.) What should I put in DHCP client id? Anyways when i click on network connections it says under my wired connections-device not configured properly.

View 6 Replies View Related

Ubuntu Networking :: USB 3G Modem (netstick) Not Connecting?

Jul 14, 2010

In my attempt to get my USB 3G modem to work on Ubuntu 10.04 netbook edition I have made some progress to the point of getting the driver for it up and running, though connecting to the Internet after defining a profile is an issue. I have followed this ubuntuforums thread simply to get started with the usb modeswitch to get the usb modem identified by the system.

Debug information:

uname -r:

Code:

2.6.32-23-generic
cat /etc/issue:

[code]...

View 6 Replies View Related

Ubuntu Networking :: Connecting 3 Wireless Modem Via USB?

May 22, 2011

I've recently installed Natty and the only problem I have with it so far is attempting to connect my Huawei E5830 Three Wireless modem via USB and successfully connecting to the Internet from it. I've fiddled around with the network settings and nothing, I've also done some work in the Terminal to try and correct the problem.

View 1 Replies View Related

Ubuntu Networking :: Banglalion Dongle Usb Modem Not Connecting?

May 29, 2010

I use Banglalion WiMax usb dongle modem. I like to use it in ubuntu os. When I connect it to my Desktop PC's usb port, it respond nothing.

View 9 Replies View Related

Ubuntu Networking :: Connecting Tata Docomo USB Modem In 10.04?

Jul 22, 2011

I have a USB Modem MMX 372 G to connect internet lsusb showsCode: Bus 002 Device 002: ID 05c6:9000 Qualcomm, Inc.and following is /var/log/messages when I connect the USB modem and connect it for the first time the USB modem Quote:

Jul 24 08:37:42 bond kernel: [ 110.200159] usb 2-2: new high speed USB device using ehci_hcd and address 2
Jul 24 08:37:43 bond kernel: [ 110.353219] usb 2-2: configuration #1 chosen from 1 choice

[code]....

View 1 Replies View Related

Fedora Networking :: USB Modem Not Connecting In FC11 X64?

Jan 23, 2010

The problem is that when I connect my phone to my machine FC11 x64 via USB and use the phone as a modem NetworkManager does not recognise the phone as a modem. The phone works well on my laptop which is FC11 32bit system, NetworkManager detects it and sets it up as eth2 and away I go, no problems at all. I would like to ask the community how can I go fault finding to find out why it does not work. #lsusb shows that the modem is being detected by the system but beyond this I don't know where to look and get things going.

View 1 Replies View Related

Networking :: Connecting To Internet When 3G Modem Plugged In

Apr 25, 2009

I was recently asked to get a 3G ZTE 633 modem (not in stores) to connect to the internet whenever it was plugged in. I had it successfully working on my Ubuntu Gutsy Gibbon machine but it does not work on Fedora 10 which is where it is required to work. When the 3G modem is plugged in I use a Udev rule to run usb_modeswitch which changes it from being in usb storage mode to being in modem mode. This part works fine. I then run a second udev rule (on the modem device), this should run a script which connects to the internet. Unfortunately it falls over here. The script does run but it will not connect. However if I run the script manually from root it works fine. I guess that it is a permissions issue.

The device permissions are:
crw-rw---- 1 root uucp 188, 0 2009-04-26 11:31 ttyUSB0
crw-rw---- 1 root uucp 188, 1 2009-04-26 11:31 ttyUSB1
crw-rw---- 1 root uucp 188, 2 2009-04-26 11:31 ttyUSB2

The script and script folders permissions are:
drwxrwxrwx 2 root root 4.0K 2009-04-26 11:46 .
drwxr-xr-x 23 root root 4.0K 2009-04-26 11:13 ..
-rwxr-xr-x 1 root root 95 2009-04-26 11:46 run_internet

One thing to note is that there are three udev devices associated with the modem. They are ttyUSB0, ttyUSB1 and ttyUSB2. I use ttyUSB2 to talk to the modem when connecting. Here are the files. If you require any more let me know:

The first udev rule:
SUBSYSTEM=="usb", SYSFS{idProduct}=="2000", SYSFS{idVendor}=="19d2", RUN+="/usr/bin/usb_modeswitch"

The second udev rule:
SUBSYSTEM=="usb", SYSFS{idProduct}=="0031", SYSFS{idVendor}=="19d2", MODE="0666", RUN+="/outputs/run_internet"

The script:
#!/bin/bash
/bin/echo script
/usr/bin/wvdial &
cp -f /etc/telstra_resolv.conf /etc/resolv.conf

The wvdial config file:
[Dialer Defaults]
Init1 = ATZ
Init2 = ATQ0 V1 E1 S0=0 &C1 &D2 +FCLASS=0
Init3 = ATS7=60 S30=0 S0=0
Init4 = AT+CGDCONT=1,"IP","telstra.internet"
Modem Type = Analog Modem
Baud = 9600
New PPPD = no
Modem = /dev/ttyUSB2
ISDN = 0
Dial Command=ATD
Phone = *99#
Password = user@bigpond.com
Username = password
Stupid Mode = 1

So what am I missing? I suppose it is related to device permissions. Why does the "mode" command not work? With what rights do udev rules run?

View 1 Replies View Related

Fedora Networking :: Connecting Mobile As Modem To Laptop?

Jan 18, 2011

I am having a Sony Ericssion Aspen M1i window's mobile which I need to connect as modem to my fedora 13 laptop....

View 11 Replies View Related

Networking :: Connecting To Internet Using GPRS Modem With WVDIAL?

Apr 11, 2011

trying to connect to the internet using wvdial but facing problems. the command runs fine until i get PID ppd Carrier detected. Starting PPP immediately.

--> Starting pppd at Sat Oct 23 10:40:09 2010
--> Pid of pppd: 2520

nothing happens after this.. I checked the resolve.conf and it is empty. i put openDNS server addresses but still did not work.

View 3 Replies View Related

Ubuntu Networking :: Connecting 7.10 Computer To The Internet Using SE 580i Phone Modem

Mar 9, 2010

I have just installed ubuntu 7.10 on my computer. The problem is getting it connected to the internet using my Sony Ericsson w580i as a modem. I have used my phone to connect to the internet on XP operating system easily. Please assist me and try to give me a more simplified step by step procedure.

View 9 Replies View Related

Ubuntu Installation :: Modem Disconnects LTS 10.04 Live USB?

Oct 15, 2010

I use an analog modem and wifi to access the internet. I am using Ubuntu LTS 8.04 on a laptop and have an analog modem connected via USB serial cable. The dialup feature and the modem work flawlessly. I am testing LTS 10.04.1 on a live USB drive that I purchased preinstalled from On-Disk. On the live USB drive, I am able to get a dialup connection with my ISP long enough to pull up a web page with the browser. However, the analog modem disconnects within minutes with exit codes 16 or 17.

Man pppd:
16 The link was terminated by the modem hanging up.
17 The PPP negotiation failed because serial loopback was detected.

My questions are, how to do I track down the dialup setting(s), or file configuration(s) that is causing the disconnects? Is the problem likely due to a poorly worded AT modem command? I want to get this problem resolved before I proceed with upgrading from 8.04 to 10.04.1.

View 3 Replies View Related

Ubuntu Networking :: Connecting To The Internet Through A Lynksys Wireless G Router And A Cable Modem?

Aug 6, 2010

i'm having problems connecting to the internet unless i manually enter the IP info.

automatic DHCP does not work. I'm on a dual boot machine vista/ubuntu 10.04 LTS connecting to the internet through a lynksys wireless g router and a cable modem.

View 2 Replies View Related

Ubuntu Networking :: Cable Modem Networking - Can't Connect To Each Other On The Home Network

Feb 14, 2010

I just got connected to Charter Cable Internet service a few days ago and I'm having a weird problem with my home network. Prior to this my network worked fine. On my network I have a desktop running Ubuntu 9.10/64 and Virtualbox with WinXP installed, an HTPC with Ubuntu 9.10/32 installed and a laptop dual booted with Ubuntu 9.10/32 and WinXP. The desktop and HTPC are hard wired to a wireless router and the laptop is wireless. The cable modem is hard wired to the router. I have samba installed and UFW is disabled. The problem is: with the cable modem turned off or on standby, all machines connect to each other and can transfer files, etc just fine but when I activate the cable modem all of the machines can connect to the Internet but the machines running Ubuntu can't connect to each other on the home network. If I boot the laptop into Windows, it can connect to the Linux machines just fine but if I boot it into Linux, it won't connect to the Linux machines but it can connect to the Internet and as far as the desktop, Ubuntu won't connect to the network but Windows running in the Virtualbox with bridged networking can connect to all of the machines.

View 2 Replies View Related

Ubuntu Networking :: Connecting A Modem Router With A Mobile Broad Band Umts Connection?

Feb 17, 2011

sometimes our ADSL connection gives up and we are left without internet connection for days until the problem gets fixed. I mean by this problem along the phone line. It affects all machines that connect to the internet through a Netgear WIFI Modem Router. I recently tried an alternative when this happens is to use a USB Huawei Mobile Broadband UMTS connection which works when you insert it in 1 laptop. Is there a way i could get the Netgear WIFI modem router to connect on that usb stick or PC that is online on that usb stick and give access to other machines that will want to connect to the web ?

View 4 Replies View Related

Ubuntu Networking :: Home Server Connecting To VPN?

Jun 3, 2011

I have a home server that I have setup to connect to via SSH. All is working well with that. I would like to have the home server access the internet through a VPN. However, if I do this, I am no longer able to connect to the server via SSH, even though I know what its IP address is.

View 1 Replies View Related

Ubuntu Networking :: Connecting To A Windows XP Home Network?

Jul 4, 2010

I have a beefy Win Box desktop that i'm using as a media server and i have a home network setup already using windows xp. I had everything running fine and the PC connects flawlessly to my Bravia TV and both my ps3's so i know the network and sharing settings are setup just fine. Anyways i got tired of all the Windows 7 BS and decided i would once again use Ubuntu on my Toshiba netbook. So the question is how in the heck do i get my Ubuntu netbook to connect to the Desktop? I've tried browsing the fourms but either i'm missing something of just a little slow. What "extensions" would i need to get and how would i go about implementing it from there?

View 3 Replies View Related

Networking :: Banning Specific Operating Systems From Connecting To Home Routers ?

Dec 9, 2010

I might as well start off by saying that I have the Linux-based Linksys WRT54GL router running the Tomato firmware. I've come up with an idea that I'm not sure is possible. Specifically, setting a router up to ban not by the MAC address of the network card, but by the operating system the machine itself is running.

This way someone could have, say, a laptop dual-booting Windows and Linux and would be unable to access the internal network if they are in Windows. However, if they reboot into Linux (or practically any other OS) they would be able to access the local network safely without the chance of spreading worms and whatever else garbage across the internal network. Similarly, other devices like Xbox 360s, Wiis, etc. would be unaffected since they don't run Windows. [Yes, 360 probably runs some highly modified NT kernel, but almost nothing else is similar to a Windows PC and the whole system is highly locked down by Microsoft, so I'd say it could be an exception.]

I was thinking of specifically banning Windows XP and lower (honestly as f***ed up as I've seen Vista and 7 get, I would consider banning those too...). The idea is to allow, well... everything that isn't Windows (except possibly Win7) to connect wirelessly to the local network.

Unfortunately, I cannot do anything like this just yet, and I'm in the planning stages, trying to figure out if it is even possible. There are unfortunately two computers in the house that aren't mine (one running Windows XP and another Windows 7... go figure, they came with it and either my sister refuses to use anything else or my mom's computer's wireless is a massive PITA to get to work in anything *besides* Windows). My guess is that this is either not possible or would be extremely hard to pull off. What do you guys think?

On the other hand, it would probably be possible to connect two routers to the incoming cable connection, giving them both different settings (SSIDs, WPA passwords, etc.) and only giving Windows users access to the outer router, but it'd be cool to be able to accomplish something like this with one router through its settings.

View 5 Replies View Related

Ubuntu Networking :: Samsung Mobile Modem Not Detecting When Connecting New Mobile Broadband Connection?

Oct 17, 2010

i am using samsung S3310 with aircel when i am connecting new mobile broadband connection my device is not identifying ,so that i cant connect Internet.but everything okay i mean settings in mobile and pc. for same connection i used Nokia mobile its identified and Internet was connected but samsung mobile is not identifying in terminal i typed LSUSB my device is shown in that.

View 9 Replies View Related

Ubuntu :: Reliance Modem Not Connecting

Jun 15, 2011

I've Reliance Broadband internet modem . very first time only it was connected but next onwards it's not connecting , I am trying last one month to connect internet , I am tired .I had seen lot of thread related to this problem but it's not connecting, my device is identified by network manager and i entered user name and password ,connecting process is going on but finally it's not connecting . i installed wv dial and usb modeswith data

View 3 Replies View Related

Ubuntu :: Connecting To Internet Using A D-link Glb 802c Modem?

Apr 13, 2011

I am using Ubuntu 10.04 LTS. my PC is a Compaq Presario SG3043IL with a D-Link GLB-802C ADSL 2+ Router. previously i was not even getting connected to the modem but now some how i have connected my ubuntu to the modem but no way can i connect to the internet. the internet connection workins fine whenever i log on to my XP. need to connect to the internet.

View 2 Replies View Related

General :: Connecting Huawei ETS 1201 Modem With Ubuntu 10.04?

Feb 10, 2011

I have loaded Ubuntu linux 10.04 and Windows XP in my PC. I have CT800P Modem supplied by BSNL for getting internet connection. Though the modem is working properly in XP it is not being detected by Ubuntu. How to configure CT800P with Ubuntu Linux 10.04.

View 2 Replies View Related

Fedora Networking :: Connecting Home Network To Work Network

Sep 20, 2010

Currently my office use a Cisco Firewall which will only allow the ANYCONNECT utility to do the vpn connection. I found a Linux utility (OpenConnect) which will do the same thing, but allow me more flexibility with my networking needs.What I ultimately would like to have is to have a switch that I can connect any network device into it and be connected to the office. IE (my IP Work Phone and Computer) Currently I have is a computer with fedora 13 and two network cards eth0 (home network - connected to a router) and eth1 which I would like to connect a switch to. OpenConnect communicates fine and I can see the work network from the Fedora machine. It creates a vpn0 tun/tap device and I don't know how to pass communication to/from the eth1 device.

Do I try to iptables the ports for the phone and services I need on the computer? Or do I build bridge; and If I do what am I bridging. I have tried making a bridge from eth1 to vpn0 which reply's with unsupported device or something like that.Unfortunately my network skills are bit limited and my office says "it can't be done". Their solution is for me to buy a ASA5505 (or something device) and have a static IP. I would have to make it work as my router and even then it will only DHCP 10 ip addresses; which will cause a shortage of IP addresses in the house.

View 1 Replies View Related

OpenSUSE Network :: 3g Modem Is Not Connecting

Apr 21, 2010

I'm trying a long time to configure my 3g modem to connect.I had tryied using the KDE Network manager and the modem stay in "Waiting authorization" for ever ^^.The KDE Network manager runs ok in Kubuntu.I had tryied download and install kppp, but kppp don't open my modem (/dev/ttyUSB01)Then how can I configure my modem?

View 1 Replies View Related

Hardware :: Connecting External Serial Modem To New Computer?

Nov 2, 2010

Is it better to use a Usb to Serial Adapter Cable or a PCI Serial Port Card when attaching a serial port modem to a computer that doesn't provide onboard serial ports?I am leaning toward the USB to Serial Cable but do they work as well as a Serial Port Card? I have a US Robotics business class external serial modem that that I'd like to keep using for dialup internet connections.Here are the devices I am thinking of using:

USB To Serial Cable: KINAMAX CB-RS232 (Prolific Chipset)
PCI Adapter Card: SYBA SD-PCI 15024 --single port chipset=SB16C1052PC1

View 7 Replies View Related

Hardware :: Connecting Huawei EC152 Modem - Tata Photon+

Apr 28, 2011

Any one tried to connecting the internet using Tataphoton+?

Device details:
HUAWEI Mobile Broadband
Model: HUAWEI EC 152

According to manual, the device should be detected as /dev/ttyACM0. But no device of this name is created. 'lsusb' identifies the device.

The required packages like wvdial, wvstream are installed. I have tried all the possible ways. Also created /dev/ttyACM0 with # mknod /dev/ttyACM0 c 166 0

Link to manual, in case any one wants to read it [url]

Just want to connect using GNU/linux any how. Can't live with WINDOWS

View 12 Replies View Related

Ubuntu Networking :: Install Modem Driver For The Alcatel X200 USB Modem?

Mar 23, 2011

find and install modem driver for the Alcatel X200 USB modem?

I've been all over the internet trying to locate Linux drivers but no success. Alcatel's website says is not supported, only in Windows. I'm sure there's gotta be a way to use the X200 in Linux.

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved