[Bug 848164] Re: Auto connect to 3G network only works after manually enabling mobile broadband after modem inserted/bootup/resume
Issue still here in 14.04 in network-manager 0.9.8.8-0ubuntu7.3. 3g stick doesn't auto reconnect after hibernation. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/848164 Title: Auto connect to 3G network only works after manually enabling mobile broadband after modem inserted/bootup/resume To manage notifications about this bug go to: https://bugs.launchpad.net/network-manager/+bug/848164/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 848164] Re: Auto connect to 3G network only works after manually enabling mobile broadband after modem inserted/bootup/resume
** Changed in: network-manager (Ubuntu) Status: Triaged => Fix Released -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/848164 Title: Auto connect to 3G network only works after manually enabling mobile broadband after modem inserted/bootup/resume To manage notifications about this bug go to: https://bugs.launchpad.net/network-manager/+bug/848164/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 848164] Re: Auto connect to 3G network only works after manually enabling mobile broadband after modem inserted/bootup/resume
Since this bug makes the connection to have to be manually reconnected each time the network goes down, it's a usability issue that doesn't limit the functionality of a core package. So of an importance of 'medium'. ** Changed in: network-manager (Ubuntu) Importance: Wishlist => Medium ** Changed in: network-manager (Ubuntu) Status: Confirmed => Triaged -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/848164 Title: Auto connect to 3G network only works after manually enabling mobile broadband after modem inserted/bootup/resume To manage notifications about this bug go to: https://bugs.launchpad.net/network-manager/+bug/848164/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 848164] Re: Auto connect to 3G network only works after manually enabling mobile broadband after modem inserted/bootup/resume
I might try to backport it. I guess the Debian package builds for Utopic, there were some too old deps when I tried for Trusty. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/848164 Title: Auto connect to 3G network only works after manually enabling mobile broadband after modem inserted/bootup/resume To manage notifications about this bug go to: https://bugs.launchpad.net/network-manager/+bug/848164/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 848164] Re: Auto connect to 3G network only works after manually enabling mobile broadband after modem inserted/bootup/resume
Hi Marius, since the ubuntu delta is quite big (didn't check, but the package has been reuploaded more than 20 times) and the package is so important I suggest you to talk directly with some ubuntu maintainer e.g. on freenode/#ubuntu-devel -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/848164 Title: Auto connect to 3G network only works after manually enabling mobile broadband after modem inserted/bootup/resume To manage notifications about this bug go to: https://bugs.launchpad.net/network-manager/+bug/848164/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 848164] Re: Auto connect to 3G network only works after manually enabling mobile broadband after modem inserted/bootup/resume
Version 0.9.10.0 which contains the fix is released to Debian unstable. Please update the Ubuntu package too. ** Also affects: network-manager (Debian) Importance: Undecided Status: New ** Changed in: network-manager (Debian) Status: New => Fix Released -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/848164 Title: Auto connect to 3G network only works after manually enabling mobile broadband after modem inserted/bootup/resume To manage notifications about this bug go to: https://bugs.launchpad.net/network-manager/+bug/848164/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
Re: [Bug 848164] Re: Auto connect to 3G network only works after manually enabling mobile broadband after modem inserted/bootup/resume
On Wed, 2014-06-04 at 16:57 +, Art Edwards wrote: > I am running 12.10 on Dell inspiron 14-z, and I'm using the novatel > M760 over virgin mobile. I still have the problem that the system > doesn't see the device if I remove, and re-insert it. I have tried the > solution suggested in #27, and, now, the modem does autoconnect. > However, it has not solved the re-insertion problem. I note the Bug > Watch updater that there is a new network-manager as of 2014-05-07. Will > this be back-ported to 12.10? > Try this. It was all that helped me get 12.04 to auto-connect. sudo gedit /etc/init.d/mobile-broadband-connect Copy/paste the following script in and where you see 8ta (2 places) you have to enter your service provider. Then save and close gedit. then sudo chmod +x /etc/init.d/mobile-broadband-connect sudo update-rc.d mobile-broadband-connect defaults Then reboot and lets hope it works for you too. Good luck Miles #!/bin/sh # Mobile Broadband Startup Service script v0.1 alpha by The Fan Club - April 2012 # acts as startup service script for nmcli to fire up Mobile Broadband Connections # NOTE: Use the name of the Mobile Connection in the Network Manager as the 'id' # USAGE: start|stop|status # ### BEGIN INIT INFO # Provides: mobile-broadband-connect # Required-Start: $remote_fs $syslog # Required-Stop: $remote_fs $syslog # Should-Start: $network # Should-Stop: $network # Default-Start: 3 4 5 # Default-Stop: 0 1 6 # Short-Description: Autoconnect 3G GSM ### END INIT INFO NAME="mobile-broadband-connect" DESC="Autoconnect 3G/4G GSM USB modem at startup" test -x $DAEMON || exit 0 case "$1" in start) echo "Starting Mobile Broadband Connection." while true; do # testing... LC_ALL=C nmcli -t -f TYPE,STATE dev | grep -q "^gsm:disconnected $" if [ $? -eq 0 ]; then break else # no GSM modem detected yet, sleeping for a second sleep 1 fi done # Once GSM modem detected, run the script nmcli -t con up id 8ta ;; stop) echo "Stopping Mobile Broadband Connection." nmcli -t con down id 8ta nmcli -t nm wwan off ;; status) # Check to see if the process is running with nmcli nmcli -p dev ;; *) echo "Mobile Broadband Startup Service" echo $"Usage: $0 {start|stop|status}" exit 1 esac exit 0 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/848164 Title: Auto connect to 3G network only works after manually enabling mobile broadband after modem inserted/bootup/resume To manage notifications about this bug go to: https://bugs.launchpad.net/network-manager/+bug/848164/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 848164] Re: Auto connect to 3G network only works after manually enabling mobile broadband after modem inserted/bootup/resume
I am running 12.10 on Dell inspiron 14-z, and I'm using the novatel M760 over virgin mobile. I still have the problem that the system doesn't see the device if I remove, and re-insert it. I have tried the solution suggested in #27, and, now, the modem does autoconnect. However, it has not solved the re-insertion problem. I note the Bug Watch updater that there is a new network-manager as of 2014-05-07. Will this be back-ported to 12.10? -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/848164 Title: Auto connect to 3G network only works after manually enabling mobile broadband after modem inserted/bootup/resume To manage notifications about this bug go to: https://bugs.launchpad.net/network-manager/+bug/848164/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 848164] Re: Auto connect to 3G network only works after manually enabling mobile broadband after modem inserted/bootup/resume
** Changed in: network-manager Status: Confirmed => Fix Released -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/848164 Title: Auto connect to 3G network only works after manually enabling mobile broadband after modem inserted/bootup/resume To manage notifications about this bug go to: https://bugs.launchpad.net/network-manager/+bug/848164/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 848164] Re: Auto connect to 3G network only works after manually enabling mobile broadband after modem inserted/bootup/resume
Someone tried 0.9.8.10 to see if its fixed ? -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/848164 Title: Auto connect to 3G network only works after manually enabling mobile broadband after modem inserted/bootup/resume To manage notifications about this bug go to: https://bugs.launchpad.net/network-manager/+bug/848164/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 848164] Re: Auto connect to 3G network only works after manually enabling mobile broadband after modem inserted/bootup/resume
** Changed in: network-manager Status: Unknown => Confirmed ** Changed in: network-manager Importance: Unknown => Medium -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/848164 Title: Auto connect to 3G network only works after manually enabling mobile broadband after modem inserted/bootup/resume To manage notifications about this bug go to: https://bugs.launchpad.net/network-manager/+bug/848164/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 848164] Re: Auto connect to 3G network only works after manually enabling mobile broadband after modem inserted/bootup/resume
** Bug watch added: GNOME Bug Tracker #728044 https://bugzilla.gnome.org/show_bug.cgi?id=728044 ** Changed in: network-manager Importance: Medium => Unknown ** Changed in: network-manager Status: Invalid => Unknown ** Changed in: network-manager Remote watch: GNOME Bug Tracker #667488 => GNOME Bug Tracker #728044 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/848164 Title: Auto connect to 3G network only works after manually enabling mobile broadband after modem inserted/bootup/resume To manage notifications about this bug go to: https://bugs.launchpad.net/network-manager/+bug/848164/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 848164] Re: Auto connect to 3G network only works after manually enabling mobile broadband after modem inserted/bootup/resume
** Changed in: network-manager Status: Confirmed => Invalid -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/848164 Title: Auto connect to 3G network only works after manually enabling mobile broadband after modem inserted/bootup/resume To manage notifications about this bug go to: https://bugs.launchpad.net/network-manager/+bug/848164/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 848164] Re: Auto connect to 3G network only works after manually enabling mobile broadband after modem inserted/bootup/resume
It may seem strange, but the bug persists in Ubuntu 14.04 -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/848164 Title: Auto connect to 3G network only works after manually enabling mobile broadband after modem inserted/bootup/resume To manage notifications about this bug go to: https://bugs.launchpad.net/network-manager/+bug/848164/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 848164] Re: Auto connect to 3G network only works after manually enabling mobile broadband after modem inserted/bootup/resume
Simplest solution to this problem: open with root permission: sudo gedit /etc/rc.local Now add this line above exit 0 (while :; do nmcli -t nm wwan on; sleep 1; done)& Save the file and exit. This is the best solution i have tried, it works in all situations. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/848164 Title: Auto connect to 3G network only works after manually enabling mobile broadband after modem inserted/bootup/resume To manage notifications about this bug go to: https://bugs.launchpad.net/network-manager/+bug/848164/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 848164] Re: Auto connect to 3G network only works after manually enabling mobile broadband after modem inserted/bootup/resume
Yes, upstream patch works, but for me it did not work after sleep of laptop. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/848164 Title: Auto connect to 3G network only works after manually enabling mobile broadband after modem inserted/bootup/resume To manage notifications about this bug go to: https://bugs.launchpad.net/network-manager/+bug/848164/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 848164] Re: Auto connect to 3G network only works after manually enabling mobile broadband after modem inserted/bootup/resume
I actually tracked it down to ModemManager initially having any modem disabled (and NetworkManager just reflects this state, and can manipulate it). `mmcli -e` enabled a modem and also causes the NetworkManager to connect, which confirms this. So the right solution would be to somehow persuade ModemManager to enable modem by default. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/848164 Title: Auto connect to 3G network only works after manually enabling mobile broadband after modem inserted/bootup/resume To manage notifications about this bug go to: https://bugs.launchpad.net/network-manager/+bug/848164/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 848164] Re: Auto connect to 3G network only works after manually enabling mobile broadband after modem inserted/bootup/resume
@mariusko Hi, did you have a chance to test the upstream patch ? Leonardo -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/848164 Title: Auto connect to 3G network only works after manually enabling mobile broadband after modem inserted/bootup/resume To manage notifications about this bug go to: https://bugs.launchpad.net/network-manager/+bug/848164/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 848164] Re: Auto connect to 3G network only works after manually enabling mobile broadband after modem inserted/bootup/resume
There is some code upstream that I am testing now that probably solves this problem, and possibly the reconnection issue too. -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/848164 Title: Auto connect to 3G network only works after manually enabling mobile broadband after modem inserted/bootup/resume To manage notifications about this bug go to: https://bugs.launchpad.net/network-manager/+bug/848164/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 848164] Re: Auto connect to 3G network only works after manually enabling mobile broadband after modem inserted/bootup/resume
The problem with 3G network support is not only in autoconnection but also in auto reconnection as described in https://bugs.launchpad.net/ubuntu/+source/network-manager/+bug/1158442 Kind Regards -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/848164 Title: Auto connect to 3G network only works after manually enabling mobile broadband after modem inserted/bootup/resume To manage notifications about this bug go to: https://bugs.launchpad.net/network-manager/+bug/848164/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs
[Bug 848164] Re: Auto connect to 3G network only works after manually enabling mobile broadband after modem inserted/bootup/resume
** Summary changed: - Autoconnect to 3G network only works after manually enabling mobile broadband after modem inserted/bootup/resume + Auto connect to 3G network only works after manually enabling mobile broadband after modem inserted/bootup/resume -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/848164 Title: Auto connect to 3G network only works after manually enabling mobile broadband after modem inserted/bootup/resume To manage notifications about this bug go to: https://bugs.launchpad.net/network-manager/+bug/848164/+subscriptions -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs