From aleksander at aleksander.es Sun Aug 2 00:09:53 2015 From: aleksander at aleksander.es (Aleksander Morgado) Date: Sun, 2 Aug 2015 09:09:53 +0200 Subject: [PATCH] fix a memory leak In-Reply-To: References: Message-ID: On Fri, Jul 31, 2015 at 6:40 PM, Yunlian Jiang wrote: > The bug entry is at > https://code.google.com/p/chromium/issues/detail?id=515929 > > The patch is below > > --- > src/mm-base-manager.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/src/mm-base-manager.c b/src/mm-base-manager.c > index fdcd037..de3291c 100644 > --- a/src/mm-base-manager.c > +++ b/src/mm-base-manager.c > @@ -752,6 +752,7 @@ handle_set_profile (MmGdbusTest *skeleton, > g_hash_table_insert (self->priv->devices, > g_strdup (physdev), > device); > + g_free(physdev); > > /* Grab virtual ports */ > mm_device_virtual_grab_ports (device, (const gchar **)ports); > -- > 2.5.0.rc2.392.g76e840b Thanks for the report; are you actively using the Test interface yourselves? I didn't push your patch though; instead I just avoided the g_strdup() when inserting in the hash table, which saves us one unnecessary alloc. http://cgit.freedesktop.org/ModemManager/ModemManager/commit/?id=0337781ba746fb869198cff9705e521a2722b26d Cheers! -- Aleksander https://aleksander.es From aleksander at aleksander.es Sun Aug 2 01:38:47 2015 From: aleksander at aleksander.es (Aleksander Morgado) Date: Sun, 2 Aug 2015 10:38:47 +0200 Subject: Branch for review: 'riccardo/voice' In-Reply-To: References: <1432742287.15971.30.camel@redhat.com> Message-ID: On Wed, Jun 3, 2015 at 4:04 PM, Riccardo Vangelisti wrote: >>> Anyway, the branch looks good enough to me; there are some things that >>> it doesn't yet cover, but I believe it's a good start. Dan, what do >>> you think? >>> libmm-glib: added support for Modem.Voice and Call interfaces >> >> Should mm_call_properties_set_number() check that the number is not >> zero-length? I'm not sure how much validation we want to do in >> mm-call-properties.c but maybe a bit more? > > Ok, we've pushed this. All other mm_call_properties_set_* functions are > already checked by enum type. That fix you made doesn't really validate the input returning an error if not valid; it just ignores the string passed if it's not considered valid. Anyway, I think we shouldn't do any validation, not even for empty string, in the setter method in MMCallProperties. This object is a helper in libmm-glib, which means that it isn't mandatory to use this helper object to create the call object, you could do it building the DBus request yourself. The validation of parameters should always be done in ModemManager when it receives the messages from the bus. For now I'll ignore the specific commit (4f6e3a3f47b226f497827837a58f407cd0e4b66e) doing this, won't cherry-pick it to my branch. -- Aleksander https://aleksander.es From aleksander at aleksander.es Sun Aug 2 03:15:21 2015 From: aleksander at aleksander.es (Aleksander Morgado) Date: Sun, 2 Aug 2015 12:15:21 +0200 Subject: Branch for review: 'riccardo/voice' In-Reply-To: References: <1432742287.15971.30.camel@redhat.com> <556F0967.30305@sadel.it> Message-ID: On Wed, Jun 3, 2015 at 6:09 PM, Riccardo Vangelisti wrote: >>> All changes are pushed on bitbucket. >> >> Didn't check, but did you push your new commits on a new branch based >> on the one I created in the MM git repo? Or did the new ones go on top >> of the original branch? (I would prefer the former) > > Currently we use a new branch "voicecall" based on "riccardo/voice" I have now merged that branch plus some other commits; to git master. -- Aleksander https://aleksander.es From joao.m.santos.silva at gmail.com Mon Aug 3 14:00:26 2015 From: joao.m.santos.silva at gmail.com (=?UTF-8?Q?Jo=c3=a3o_M._S._Silva?=) Date: Mon, 3 Aug 2015 22:00:26 +0100 Subject: small footprint device for USSD/SMS In-Reply-To: <55B8ADCD.4000901@sudrala.de> References: <55B403C7.70809@gmail.com> <55B6C117.7030602@gmail.com> <55B7BCFB.2070607@sudrala.de> <55B810FB.1060303@gmail.com> <55B8ADCD.4000901@sudrala.de> Message-ID: <55BFD66A.20301@gmail.com> Hi, Sorry about the newbie question: Do you know of any modular device to run USSD sessions? And eventually SMS? Or GPRS? By modular I mean not a USB dongle, but a smaller PCB which I can embed in my machine instead of plugin it, hanging outside. Does modemmanager support USSD commands? Or should I use other software? Or maybe I have to use AT commands directly without any other abstraction layer? Thanks for any insights. For the moment I've been using an HSPDA dongle with which I send SMS, but I'd like to embed this dongle inside the machine (in a PCB cape) and also support USSD sessions. -- João M. S. Silva From dcbw at redhat.com Mon Aug 3 15:37:15 2015 From: dcbw at redhat.com (Dan Williams) Date: Mon, 03 Aug 2015 17:37:15 -0500 Subject: small footprint device for USSD/SMS In-Reply-To: <55BFD66A.20301@gmail.com> References: <55B403C7.70809@gmail.com> <55B6C117.7030602@gmail.com> <55B7BCFB.2070607@sudrala.de> <55B810FB.1060303@gmail.com> <55B8ADCD.4000901@sudrala.de> <55BFD66A.20301@gmail.com> Message-ID: <1438641435.14489.61.camel@redhat.com> On Mon, 2015-08-03 at 22:00 +0100, João M. S. Silva wrote: > Hi, > > Sorry about the newbie question: > > Do you know of any modular device to run USSD sessions? And eventually > SMS? Or GPRS? > > By modular I mean not a USB dongle, but a smaller PCB which I can embed > in my machine instead of plugin it, hanging outside. > > Does modemmanager support USSD commands? ModemManager supports USSD for modems that allow USSD control via the standard 3GPP TS 27.007 AT commands (eg, +CUSD and others). It does not yet support USSD via QMI or MBIM, or modems that have other non-standard-AT-based mechanisms for USSD. Dan > Or should I use other software? Or maybe I have to use AT commands > directly without any other abstraction layer? > > Thanks for any insights. > > For the moment I've been using an HSPDA dongle with which I send SMS, > but I'd like to embed this dongle inside the machine (in a PCB cape) and > also support USSD sessions. > From joao.m.santos.silva at gmail.com Tue Aug 4 07:22:56 2015 From: joao.m.santos.silva at gmail.com (=?UTF-8?Q?Jo=c3=a3o_M._S._Silva?=) Date: Tue, 4 Aug 2015 15:22:56 +0100 Subject: error: couldn't find the ModemManager process in the bus In-Reply-To: <55B8ADCD.4000901@sudrala.de> References: <55B403C7.70809@gmail.com> <55B6C117.7030602@gmail.com> <55B7BCFB.2070607@sudrala.de> <55B810FB.1060303@gmail.com> <55B8ADCD.4000901@sudrala.de> Message-ID: <55C0CAC0.6090803@gmail.com> I think I found the place and time where the change took place: modemmanager (0.4.997-1ubuntu1) oneiric; urgency=low * debian/modemmanager.upstart: add an upstart config file so ModemManager gets started just before NM, and stopped along with it. (LP: #806082) * debian/rules: install upstart file only for Ubuntu. -- Mathieu Trudel-Lapierre Fri, 08 Jul 2011 15:32:13 -0400 I was looking for this on ModemManager source code, but of course this is added by the package maintainer, because it depends on the distro. On 07/29/2015 11:41 AM, Bernd Eggink wrote: > On 28.07.2015 23:32, João M. S. Silva wrote: >> On 07/28/2015 06:33 PM, Bernd Eggink wrote: >>> And ModemManager can be used without NetworkManager. On my system >>> (Crux), I do everything with mmcli and a couple of scripts. >> >> Yes, I use mmcli to create and send an SMS. But if the modem is not >> detected, I cannot use it. >> >> If I start modemmanager, then the dongle works. How do you use it if you >> don't enable modemmanager? > > I _do_ start ModemManager as a background process in an init script. > After this, I use mmcli for status reports, connecting and disconnecting. > > - Bernd > _______________________________________________ > ModemManager-devel mailing list > ModemManager-devel at lists.freedesktop.org > http://lists.freedesktop.org/mailman/listinfo/modemmanager-devel -- João M. S. Silva From shirishag75 at gmail.com Sat Aug 8 10:54:11 2015 From: shirishag75 at gmail.com (=?UTF-8?B?c2hpcmlzaCDgpLbgpL/gpLDgpYDgpLc=?=) Date: Sat, 8 Aug 2015 23:24:11 +0530 Subject: trying to find tutorials about modemmanager and not getting it :( Message-ID: Dear all, Newbie here. Have been trying to get tutorials about modemmanager and haven't been lucky in that regard. Am using network-manager atm but would like to use modemmanager for connecting to a Huawei Technologies Co., Ltd. E353/E3131 usb modem ~$ lsusb ............ ............ Bus 001 Device 007: ID 12d1:14db Huawei Technologies Co., Ltd. E353/E3131 Look forward to learning from you all. -- Regards, Shirish Agarwal शिरीष अग्रवाल My quotes in this email licensed under CC 3.0 http://creativecommons.org/licenses/by-nc/3.0/ http://flossexperiences.wordpress.com EB80 462B 08E1 A0DE A73A 2C2F 9F3D C7A4 E1C4 D2D8 From aleksander at aleksander.es Tue Aug 11 01:30:33 2015 From: aleksander at aleksander.es (Aleksander Morgado) Date: Tue, 11 Aug 2015 10:30:33 +0200 Subject: trying to find tutorials about modemmanager and not getting it :( In-Reply-To: References: Message-ID: On Sat, Aug 8, 2015 at 7:54 PM, shirish शिरीष wrote: > Newbie here. Have been trying to get tutorials about modemmanager and > haven't been lucky in that regard. > > Am using network-manager atm but would like to use modemmanager for > connecting to a Huawei Technologies Co., Ltd. E353/E3131 usb modem > > ~$ lsusb > ............ > ............ > Bus 001 Device 007: ID 12d1:14db Huawei Technologies Co., Ltd. E353/E3131 > > Look forward to learning from you all. Not sure there are tutorials out there about how to use ModemManager, truth be told. I'd suggest you first understand how DBus works (what services are, what clients are...) I gave a talk a while back about this: https://aleksander.es/data/GNOMEASIA2014%20-%20Introduction%20to%20DBus.pdf https://aleksander.es/resources/data/GNOMEASIA2014-Examples/ https://www.youtube.com/watch?v=egj4UMPaylk And then look at the ModemManager DBus API here: http://www.freedesktop.org/software/ModemManager/api/latest/ If you specifically want a tutorial on how ModemManager and NetworkManager interact, that's nowhere explained but in the source code of NetworkManager I guess. -- Aleksander https://aleksander.es From tadej.supukovic at gmail.com Wed Aug 12 05:47:06 2015 From: tadej.supukovic at gmail.com (Tadej Supukovic) Date: Wed, 12 Aug 2015 14:47:06 +0200 Subject: Cannot connect with Sierra Wireless EM7305 on CentOS 7. Message-ID: <55cb404b.ed0cb40a.8edc3.ffff92ae@mx.google.com> Hello ModemManagers, I can’t connect with my Sierra Wireless EM7305 Modem on CentOS 7. The goal is to get an IP and internet connection with the modem using the provided APN (drei.at, no credentials required). Device: Panasonic Toughpad FZ-M1 OS: CentOS 7 (kernel version 4.1.0-rc7-wl-ath – custom build) Modem: Sierra Wireless EM7305 ModemManager version 1.1.0.6 (it’s the last officially supported package) lsusb finds my modem: Bus 001 Device 002: ID 0424:2422 Standard Microsystems Corp. Bus 001 Device 003: ID 0424:2137 Standard Microsystems Corp. Bus 001 Device 005: ID 04b5:0680 ROHM LSI Systems USA, LLC Bus 001 Device 016: ID 1199:9041 Sierra Wireless, Inc. Bus 001 Device 008: ID 04dd:9762 Sharp Corp. Bus 001 Device 010: ID 0424:2422 Standard Microsystems Corp. Bus 002 Device 002: ID 0424:5537 Standard Microsystems Corp. Bus 003 Device 002: ID 8087:8000 Intel Corp. Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub Bus 001 Device 004: ID 13d3:5224 IMC Networks Bus 001 Device 006: ID 5986:0546 Acer, Inc Bus 001 Device 007: ID 0b05:17d2 ASUSTek Computer, Inc. Bus 001 Device 009: ID 045e:00cb Microsoft Corp. Basic Optical Mouse v2.0 Bus 001 Device 011: ID 0403:6001 Future Technology Devices International, Ltd FT232 USB-Serial (UART) IC Bus 001 Device 013: ID 1fc9:010b NXP Semiconductors PR533 Bus 001 Device 014: ID 0424:2422 Standard Microsystems Corp. Bus 002 Device 003: ID 0bda:8153 Realtek Semiconductor Corp. Bus 002 Device 004: ID 17e9:4300 DisplayLink Bus 001 Device 015: ID 045e:0750 Microsoft Corp. Wired Keyboard 600 lshw also lists it: *-usb:3 description: Communication device product: EM7305 vendor: Sierra Wireless, Incorporated physical id: 6 bus info: usb at 1:6 version: 0.06 capabilities: usb-2.00 configuration: driver=cdc_mbim maxpower=500mA speed=480Mbit/s Starting the ModemManager: ModemManager –debug Log: Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.881258] [main.c:128] main(): ModemManager (version 1.1.0-6.git20130913.el7) starting... Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.888831] [main.c:61] bus_acquired_cb(): Bus acquired, creating manager... Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.890265] [mm-plugin-manager.c:788] load_plugins(): Looking for plugins in '/usr/lib64/ModemManager' Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.890625] [mm-plugin-manager.c:813] load_plugins(): Loaded plugin 'Altair LTE' Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.890814] [mm-plugin-manager.c:813] load_plugins(): Loaded plugin 'AnyDATA' Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.890966] [mm-plugin-manager.c:813] load_plugins(): Loaded plugin 'Cinterion' Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.891135] [mm-plugin-manager.c:813] load_plugins(): Loaded plugin 'Generic' Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.891275] [mm-plugin-manager.c:813] load_plugins(): Loaded plugin 'Gobi' Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.891461] [mm-plugin-manager.c:813] load_plugins(): Loaded plugin 'Option High-Speed' Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.891639] [mm-plugin-manager.c:813] load_plugins(): Loaded plugin 'Huawei' Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.891784] [mm-plugin-manager.c:813] load_plugins(): Loaded plugin 'Iridium' Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.891947] [mm-plugin-manager.c:813] load_plugins(): Loaded plugin 'Linktop' Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.892103] [mm-plugin-manager.c:813] load_plugins(): Loaded plugin 'Longcheer' Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.892251] [mm-plugin-manager.c:813] load_plugins(): Loaded plugin 'Ericsson MBM' Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.892451] [mm-plugin-manager.c:813] load_plugins(): Loaded plugin 'Motorola' Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.892619] [mm-plugin-manager.c:813] load_plugins(): Loaded plugin 'Nokia (Icera)' Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.892782] [mm-plugin-manager.c:813] load_plugins(): Loaded plugin 'Nokia' Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.892961] [mm-plugin-manager.c:813] load_plugins(): Loaded plugin 'Novatel LTE' Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.893136] [mm-plugin-manager.c:813] load_plugins(): Loaded plugin 'Novatel' Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.893294] [mm-plugin-manager.c:813] load_plugins(): Loaded plugin 'Option' Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.893458] [mm-plugin-manager.c:813] load_plugins(): Loaded plugin 'Pantech' Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.893641] [mm-plugin-manager.c:813] load_plugins(): Loaded plugin 'Samsung' Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.893809] [mm-plugin-manager.c:813] load_plugins(): Loaded plugin 'Sierra' Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.893980] [mm-plugin-manager.c:813] load_plugins(): Loaded plugin 'SimTech' Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.894155] [mm-plugin-manager.c:813] load_plugins(): Loaded plugin 'Telit' Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.894321] [mm-plugin-manager.c:813] load_plugins(): Loaded plugin 'Via CBP7' Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.894472] [mm-plugin-manager.c:813] load_plugins(): Loaded plugin 'Wavecom' Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.894641] [mm-plugin-manager.c:813] load_plugins(): Loaded plugin 'X22X' Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.894795] [mm-plugin-manager.c:813] load_plugins(): Loaded plugin 'ZTE' Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.894827] [mm-plugin-manager.c:838] load_plugins(): Successfully loaded 26 plugins Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.895489] [main.c:79] name_acquired_cb(): Service name 'org.freedesktop.ModemManager1' was acquired Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.895534] [mm-manager.c:456] mm_manager_start(): Starting automatic device scan... Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.899170] [mm-manager.c:495] mm_manager_start(): Finished device scan... Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.899761] [mm-manager.c:284] device_added(): (tty/ttyUSB0): port probed only in manual scan Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.899991] [mm-plugin-manager.c:675] mm_plugin_manager_find_device_support(): (Plugin Manager) [/sys/devices/pci0000:00/0000:00:16.3] Checking device support... Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.900079] [mm-plugin.c:322] apply_pre_probing_filters(): (Altair LTE) [ttyS0] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.900101] [mm-plugin.c:322] apply_pre_probing_filters(): (AnyDATA) [ttyS0] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.900122] [mm-plugin.c:254] apply_pre_probing_filters(): (Gobi) [ttyS0] filtered by drivers Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.900147] [mm-plugin.c:254] apply_pre_probing_filters(): (Option High-Speed) [ttyS0] filtered by drivers Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.900166] [mm-plugin.c:322] apply_pre_probing_filters(): (Huawei) [ttyS0] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.900189] [mm-plugin.c:322] apply_pre_probing_filters(): (Linktop) [ttyS0] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.900206] [mm-plugin.c:322] apply_pre_probing_filters(): (Longcheer) [ttyS0] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.900218] [mm-plugin.c:376] apply_pre_probing_filters(): (Ericsson MBM) [ttyS0] filtered by udev tags Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.900235] [mm-plugin.c:322] apply_pre_probing_filters(): (Motorola) [ttyS0] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.900254] [mm-plugin.c:322] apply_pre_probing_filters(): (Nokia (Icera)) [ttyS0] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.900272] [mm-plugin.c:322] apply_pre_probing_filters(): (Novatel LTE) [ttyS0] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.900283] [mm-plugin.c:322] apply_pre_probing_filters(): (Novatel) [ttyS0] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.900457] [mm-plugin.c:254] apply_pre_probing_filters(): (Option) [ttyS0] filtered by drivers Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.900692] [mm-plugin.c:322] apply_pre_probing_filters(): (Pantech) [ttyS0] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.900919] [mm-plugin.c:322] apply_pre_probing_filters(): (Samsung) [ttyS0] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.901145] [mm-plugin.c:254] apply_pre_probing_filters(): (Sierra) [ttyS0] filtered by drivers Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.901388] [mm-plugin.c:322] apply_pre_probing_filters(): (SimTech) [ttyS0] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.901614] [mm-plugin.c:322] apply_pre_probing_filters(): (Telit) [ttyS0] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.901844] [mm-plugin.c:322] apply_pre_probing_filters(): (Wavecom) [ttyS0] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.902064] [mm-plugin.c:322] apply_pre_probing_filters(): (X22X) [ttyS0] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.902287] [mm-plugin.c:322] apply_pre_probing_filters(): (ZTE) [ttyS0] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.902493] [mm-plugin-manager.c:576] build_plugins_list(): (Plugin Manager) [ttyS0] Found '5' plugins to try... Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.902680] [mm-plugin-manager.c:580] build_plugins_list(): (Plugin Manager) [ttyS0] Will try with plugin 'Cinterion' Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.902873] [mm-plugin-manager.c:580] build_plugins_list(): (Plugin Manager) [ttyS0] Will try with plugin 'Iridium' Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.903057] [mm-plugin-manager.c:580] build_plugins_list(): (Plugin Manager) [ttyS0] Will try with plugin 'Nokia' Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.903240] [mm-plugin-manager.c:580] build_plugins_list(): (Plugin Manager) [ttyS0] Will try with plugin 'Via CBP7' Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.903433] [mm-plugin-manager.c:580] build_plugins_list(): (Plugin Manager) [ttyS0] Will try with plugin 'Generic' Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.903633] [mm-plugin.c:772] mm_plugin_supports_port(): (Cinterion) [ttyS0] probe required: 'at, at-vendor' Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.903808] [mm-port-probe.c:1331] mm_port_probe_run(): (tty/ttyS0) launching port probing: 'at, at-vendor' Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.904147] [mm-manager.c:294] device_added(): (tty/ttyS1): port's parent platform driver is not whitelisted Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.904345] [mm-manager.c:294] device_added(): (tty/ttyS2): port's parent platform driver is not whitelisted Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.904573] [mm-manager.c:294] device_added(): (tty/ttyS3): port's parent platform driver is not whitelisted Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.906002] [mm-plugin-manager.c:675] mm_plugin_manager_find_device_support(): (Plugin Manager) [/sys/devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3.1] Checking device support... Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.906114] [mm-plugin.c:322] apply_pre_probing_filters(): (Altair LTE) [wlp0s20u3u1] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.906146] [mm-plugin.c:322] apply_pre_probing_filters(): (AnyDATA) [wlp0s20u3u1] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.906168] [mm-plugin.c:213] apply_pre_probing_filters(): (Cinterion) [wlp0s20u3u1] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.906189] [mm-plugin.c:254] apply_pre_probing_filters(): (Gobi) [wlp0s20u3u1] filtered by drivers Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.906350] [mm-plugin.c:254] apply_pre_probing_filters(): (Option High-Speed) [wlp0s20u3u1] filtered by drivers Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.906612] [mm-plugin.c:322] apply_pre_probing_filters(): (Huawei) [wlp0s20u3u1] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.906856] [mm-plugin.c:213] apply_pre_probing_filters(): (Iridium) [wlp0s20u3u1] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.907078] [mm-plugin.c:213] apply_pre_probing_filters(): (Linktop) [wlp0s20u3u1] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.907297] [mm-plugin.c:213] apply_pre_probing_filters(): (Longcheer) [wlp0s20u3u1] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.907535] [mm-plugin.c:376] apply_pre_probing_filters(): (Ericsson MBM) [wlp0s20u3u1] filtered by udev tags Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.907778] [mm-plugin.c:213] apply_pre_probing_filters(): (Motorola) [wlp0s20u3u1] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.908001] [mm-plugin.c:322] apply_pre_probing_filters(): (Nokia (Icera)) [wlp0s20u3u1] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.908242] [mm-plugin.c:213] apply_pre_probing_filters(): (Nokia) [wlp0s20u3u1] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.908483] [mm-plugin.c:322] apply_pre_probing_filters(): (Novatel LTE) [wlp0s20u3u1] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.908721] [mm-plugin.c:322] apply_pre_probing_filters(): (Novatel) [wlp0s20u3u1] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.908943] [mm-plugin.c:213] apply_pre_probing_filters(): (Option) [wlp0s20u3u1] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.909159] [mm-plugin.c:322] apply_pre_probing_filters(): (Pantech) [wlp0s20u3u1] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.909392] [mm-plugin.c:322] apply_pre_probing_filters(): (Samsung) [wlp0s20u3u1] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.909623] [mm-plugin.c:254] apply_pre_probing_filters(): (Sierra) [wlp0s20u3u1] filtered by drivers Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.909855] [mm-plugin.c:213] apply_pre_probing_filters(): (SimTech) [wlp0s20u3u1] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.910074] [mm-plugin.c:213] apply_pre_probing_filters(): (Telit) [wlp0s20u3u1] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.910289] [mm-plugin.c:213] apply_pre_probing_filters(): (Via CBP7) [wlp0s20u3u1] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.910519] [mm-plugin.c:213] apply_pre_probing_filters(): (Wavecom) [wlp0s20u3u1] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.910734] [mm-plugin.c:213] apply_pre_probing_filters(): (X22X) [wlp0s20u3u1] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.910946] [mm-plugin.c:322] apply_pre_probing_filters(): (ZTE) [wlp0s20u3u1] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.911168] [mm-plugin-manager.c:576] build_plugins_list(): (Plugin Manager) [wlp0s20u3u1] Found '1' plugins to try... Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.911389] [mm-plugin-manager.c:580] build_plugins_list(): (Plugin Manager) [wlp0s20u3u1] Will try with plugin 'Generic' Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.911618] [mm-plugin.c:700] mm_plugin_supports_port(): (Generic) [wlp0s20u3u1] probing deferred until result suggested Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.912147] [mm-plugin-manager.c:675] mm_plugin_manager_find_device_support(): (Plugin Manager) [/sys/devices/pci0000:00/0000:00:14.0/usb1/1-6] Checking device support... Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.912237] [mm-plugin.c:322] apply_pre_probing_filters(): (Altair LTE) [wwp0s20u6c2i12] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.912445] [mm-plugin.c:322] apply_pre_probing_filters(): (AnyDATA) [wwp0s20u6c2i12] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.912668] [mm-plugin.c:213] apply_pre_probing_filters(): (Cinterion) [wwp0s20u6c2i12] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.912886] [mm-plugin.c:254] apply_pre_probing_filters(): (Gobi) [wwp0s20u6c2i12] filtered by drivers Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.913104] [mm-plugin.c:254] apply_pre_probing_filters(): (Option High-Speed) [wwp0s20u6c2i12] filtered by drivers Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.913323] [mm-plugin.c:322] apply_pre_probing_filters(): (Huawei) [wwp0s20u6c2i12] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.913550] [mm-plugin.c:213] apply_pre_probing_filters(): (Iridium) [wwp0s20u6c2i12] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.913765] [mm-plugin.c:213] apply_pre_probing_filters(): (Linktop) [wwp0s20u6c2i12] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.913980] [mm-plugin.c:213] apply_pre_probing_filters(): (Longcheer) [wwp0s20u6c2i12] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.914196] [mm-plugin.c:376] apply_pre_probing_filters(): (Ericsson MBM) [wwp0s20u6c2i12] filtered by udev tags Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.914421] [mm-plugin.c:213] apply_pre_probing_filters(): (Motorola) [wwp0s20u6c2i12] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.914643] [mm-plugin.c:322] apply_pre_probing_filters(): (Nokia (Icera)) [wwp0s20u6c2i12] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.914858] [mm-plugin.c:213] apply_pre_probing_filters(): (Nokia) [wwp0s20u6c2i12] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.915073] [mm-plugin.c:322] apply_pre_probing_filters(): (Novatel LTE) [wwp0s20u6c2i12] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.915288] [mm-plugin.c:322] apply_pre_probing_filters(): (Novatel) [wwp0s20u6c2i12] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.915518] [mm-plugin.c:213] apply_pre_probing_filters(): (Option) [wwp0s20u6c2i12] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.915735] [mm-plugin.c:322] apply_pre_probing_filters(): (Pantech) [wwp0s20u6c2i12] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.915960] [mm-plugin.c:322] apply_pre_probing_filters(): (Samsung) [wwp0s20u6c2i12] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.916180] [mm-plugin.c:254] apply_pre_probing_filters(): (Sierra) [wwp0s20u6c2i12] filtered by drivers Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.916421] [mm-plugin.c:213] apply_pre_probing_filters(): (SimTech) [wwp0s20u6c2i12] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.916644] [mm-plugin.c:213] apply_pre_probing_filters(): (Telit) [wwp0s20u6c2i12] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.916874] [mm-plugin.c:213] apply_pre_probing_filters(): (Via CBP7) [wwp0s20u6c2i12] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.917114] [mm-plugin.c:213] apply_pre_probing_filters(): (Wavecom) [wwp0s20u6c2i12] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.917348] [mm-plugin.c:213] apply_pre_probing_filters(): (X22X) [wwp0s20u6c2i12] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.917593] [mm-plugin.c:322] apply_pre_probing_filters(): (ZTE) [wwp0s20u6c2i12] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.917804] [mm-plugin-manager.c:576] build_plugins_list(): (Plugin Manager) [wwp0s20u6c2i12] Found '1' plugins to try... Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.918021] [mm-plugin-manager.c:580] build_plugins_list(): (Plugin Manager) [wwp0s20u6c2i12] Will try with plugin 'Generic' Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.918251] [mm-plugin.c:700] mm_plugin_supports_port(): (Generic) [wwp0s20u6c2i12] probing deferred until result suggested Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.918792] [mm-plugin-manager.c:675] mm_plugin_manager_find_device_support(): (Plugin Manager) [/sys/devices/pci0000:00/0000:00:14.0/usb2/2-3/2-3.3] Checking device support... Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.918891] [mm-plugin.c:322] apply_pre_probing_filters(): (Altair LTE) [enp0s20u3u3] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.919089] [mm-plugin.c:322] apply_pre_probing_filters(): (AnyDATA) [enp0s20u3u3] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.919323] [mm-plugin.c:213] apply_pre_probing_filters(): (Cinterion) [enp0s20u3u3] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.919573] [mm-plugin.c:254] apply_pre_probing_filters(): (Gobi) [enp0s20u3u3] filtered by drivers Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.919801] [mm-plugin.c:254] apply_pre_probing_filters(): (Option High-Speed) [enp0s20u3u3] filtered by drivers Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.920022] [mm-plugin.c:322] apply_pre_probing_filters(): (Huawei) [enp0s20u3u3] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.920237] [mm-plugin.c:213] apply_pre_probing_filters(): (Iridium) [enp0s20u3u3] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.920462] [mm-plugin.c:213] apply_pre_probing_filters(): (Linktop) [enp0s20u3u3] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.920685] [mm-plugin.c:213] apply_pre_probing_filters(): (Longcheer) [enp0s20u3u3] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.920904] [mm-plugin.c:376] apply_pre_probing_filters(): (Ericsson MBM) [enp0s20u3u3] filtered by udev tags Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.921118] [mm-plugin.c:213] apply_pre_probing_filters(): (Motorola) [enp0s20u3u3] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.921340] [mm-plugin.c:322] apply_pre_probing_filters(): (Nokia (Icera)) [enp0s20u3u3] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.921558] [mm-plugin.c:213] apply_pre_probing_filters(): (Nokia) [enp0s20u3u3] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.921773] [mm-plugin.c:322] apply_pre_probing_filters(): (Novatel LTE) [enp0s20u3u3] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.921992] [mm-plugin.c:322] apply_pre_probing_filters(): (Novatel) [enp0s20u3u3] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.922206] [mm-plugin.c:213] apply_pre_probing_filters(): (Option) [enp0s20u3u3] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.922445] [mm-plugin.c:322] apply_pre_probing_filters(): (Pantech) [enp0s20u3u3] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.922662] [mm-plugin.c:322] apply_pre_probing_filters(): (Samsung) [enp0s20u3u3] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.922875] [mm-plugin.c:254] apply_pre_probing_filters(): (Sierra) [enp0s20u3u3] filtered by drivers Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.923092] [mm-plugin.c:213] apply_pre_probing_filters(): (SimTech) [enp0s20u3u3] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.923321] [mm-plugin.c:213] apply_pre_probing_filters(): (Telit) [enp0s20u3u3] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.923534] [mm-plugin.c:213] apply_pre_probing_filters(): (Via CBP7) [enp0s20u3u3] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.923756] [mm-plugin.c:213] apply_pre_probing_filters(): (Wavecom) [enp0s20u3u3] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.923970] [mm-plugin.c:213] apply_pre_probing_filters(): (X22X) [enp0s20u3u3] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.924192] [mm-plugin.c:322] apply_pre_probing_filters(): (ZTE) [enp0s20u3u3] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.924420] [mm-plugin-manager.c:576] build_plugins_list(): (Plugin Manager) [enp0s20u3u3] Found '1' plugins to try... Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.924633] [mm-plugin-manager.c:580] build_plugins_list(): (Plugin Manager) [enp0s20u3u3] Will try with plugin 'Generic' Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.924854] [mm-plugin.c:700] mm_plugin_supports_port(): (Generic) [enp0s20u3u3] probing deferred until result suggested Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.925302] [mm-plugin-manager.c:675] mm_plugin_manager_find_device_support(): (Plugin Manager) [/sys/devices/pci0000:00/0000:00:1c.2/0000:02:00.0] Checking device support... Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.925465] [mm-plugin.c:322] apply_pre_probing_filters(): (Altair LTE) [wlp2s0] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.925666] [mm-plugin.c:322] apply_pre_probing_filters(): (AnyDATA) [wlp2s0] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.925890] [mm-plugin.c:213] apply_pre_probing_filters(): (Cinterion) [wlp2s0] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.926114] [mm-plugin.c:254] apply_pre_probing_filters(): (Gobi) [wlp2s0] filtered by drivers Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.926346] [mm-plugin.c:254] apply_pre_probing_filters(): (Option High-Speed) [wlp2s0] filtered by drivers Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.926564] [mm-plugin.c:322] apply_pre_probing_filters(): (Huawei) [wlp2s0] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.926787] [mm-plugin.c:213] apply_pre_probing_filters(): (Iridium) [wlp2s0] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.927005] [mm-plugin.c:213] apply_pre_probing_filters(): (Linktop) [wlp2s0] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.927227] [mm-plugin.c:213] apply_pre_probing_filters(): (Longcheer) [wlp2s0] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.927470] [mm-plugin.c:376] apply_pre_probing_filters(): (Ericsson MBM) [wlp2s0] filtered by udev tags Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.927698] [mm-plugin.c:213] apply_pre_probing_filters(): (Motorola) [wlp2s0] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.927952] [mm-plugin.c:322] apply_pre_probing_filters(): (Nokia (Icera)) [wlp2s0] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.928158] [mm-plugin.c:213] apply_pre_probing_filters(): (Nokia) [wlp2s0] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.928390] [mm-plugin.c:322] apply_pre_probing_filters(): (Novatel LTE) [wlp2s0] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.928622] [mm-plugin.c:322] apply_pre_probing_filters(): (Novatel) [wlp2s0] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.928851] [mm-plugin.c:213] apply_pre_probing_filters(): (Option) [wlp2s0] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.929085] [mm-plugin.c:322] apply_pre_probing_filters(): (Pantech) [wlp2s0] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.929304] [mm-plugin.c:322] apply_pre_probing_filters(): (Samsung) [wlp2s0] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.929529] [mm-plugin.c:254] apply_pre_probing_filters(): (Sierra) [wlp2s0] filtered by drivers Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.929747] [mm-plugin.c:213] apply_pre_probing_filters(): (SimTech) [wlp2s0] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.929962] [mm-plugin.c:213] apply_pre_probing_filters(): (Telit) [wlp2s0] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.930178] [mm-plugin.c:213] apply_pre_probing_filters(): (Via CBP7) [wlp2s0] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.930403] [mm-plugin.c:213] apply_pre_probing_filters(): (Wavecom) [wlp2s0] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.930638] [mm-plugin.c:213] apply_pre_probing_filters(): (X22X) [wlp2s0] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.930870] [mm-plugin.c:322] apply_pre_probing_filters(): (ZTE) [wlp2s0] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.931090] [mm-plugin-manager.c:576] build_plugins_list(): (Plugin Manager) [wlp2s0] Found '1' plugins to try... Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.931304] [mm-plugin-manager.c:580] build_plugins_list(): (Plugin Manager) [wlp2s0] Will try with plugin 'Generic' Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.931535] [mm-plugin.c:700] mm_plugin_supports_port(): (Generic) [wlp2s0] probing deferred until result suggested Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.932373] [mm-plugin.c:213] apply_pre_probing_filters(): (Altair LTE) [cdc-wdm0] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.932409] [mm-plugin.c:322] apply_pre_probing_filters(): (AnyDATA) [cdc-wdm0] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.932466] [mm-plugin.c:213] apply_pre_probing_filters(): (Cinterion) [cdc-wdm0] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.932703] [mm-plugin.c:254] apply_pre_probing_filters(): (Gobi) [cdc-wdm0] filtered by drivers Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.932929] [mm-plugin.c:213] apply_pre_probing_filters(): (Option High-Speed) [cdc-wdm0] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.933152] [mm-plugin.c:322] apply_pre_probing_filters(): (Huawei) [cdc-wdm0] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.933383] [mm-plugin.c:213] apply_pre_probing_filters(): (Iridium) [cdc-wdm0] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.933627] [mm-plugin.c:213] apply_pre_probing_filters(): (Linktop) [cdc-wdm0] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.933844] [mm-plugin.c:213] apply_pre_probing_filters(): (Longcheer) [cdc-wdm0] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.934069] [mm-plugin.c:376] apply_pre_probing_filters(): (Ericsson MBM) [cdc-wdm0] filtered by udev tags Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.934286] [mm-plugin.c:213] apply_pre_probing_filters(): (Motorola) [cdc-wdm0] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.934529] [mm-plugin.c:213] apply_pre_probing_filters(): (Nokia (Icera)) [cdc-wdm0] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.934760] [mm-plugin.c:213] apply_pre_probing_filters(): (Nokia) [cdc-wdm0] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.934994] [mm-plugin.c:213] apply_pre_probing_filters(): (Novatel LTE) [cdc-wdm0] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.935220] [mm-plugin.c:322] apply_pre_probing_filters(): (Novatel) [cdc-wdm0] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.935464] [mm-plugin.c:213] apply_pre_probing_filters(): (Option) [cdc-wdm0] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.935690] [mm-plugin.c:322] apply_pre_probing_filters(): (Pantech) [cdc-wdm0] filtered by vendor/product IDs Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.935906] [mm-plugin.c:213] apply_pre_probing_filters(): (Samsung) [cdc-wdm0] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.936130] [mm-plugin.c:254] apply_pre_probing_filters(): (Sierra) [cdc-wdm0] filtered by drivers Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.936366] [mm-plugin.c:213] apply_pre_probing_filters(): (SimTech) [cdc-wdm0] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.936603] [mm-plugin.c:213] apply_pre_probing_filters(): (Telit) [cdc-wdm0] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.936839] [mm-plugin.c:213] apply_pre_probing_filters(): (Via CBP7) [cdc-wdm0] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.937060] [mm-plugin.c:213] apply_pre_probing_filters(): (Wavecom) [cdc-wdm0] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.937279] [mm-plugin.c:213] apply_pre_probing_filters(): (X22X) [cdc-wdm0] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.937513] [mm-plugin.c:213] apply_pre_probing_filters(): (ZTE) [cdc-wdm0] filtered by subsystem Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.937757] [mm-plugin-manager.c:576] build_plugins_list(): (Plugin Manager) [cdc-wdm0] Found '1' plugins to try... Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.937972] [mm-plugin-manager.c:580] build_plugins_list(): (Plugin Manager) [cdc-wdm0] Will try with plugin 'Generic' Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.938235] [mm-plugin.c:772] mm_plugin_supports_port(): (Generic) [cdc-wdm0] probe required: 'mbim' Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.938458] [mm-port-probe.c:1331] mm_port_probe_run(): (usbmisc/cdc-wdm0) launching port probing: 'mbim' Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.938716] [mm-plugin-manager.c:505] plugin_supports_port_ready(): (Plugin Manager) [wlp0s20u3u1] deferring support check until result suggested Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.938926] [mm-plugin-manager.c:505] plugin_supports_port_ready(): (Plugin Manager) [wwp0s20u6c2i12] deferring support check until result suggested Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.939149] [mm-plugin-manager.c:505] plugin_supports_port_ready(): (Plugin Manager) [enp0s20u3u3] deferring support check until result suggested Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.939382] [mm-plugin-manager.c:505] plugin_supports_port_ready(): (Plugin Manager) [wlp2s0] deferring support check until result suggested Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.939844] [mm-serial-port.c:892] mm_serial_port_open(): (ttyS0) opening serial port... Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.941934] [mm-serial-port.c:969] mm_serial_port_open(): (ttyS0) device open count is 1 (open) Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.942052] [mm-port-probe.c:536] wdm_probe_mbim(): (usbmisc/cdc-wdm0) probing MBIM... Aug 12 12:20:13 BCPHost ModemManager[2758]: [1439382013.042661] [mm-at-serial-port.c:436] debug_log(): (ttyS0): --> 'AT' Aug 12 12:20:15 BCPHost ModemManager[2758]: [1439382015.381754] [mm-plugin-manager.c:646] min_probing_timeout_cb(): (Plugin Manager) [/sys/devices/pci0000:00/0000:00:16.3] Minimum probing time consumed Aug 12 12:20:15 BCPHost ModemManager[2758]: [1439382015.381960] [mm-plugin-manager.c:646] min_probing_timeout_cb(): (Plugin Manager) [/sys/devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3.1] Minimum probing time consumed Aug 12 12:20:15 BCPHost ModemManager[2758]: [1439382015.382051] [mm-plugin-manager.c:341] suggest_port_probe_result(): (Plugin Manager) [wlp0s20u3u1] deferred task cancelled, no suggested plugin Aug 12 12:20:15 BCPHost ModemManager[2758]: [1439382015.382139] [mm-plugin-manager.c:646] min_probing_timeout_cb(): (Plugin Manager) [/sys/devices/pci0000:00/0000:00:14.0/usb1/1-6] Minimum probing time consumed Aug 12 12:20:15 BCPHost ModemManager[2758]: [1439382015.382196] [mm-plugin-manager.c:646] min_probing_timeout_cb(): (Plugin Manager) [/sys/devices/pci0000:00/0000:00:14.0/usb2/2-3/2-3.3] Minimum probing time consumed Aug 12 12:20:15 BCPHost ModemManager[2758]: [1439382015.382249] [mm-plugin-manager.c:341] suggest_port_probe_result(): (Plugin Manager) [enp0s20u3u3] deferred task cancelled, no suggested plugin Aug 12 12:20:15 BCPHost ModemManager[2758]: [1439382015.382311] [mm-plugin-manager.c:646] min_probing_timeout_cb(): (Plugin Manager) [/sys/devices/pci0000:00/0000:00:1c.2/0000:02:00.0] Minimum probing time consumed Aug 12 12:20:15 BCPHost ModemManager[2758]: [1439382015.382420] [mm-plugin-manager.c:341] suggest_port_probe_result(): (Plugin Manager) [wlp2s0] deferred task cancelled, no suggested plugin Aug 12 12:20:15 BCPHost ModemManager[2758]: [1439382015.382500] [mm-plugin-manager.c:164] port_probe_context_finished(): (Plugin Manager) [wlp0s20u3u1] not supported by any plugin Aug 12 12:20:15 BCPHost ModemManager[2758]: [1439382015.382566] [mm-device.c:339] mm_device_ignore_port(): Fully ignoring port 'net/wlp0s20u3u1' from now on Aug 12 12:20:15 BCPHost ModemManager[2758]: [1439382015.382622] [mm-plugin-manager.c:285] port_probe_context_finished(): (Plugin Manager) 'wlp0s20u3u1' port probe finished, last one in device Aug 12 12:20:15 BCPHost ModemManager[2758]: [1439382015.382674] [mm-plugin-manager.c:107] find_device_support_context_complete_and_free(): (Plugin Manager) [/sys/devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3.1] device support check finished in '2.476610' seconds Aug 12 12:20:15 BCPHost ModemManager[2758]: [1439382015.382833] [mm-manager.c:140] find_device_support_ready(): Couldn't find support for device at '/sys/devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3.1': not supported by any plugin Aug 12 12:20:15 BCPHost ModemManager[2758]: [1439382015.383384] [mm-plugin-manager.c:164] port_probe_context_finished(): (Plugin Manager) [enp0s20u3u3] not supported by any plugin Aug 12 12:20:15 BCPHost ModemManager[2758]: [1439382015.384151] [mm-device.c:339] mm_device_ignore_port(): Fully ignoring port 'net/enp0s20u3u3' from now on Aug 12 12:20:15 BCPHost ModemManager[2758]: [1439382015.384901] [mm-plugin-manager.c:285] port_probe_context_finished(): (Plugin Manager) 'enp0s20u3u3' port probe finished, last one in device Aug 12 12:20:15 BCPHost ModemManager[2758]: [1439382015.385662] [mm-plugin-manager.c:107] find_device_support_context_complete_and_free(): (Plugin Manager) [/sys/devices/pci0000:00/0000:00:14.0/usb2/2-3/2-3.3] device support check finished in '2.466816' seconds Aug 12 12:20:15 BCPHost ModemManager[2758]: [1439382015.386435] [mm-manager.c:140] find_device_support_ready(): Couldn't find support for device at '/sys/devices/pci0000:00/0000:00:14.0/usb2/2-3/2-3.3': not supported by any plugin Aug 12 12:20:15 BCPHost ModemManager[2758]: [1439382015.387182] [mm-plugin-manager.c:164] port_probe_context_finished(): (Plugin Manager) [wlp2s0] not supported by any plugin Aug 12 12:20:15 BCPHost ModemManager[2758]: [1439382015.387875] [mm-device.c:339] mm_device_ignore_port(): Fully ignoring port 'net/wlp2s0' from now on Aug 12 12:20:15 BCPHost ModemManager[2758]: [1439382015.388572] [mm-plugin-manager.c:285] port_probe_context_finished(): (Plugin Manager) 'wlp2s0' port probe finished, last one in device Aug 12 12:20:15 BCPHost ModemManager[2758]: [1439382015.389258] [mm-plugin-manager.c:107] find_device_support_context_complete_and_free(): (Plugin Manager) [/sys/devices/pci0000:00/0000:00:1c.2/0000:02:00.0] device support check finished in '2.463837' seconds Aug 12 12:20:15 BCPHost ModemManager[2758]: [1439382015.389956] [mm-manager.c:140] find_device_support_ready(): Couldn't find support for device at '/sys/devices/pci0000:00/0000:00:1c.2/0000:02:00.0': not supported by any plugin Aug 12 12:20:16 BCPHost ModemManager[2758]: [1439382016.383328] [mm-port-probe-at.c:43] mm_port_probe_response_processor_is_at(): Parsing AT got: 'Serial command timed out' Aug 12 12:20:16 BCPHost ModemManager[2758]: [1439382016.383408] [mm-at-serial-port.c:436] debug_log(): (ttyS0): --> 'AT' Aug 12 12:20:17 BCPHost ModemManager[2758]: [1439382017.066582] [mm-port-probe.c:300] mm_port_probe_set_result_mbim(): (usbmisc/cdc-wdm0) port is MBIM-capable Aug 12 12:20:17 BCPHost ModemManager[2758]: [1439382017.130574] [mm-plugin-manager.c:417] plugin_supports_port_ready(): (Plugin Manager) (Generic) [cdc-wdm0] found best plugin for port Aug 12 12:20:17 BCPHost ModemManager[2758]: [1439382017.130661] [mm-plugin-manager.c:334] suggest_port_probe_result(): (Plugin Manager) (Generic) [wwp0s20u6c2i12] deferred task completed, got suggested plugin Aug 12 12:20:17 BCPHost ModemManager[2758]: [1439382017.130693] [mm-plugin-manager.c:274] port_probe_context_finished(): (Plugin Manager) 'cdc-wdm0' port probe finished, still 1 running probes in this device (wwp0s20u6c2i12) Aug 12 12:20:17 BCPHost ModemManager[2758]: [1439382017.130746] [mm-plugin.c:700] mm_plugin_supports_port(): (Generic) [wwp0s20u6c2i12] probing deferred until result suggested Aug 12 12:20:17 BCPHost ModemManager[2758]: [1439382017.130785] [mm-plugin-manager.c:485] plugin_supports_port_ready(): (Plugin Manager) (Generic) [wwp0s20u6c2i12] task completed, got suggested plugin Aug 12 12:20:17 BCPHost ModemManager[2758]: [1439382017.130805] [mm-plugin-manager.c:285] port_probe_context_finished(): (Plugin Manager) 'wwp0s20u6c2i12' port probe finished, last one in device Aug 12 12:20:17 BCPHost ModemManager[2758]: [1439382017.130823] [mm-plugin-manager.c:107] find_device_support_context_complete_and_free(): (Plugin Manager) [/sys/devices/pci0000:00/0000:00:14.0/usb1/1-6] device support check finished in '4.218634' seconds Aug 12 12:20:17 BCPHost ModemManager[2758]: [1439382017.130854] [mm-device.c:486] mm_device_create_modem(): Creating modem with plugin 'Generic' and '2' ports Aug 12 12:20:17 BCPHost ModemManager[2758]: [1439382017.130883] [generic/mm-plugin-generic.c:73] create_modem(): MBIM-powered generic modem found... Aug 12 12:20:17 BCPHost ModemManager[2758]: [1439382017.131956] [mm-base-modem.c:275] mm_base_modem_grab_port(): (cdc-wdm0) type 'mbim' claimed by /sys/devices/pci0000:00/0000:00:14.0/usb1/1-6 Aug 12 12:20:17 BCPHost ModemManager[2758]: [1439382017.132000] [mm-base-modem.c:275] mm_base_modem_grab_port(): (wwp0s20u6c2i12) type 'net' claimed by /sys/devices/pci0000:00/0000:00:14.0/usb1/1-6 Aug 12 12:20:17 BCPHost ModemManager[2758]: [1439382017.132018] [mm-base-modem.c:1056] log_port(): (/sys/devices/pci0000:00/0000:00:14.0/usb1/1-6) net/wwp0s20u6c2i12 data (primary) Aug 12 12:20:17 BCPHost ModemManager[2758]: [1439382017.132028] [mm-base-modem.c:1056] log_port(): (/sys/devices/pci0000:00/0000:00:14.0/usb1/1-6) usb/cdc-wdm0 mbim (primary) Aug 12 12:20:17 BCPHost ModemManager[2758]: [1439382017.132237] [mm-manager.c:149] find_device_support_ready(): Modem for device at '/sys/devices/pci0000:00/0000:00:14.0/usb1/1-6' successfully created Aug 12 12:20:17 BCPHost ModemManager[2758]: [1439382017.930608] [mm-broadband-modem-mbim.c:1269] parent_initialization_started_ready(): Couldn't start parent initialization: Couldn't open ports during modem initialization: Couldn't get primary port Aug 12 12:20:17 BCPHost ModemManager[2758]: [1439382017.933012] [mm-broadband-modem-mbim.c:202] modem_load_current_capabilities(): loading current capabilities... Aug 12 12:20:18 BCPHost ModemManager[2758]: [1439382017.994713] [mm-broadband-modem-mbim.c:132] modem_load_current_capabilities_finish(): loaded modem capabilities: gsm-umts, lte Aug 12 12:20:18 BCPHost ModemManager[2758]: [1439382017.994884] [mm-iface-modem.c:4074] interface_initialization_step(): Modem allows up to 1 bearers Aug 12 12:20:18 BCPHost ModemManager[2758]: [1439382017.994920] [mm-bearer-list.c:273] mm_bearer_list_new(): Creating bearer list (max: 1, max active: 1) Aug 12 12:20:18 BCPHost ModemManager[2758]: [1439382017.995244] [mm-modem-helpers.c:148] mm_create_device_identifier(): Device ID source '0000119900009041353516050360690SWI9X15C_01.12MBIM[1199:9041]Generic' Aug 12 12:20:18 BCPHost ModemManager[2758]: [1439382017.995272] [mm-modem-helpers.c:149] mm_create_device_identifier(): Device ID '6407dc87af7e1f64ac8ae42d2ee6cb15b76a012a' Aug 12 12:20:18 BCPHost ModemManager[2758]: [1439382018.122459] [mm-iface-modem.c:2895] update_lock_info_context_step(): SIM is ready, and no need for the after SIM unlock step... Aug 12 12:20:18 BCPHost ModemManager[2758]: [1439382018.282984] [mm-iface-modem-3gpp-ussd.c:786] check_support_ready(): USSD support check failed: 'No AT port available to run command' Aug 12 12:20:18 BCPHost ModemManager[2758]: [1439382018.283043] [mm-broadband-modem.c:8911] iface_modem_3gpp_ussd_initialize_ready(): Couldn't initialize interface: 'USSD not supported' Aug 12 12:20:18 BCPHost ModemManager[2758]: [1439382018.283630] [mm-broadband-modem-mbim.c:2330] messaging_check_support(): Messaging capabilities supported Aug 12 12:20:18 BCPHost ModemManager[2758]: [1439382018.283713] [mm-iface-modem-messaging.c:1133] load_supported_storages_ready(): Supported storages loaded: Aug 12 12:20:18 BCPHost ModemManager[2758]: [1439382018.283730] [mm-iface-modem-messaging.c:1134] load_supported_storages_ready(): mem1 (list/read/delete) storages: 'mt' Aug 12 12:20:18 BCPHost ModemManager[2758]: [1439382018.283745] [mm-iface-modem-messaging.c:1135] load_supported_storages_ready(): mem2 (write/send) storages: 'mt' Aug 12 12:20:18 BCPHost ModemManager[2758]: [1439382018.283758] [mm-iface-modem-messaging.c:1136] load_supported_storages_ready(): mem3 (reception) storages: 'mt' Aug 12 12:20:18 BCPHost ModemManager[2758]: [1439382018.283999] [mm-broadband-modem.c:8915] iface_modem_time_initialize_ready(): Couldn't initialize interface: 'Time not supported' Aug 12 12:20:18 BCPHost ModemManager[2758]: [1439382018.284184] [mm-broadband-modem.c:8916] iface_modem_signal_initialize_ready(): Couldn't initialize interface: 'Extended Signal information not supported' Aug 12 12:20:18 BCPHost ModemManager[2758]: [1439382018.284442] [mm-broadband-modem.c:8917] iface_modem_oma_initialize_ready(): Couldn't initialize interface: 'OMA not supported' Aug 12 12:20:18 BCPHost ModemManager[2758]: [1439382018.284580] [mm-broadband-modem.c:8918] iface_modem_firmware_initialize_ready(): Couldn't initialize interface: 'Firmware not supported' Aug 12 12:20:18 BCPHost ModemManager[2758]: [1439382018.288554] [mm-iface-modem.c:1203] __iface_modem_update_state_internal(): Modem: state changed (unknown -> disabled) Aug 12 12:20:18 BCPHost ModemManager[2758]: [1439382018.288919] [mm-base-modem.c:1025] initialize_ready(): modem properly initialized Aug 12 12:20:18 BCPHost ModemManager[2758]: [1439382018.290055] [mm-device.c:416] export_modem(): Exported modem '/sys/devices/pci0000:00/0000:00:14.0/usb1/1-6' at path '/org/freedesktop/ModemManager1/Modem/0' Aug 12 12:20:18 BCPHost ModemManager[2758]: [1439382018.290103] [mm-device.c:424] export_modem(): (/org/freedesktop/ModemManager1/Modem/0): 'Generic' modem, VID 0x1199 PID 0x9041 (usb) Aug 12 12:20:19 BCPHost ModemManager[2758]: [1439382019.380460] [mm-port-probe-at.c:43] mm_port_probe_response_processor_is_at(): Parsing AT got: 'Serial command timed out' Aug 12 12:20:19 BCPHost ModemManager[2758]: [1439382019.380780] [mm-at-serial-port.c:436] debug_log(): (ttyS0): --> 'AT' Aug 12 12:20:20 BCPHost chronyd[669]: Selected source 212.186.250.154 Aug 12 12:20:22 BCPHost ModemManager[2758]: [1439382022.382382] [mm-port-probe-at.c:43] mm_port_probe_response_processor_is_at(): Parsing AT got: 'Serial command timed out' Aug 12 12:20:22 BCPHost ModemManager[2758]: [1439382022.382503] [mm-port-probe.c:161] mm_port_probe_set_result_at(): (tty/ttyS0) port is not AT-capable Aug 12 12:20:22 BCPHost ModemManager[2758]: [1439382022.382635] [mm-serial-port.c:1015] mm_serial_port_close(): (ttyS0) device open count is 0 (close) Aug 12 12:20:22 BCPHost ModemManager[2758]: [1439382022.382688] [mm-serial-port.c:1031] mm_serial_port_close(): (ttyS0) closing serial port... Aug 12 12:20:22 BCPHost ModemManager[2758]: [1439382022.382832] [mm-serial-port.c:1064] mm_serial_port_close(): (ttyS0) serial port closed Aug 12 12:20:22 BCPHost ModemManager[2758]: [1439382022.382897] [mm-serial-port.c:1132] mm_serial_port_close_force(): (ttyS0) forced to close port Aug 12 12:20:22 BCPHost ModemManager[2758]: [1439382022.382994] [mm-plugin.c:425] apply_post_probing_filters(): (Cinterion) [ttyS0] filtered by vendor strings Aug 12 12:20:22 BCPHost ModemManager[2758]: [1439382022.383229] [mm-plugin.c:772] mm_plugin_supports_port(): (Iridium) [ttyS0] probe required: 'at, at-vendor, at-product' Aug 12 12:20:22 BCPHost ModemManager[2758]: [1439382022.383382] [mm-plugin.c:450] apply_post_probing_filters(): (Iridium) [ttyS0] filtered as no vendor/product strings given Aug 12 12:20:22 BCPHost ModemManager[2758]: [1439382022.383485] [mm-plugin.c:772] mm_plugin_supports_port(): (Nokia) [ttyS0] probe required: 'at, at-vendor, at-icera' Aug 12 12:20:22 BCPHost ModemManager[2758]: [1439382022.383576] [mm-plugin.c:425] apply_post_probing_filters(): (Nokia) [ttyS0] filtered by vendor strings Aug 12 12:20:22 BCPHost ModemManager[2758]: [1439382022.383661] [mm-plugin.c:772] mm_plugin_supports_port(): (Via CBP7) [ttyS0] probe required: 'at, at-vendor, at-product' Aug 12 12:20:22 BCPHost ModemManager[2758]: [1439382022.383736] [mm-plugin.c:450] apply_post_probing_filters(): (Via CBP7) [ttyS0] filtered as no vendor/product strings given Aug 12 12:20:22 BCPHost ModemManager[2758]: [1439382022.383813] [mm-plugin.c:772] mm_plugin_supports_port(): (Generic) [ttyS0] probe required: 'at, qcdm' Aug 12 12:20:22 BCPHost ModemManager[2758]: [1439382022.384391] [mm-port-probe.c:1331] mm_port_probe_run(): (tty/ttyS0) launching port probing: 'qcdm' Aug 12 12:20:22 BCPHost ModemManager[2758]: [1439382022.384853] [mm-port-probe.c:657] serial_probe_qcdm(): (tty/ttyS0) probing QCDM... Aug 12 12:20:22 BCPHost ModemManager[2758]: [1439382022.385378] [mm-serial-port.c:892] mm_serial_port_open(): (ttyS0) opening serial port... Aug 12 12:20:22 BCPHost ModemManager[2758]: [1439382022.387689] [mm-serial-port.c:969] mm_serial_port_open(): (ttyS0) device open count is 1 (open) Aug 12 12:20:22 BCPHost ModemManager[2758]: [1439382022.387931] [mm-qcdm-serial-port.c:205] debug_log(): (ttyS0): --> 7e 00 78 f0 7e Aug 12 12:20:25 BCPHost ModemManager[2758]: [1439382025.382404] [mm-qcdm-serial-port.c:205] debug_log(): (ttyS0): --> 7e 00 78 f0 7e Aug 12 12:20:28 BCPHost ModemManager[2758]: [1439382028.382810] [mm-port-probe.c:257] mm_port_probe_set_result_qcdm(): (tty/ttyS0) port is not QCDM-capable Aug 12 12:20:28 BCPHost ModemManager[2758]: [1439382028.383012] [mm-serial-port.c:1015] mm_serial_port_close(): (ttyS0) device open count is 0 (close) Aug 12 12:20:28 BCPHost ModemManager[2758]: [1439382028.383080] [mm-serial-port.c:1031] mm_serial_port_close(): (ttyS0) closing serial port... Aug 12 12:20:28 BCPHost ModemManager[2758]: [1439382028.383273] [mm-serial-port.c:1064] mm_serial_port_close(): (ttyS0) serial port closed Aug 12 12:20:28 BCPHost ModemManager[2758]: [1439382028.383376] [mm-serial-port.c:1132] mm_serial_port_close_force(): (ttyS0) forced to close port Aug 12 12:20:28 BCPHost ModemManager[2758]: [1439382028.383494] [mm-plugin-manager.c:417] plugin_supports_port_ready(): (Plugin Manager) (Generic) [ttyS0] found best plugin for port Aug 12 12:20:28 BCPHost ModemManager[2758]: [1439382028.383570] [mm-plugin-manager.c:285] port_probe_context_finished(): (Plugin Manager) 'ttyS0' port probe finished, last one in device Aug 12 12:20:28 BCPHost ModemManager[2758]: [1439382028.383608] [mm-plugin-manager.c:107] find_device_support_context_complete_and_free(): (Plugin Manager) [/sys/devices/pci0000:00/0000:00:16.3] device support check finished in '15.483583' seconds Aug 12 12:20:28 BCPHost ModemManager[2758]: [1439382028.383670] [mm-device.c:486] mm_device_create_modem(): Creating modem with plugin 'Generic' and '1' ports Aug 12 12:20:28 BCPHost ModemManager[2758]: [1439382028.384363] [mm-plugin.c:900] mm_plugin_create_modem(): Could not grab port (tty/ttyS0): 'Cannot add port 'tty/ttyS0', unhandled serial type' Aug 12 12:20:28 BCPHost ModemManager[2758]: [1439382028.384465] [mm-base-modem.c:1556] finalize(): Modem (Generic) '/sys/devices/pci0000:00/0000:00:16.3' completely disposed Aug 12 12:20:28 BCPHost ModemManager[2758]: [1439382028.384508] [mm-manager.c:145] find_device_support_ready(): Couldn't create modem for device at '/sys/devices/pci0000:00/0000:00:16.3': Failed to find primary AT port mmcli –m 0 finds my modem: /org/freedesktop/ModemManager1/Modem/0 (device id '6407dc87af7e1f64ac8ae42d2ee6cb15b76a012a') ------------------------- Hardware | manufacturer: 'Generic' | model: 'MBIM [1199:9041]' | revision: 'SWI9X15C_01.12' | supported: 'gsm-umts, lte' | current: 'gsm-umts, lte' | equipment id: '353516050360690' ------------------------- System | device: '/sys/devices/pci0000:00/0000:00:14.0/usb1/1-6' | drivers: 'cdc_mbim' | plugin: 'Generic' | primary port: 'cdc-wdm0' | ports: 'cdc-wdm0 (mbim), wwp0s20u6c2i12 (net)' ------------------------- Numbers | own : 'unknown' ------------------------- Status | lock: 'none' | unlock retries: 'sim-pin2 (3)' | state: 'disabled' | power state: 'on' | access tech: 'unknown' | signal quality: '0' (cached) ------------------------- Modes | supported: 'allowed: 2g, 3g, 4g; preferred: none' | current: 'allowed: 2g, 3g, 4g; preferred: none' ------------------------- Bands | supported: 'unknown' | current: 'unknown' ------------------------- IP | supported: 'ipv4, ipv6, ipv4v6' ------------------------- 3GPP | imei: '353516050360690' | enabled locks: 'fixed-dialing' | operator id: 'unknown' | operator name: 'unknown' | registration: 'unknown' ------------------------- SIM | path: '/org/freedesktop/ModemManager1/SIM/0' Enabling the modem: mmcli –m 0 –e Log: Aug 12 12:26:47 BCPHost ModemManager[2758]: [1439382407.196200] [mm-iface-modem.c:1203] __iface_modem_update_state_internal(): Modem /org/freedesktop/ModemManager1/Modem/0: state changed (disabled -> enabling) Aug 12 12:26:47 BCPHost ModemManager[2758]: [1439382407.196481] [mm-broadband-modem.c:7916] enabling_started(): Skipping modem initialization: not required Aug 12 12:26:47 BCPHost ModemManager[2758]: [1439382407.196536] [mm-broadband-modem-mbim.c:1196] parent_enabling_started_ready(): Couldn't start parent enabling: Couldn't open ports during modem enabling: Couldn't get primary port Aug 12 12:26:47 BCPHost ModemManager[2758]: [1439382407.212570] [mm-iface-modem.c:3056] set_power_state(): No need to change power state: already in 'on' power state Aug 12 12:26:47 BCPHost ModemManager[2758]: [1439382407.212649] [mm-broadband-modem.c:8505] enabling_step(): Modem has 3GPP capabilities, enabling the Modem 3GPP interface... Aug 12 12:26:47 BCPHost ModemManager[2758]: [1439382407.212693] [mm-broadband-modem-mbim.c:1813] common_setup_cleanup_unsolicited_events(): Supported notifications: signal (yes), registration (no), sms (no) Aug 12 12:26:47 BCPHost ModemManager[2758]: [1439382407.212745] [mm-broadband-modem-mbim.c:1943] common_enable_disable_unsolicited_events(): Enabled notifications: signal (yes), registration (no), sms (no) Aug 12 12:26:47 BCPHost ModemManager[2758]: [1439382407.244547] [mm-broadband-modem-mbim.c:1813] common_setup_cleanup_unsolicited_events(): Supported notifications: signal (yes), registration (yes), sms (no) Aug 12 12:26:47 BCPHost ModemManager[2758]: [1439382407.244643] [mm-broadband-modem-mbim.c:1943] common_enable_disable_unsolicited_events(): Enabled notifications: signal (yes), registration (yes), sms (no) Aug 12 12:26:47 BCPHost ModemManager[2758]: [1439382407.276551] [mm-iface-modem-3gpp.c:745] mm_iface_modem_3gpp_run_registration_checks(): Running registration checks (CS: 'yes', PS: 'yes', EPS: 'no') Aug 12 12:26:47 BCPHost ModemManager[2758]: [1439382407.308861] [mm-iface-modem-3gpp.c:1090] update_registration_state(): Modem /org/freedesktop/ModemManager1/Modem/0: 3GPP Registration state changed (unknown -> registering) Aug 12 12:26:47 BCPHost ModemManager[2758]: [1439382407.309037] [mm-iface-modem.c:726] mm_iface_modem_update_access_technologies(): Modem /org/freedesktop/ModemManager1/Modem/0: access technology changed (unknown -> umts, hsdpa, hsupa) Aug 12 12:26:47 BCPHost ModemManager[2758]: [1439382407.309515] [mm-broadband-modem.c:8546] enabling_step(): Modem has location capabilities, enabling the Location interface... Aug 12 12:26:47 BCPHost ModemManager[2758]: [1439382407.309620] [mm-iface-modem-location.c:739] setup_gathering(): Need to enable the following location sources: '3gpp-lac-ci' Aug 12 12:26:47 BCPHost ModemManager[2758]: [1439382407.309777] [mm-iface-modem-3gpp.c:745] mm_iface_modem_3gpp_run_registration_checks(): Running registration checks (CS: 'yes', PS: 'yes', EPS: 'no') Aug 12 12:26:47 BCPHost ModemManager[2758]: [1439382407.312373] [mm-iface-modem-3gpp.c:1023] update_registration_reload_current_operator_ready(): Modem /org/freedesktop/ModemManager1/Modem/0: 3GPP Registration state changed (registering -> home) Aug 12 12:26:47 BCPHost ModemManager[2758]: [1439382407.312641] [mm-iface-modem.c:1372] get_updated_consolidated_state(): Will start keeping track of state for subsystem '3gpp' Aug 12 12:26:47 BCPHost ModemManager[2758]: [1439382407.313109] [mm-broadband-modem.c:8559] enabling_step(): Modem has messaging capabilities, enabling the Messaging interface... Aug 12 12:26:47 BCPHost ModemManager[2758]: [1439382407.313441] [mm-broadband-modem-mbim.c:1813] common_setup_cleanup_unsolicited_events(): Supported notifications: signal (yes), registration (yes), sms (yes) Aug 12 12:26:47 BCPHost ModemManager[2758]: [1439382407.313600] [mm-broadband-modem-mbim.c:1943] common_enable_disable_unsolicited_events(): Enabled notifications: signal (yes), registration (yes), sms (yes) Aug 12 12:26:47 BCPHost ModemManager[2758]: [1439382407.340730] [mm-iface-modem.c:1203] __iface_modem_update_state_internal(): Modem /org/freedesktop/ModemManager1/Modem/0: state changed (enabling -> registered) Aug 12 12:26:47 BCPHost ModemManager[2758]: [1439382407.341247] [mm-iface-modem.c:844] periodic_access_technologies_check_enable(): Periodic access technology checks enabled successfully enabled the modem mmcli –m 0 now shows that my modem is registered: /org/freedesktop/ModemManager1/Modem/0 (device id '6407dc87af7e1f64ac8ae42d2ee6cb15b76a012a') ------------------------- Hardware | manufacturer: 'Generic' | model: 'MBIM [1199:9041]' | revision: 'SWI9X15C_01.12' | supported: 'gsm-umts, lte' | current: 'gsm-umts, lte' | equipment id: '353516050360690' ------------------------- System | device: '/sys/devices/pci0000:00/0000:00:14.0/usb1/1-6' | drivers: 'cdc_mbim' | plugin: 'Generic' | primary port: 'cdc-wdm0' | ports: 'cdc-wdm0 (mbim), wwp0s20u6c2i12 (net)' ------------------------- Numbers | own : 'unknown' ------------------------- Status | lock: 'none' | unlock retries: 'sim-pin2 (3)' | state: 'registered' | power state: 'on' | access tech: 'umts, hsdpa, hsupa' | signal quality: '0' (cached) ------------------------- Modes | supported: 'allowed: 2g, 3g, 4g; preferred: none' | current: 'allowed: 2g, 3g, 4g; preferred: none' ------------------------- Bands | supported: 'unknown' | current: 'unknown' ------------------------- IP | supported: 'ipv4, ipv6, ipv4v6' ------------------------- 3GPP | imei: '353516050360690' | enabled locks: 'fixed-dialing' | operator id: '23210' | operator name: '3 AT' | registration: 'home' ------------------------- SIM | path: '/org/freedesktop/ModemManager1/SIM/0' Trying to connect to „drei.at“ apn: mmcli –m 0 –-simple-connect=“apn=drei.at“ Log: Aug 12 12:30:41 BCPHost ModemManager[2758]: [1439382641.413665] [mm-iface-modem-simple.c:641] connect_auth_ready(): Simple connect started... Aug 12 12:30:41 BCPHost ModemManager[2758]: [1439382641.413744] [mm-iface-modem-simple.c:651] connect_auth_ready(): PIN: unspecified Aug 12 12:30:41 BCPHost ModemManager[2758]: [1439382641.413780] [mm-iface-modem-simple.c:653] connect_auth_ready(): Operator ID: unspecified Aug 12 12:30:41 BCPHost ModemManager[2758]: [1439382641.413812] [mm-iface-modem-simple.c:655] connect_auth_ready(): Allowed roaming: yes Aug 12 12:30:41 BCPHost ModemManager[2758]: [1439382641.413842] [mm-iface-modem-simple.c:657] connect_auth_ready(): APN: drei.at Aug 12 12:30:41 BCPHost ModemManager[2758]: [1439382641.413870] [mm-iface-modem-simple.c:665] connect_auth_ready(): IP family: unspecified Aug 12 12:30:41 BCPHost ModemManager[2758]: [1439382641.413902] [mm-iface-modem-simple.c:673] connect_auth_ready(): Allowed authentication: unspecified Aug 12 12:30:41 BCPHost ModemManager[2758]: [1439382641.413930] [mm-iface-modem-simple.c:675] connect_auth_ready(): User: unspecified Aug 12 12:30:41 BCPHost ModemManager[2758]: [1439382641.413956] [mm-iface-modem-simple.c:677] connect_auth_ready(): Password: unspecified Aug 12 12:30:41 BCPHost ModemManager[2758]: [1439382641.413981] [mm-iface-modem-simple.c:679] connect_auth_ready(): Number: unspecified Aug 12 12:30:41 BCPHost ModemManager[2758]: [1439382641.414005] [mm-iface-modem-simple.c:469] connection_step(): Simple connect state (4/8): Wait to get fully enabled Aug 12 12:30:41 BCPHost ModemManager[2758]: [1439382641.414071] [mm-iface-modem-simple.c:478] connection_step(): Simple connect state (5/8): Register Aug 12 12:30:41 BCPHost ModemManager[2758]: [1439382641.414126] [mm-iface-modem-3gpp.c:384] mm_iface_modem_3gpp_register_in_network(): Already registered in network '23210', automatic registration not launched... Aug 12 12:30:41 BCPHost ModemManager[2758]: [1439382641.415311] [mm-iface-modem-simple.c:501] connection_step(): Simple connect state (6/8): Bearer Aug 12 12:30:41 BCPHost ModemManager[2758]: [1439382641.415690] [mm-iface-modem-simple.c:521] connection_step(): Creating new bearer... Aug 12 12:30:41 BCPHost ModemManager[2758]: [1439382641.416100] [mm-broadband-modem-mbim.c:1139] modem_create_bearer(): Creating MBIM bearer in MBIM modem Aug 12 12:30:41 BCPHost ModemManager[2758]: [1439382641.416905] [mm-broadband-modem-mbim.c:1053] modem_create_bearer_finish(): New bearer created at DBus path '/org/freedesktop/ModemManager1/Bearer/0' Aug 12 12:30:41 BCPHost ModemManager[2758]: [1439382641.416980] [mm-iface-modem-simple.c:583] connection_step(): Simple connect state (7/8): Connect Aug 12 12:30:41 BCPHost ModemManager[2758]: [1439382641.417236] [mm-bearer.c:586] mm_bearer_connect(): Connecting bearer '/org/freedesktop/ModemManager1/Bearer/0' Aug 12 12:30:41 BCPHost ModemManager[2758]: [1439382641.417554] [mm-iface-modem.c:1203] __iface_modem_update_state_internal(): Modem /org/freedesktop/ModemManager1/Modem/0: state changed (registered -> connecting) Aug 12 12:30:41 BCPHost ModemManager[2758]: [1439382641.418195] [mm-bearer-mbim.c:834] _connect(): Launching connection with data port (net/wwp0s20u6c2i12) Aug 12 12:30:41 BCPHost ModemManager[2758]: [1439382641.418238] [mm-bearer-mbim.c:592] connect_context_step(): Activating packet service... Aug 12 12:30:41 BCPHost ModemManager[2758]: [1439382641.453784] [mm-bearer.c:461] connect_ready(): Couldn't connect bearer '/org/freedesktop/ModemManager1/Bearer/0': 'Failure' Aug 12 12:30:41 BCPHost ModemManager[2758]: [1439382641.453921] [mm-iface-modem.c:1203] __iface_modem_update_state_internal(): Modem /org/freedesktop/ModemManager1/Modem/0: state changed (connecting -> registered) Aug 12 12:30:41 BCPHost ModemManager[2758]: [1439382641.454400] [mm-iface-modem-simple.c:221] connect_bearer_ready(): Couldn't connect bearer: 'Failure' It states that the mm couldn’t connect to the bearer with the reason „Failure“. Just searched for 3 days and couldn’t find a solution. I hope you guys can help me out! Best regards, T.S. Other -------------- next part -------------- An HTML attachment was scrubbed... URL: From aleksander at aleksander.es Wed Aug 12 07:18:47 2015 From: aleksander at aleksander.es (Aleksander Morgado) Date: Wed, 12 Aug 2015 16:18:47 +0200 Subject: Cannot connect with Sierra Wireless EM7305 on CentOS 7. In-Reply-To: <55cb404b.ed0cb40a.8edc3.ffff92ae@mx.google.com> References: <55cb404b.ed0cb40a.8edc3.ffff92ae@mx.google.com> Message-ID: Hey Tadej, > I can’t connect with my Sierra Wireless EM7305 Modem on CentOS 7. The goal > is to get an IP and internet connection with the modem using the provided > APN (drei.at, no credentials required). > > > > Device: Panasonic Toughpad FZ-M1 > > OS: CentOS 7 (kernel version 4.1.0-rc7-wl-ath – custom build) > > Modem: Sierra Wireless EM7305 > > ModemManager version 1.1.0.6 (it’s the last officially supported package) > > > > lsusb finds my modem: > > Bus 001 Device 002: ID 0424:2422 Standard Microsystems Corp. > > Bus 001 Device 003: ID 0424:2137 Standard Microsystems Corp. > > Bus 001 Device 005: ID 04b5:0680 ROHM LSI Systems USA, LLC > > Bus 001 Device 016: ID 1199:9041 Sierra Wireless, Inc. > > Bus 001 Device 008: ID 04dd:9762 Sharp Corp. > > Bus 001 Device 010: ID 0424:2422 Standard Microsystems Corp. > > Bus 002 Device 002: ID 0424:5537 Standard Microsystems Corp. > > Bus 003 Device 002: ID 8087:8000 Intel Corp. > > Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub > > Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub > > Bus 003 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub > > Bus 001 Device 004: ID 13d3:5224 IMC Networks > > Bus 001 Device 006: ID 5986:0546 Acer, Inc > > Bus 001 Device 007: ID 0b05:17d2 ASUSTek Computer, Inc. > > Bus 001 Device 009: ID 045e:00cb Microsoft Corp. Basic Optical Mouse v2.0 > > Bus 001 Device 011: ID 0403:6001 Future Technology Devices International, > Ltd FT232 USB-Serial (UART) IC > > Bus 001 Device 013: ID 1fc9:010b NXP Semiconductors PR533 > > Bus 001 Device 014: ID 0424:2422 Standard Microsystems Corp. > > Bus 002 Device 003: ID 0bda:8153 Realtek Semiconductor Corp. > > Bus 002 Device 004: ID 17e9:4300 DisplayLink > > Bus 001 Device 015: ID 045e:0750 Microsoft Corp. Wired Keyboard 600 > > > > lshw also lists it: > > *-usb:3 > > description: Communication device > > product: EM7305 > > vendor: Sierra Wireless, Incorporated > > physical id: 6 > > bus info: usb at 1:6 > > version: 0.06 > > capabilities: usb-2.00 > > configuration: driver=cdc_mbim maxpower=500mA > speed=480Mbit/s > > > > Starting the ModemManager: > > ModemManager –debug > > > > Log: > > > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.881258] > [main.c:128] main(): ModemManager (version 1.1.0-6.git20130913.el7) > starting... > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.888831] > [main.c:61] bus_acquired_cb(): Bus acquired, creating manager... > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.890265] > [mm-plugin-manager.c:788] load_plugins(): Looking for plugins in > '/usr/lib64/ModemManager' > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.890625] > [mm-plugin-manager.c:813] load_plugins(): Loaded plugin 'Altair LTE' > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.890814] > [mm-plugin-manager.c:813] load_plugins(): Loaded plugin 'AnyDATA' > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.890966] > [mm-plugin-manager.c:813] load_plugins(): Loaded plugin 'Cinterion' > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.891135] > [mm-plugin-manager.c:813] load_plugins(): Loaded plugin 'Generic' > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.891275] > [mm-plugin-manager.c:813] load_plugins(): Loaded plugin 'Gobi' > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.891461] > [mm-plugin-manager.c:813] load_plugins(): Loaded plugin 'Option High-Speed' > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.891639] > [mm-plugin-manager.c:813] load_plugins(): Loaded plugin 'Huawei' > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.891784] > [mm-plugin-manager.c:813] load_plugins(): Loaded plugin 'Iridium' > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.891947] > [mm-plugin-manager.c:813] load_plugins(): Loaded plugin 'Linktop' > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.892103] > [mm-plugin-manager.c:813] load_plugins(): Loaded plugin 'Longcheer' > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.892251] > [mm-plugin-manager.c:813] load_plugins(): Loaded plugin 'Ericsson MBM' > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.892451] > [mm-plugin-manager.c:813] load_plugins(): Loaded plugin 'Motorola' > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.892619] > [mm-plugin-manager.c:813] load_plugins(): Loaded plugin 'Nokia (Icera)' > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.892782] > [mm-plugin-manager.c:813] load_plugins(): Loaded plugin 'Nokia' > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.892961] > [mm-plugin-manager.c:813] load_plugins(): Loaded plugin 'Novatel LTE' > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.893136] > [mm-plugin-manager.c:813] load_plugins(): Loaded plugin 'Novatel' > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.893294] > [mm-plugin-manager.c:813] load_plugins(): Loaded plugin 'Option' > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.893458] > [mm-plugin-manager.c:813] load_plugins(): Loaded plugin 'Pantech' > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.893641] > [mm-plugin-manager.c:813] load_plugins(): Loaded plugin 'Samsung' > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.893809] > [mm-plugin-manager.c:813] load_plugins(): Loaded plugin 'Sierra' > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.893980] > [mm-plugin-manager.c:813] load_plugins(): Loaded plugin 'SimTech' > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.894155] > [mm-plugin-manager.c:813] load_plugins(): Loaded plugin 'Telit' > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.894321] > [mm-plugin-manager.c:813] load_plugins(): Loaded plugin 'Via CBP7' > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.894472] > [mm-plugin-manager.c:813] load_plugins(): Loaded plugin 'Wavecom' > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.894641] > [mm-plugin-manager.c:813] load_plugins(): Loaded plugin 'X22X' > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.894795] > [mm-plugin-manager.c:813] load_plugins(): Loaded plugin 'ZTE' > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.894827] > [mm-plugin-manager.c:838] load_plugins(): Successfully loaded 26 plugins > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.895489] > [main.c:79] name_acquired_cb(): Service name 'org.freedesktop.ModemManager1' > was acquired > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.895534] > [mm-manager.c:456] mm_manager_start(): Starting automatic device scan... > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.899170] > [mm-manager.c:495] mm_manager_start(): Finished device scan... > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.899761] > [mm-manager.c:284] device_added(): (tty/ttyUSB0): port probed only in manual > scan > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.899991] > [mm-plugin-manager.c:675] mm_plugin_manager_find_device_support(): (Plugin > Manager) [/sys/devices/pci0000:00/0000:00:16.3] Checking device support... > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.900079] > [mm-plugin.c:322] apply_pre_probing_filters(): (Altair LTE) [ttyS0] filtered > by vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.900101] > [mm-plugin.c:322] apply_pre_probing_filters(): (AnyDATA) [ttyS0] filtered by > vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.900122] > [mm-plugin.c:254] apply_pre_probing_filters(): (Gobi) [ttyS0] filtered by > drivers > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.900147] > [mm-plugin.c:254] apply_pre_probing_filters(): (Option High-Speed) [ttyS0] > filtered by drivers > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.900166] > [mm-plugin.c:322] apply_pre_probing_filters(): (Huawei) [ttyS0] filtered by > vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.900189] > [mm-plugin.c:322] apply_pre_probing_filters(): (Linktop) [ttyS0] filtered by > vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.900206] > [mm-plugin.c:322] apply_pre_probing_filters(): (Longcheer) [ttyS0] filtered > by vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.900218] > [mm-plugin.c:376] apply_pre_probing_filters(): (Ericsson MBM) [ttyS0] > filtered by udev tags > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.900235] > [mm-plugin.c:322] apply_pre_probing_filters(): (Motorola) [ttyS0] filtered > by vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.900254] > [mm-plugin.c:322] apply_pre_probing_filters(): (Nokia (Icera)) [ttyS0] > filtered by vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.900272] > [mm-plugin.c:322] apply_pre_probing_filters(): (Novatel LTE) [ttyS0] > filtered by vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.900283] > [mm-plugin.c:322] apply_pre_probing_filters(): (Novatel) [ttyS0] filtered by > vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.900457] > [mm-plugin.c:254] apply_pre_probing_filters(): (Option) [ttyS0] filtered by > drivers > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.900692] > [mm-plugin.c:322] apply_pre_probing_filters(): (Pantech) [ttyS0] filtered by > vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.900919] > [mm-plugin.c:322] apply_pre_probing_filters(): (Samsung) [ttyS0] filtered by > vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.901145] > [mm-plugin.c:254] apply_pre_probing_filters(): (Sierra) [ttyS0] filtered by > drivers > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.901388] > [mm-plugin.c:322] apply_pre_probing_filters(): (SimTech) [ttyS0] filtered by > vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.901614] > [mm-plugin.c:322] apply_pre_probing_filters(): (Telit) [ttyS0] filtered by > vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.901844] > [mm-plugin.c:322] apply_pre_probing_filters(): (Wavecom) [ttyS0] filtered by > vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.902064] > [mm-plugin.c:322] apply_pre_probing_filters(): (X22X) [ttyS0] filtered by > vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.902287] > [mm-plugin.c:322] apply_pre_probing_filters(): (ZTE) [ttyS0] filtered by > vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.902493] > [mm-plugin-manager.c:576] build_plugins_list(): (Plugin Manager) [ttyS0] > Found '5' plugins to try... > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.902680] > [mm-plugin-manager.c:580] build_plugins_list(): (Plugin Manager) [ttyS0] > Will try with plugin 'Cinterion' > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.902873] > [mm-plugin-manager.c:580] build_plugins_list(): (Plugin Manager) [ttyS0] > Will try with plugin 'Iridium' > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.903057] > [mm-plugin-manager.c:580] build_plugins_list(): (Plugin Manager) [ttyS0] > Will try with plugin 'Nokia' > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.903240] > [mm-plugin-manager.c:580] build_plugins_list(): (Plugin Manager) [ttyS0] > Will try with plugin 'Via CBP7' > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.903433] > [mm-plugin-manager.c:580] build_plugins_list(): (Plugin Manager) [ttyS0] > Will try with plugin 'Generic' > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.903633] > [mm-plugin.c:772] mm_plugin_supports_port(): (Cinterion) [ttyS0] probe > required: 'at, at-vendor' > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.903808] > [mm-port-probe.c:1331] mm_port_probe_run(): (tty/ttyS0) launching port > probing: 'at, at-vendor' > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.904147] > [mm-manager.c:294] device_added(): (tty/ttyS1): port's parent platform > driver is not whitelisted > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.904345] > [mm-manager.c:294] device_added(): (tty/ttyS2): port's parent platform > driver is not whitelisted > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.904573] > [mm-manager.c:294] device_added(): (tty/ttyS3): port's parent platform > driver is not whitelisted > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.906002] > [mm-plugin-manager.c:675] mm_plugin_manager_find_device_support(): (Plugin > Manager) [/sys/devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3.1] Checking > device support... > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.906114] > [mm-plugin.c:322] apply_pre_probing_filters(): (Altair LTE) [wlp0s20u3u1] > filtered by vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.906146] > [mm-plugin.c:322] apply_pre_probing_filters(): (AnyDATA) [wlp0s20u3u1] > filtered by vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.906168] > [mm-plugin.c:213] apply_pre_probing_filters(): (Cinterion) [wlp0s20u3u1] > filtered by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.906189] > [mm-plugin.c:254] apply_pre_probing_filters(): (Gobi) [wlp0s20u3u1] filtered > by drivers > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.906350] > [mm-plugin.c:254] apply_pre_probing_filters(): (Option High-Speed) > [wlp0s20u3u1] filtered by drivers > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.906612] > [mm-plugin.c:322] apply_pre_probing_filters(): (Huawei) [wlp0s20u3u1] > filtered by vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.906856] > [mm-plugin.c:213] apply_pre_probing_filters(): (Iridium) [wlp0s20u3u1] > filtered by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.907078] > [mm-plugin.c:213] apply_pre_probing_filters(): (Linktop) [wlp0s20u3u1] > filtered by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.907297] > [mm-plugin.c:213] apply_pre_probing_filters(): (Longcheer) [wlp0s20u3u1] > filtered by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.907535] > [mm-plugin.c:376] apply_pre_probing_filters(): (Ericsson MBM) [wlp0s20u3u1] > filtered by udev tags > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.907778] > [mm-plugin.c:213] apply_pre_probing_filters(): (Motorola) [wlp0s20u3u1] > filtered by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.908001] > [mm-plugin.c:322] apply_pre_probing_filters(): (Nokia (Icera)) [wlp0s20u3u1] > filtered by vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.908242] > [mm-plugin.c:213] apply_pre_probing_filters(): (Nokia) [wlp0s20u3u1] > filtered by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.908483] > [mm-plugin.c:322] apply_pre_probing_filters(): (Novatel LTE) [wlp0s20u3u1] > filtered by vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.908721] > [mm-plugin.c:322] apply_pre_probing_filters(): (Novatel) [wlp0s20u3u1] > filtered by vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.908943] > [mm-plugin.c:213] apply_pre_probing_filters(): (Option) [wlp0s20u3u1] > filtered by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.909159] > [mm-plugin.c:322] apply_pre_probing_filters(): (Pantech) [wlp0s20u3u1] > filtered by vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.909392] > [mm-plugin.c:322] apply_pre_probing_filters(): (Samsung) [wlp0s20u3u1] > filtered by vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.909623] > [mm-plugin.c:254] apply_pre_probing_filters(): (Sierra) [wlp0s20u3u1] > filtered by drivers > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.909855] > [mm-plugin.c:213] apply_pre_probing_filters(): (SimTech) [wlp0s20u3u1] > filtered by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.910074] > [mm-plugin.c:213] apply_pre_probing_filters(): (Telit) [wlp0s20u3u1] > filtered by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.910289] > [mm-plugin.c:213] apply_pre_probing_filters(): (Via CBP7) [wlp0s20u3u1] > filtered by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.910519] > [mm-plugin.c:213] apply_pre_probing_filters(): (Wavecom) [wlp0s20u3u1] > filtered by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.910734] > [mm-plugin.c:213] apply_pre_probing_filters(): (X22X) [wlp0s20u3u1] filtered > by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.910946] > [mm-plugin.c:322] apply_pre_probing_filters(): (ZTE) [wlp0s20u3u1] filtered > by vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.911168] > [mm-plugin-manager.c:576] build_plugins_list(): (Plugin Manager) > [wlp0s20u3u1] Found '1' plugins to try... > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.911389] > [mm-plugin-manager.c:580] build_plugins_list(): (Plugin Manager) > [wlp0s20u3u1] Will try with plugin 'Generic' > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.911618] > [mm-plugin.c:700] mm_plugin_supports_port(): (Generic) [wlp0s20u3u1] probing > deferred until result suggested > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.912147] > [mm-plugin-manager.c:675] mm_plugin_manager_find_device_support(): (Plugin > Manager) [/sys/devices/pci0000:00/0000:00:14.0/usb1/1-6] Checking device > support... > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.912237] > [mm-plugin.c:322] apply_pre_probing_filters(): (Altair LTE) [wwp0s20u6c2i12] > filtered by vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.912445] > [mm-plugin.c:322] apply_pre_probing_filters(): (AnyDATA) [wwp0s20u6c2i12] > filtered by vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.912668] > [mm-plugin.c:213] apply_pre_probing_filters(): (Cinterion) [wwp0s20u6c2i12] > filtered by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.912886] > [mm-plugin.c:254] apply_pre_probing_filters(): (Gobi) [wwp0s20u6c2i12] > filtered by drivers > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.913104] > [mm-plugin.c:254] apply_pre_probing_filters(): (Option High-Speed) > [wwp0s20u6c2i12] filtered by drivers > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.913323] > [mm-plugin.c:322] apply_pre_probing_filters(): (Huawei) [wwp0s20u6c2i12] > filtered by vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.913550] > [mm-plugin.c:213] apply_pre_probing_filters(): (Iridium) [wwp0s20u6c2i12] > filtered by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.913765] > [mm-plugin.c:213] apply_pre_probing_filters(): (Linktop) [wwp0s20u6c2i12] > filtered by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.913980] > [mm-plugin.c:213] apply_pre_probing_filters(): (Longcheer) [wwp0s20u6c2i12] > filtered by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.914196] > [mm-plugin.c:376] apply_pre_probing_filters(): (Ericsson MBM) > [wwp0s20u6c2i12] filtered by udev tags > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.914421] > [mm-plugin.c:213] apply_pre_probing_filters(): (Motorola) [wwp0s20u6c2i12] > filtered by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.914643] > [mm-plugin.c:322] apply_pre_probing_filters(): (Nokia (Icera)) > [wwp0s20u6c2i12] filtered by vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.914858] > [mm-plugin.c:213] apply_pre_probing_filters(): (Nokia) [wwp0s20u6c2i12] > filtered by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.915073] > [mm-plugin.c:322] apply_pre_probing_filters(): (Novatel LTE) > [wwp0s20u6c2i12] filtered by vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.915288] > [mm-plugin.c:322] apply_pre_probing_filters(): (Novatel) [wwp0s20u6c2i12] > filtered by vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.915518] > [mm-plugin.c:213] apply_pre_probing_filters(): (Option) [wwp0s20u6c2i12] > filtered by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.915735] > [mm-plugin.c:322] apply_pre_probing_filters(): (Pantech) [wwp0s20u6c2i12] > filtered by vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.915960] > [mm-plugin.c:322] apply_pre_probing_filters(): (Samsung) [wwp0s20u6c2i12] > filtered by vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.916180] > [mm-plugin.c:254] apply_pre_probing_filters(): (Sierra) [wwp0s20u6c2i12] > filtered by drivers > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.916421] > [mm-plugin.c:213] apply_pre_probing_filters(): (SimTech) [wwp0s20u6c2i12] > filtered by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.916644] > [mm-plugin.c:213] apply_pre_probing_filters(): (Telit) [wwp0s20u6c2i12] > filtered by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.916874] > [mm-plugin.c:213] apply_pre_probing_filters(): (Via CBP7) [wwp0s20u6c2i12] > filtered by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.917114] > [mm-plugin.c:213] apply_pre_probing_filters(): (Wavecom) [wwp0s20u6c2i12] > filtered by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.917348] > [mm-plugin.c:213] apply_pre_probing_filters(): (X22X) [wwp0s20u6c2i12] > filtered by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.917593] > [mm-plugin.c:322] apply_pre_probing_filters(): (ZTE) [wwp0s20u6c2i12] > filtered by vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.917804] > [mm-plugin-manager.c:576] build_plugins_list(): (Plugin Manager) > [wwp0s20u6c2i12] Found '1' plugins to try... > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.918021] > [mm-plugin-manager.c:580] build_plugins_list(): (Plugin Manager) > [wwp0s20u6c2i12] Will try with plugin 'Generic' > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.918251] > [mm-plugin.c:700] mm_plugin_supports_port(): (Generic) [wwp0s20u6c2i12] > probing deferred until result suggested > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.918792] > [mm-plugin-manager.c:675] mm_plugin_manager_find_device_support(): (Plugin > Manager) [/sys/devices/pci0000:00/0000:00:14.0/usb2/2-3/2-3.3] Checking > device support... > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.918891] > [mm-plugin.c:322] apply_pre_probing_filters(): (Altair LTE) [enp0s20u3u3] > filtered by vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.919089] > [mm-plugin.c:322] apply_pre_probing_filters(): (AnyDATA) [enp0s20u3u3] > filtered by vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.919323] > [mm-plugin.c:213] apply_pre_probing_filters(): (Cinterion) [enp0s20u3u3] > filtered by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.919573] > [mm-plugin.c:254] apply_pre_probing_filters(): (Gobi) [enp0s20u3u3] filtered > by drivers > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.919801] > [mm-plugin.c:254] apply_pre_probing_filters(): (Option High-Speed) > [enp0s20u3u3] filtered by drivers > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.920022] > [mm-plugin.c:322] apply_pre_probing_filters(): (Huawei) [enp0s20u3u3] > filtered by vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.920237] > [mm-plugin.c:213] apply_pre_probing_filters(): (Iridium) [enp0s20u3u3] > filtered by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.920462] > [mm-plugin.c:213] apply_pre_probing_filters(): (Linktop) [enp0s20u3u3] > filtered by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.920685] > [mm-plugin.c:213] apply_pre_probing_filters(): (Longcheer) [enp0s20u3u3] > filtered by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.920904] > [mm-plugin.c:376] apply_pre_probing_filters(): (Ericsson MBM) [enp0s20u3u3] > filtered by udev tags > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.921118] > [mm-plugin.c:213] apply_pre_probing_filters(): (Motorola) [enp0s20u3u3] > filtered by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.921340] > [mm-plugin.c:322] apply_pre_probing_filters(): (Nokia (Icera)) [enp0s20u3u3] > filtered by vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.921558] > [mm-plugin.c:213] apply_pre_probing_filters(): (Nokia) [enp0s20u3u3] > filtered by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.921773] > [mm-plugin.c:322] apply_pre_probing_filters(): (Novatel LTE) [enp0s20u3u3] > filtered by vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.921992] > [mm-plugin.c:322] apply_pre_probing_filters(): (Novatel) [enp0s20u3u3] > filtered by vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.922206] > [mm-plugin.c:213] apply_pre_probing_filters(): (Option) [enp0s20u3u3] > filtered by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.922445] > [mm-plugin.c:322] apply_pre_probing_filters(): (Pantech) [enp0s20u3u3] > filtered by vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.922662] > [mm-plugin.c:322] apply_pre_probing_filters(): (Samsung) [enp0s20u3u3] > filtered by vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.922875] > [mm-plugin.c:254] apply_pre_probing_filters(): (Sierra) [enp0s20u3u3] > filtered by drivers > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.923092] > [mm-plugin.c:213] apply_pre_probing_filters(): (SimTech) [enp0s20u3u3] > filtered by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.923321] > [mm-plugin.c:213] apply_pre_probing_filters(): (Telit) [enp0s20u3u3] > filtered by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.923534] > [mm-plugin.c:213] apply_pre_probing_filters(): (Via CBP7) [enp0s20u3u3] > filtered by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.923756] > [mm-plugin.c:213] apply_pre_probing_filters(): (Wavecom) [enp0s20u3u3] > filtered by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.923970] > [mm-plugin.c:213] apply_pre_probing_filters(): (X22X) [enp0s20u3u3] filtered > by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.924192] > [mm-plugin.c:322] apply_pre_probing_filters(): (ZTE) [enp0s20u3u3] filtered > by vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.924420] > [mm-plugin-manager.c:576] build_plugins_list(): (Plugin Manager) > [enp0s20u3u3] Found '1' plugins to try... > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.924633] > [mm-plugin-manager.c:580] build_plugins_list(): (Plugin Manager) > [enp0s20u3u3] Will try with plugin 'Generic' > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.924854] > [mm-plugin.c:700] mm_plugin_supports_port(): (Generic) [enp0s20u3u3] probing > deferred until result suggested > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.925302] > [mm-plugin-manager.c:675] mm_plugin_manager_find_device_support(): (Plugin > Manager) [/sys/devices/pci0000:00/0000:00:1c.2/0000:02:00.0] Checking device > support... > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.925465] > [mm-plugin.c:322] apply_pre_probing_filters(): (Altair LTE) [wlp2s0] > filtered by vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.925666] > [mm-plugin.c:322] apply_pre_probing_filters(): (AnyDATA) [wlp2s0] filtered > by vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.925890] > [mm-plugin.c:213] apply_pre_probing_filters(): (Cinterion) [wlp2s0] filtered > by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.926114] > [mm-plugin.c:254] apply_pre_probing_filters(): (Gobi) [wlp2s0] filtered by > drivers > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.926346] > [mm-plugin.c:254] apply_pre_probing_filters(): (Option High-Speed) [wlp2s0] > filtered by drivers > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.926564] > [mm-plugin.c:322] apply_pre_probing_filters(): (Huawei) [wlp2s0] filtered by > vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.926787] > [mm-plugin.c:213] apply_pre_probing_filters(): (Iridium) [wlp2s0] filtered > by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.927005] > [mm-plugin.c:213] apply_pre_probing_filters(): (Linktop) [wlp2s0] filtered > by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.927227] > [mm-plugin.c:213] apply_pre_probing_filters(): (Longcheer) [wlp2s0] filtered > by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.927470] > [mm-plugin.c:376] apply_pre_probing_filters(): (Ericsson MBM) [wlp2s0] > filtered by udev tags > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.927698] > [mm-plugin.c:213] apply_pre_probing_filters(): (Motorola) [wlp2s0] filtered > by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.927952] > [mm-plugin.c:322] apply_pre_probing_filters(): (Nokia (Icera)) [wlp2s0] > filtered by vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.928158] > [mm-plugin.c:213] apply_pre_probing_filters(): (Nokia) [wlp2s0] filtered by > subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.928390] > [mm-plugin.c:322] apply_pre_probing_filters(): (Novatel LTE) [wlp2s0] > filtered by vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.928622] > [mm-plugin.c:322] apply_pre_probing_filters(): (Novatel) [wlp2s0] filtered > by vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.928851] > [mm-plugin.c:213] apply_pre_probing_filters(): (Option) [wlp2s0] filtered by > subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.929085] > [mm-plugin.c:322] apply_pre_probing_filters(): (Pantech) [wlp2s0] filtered > by vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.929304] > [mm-plugin.c:322] apply_pre_probing_filters(): (Samsung) [wlp2s0] filtered > by vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.929529] > [mm-plugin.c:254] apply_pre_probing_filters(): (Sierra) [wlp2s0] filtered by > drivers > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.929747] > [mm-plugin.c:213] apply_pre_probing_filters(): (SimTech) [wlp2s0] filtered > by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.929962] > [mm-plugin.c:213] apply_pre_probing_filters(): (Telit) [wlp2s0] filtered by > subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.930178] > [mm-plugin.c:213] apply_pre_probing_filters(): (Via CBP7) [wlp2s0] filtered > by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.930403] > [mm-plugin.c:213] apply_pre_probing_filters(): (Wavecom) [wlp2s0] filtered > by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.930638] > [mm-plugin.c:213] apply_pre_probing_filters(): (X22X) [wlp2s0] filtered by > subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.930870] > [mm-plugin.c:322] apply_pre_probing_filters(): (ZTE) [wlp2s0] filtered by > vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.931090] > [mm-plugin-manager.c:576] build_plugins_list(): (Plugin Manager) [wlp2s0] > Found '1' plugins to try... > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.931304] > [mm-plugin-manager.c:580] build_plugins_list(): (Plugin Manager) [wlp2s0] > Will try with plugin 'Generic' > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.931535] > [mm-plugin.c:700] mm_plugin_supports_port(): (Generic) [wlp2s0] probing > deferred until result suggested > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.932373] > [mm-plugin.c:213] apply_pre_probing_filters(): (Altair LTE) [cdc-wdm0] > filtered by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.932409] > [mm-plugin.c:322] apply_pre_probing_filters(): (AnyDATA) [cdc-wdm0] filtered > by vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.932466] > [mm-plugin.c:213] apply_pre_probing_filters(): (Cinterion) [cdc-wdm0] > filtered by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.932703] > [mm-plugin.c:254] apply_pre_probing_filters(): (Gobi) [cdc-wdm0] filtered by > drivers > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.932929] > [mm-plugin.c:213] apply_pre_probing_filters(): (Option High-Speed) > [cdc-wdm0] filtered by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.933152] > [mm-plugin.c:322] apply_pre_probing_filters(): (Huawei) [cdc-wdm0] filtered > by vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.933383] > [mm-plugin.c:213] apply_pre_probing_filters(): (Iridium) [cdc-wdm0] filtered > by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.933627] > [mm-plugin.c:213] apply_pre_probing_filters(): (Linktop) [cdc-wdm0] filtered > by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.933844] > [mm-plugin.c:213] apply_pre_probing_filters(): (Longcheer) [cdc-wdm0] > filtered by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.934069] > [mm-plugin.c:376] apply_pre_probing_filters(): (Ericsson MBM) [cdc-wdm0] > filtered by udev tags > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.934286] > [mm-plugin.c:213] apply_pre_probing_filters(): (Motorola) [cdc-wdm0] > filtered by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.934529] > [mm-plugin.c:213] apply_pre_probing_filters(): (Nokia (Icera)) [cdc-wdm0] > filtered by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.934760] > [mm-plugin.c:213] apply_pre_probing_filters(): (Nokia) [cdc-wdm0] filtered > by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.934994] > [mm-plugin.c:213] apply_pre_probing_filters(): (Novatel LTE) [cdc-wdm0] > filtered by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.935220] > [mm-plugin.c:322] apply_pre_probing_filters(): (Novatel) [cdc-wdm0] filtered > by vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.935464] > [mm-plugin.c:213] apply_pre_probing_filters(): (Option) [cdc-wdm0] filtered > by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.935690] > [mm-plugin.c:322] apply_pre_probing_filters(): (Pantech) [cdc-wdm0] filtered > by vendor/product IDs > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.935906] > [mm-plugin.c:213] apply_pre_probing_filters(): (Samsung) [cdc-wdm0] filtered > by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.936130] > [mm-plugin.c:254] apply_pre_probing_filters(): (Sierra) [cdc-wdm0] filtered > by drivers > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.936366] > [mm-plugin.c:213] apply_pre_probing_filters(): (SimTech) [cdc-wdm0] filtered > by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.936603] > [mm-plugin.c:213] apply_pre_probing_filters(): (Telit) [cdc-wdm0] filtered > by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.936839] > [mm-plugin.c:213] apply_pre_probing_filters(): (Via CBP7) [cdc-wdm0] > filtered by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.937060] > [mm-plugin.c:213] apply_pre_probing_filters(): (Wavecom) [cdc-wdm0] filtered > by subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.937279] > [mm-plugin.c:213] apply_pre_probing_filters(): (X22X) [cdc-wdm0] filtered by > subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.937513] > [mm-plugin.c:213] apply_pre_probing_filters(): (ZTE) [cdc-wdm0] filtered by > subsystem > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.937757] > [mm-plugin-manager.c:576] build_plugins_list(): (Plugin Manager) [cdc-wdm0] > Found '1' plugins to try... > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.937972] > [mm-plugin-manager.c:580] build_plugins_list(): (Plugin Manager) [cdc-wdm0] > Will try with plugin 'Generic' > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.938235] > [mm-plugin.c:772] mm_plugin_supports_port(): (Generic) [cdc-wdm0] probe > required: 'mbim' > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.938458] > [mm-port-probe.c:1331] mm_port_probe_run(): (usbmisc/cdc-wdm0) launching > port probing: 'mbim' > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.938716] > [mm-plugin-manager.c:505] plugin_supports_port_ready(): (Plugin Manager) > [wlp0s20u3u1] deferring support check until result suggested > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.938926] > [mm-plugin-manager.c:505] plugin_supports_port_ready(): (Plugin Manager) > [wwp0s20u6c2i12] deferring support check until result suggested > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.939149] > [mm-plugin-manager.c:505] plugin_supports_port_ready(): (Plugin Manager) > [enp0s20u3u3] deferring support check until result suggested > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.939382] > [mm-plugin-manager.c:505] plugin_supports_port_ready(): (Plugin Manager) > [wlp2s0] deferring support check until result suggested > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.939844] > [mm-serial-port.c:892] mm_serial_port_open(): (ttyS0) opening serial port... > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.941934] > [mm-serial-port.c:969] mm_serial_port_open(): (ttyS0) device open count is 1 > (open) > > Aug 12 12:20:12 BCPHost ModemManager[2758]: [1439382012.942052] > [mm-port-probe.c:536] wdm_probe_mbim(): (usbmisc/cdc-wdm0) probing MBIM... > > Aug 12 12:20:13 BCPHost ModemManager[2758]: [1439382013.042661] > [mm-at-serial-port.c:436] debug_log(): (ttyS0): --> 'AT' > > Aug 12 12:20:15 BCPHost ModemManager[2758]: [1439382015.381754] > [mm-plugin-manager.c:646] min_probing_timeout_cb(): (Plugin Manager) > [/sys/devices/pci0000:00/0000:00:16.3] Minimum probing time consumed > > Aug 12 12:20:15 BCPHost ModemManager[2758]: [1439382015.381960] > [mm-plugin-manager.c:646] min_probing_timeout_cb(): (Plugin Manager) > [/sys/devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3.1] Minimum probing time > consumed > > Aug 12 12:20:15 BCPHost ModemManager[2758]: [1439382015.382051] > [mm-plugin-manager.c:341] suggest_port_probe_result(): (Plugin Manager) > [wlp0s20u3u1] deferred task cancelled, no suggested plugin > > Aug 12 12:20:15 BCPHost ModemManager[2758]: [1439382015.382139] > [mm-plugin-manager.c:646] min_probing_timeout_cb(): (Plugin Manager) > [/sys/devices/pci0000:00/0000:00:14.0/usb1/1-6] Minimum probing time > consumed > > Aug 12 12:20:15 BCPHost ModemManager[2758]: [1439382015.382196] > [mm-plugin-manager.c:646] min_probing_timeout_cb(): (Plugin Manager) > [/sys/devices/pci0000:00/0000:00:14.0/usb2/2-3/2-3.3] Minimum probing time > consumed > > Aug 12 12:20:15 BCPHost ModemManager[2758]: [1439382015.382249] > [mm-plugin-manager.c:341] suggest_port_probe_result(): (Plugin Manager) > [enp0s20u3u3] deferred task cancelled, no suggested plugin > > Aug 12 12:20:15 BCPHost ModemManager[2758]: [1439382015.382311] > [mm-plugin-manager.c:646] min_probing_timeout_cb(): (Plugin Manager) > [/sys/devices/pci0000:00/0000:00:1c.2/0000:02:00.0] Minimum probing time > consumed > > Aug 12 12:20:15 BCPHost ModemManager[2758]: [1439382015.382420] > [mm-plugin-manager.c:341] suggest_port_probe_result(): (Plugin Manager) > [wlp2s0] deferred task cancelled, no suggested plugin > > Aug 12 12:20:15 BCPHost ModemManager[2758]: [1439382015.382500] > [mm-plugin-manager.c:164] port_probe_context_finished(): (Plugin Manager) > [wlp0s20u3u1] not supported by any plugin > > Aug 12 12:20:15 BCPHost ModemManager[2758]: [1439382015.382566] > [mm-device.c:339] mm_device_ignore_port(): Fully ignoring port > 'net/wlp0s20u3u1' from now on > > Aug 12 12:20:15 BCPHost ModemManager[2758]: [1439382015.382622] > [mm-plugin-manager.c:285] port_probe_context_finished(): (Plugin Manager) > 'wlp0s20u3u1' port probe finished, last one in device > > Aug 12 12:20:15 BCPHost ModemManager[2758]: [1439382015.382674] > [mm-plugin-manager.c:107] find_device_support_context_complete_and_free(): > (Plugin Manager) [/sys/devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3.1] > device support check finished in '2.476610' seconds > > Aug 12 12:20:15 BCPHost ModemManager[2758]: [1439382015.382833] > [mm-manager.c:140] find_device_support_ready(): Couldn't find support for > device at '/sys/devices/pci0000:00/0000:00:14.0/usb1/1-3/1-3.1': not > supported by any plugin > > Aug 12 12:20:15 BCPHost ModemManager[2758]: [1439382015.383384] > [mm-plugin-manager.c:164] port_probe_context_finished(): (Plugin Manager) > [enp0s20u3u3] not supported by any plugin > > Aug 12 12:20:15 BCPHost ModemManager[2758]: [1439382015.384151] > [mm-device.c:339] mm_device_ignore_port(): Fully ignoring port > 'net/enp0s20u3u3' from now on > > Aug 12 12:20:15 BCPHost ModemManager[2758]: [1439382015.384901] > [mm-plugin-manager.c:285] port_probe_context_finished(): (Plugin Manager) > 'enp0s20u3u3' port probe finished, last one in device > > Aug 12 12:20:15 BCPHost ModemManager[2758]: [1439382015.385662] > [mm-plugin-manager.c:107] find_device_support_context_complete_and_free(): > (Plugin Manager) [/sys/devices/pci0000:00/0000:00:14.0/usb2/2-3/2-3.3] > device support check finished in '2.466816' seconds > > Aug 12 12:20:15 BCPHost ModemManager[2758]: [1439382015.386435] > [mm-manager.c:140] find_device_support_ready(): Couldn't find support for > device at '/sys/devices/pci0000:00/0000:00:14.0/usb2/2-3/2-3.3': not > supported by any plugin > > Aug 12 12:20:15 BCPHost ModemManager[2758]: [1439382015.387182] > [mm-plugin-manager.c:164] port_probe_context_finished(): (Plugin Manager) > [wlp2s0] not supported by any plugin > > Aug 12 12:20:15 BCPHost ModemManager[2758]: [1439382015.387875] > [mm-device.c:339] mm_device_ignore_port(): Fully ignoring port 'net/wlp2s0' > from now on > > Aug 12 12:20:15 BCPHost ModemManager[2758]: [1439382015.388572] > [mm-plugin-manager.c:285] port_probe_context_finished(): (Plugin Manager) > 'wlp2s0' port probe finished, last one in device > > Aug 12 12:20:15 BCPHost ModemManager[2758]: [1439382015.389258] > [mm-plugin-manager.c:107] find_device_support_context_complete_and_free(): > (Plugin Manager) [/sys/devices/pci0000:00/0000:00:1c.2/0000:02:00.0] device > support check finished in '2.463837' seconds > > Aug 12 12:20:15 BCPHost ModemManager[2758]: [1439382015.389956] > [mm-manager.c:140] find_device_support_ready(): Couldn't find support for > device at '/sys/devices/pci0000:00/0000:00:1c.2/0000:02:00.0': not supported > by any plugin > > Aug 12 12:20:16 BCPHost ModemManager[2758]: [1439382016.383328] > [mm-port-probe-at.c:43] mm_port_probe_response_processor_is_at(): Parsing AT > got: 'Serial command timed out' > > Aug 12 12:20:16 BCPHost ModemManager[2758]: [1439382016.383408] > [mm-at-serial-port.c:436] debug_log(): (ttyS0): --> 'AT' > > Aug 12 12:20:17 BCPHost ModemManager[2758]: [1439382017.066582] > [mm-port-probe.c:300] mm_port_probe_set_result_mbim(): (usbmisc/cdc-wdm0) > port is MBIM-capable > > Aug 12 12:20:17 BCPHost ModemManager[2758]: [1439382017.130574] > [mm-plugin-manager.c:417] plugin_supports_port_ready(): (Plugin Manager) > (Generic) [cdc-wdm0] found best plugin for port > > Aug 12 12:20:17 BCPHost ModemManager[2758]: [1439382017.130661] > [mm-plugin-manager.c:334] suggest_port_probe_result(): (Plugin Manager) > (Generic) [wwp0s20u6c2i12] deferred task completed, got suggested plugin > > Aug 12 12:20:17 BCPHost ModemManager[2758]: [1439382017.130693] > [mm-plugin-manager.c:274] port_probe_context_finished(): (Plugin Manager) > 'cdc-wdm0' port probe finished, still 1 running probes in this device > (wwp0s20u6c2i12) > > Aug 12 12:20:17 BCPHost ModemManager[2758]: [1439382017.130746] > [mm-plugin.c:700] mm_plugin_supports_port(): (Generic) [wwp0s20u6c2i12] > probing deferred until result suggested > > Aug 12 12:20:17 BCPHost ModemManager[2758]: [1439382017.130785] > [mm-plugin-manager.c:485] plugin_supports_port_ready(): (Plugin Manager) > (Generic) [wwp0s20u6c2i12] task completed, got suggested plugin > > Aug 12 12:20:17 BCPHost ModemManager[2758]: [1439382017.130805] > [mm-plugin-manager.c:285] port_probe_context_finished(): (Plugin Manager) > 'wwp0s20u6c2i12' port probe finished, last one in device > > Aug 12 12:20:17 BCPHost ModemManager[2758]: [1439382017.130823] > [mm-plugin-manager.c:107] find_device_support_context_complete_and_free(): > (Plugin Manager) [/sys/devices/pci0000:00/0000:00:14.0/usb1/1-6] device > support check finished in '4.218634' seconds > > Aug 12 12:20:17 BCPHost ModemManager[2758]: [1439382017.130854] > [mm-device.c:486] mm_device_create_modem(): Creating modem with plugin > 'Generic' and '2' ports > > Aug 12 12:20:17 BCPHost ModemManager[2758]: [1439382017.130883] > [generic/mm-plugin-generic.c:73] create_modem(): MBIM-powered generic modem > found... > > Aug 12 12:20:17 BCPHost ModemManager[2758]: [1439382017.131956] > [mm-base-modem.c:275] mm_base_modem_grab_port(): (cdc-wdm0) type 'mbim' > claimed by /sys/devices/pci0000:00/0000:00:14.0/usb1/1-6 > > Aug 12 12:20:17 BCPHost ModemManager[2758]: [1439382017.132000] > [mm-base-modem.c:275] mm_base_modem_grab_port(): (wwp0s20u6c2i12) type 'net' > claimed by /sys/devices/pci0000:00/0000:00:14.0/usb1/1-6 > > Aug 12 12:20:17 BCPHost ModemManager[2758]: [1439382017.132018] > [mm-base-modem.c:1056] log_port(): > (/sys/devices/pci0000:00/0000:00:14.0/usb1/1-6) net/wwp0s20u6c2i12 data > (primary) > > Aug 12 12:20:17 BCPHost ModemManager[2758]: [1439382017.132028] > [mm-base-modem.c:1056] log_port(): > (/sys/devices/pci0000:00/0000:00:14.0/usb1/1-6) usb/cdc-wdm0 mbim (primary) > > Aug 12 12:20:17 BCPHost ModemManager[2758]: [1439382017.132237] > [mm-manager.c:149] find_device_support_ready(): Modem for device at > '/sys/devices/pci0000:00/0000:00:14.0/usb1/1-6' successfully created > > Aug 12 12:20:17 BCPHost ModemManager[2758]: [1439382017.930608] > [mm-broadband-modem-mbim.c:1269] parent_initialization_started_ready(): > Couldn't start parent initialization: Couldn't open ports during modem > initialization: Couldn't get primary port > > Aug 12 12:20:17 BCPHost ModemManager[2758]: [1439382017.933012] > [mm-broadband-modem-mbim.c:202] modem_load_current_capabilities(): loading > current capabilities... > > Aug 12 12:20:18 BCPHost ModemManager[2758]: [1439382017.994713] > [mm-broadband-modem-mbim.c:132] modem_load_current_capabilities_finish(): > loaded modem capabilities: gsm-umts, lte > > Aug 12 12:20:18 BCPHost ModemManager[2758]: [1439382017.994884] > [mm-iface-modem.c:4074] interface_initialization_step(): Modem allows up to > 1 bearers > > Aug 12 12:20:18 BCPHost ModemManager[2758]: [1439382017.994920] > [mm-bearer-list.c:273] mm_bearer_list_new(): Creating bearer list (max: 1, > max active: 1) > > Aug 12 12:20:18 BCPHost ModemManager[2758]: [1439382017.995244] > [mm-modem-helpers.c:148] mm_create_device_identifier(): Device ID source > '0000119900009041353516050360690SWI9X15C_01.12MBIM[1199:9041]Generic' > > Aug 12 12:20:18 BCPHost ModemManager[2758]: [1439382017.995272] > [mm-modem-helpers.c:149] mm_create_device_identifier(): Device ID > '6407dc87af7e1f64ac8ae42d2ee6cb15b76a012a' > > Aug 12 12:20:18 BCPHost ModemManager[2758]: [1439382018.122459] > [mm-iface-modem.c:2895] update_lock_info_context_step(): SIM is ready, and > no need for the after SIM unlock step... > > Aug 12 12:20:18 BCPHost ModemManager[2758]: [1439382018.282984] > [mm-iface-modem-3gpp-ussd.c:786] check_support_ready(): USSD support check > failed: 'No AT port available to run command' > > Aug 12 12:20:18 BCPHost ModemManager[2758]: [1439382018.283043] > [mm-broadband-modem.c:8911] iface_modem_3gpp_ussd_initialize_ready(): > Couldn't initialize interface: 'USSD not supported' > > Aug 12 12:20:18 BCPHost ModemManager[2758]: [1439382018.283630] > [mm-broadband-modem-mbim.c:2330] messaging_check_support(): Messaging > capabilities supported > > Aug 12 12:20:18 BCPHost ModemManager[2758]: [1439382018.283713] > [mm-iface-modem-messaging.c:1133] load_supported_storages_ready(): Supported > storages loaded: > > Aug 12 12:20:18 BCPHost ModemManager[2758]: [1439382018.283730] > [mm-iface-modem-messaging.c:1134] load_supported_storages_ready(): mem1 > (list/read/delete) storages: 'mt' > > Aug 12 12:20:18 BCPHost ModemManager[2758]: [1439382018.283745] > [mm-iface-modem-messaging.c:1135] load_supported_storages_ready(): mem2 > (write/send) storages: 'mt' > > Aug 12 12:20:18 BCPHost ModemManager[2758]: [1439382018.283758] > [mm-iface-modem-messaging.c:1136] load_supported_storages_ready(): mem3 > (reception) storages: 'mt' > > Aug 12 12:20:18 BCPHost ModemManager[2758]: [1439382018.283999] > [mm-broadband-modem.c:8915] iface_modem_time_initialize_ready(): Couldn't > initialize interface: 'Time not supported' > > Aug 12 12:20:18 BCPHost ModemManager[2758]: [1439382018.284184] > [mm-broadband-modem.c:8916] iface_modem_signal_initialize_ready(): Couldn't > initialize interface: 'Extended Signal information not supported' > > Aug 12 12:20:18 BCPHost ModemManager[2758]: [1439382018.284442] > [mm-broadband-modem.c:8917] iface_modem_oma_initialize_ready(): Couldn't > initialize interface: 'OMA not supported' > > Aug 12 12:20:18 BCPHost ModemManager[2758]: [1439382018.284580] > [mm-broadband-modem.c:8918] iface_modem_firmware_initialize_ready(): > Couldn't initialize interface: 'Firmware not supported' > > Aug 12 12:20:18 BCPHost ModemManager[2758]: [1439382018.288554] > [mm-iface-modem.c:1203] __iface_modem_update_state_internal(): Modem: state > changed (unknown -> disabled) > > Aug 12 12:20:18 BCPHost ModemManager[2758]: [1439382018.288919] > [mm-base-modem.c:1025] initialize_ready(): modem properly initialized > > Aug 12 12:20:18 BCPHost ModemManager[2758]: [1439382018.290055] > [mm-device.c:416] export_modem(): Exported modem > '/sys/devices/pci0000:00/0000:00:14.0/usb1/1-6' at path > '/org/freedesktop/ModemManager1/Modem/0' > > Aug 12 12:20:18 BCPHost ModemManager[2758]: [1439382018.290103] > [mm-device.c:424] export_modem(): (/org/freedesktop/ModemManager1/Modem/0): > 'Generic' modem, VID 0x1199 PID 0x9041 (usb) > > Aug 12 12:20:19 BCPHost ModemManager[2758]: [1439382019.380460] > [mm-port-probe-at.c:43] mm_port_probe_response_processor_is_at(): Parsing AT > got: 'Serial command timed out' > > Aug 12 12:20:19 BCPHost ModemManager[2758]: [1439382019.380780] > [mm-at-serial-port.c:436] debug_log(): (ttyS0): --> 'AT' > > Aug 12 12:20:20 BCPHost chronyd[669]: Selected source 212.186.250.154 > > Aug 12 12:20:22 BCPHost ModemManager[2758]: [1439382022.382382] > [mm-port-probe-at.c:43] mm_port_probe_response_processor_is_at(): Parsing AT > got: 'Serial command timed out' > > Aug 12 12:20:22 BCPHost ModemManager[2758]: [1439382022.382503] > [mm-port-probe.c:161] mm_port_probe_set_result_at(): (tty/ttyS0) port is not > AT-capable > > Aug 12 12:20:22 BCPHost ModemManager[2758]: [1439382022.382635] > [mm-serial-port.c:1015] mm_serial_port_close(): (ttyS0) device open count is > 0 (close) > > Aug 12 12:20:22 BCPHost ModemManager[2758]: [1439382022.382688] > [mm-serial-port.c:1031] mm_serial_port_close(): (ttyS0) closing serial > port... > > Aug 12 12:20:22 BCPHost ModemManager[2758]: [1439382022.382832] > [mm-serial-port.c:1064] mm_serial_port_close(): (ttyS0) serial port closed > > Aug 12 12:20:22 BCPHost ModemManager[2758]: [1439382022.382897] > [mm-serial-port.c:1132] mm_serial_port_close_force(): (ttyS0) forced to > close port > > Aug 12 12:20:22 BCPHost ModemManager[2758]: [1439382022.382994] > [mm-plugin.c:425] apply_post_probing_filters(): (Cinterion) [ttyS0] filtered > by vendor strings > > Aug 12 12:20:22 BCPHost ModemManager[2758]: [1439382022.383229] > [mm-plugin.c:772] mm_plugin_supports_port(): (Iridium) [ttyS0] probe > required: 'at, at-vendor, at-product' > > Aug 12 12:20:22 BCPHost ModemManager[2758]: [1439382022.383382] > [mm-plugin.c:450] apply_post_probing_filters(): (Iridium) [ttyS0] filtered > as no vendor/product strings given > > Aug 12 12:20:22 BCPHost ModemManager[2758]: [1439382022.383485] > [mm-plugin.c:772] mm_plugin_supports_port(): (Nokia) [ttyS0] probe required: > 'at, at-vendor, at-icera' > > Aug 12 12:20:22 BCPHost ModemManager[2758]: [1439382022.383576] > [mm-plugin.c:425] apply_post_probing_filters(): (Nokia) [ttyS0] filtered by > vendor strings > > Aug 12 12:20:22 BCPHost ModemManager[2758]: [1439382022.383661] > [mm-plugin.c:772] mm_plugin_supports_port(): (Via CBP7) [ttyS0] probe > required: 'at, at-vendor, at-product' > > Aug 12 12:20:22 BCPHost ModemManager[2758]: [1439382022.383736] > [mm-plugin.c:450] apply_post_probing_filters(): (Via CBP7) [ttyS0] filtered > as no vendor/product strings given > > Aug 12 12:20:22 BCPHost ModemManager[2758]: [1439382022.383813] > [mm-plugin.c:772] mm_plugin_supports_port(): (Generic) [ttyS0] probe > required: 'at, qcdm' > > Aug 12 12:20:22 BCPHost ModemManager[2758]: [1439382022.384391] > [mm-port-probe.c:1331] mm_port_probe_run(): (tty/ttyS0) launching port > probing: 'qcdm' > > Aug 12 12:20:22 BCPHost ModemManager[2758]: [1439382022.384853] > [mm-port-probe.c:657] serial_probe_qcdm(): (tty/ttyS0) probing QCDM... > > Aug 12 12:20:22 BCPHost ModemManager[2758]: [1439382022.385378] > [mm-serial-port.c:892] mm_serial_port_open(): (ttyS0) opening serial port... > > Aug 12 12:20:22 BCPHost ModemManager[2758]: [1439382022.387689] > [mm-serial-port.c:969] mm_serial_port_open(): (ttyS0) device open count is 1 > (open) > > Aug 12 12:20:22 BCPHost ModemManager[2758]: [1439382022.387931] > [mm-qcdm-serial-port.c:205] debug_log(): (ttyS0): --> 7e 00 78 f0 7e > > Aug 12 12:20:25 BCPHost ModemManager[2758]: [1439382025.382404] > [mm-qcdm-serial-port.c:205] debug_log(): (ttyS0): --> 7e 00 78 f0 7e > > Aug 12 12:20:28 BCPHost ModemManager[2758]: [1439382028.382810] > [mm-port-probe.c:257] mm_port_probe_set_result_qcdm(): (tty/ttyS0) port is > not QCDM-capable > > Aug 12 12:20:28 BCPHost ModemManager[2758]: [1439382028.383012] > [mm-serial-port.c:1015] mm_serial_port_close(): (ttyS0) device open count is > 0 (close) > > Aug 12 12:20:28 BCPHost ModemManager[2758]: [1439382028.383080] > [mm-serial-port.c:1031] mm_serial_port_close(): (ttyS0) closing serial > port... > > Aug 12 12:20:28 BCPHost ModemManager[2758]: [1439382028.383273] > [mm-serial-port.c:1064] mm_serial_port_close(): (ttyS0) serial port closed > > Aug 12 12:20:28 BCPHost ModemManager[2758]: [1439382028.383376] > [mm-serial-port.c:1132] mm_serial_port_close_force(): (ttyS0) forced to > close port > > Aug 12 12:20:28 BCPHost ModemManager[2758]: [1439382028.383494] > [mm-plugin-manager.c:417] plugin_supports_port_ready(): (Plugin Manager) > (Generic) [ttyS0] found best plugin for port > > Aug 12 12:20:28 BCPHost ModemManager[2758]: [1439382028.383570] > [mm-plugin-manager.c:285] port_probe_context_finished(): (Plugin Manager) > 'ttyS0' port probe finished, last one in device > > Aug 12 12:20:28 BCPHost ModemManager[2758]: [1439382028.383608] > [mm-plugin-manager.c:107] find_device_support_context_complete_and_free(): > (Plugin Manager) [/sys/devices/pci0000:00/0000:00:16.3] device support check > finished in '15.483583' seconds > > Aug 12 12:20:28 BCPHost ModemManager[2758]: [1439382028.383670] > [mm-device.c:486] mm_device_create_modem(): Creating modem with plugin > 'Generic' and '1' ports > > Aug 12 12:20:28 BCPHost ModemManager[2758]: [1439382028.384363] > [mm-plugin.c:900] mm_plugin_create_modem(): Could not grab port (tty/ttyS0): > 'Cannot add port 'tty/ttyS0', unhandled serial type' > > Aug 12 12:20:28 BCPHost ModemManager[2758]: [1439382028.384465] > [mm-base-modem.c:1556] finalize(): Modem (Generic) > '/sys/devices/pci0000:00/0000:00:16.3' completely disposed > > Aug 12 12:20:28 BCPHost ModemManager[2758]: [1439382028.384508] > [mm-manager.c:145] find_device_support_ready(): Couldn't create modem for > device at '/sys/devices/pci0000:00/0000:00:16.3': Failed to find primary AT > port > > > > > > > > > > mmcli –m 0 finds my modem: > > > > /org/freedesktop/ModemManager1/Modem/0 (device id > '6407dc87af7e1f64ac8ae42d2ee6cb15b76a012a') > > ------------------------- > > Hardware | manufacturer: 'Generic' > > | model: 'MBIM [1199:9041]' > > | revision: 'SWI9X15C_01.12' > > | supported: 'gsm-umts, lte' > > | current: 'gsm-umts, lte' > > | equipment id: '353516050360690' > > ------------------------- > > System | device: '/sys/devices/pci0000:00/0000:00:14.0/usb1/1-6' > > | drivers: 'cdc_mbim' > > | plugin: 'Generic' > > | primary port: 'cdc-wdm0' > > | ports: 'cdc-wdm0 (mbim), wwp0s20u6c2i12 (net)' > > ------------------------- > > Numbers | own : 'unknown' > > ------------------------- > > Status | lock: 'none' > > | unlock retries: 'sim-pin2 (3)' > > | state: 'disabled' > > | power state: 'on' > > | access tech: 'unknown' > > | signal quality: '0' (cached) > > ------------------------- > > Modes | supported: 'allowed: 2g, 3g, 4g; preferred: none' > > | current: 'allowed: 2g, 3g, 4g; preferred: none' > > ------------------------- > > Bands | supported: 'unknown' > > | current: 'unknown' > > ------------------------- > > IP | supported: 'ipv4, ipv6, ipv4v6' > > ------------------------- > > 3GPP | imei: '353516050360690' > > | enabled locks: 'fixed-dialing' > > | operator id: 'unknown' > > | operator name: 'unknown' > > | registration: 'unknown' > > ------------------------- > > SIM | path: '/org/freedesktop/ModemManager1/SIM/0' > > > > > > > > > > > > Enabling the modem: mmcli –m 0 –e > > > > Log: > > Aug 12 12:26:47 BCPHost ModemManager[2758]: [1439382407.196200] > [mm-iface-modem.c:1203] __iface_modem_update_state_internal(): Modem > /org/freedesktop/ModemManager1/Modem/0: state changed (disabled -> enabling) > > Aug 12 12:26:47 BCPHost ModemManager[2758]: [1439382407.196481] > [mm-broadband-modem.c:7916] enabling_started(): Skipping modem > initialization: not required > > Aug 12 12:26:47 BCPHost ModemManager[2758]: [1439382407.196536] > [mm-broadband-modem-mbim.c:1196] parent_enabling_started_ready(): Couldn't > start parent enabling: Couldn't open ports during modem enabling: Couldn't > get primary port > > Aug 12 12:26:47 BCPHost ModemManager[2758]: [1439382407.212570] > [mm-iface-modem.c:3056] set_power_state(): No need to change power state: > already in 'on' power state > > Aug 12 12:26:47 BCPHost ModemManager[2758]: [1439382407.212649] > [mm-broadband-modem.c:8505] enabling_step(): Modem has 3GPP capabilities, > enabling the Modem 3GPP interface... > > Aug 12 12:26:47 BCPHost ModemManager[2758]: [1439382407.212693] > [mm-broadband-modem-mbim.c:1813] common_setup_cleanup_unsolicited_events(): > Supported notifications: signal (yes), registration (no), sms (no) > > Aug 12 12:26:47 BCPHost ModemManager[2758]: [1439382407.212745] > [mm-broadband-modem-mbim.c:1943] common_enable_disable_unsolicited_events(): > Enabled notifications: signal (yes), registration (no), sms (no) > > Aug 12 12:26:47 BCPHost ModemManager[2758]: [1439382407.244547] > [mm-broadband-modem-mbim.c:1813] common_setup_cleanup_unsolicited_events(): > Supported notifications: signal (yes), registration (yes), sms (no) > > Aug 12 12:26:47 BCPHost ModemManager[2758]: [1439382407.244643] > [mm-broadband-modem-mbim.c:1943] common_enable_disable_unsolicited_events(): > Enabled notifications: signal (yes), registration (yes), sms (no) > > Aug 12 12:26:47 BCPHost ModemManager[2758]: [1439382407.276551] > [mm-iface-modem-3gpp.c:745] mm_iface_modem_3gpp_run_registration_checks(): > Running registration checks (CS: 'yes', PS: 'yes', EPS: 'no') > > Aug 12 12:26:47 BCPHost ModemManager[2758]: [1439382407.308861] > [mm-iface-modem-3gpp.c:1090] update_registration_state(): Modem > /org/freedesktop/ModemManager1/Modem/0: 3GPP Registration state changed > (unknown -> registering) > > Aug 12 12:26:47 BCPHost ModemManager[2758]: [1439382407.309037] > [mm-iface-modem.c:726] mm_iface_modem_update_access_technologies(): Modem > /org/freedesktop/ModemManager1/Modem/0: access technology changed (unknown > -> umts, hsdpa, hsupa) > > Aug 12 12:26:47 BCPHost ModemManager[2758]: [1439382407.309515] > [mm-broadband-modem.c:8546] enabling_step(): Modem has location > capabilities, enabling the Location interface... > > Aug 12 12:26:47 BCPHost ModemManager[2758]: [1439382407.309620] > [mm-iface-modem-location.c:739] setup_gathering(): Need to enable the > following location sources: '3gpp-lac-ci' > > Aug 12 12:26:47 BCPHost ModemManager[2758]: [1439382407.309777] > [mm-iface-modem-3gpp.c:745] mm_iface_modem_3gpp_run_registration_checks(): > Running registration checks (CS: 'yes', PS: 'yes', EPS: 'no') > > Aug 12 12:26:47 BCPHost ModemManager[2758]: [1439382407.312373] > [mm-iface-modem-3gpp.c:1023] > update_registration_reload_current_operator_ready(): Modem > /org/freedesktop/ModemManager1/Modem/0: 3GPP Registration state changed > (registering -> home) > > Aug 12 12:26:47 BCPHost ModemManager[2758]: [1439382407.312641] > [mm-iface-modem.c:1372] get_updated_consolidated_state(): Will start keeping > track of state for subsystem '3gpp' > > Aug 12 12:26:47 BCPHost ModemManager[2758]: [1439382407.313109] > [mm-broadband-modem.c:8559] enabling_step(): Modem has messaging > capabilities, enabling the Messaging interface... > > Aug 12 12:26:47 BCPHost ModemManager[2758]: [1439382407.313441] > [mm-broadband-modem-mbim.c:1813] common_setup_cleanup_unsolicited_events(): > Supported notifications: signal (yes), registration (yes), sms (yes) > > Aug 12 12:26:47 BCPHost ModemManager[2758]: [1439382407.313600] > [mm-broadband-modem-mbim.c:1943] common_enable_disable_unsolicited_events(): > Enabled notifications: signal (yes), registration (yes), sms (yes) > > Aug 12 12:26:47 BCPHost ModemManager[2758]: [1439382407.340730] > [mm-iface-modem.c:1203] __iface_modem_update_state_internal(): Modem > /org/freedesktop/ModemManager1/Modem/0: state changed (enabling -> > registered) > > Aug 12 12:26:47 BCPHost ModemManager[2758]: [1439382407.341247] > [mm-iface-modem.c:844] periodic_access_technologies_check_enable(): Periodic > access technology checks enabled > > > > successfully enabled the modem > > > > > > > > > > > > mmcli –m 0 now shows that my modem is registered: > > > > /org/freedesktop/ModemManager1/Modem/0 (device id > '6407dc87af7e1f64ac8ae42d2ee6cb15b76a012a') > > ------------------------- > > Hardware | manufacturer: 'Generic' > > | model: 'MBIM [1199:9041]' > > | revision: 'SWI9X15C_01.12' > > | supported: 'gsm-umts, lte' > > | current: 'gsm-umts, lte' > > | equipment id: '353516050360690' > > ------------------------- > > System | device: '/sys/devices/pci0000:00/0000:00:14.0/usb1/1-6' > > | drivers: 'cdc_mbim' > > | plugin: 'Generic' > > | primary port: 'cdc-wdm0' > > | ports: 'cdc-wdm0 (mbim), wwp0s20u6c2i12 (net)' > > ------------------------- > > Numbers | own : 'unknown' > > ------------------------- > > Status | lock: 'none' > > | unlock retries: 'sim-pin2 (3)' > > | state: 'registered' > > | power state: 'on' > > | access tech: 'umts, hsdpa, hsupa' > > | signal quality: '0' (cached) > > ------------------------- > > Modes | supported: 'allowed: 2g, 3g, 4g; preferred: none' > > | current: 'allowed: 2g, 3g, 4g; preferred: none' > > ------------------------- > > Bands | supported: 'unknown' > > | current: 'unknown' > > ------------------------- > > IP | supported: 'ipv4, ipv6, ipv4v6' > > ------------------------- > > 3GPP | imei: '353516050360690' > > | enabled locks: 'fixed-dialing' > > | operator id: '23210' > > | operator name: '3 AT' > > | registration: 'home' > > ------------------------- > > SIM | path: '/org/freedesktop/ModemManager1/SIM/0' > > > > Trying to connect to „drei.at“ apn: > > mmcli –m 0 –-simple-connect=“apn=drei.at“ > > > > Log: > > Aug 12 12:30:41 BCPHost ModemManager[2758]: [1439382641.413665] > [mm-iface-modem-simple.c:641] connect_auth_ready(): Simple connect > started... > > Aug 12 12:30:41 BCPHost ModemManager[2758]: [1439382641.413744] > [mm-iface-modem-simple.c:651] connect_auth_ready(): PIN: unspecified > > Aug 12 12:30:41 BCPHost ModemManager[2758]: [1439382641.413780] > [mm-iface-modem-simple.c:653] connect_auth_ready(): Operator ID: > unspecified > > Aug 12 12:30:41 BCPHost ModemManager[2758]: [1439382641.413812] > [mm-iface-modem-simple.c:655] connect_auth_ready(): Allowed roaming: yes > > Aug 12 12:30:41 BCPHost ModemManager[2758]: [1439382641.413842] > [mm-iface-modem-simple.c:657] connect_auth_ready(): APN: drei.at > > Aug 12 12:30:41 BCPHost ModemManager[2758]: [1439382641.413870] > [mm-iface-modem-simple.c:665] connect_auth_ready(): IP family: > unspecified > > Aug 12 12:30:41 BCPHost ModemManager[2758]: [1439382641.413902] > [mm-iface-modem-simple.c:673] connect_auth_ready(): Allowed > authentication: unspecified > > Aug 12 12:30:41 BCPHost ModemManager[2758]: [1439382641.413930] > [mm-iface-modem-simple.c:675] connect_auth_ready(): User: unspecified > > Aug 12 12:30:41 BCPHost ModemManager[2758]: [1439382641.413956] > [mm-iface-modem-simple.c:677] connect_auth_ready(): Password: unspecified > > Aug 12 12:30:41 BCPHost ModemManager[2758]: [1439382641.413981] > [mm-iface-modem-simple.c:679] connect_auth_ready(): Number: unspecified > > Aug 12 12:30:41 BCPHost ModemManager[2758]: [1439382641.414005] > [mm-iface-modem-simple.c:469] connection_step(): Simple connect state (4/8): > Wait to get fully enabled > > Aug 12 12:30:41 BCPHost ModemManager[2758]: [1439382641.414071] > [mm-iface-modem-simple.c:478] connection_step(): Simple connect state (5/8): > Register > > Aug 12 12:30:41 BCPHost ModemManager[2758]: [1439382641.414126] > [mm-iface-modem-3gpp.c:384] mm_iface_modem_3gpp_register_in_network(): > Already registered in network '23210', automatic registration not > launched... > > Aug 12 12:30:41 BCPHost ModemManager[2758]: [1439382641.415311] > [mm-iface-modem-simple.c:501] connection_step(): Simple connect state (6/8): > Bearer > > Aug 12 12:30:41 BCPHost ModemManager[2758]: [1439382641.415690] > [mm-iface-modem-simple.c:521] connection_step(): Creating new bearer... > > Aug 12 12:30:41 BCPHost ModemManager[2758]: [1439382641.416100] > [mm-broadband-modem-mbim.c:1139] modem_create_bearer(): Creating MBIM bearer > in MBIM modem > > Aug 12 12:30:41 BCPHost ModemManager[2758]: [1439382641.416905] > [mm-broadband-modem-mbim.c:1053] modem_create_bearer_finish(): New bearer > created at DBus path '/org/freedesktop/ModemManager1/Bearer/0' > > Aug 12 12:30:41 BCPHost ModemManager[2758]: [1439382641.416980] > [mm-iface-modem-simple.c:583] connection_step(): Simple connect state (7/8): > Connect > > Aug 12 12:30:41 BCPHost ModemManager[2758]: [1439382641.417236] > [mm-bearer.c:586] mm_bearer_connect(): Connecting bearer > '/org/freedesktop/ModemManager1/Bearer/0' > > Aug 12 12:30:41 BCPHost ModemManager[2758]: [1439382641.417554] > [mm-iface-modem.c:1203] __iface_modem_update_state_internal(): Modem > /org/freedesktop/ModemManager1/Modem/0: state changed (registered -> > connecting) > > Aug 12 12:30:41 BCPHost ModemManager[2758]: [1439382641.418195] > [mm-bearer-mbim.c:834] _connect(): Launching connection with data port > (net/wwp0s20u6c2i12) > > Aug 12 12:30:41 BCPHost ModemManager[2758]: [1439382641.418238] > [mm-bearer-mbim.c:592] connect_context_step(): Activating packet service... > > Aug 12 12:30:41 BCPHost ModemManager[2758]: [1439382641.453784] > [mm-bearer.c:461] connect_ready(): Couldn't connect bearer > '/org/freedesktop/ModemManager1/Bearer/0': 'Failure' > > Aug 12 12:30:41 BCPHost ModemManager[2758]: [1439382641.453921] > [mm-iface-modem.c:1203] __iface_modem_update_state_internal(): Modem > /org/freedesktop/ModemManager1/Modem/0: state changed (connecting -> > registered) > > Aug 12 12:30:41 BCPHost ModemManager[2758]: [1439382641.454400] > [mm-iface-modem-simple.c:221] connect_bearer_ready(): Couldn't connect > bearer: 'Failure' > > > > > > > > > > It states that the mm couldn’t connect to the bearer with the reason > „Failure“. > > > > Just searched for 3 days and couldn’t find a solution. > > I hope you guys can help me out! > > Could you run ModemManager with debug logs enabled and repeat the process? We'd be interested in the last connection step, to see why it really gets failed. http://www.freedesktop.org/wiki/Software/ModemManager/Debugging/ Also, you're using ModemManager 1.1.something, which is quite old (there have been 2 stable releases after that: 1.2 and 1.4, and quite some updates to the last 1.4.x). Could you maybe try to install a newer ModemManager as well? -- Aleksander https://aleksander.es From dcbw at redhat.com Wed Aug 12 09:30:40 2015 From: dcbw at redhat.com (Dan Williams) Date: Wed, 12 Aug 2015 11:30:40 -0500 Subject: Cannot connect with Sierra Wireless EM7305 on CentOS 7. In-Reply-To: References: <55cb404b.ed0cb40a.8edc3.ffff92ae@mx.google.com> Message-ID: <1439397040.10564.5.camel@redhat.com> On Wed, 2015-08-12 at 16:18 +0200, Aleksander Morgado wrote: > Hey Tadej, > Could you run ModemManager with debug logs enabled and repeat the > process? We'd be interested in the last connection step, to see why it > really gets failed. > http://www.freedesktop.org/wiki/Software/ModemManager/Debugging/ > > Also, you're using ModemManager 1.1.something, which is quite old > (there have been 2 stable releases after that: 1.2 and 1.4, and quite > some updates to the last 1.4.x). Could you maybe try to install a > newer ModemManager as well? Yes, unfortunately it's rather old in Centos/RHEL, along with older versions of libqmi and libmbim. Hopefully we can update those in the future. Also note that the kernel drivers may or may not support newer hardware too. Building updated copies of of libmbim, libqmi, and ModemManager does work on 7.2; I've done it before. Dan From joao.m.santos.silva at gmail.com Wed Aug 12 10:14:18 2015 From: joao.m.santos.silva at gmail.com (=?UTF-8?Q?Jo=c3=a3o_M._S._Silva?=) Date: Wed, 12 Aug 2015 18:14:18 +0100 Subject: Cellphone does not support GSM7? In-Reply-To: References: <5502EC5B.90005@gmail.com> <550330CB.4040801@gmail.com> <550388F5.50700@gmail.com> Message-ID: <55CB7EEA.8090901@gmail.com> Hi Aleksander, On 03/23/2015 10:58 AM, Aleksander Morgado wrote: > $ sudo mmcli -m 0 --messaging-create-sms="text='$SMSTEXT',number='123456'" > Successfully created new SMS: > /org/freedesktop/ModemManager1/SMS/6 (unknown) Do you confirm that SMSTEXT above cannot contain single quotes? I tried with \', but I think it was interpreted as \ + '. Thanks and best regards, -- João M. S. Silva From aleksander at aleksander.es Wed Aug 12 11:48:23 2015 From: aleksander at aleksander.es (Aleksander Morgado) Date: Wed, 12 Aug 2015 20:48:23 +0200 Subject: Cellphone does not support GSM7? In-Reply-To: <55CB7EEA.8090901@gmail.com> References: <5502EC5B.90005@gmail.com> <550330CB.4040801@gmail.com> <550388F5.50700@gmail.com> <55CB7EEA.8090901@gmail.com> Message-ID: On Wed, Aug 12, 2015 at 7:14 PM, João M. S. Silva wrote: > On 03/23/2015 10:58 AM, Aleksander Morgado wrote: >> >> $ sudo mmcli -m 0 --messaging-create-sms="text='$SMSTEXT',number='123456'" >> Successfully created new SMS: >> /org/freedesktop/ModemManager1/SMS/6 (unknown) > > > Do you confirm that SMSTEXT above cannot contain single quotes? > > I tried with \', but I think it was interpreted as \ + '. That may be something to fix in the mmcli tool, when single quotes are used to enclose the string values. -- Aleksander https://aleksander.es From andreas.fett at secunet.com Thu Aug 13 06:14:48 2015 From: andreas.fett at secunet.com (Andreas Fett) Date: Thu, 13 Aug 2015 15:14:48 +0200 Subject: Getting a List of provisioned contexts Message-ID: <55CC9848.1020900@secunet.com> Hello List, during connect the ModemManager debug logs show a List of provisioned contexts. I assume that those are stored on the sim or in the modem itself. Is there a way to query this list via the dbus api? Cheers Andreas From aleksander at aleksander.es Thu Aug 13 23:54:10 2015 From: aleksander at aleksander.es (Aleksander Morgado) Date: Fri, 14 Aug 2015 08:54:10 +0200 Subject: Getting a List of provisioned contexts In-Reply-To: <55CC9848.1020900@secunet.com> References: <55CC9848.1020900@secunet.com> Message-ID: On Thu, Aug 13, 2015 at 3:14 PM, Andreas Fett wrote: > during connect the ModemManager debug logs show a List of provisioned > contexts. I assume that those are stored on the sim or in the modem > itself. Is there a way to query this list via the dbus api? Not currently, no. -- Aleksander https://aleksander.es From pomidorabelisima at gmail.com Sun Aug 16 00:54:59 2015 From: pomidorabelisima at gmail.com (poma) Date: Sun, 16 Aug 2015 09:54:59 +0200 Subject: F23 NetworkManager Test Day August 20th! Message-ID: <55D041D3.2040108@gmail.com> http://fedoramagazine.org/f23-networkmanager-test-day-august-20th https://fedoraproject.org/wiki/Test_Day:2015-08-20_NetworkManager#Mobile_connectivity https://fedoraproject.org/wiki/QA/TestCases/NM_Mobile_Broadband TestCases/NM Mobile Broadband The ability of NetworkManager to establish a connection over a 3G mobile broadband card. ... Fedora 23 - mobile broadband components versions: - ModemManager-1.4.6-2.fc23.x86_64 - libqmi-1.12.4-3.fc23.x86_64 - libmbim-1.12.0-2.fc23.x86_64 - usb_modeswitch-2.2.1-2.fc23.x86_64 - usb_modeswitch-data-20150115-2.fc23.noarch It should be: - ModemManager-1.4.10-1.fc2x.x86_64 - libqmi-1.12.6-1.fc2x.x86_64 - libmbim-1.12.2-1.fc2x.x86_64 - usb_modeswitch-2.2.5-1.fc2x.x86_64 - usb_modeswitch-data-20150627-1.fc2x.noarch You intend to test with outdated versions? Ref. - ModemManager - libqmi - libmbim http://www.freedesktop.org/wiki/Software/ModemManager http://www.freedesktop.org/wiki/Software/libqmi http://www.freedesktop.org/wiki/Software/libmbim - USB_ModeSwitch http://www.draisberghof.de/usb_modeswitch From joao.m.santos.silva at gmail.com Mon Aug 17 08:21:39 2015 From: joao.m.santos.silva at gmail.com (=?UTF-8?Q?Jo=c3=a3o_M._S._Silva?=) Date: Mon, 17 Aug 2015 16:21:39 +0100 Subject: error: couldn't find the ModemManager process in the bus In-Reply-To: References: <55B403C7.70809@gmail.com> <55B6C117.7030602@gmail.com> Message-ID: <55D1FC03.7080206@gmail.com> I got help from ubuntu-devel-discuss and found a way to enable modemmanager without network-manager: $ cat /etc/init/modemmanager.override start on starting dbus stop on stopped dbus This makes it depend on dbus instead of network-manger, which I think is the correct dependence. On 07/28/2015 08:53 AM, Aleksander Morgado wrote: > On Tue, Jul 28, 2015 at 1:39 AM, João M. S. Silva > wrote: >> Thank you Aleksander. >> >> I'm on Ubuntu so I tried this without success: >> >> jmss at aida:~$ sudo update-rc.d modemmanager defaults >> update-rc.d: /etc/init.d/modemmanager: file does not exist >> >> Then I looked inside /etc/init/modemmanager.conf and saw: >> >> start on starting network-manager >> stop on stopped network-manager >> >> Maybe I'm not running network-manager since this is a server without GUI? > > Well, NetworkManager can be used in servers without GUI. > > Check if it is installed, with e.g.: > $ dpkg -l | grep network > > -- João M. S. Silva From lrintel at redhat.com Tue Aug 18 06:24:41 2015 From: lrintel at redhat.com (Lubomir Rintel) Date: Tue, 18 Aug 2015 15:24:41 +0200 Subject: F23 NetworkManager Test Day August 20th! In-Reply-To: <55D041D3.2040108@gmail.com> References: <55D041D3.2040108@gmail.com> Message-ID: <1439904281.3940.6.camel@redhat.com> On Sun, 2015-08-16 at 09:54 +0200, poma wrote: ... > Fedora 23 - mobile broadband components versions: > - ModemManager-1.4.6-2.fc23.x86_64 > - libqmi-1.12.4-3.fc23.x86_64 > - libmbim-1.12.0-2.fc23.x86_64 > - usb_modeswitch-2.2.1-2.fc23.x86_64 > - usb_modeswitch-data-20150115-2.fc23.noarch > > It should be: > - ModemManager-1.4.10-1.fc2x.x86_64 > - libqmi-1.12.6-1.fc2x.x86_64 > - libmbim-1.12.2-1.fc2x.x86_64 > - usb_modeswitch-2.2.5-1.fc2x.x86_64 > - usb_modeswitch-data-20150627-1.fc2x.noarch > > > You intend to test with outdated versions? Thanks for the heads up; will do the updates right away & set up release monitoring. See you on the test day, hopefully! Lubo From pomidorabelisima at gmail.com Wed Aug 19 02:14:54 2015 From: pomidorabelisima at gmail.com (poma) Date: Wed, 19 Aug 2015 11:14:54 +0200 Subject: F23 NetworkManager Test Day August 20th! In-Reply-To: <1439904281.3940.6.camel@redhat.com> References: <55D041D3.2040108@gmail.com> <1439904281.3940.6.camel@redhat.com> Message-ID: <55D4490E.30209@gmail.com> On 18.08.2015 15:24, Lubomir Rintel wrote: > On Sun, 2015-08-16 at 09:54 +0200, poma wrote: > ... >> Fedora 23 - mobile broadband components versions: >> - ModemManager-1.4.6-2.fc23.x86_64 >> - libqmi-1.12.4-3.fc23.x86_64 >> - libmbim-1.12.0-2.fc23.x86_64 >> - usb_modeswitch-2.2.1-2.fc23.x86_64 >> - usb_modeswitch-data-20150115-2.fc23.noarch >> >> It should be: >> - ModemManager-1.4.10-1.fc2x.x86_64 >> - libqmi-1.12.6-1.fc2x.x86_64 >> - libmbim-1.12.2-1.fc2x.x86_64 >> - usb_modeswitch-2.2.5-1.fc2x.x86_64 >> - usb_modeswitch-data-20150627-1.fc2x.noarch >> >> >> You intend to test with outdated versions? > > Thanks for the heads up; will do the updates right away & set up > release monitoring. > > See you on the test day, hopefully! > > Lubo > As I am concerned, by the way thanks for the call, I test a lot of things on a daily basis, and given that I'm driving the above-mentioned current versions of components for quite a long time, this "Test Day" has been done already. Besides https://fedoraproject.org/wiki/Test_Day:2015-08-20_NetworkManager#Live_image "... Live images can be found here." http://alt.fedoraproject.org/pub/alt/nightly-composes/desktop/ Not Found The requested URL /pub/alt/nightly-composes/desktop/ was not found on this server. From tafish_ahmed at hotmail.com Wed Aug 19 00:16:07 2015 From: tafish_ahmed at hotmail.com (Ahmed Tafesh) Date: Wed, 19 Aug 2015 07:16:07 +0000 Subject: GPS raw problem In-Reply-To: References: Message-ID: Hello I have a Problem in RAW GPS, i enabled the gps-raw root at wica:/# mmcli -m 0 --location-status /org/freedesktop/ModemManager1/Modem/0 ---------------------------- Location | capabilities: '3gpp-lac-ci, gps-raw, gps-nmea, cdma-bs' | enabled: '3gpp-lac-ci, gps-raw, gps-nmea, cdma-bs' | signals: 'no' i enabled the gps-raw successfully, but when i try to get the Location dimntion i get error "Not Available" root at wica:/# mmcli -m 0 --location-get-gps-raw error: couldn't get raw GPS location from the modem: 'not available' /org/freedesktop/ModemManager1/Modem/0 ------------------------- 3GPP location | Mobile country code: '262' | Mobile network code: '2' | Location area code: '1366' | Cell ID: '80653768' ------------------------- GPS NMEA traces | $GLGSV,1,1,01,86,42,046,*5E | $GPGSV,2,1,06,33,,,34,01,,,,02,20,116,,12,83,352,*70 | $GPGSV,2,2,06,14,39,286,,15,,,*48 | $GNGNS,071036.2,,,,,NN,,,,,,*4C | $GPGSA,A,1,,,,,,,,,,,,,,,*1E | $GPRMC,,V,,,,,,,,,,N*53 | $GPVTG,,T,,M,,N,,K,N*2C | $GPGGA,,,,,,0,,,,,,,,*66 | $GNGSA,A,1,,,,,,,,,,,,,,,*00 | $PQXFI,,,,,,,,,,*56 ------------------------- Raw GPS | Not available ------------------------- CDMA BS | Not available plz help me Ahmed tafesh ـــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــ Eng. Ahmed Tafesh MSc. INFOTECH (Embedded System)Mechatronics EngineeringMob No:+4917671973960 Email:Tafish_ahmed at hotmail.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From tafish_ahmed at hotmail.com Wed Aug 19 00:10:05 2015 From: tafish_ahmed at hotmail.com (Ahmed Tafesh) Date: Wed, 19 Aug 2015 07:10:05 +0000 Subject: GPS raw problem Message-ID: Hello I have a Problem in RAW GPS, i enabled the gps-raw root at wica:/# mmcli -m 0 --location-status /org/freedesktop/ModemManager1/Modem/0 ---------------------------- Location | capabilities: '3gpp-lac-ci, gps-raw, gps-nmea, cdma-bs' | enabled: '3gpp-lac-ci, gps-raw, gps-nmea, cdma-bs' | signals: 'no' i enabled the gps-raw successfully, but when i try to get the Location dimntion i get error "Not Available" root at wica:/# mmcli -m 0 --location-get-gps-raw error: couldn't get raw GPS location from the modem: 'not available' plz help me Ahmed tafesh ـــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــ Eng. Ahmed Tafesh MSc. INFOTECH (Embedded System)Mechatronics EngineeringMob No:+4917671973960 Email:Tafish_ahmed at hotmail.com -------------- next part -------------- An HTML attachment was scrubbed... URL: From marcmltd at marcm.co.uk Wed Aug 19 04:08:03 2015 From: marcmltd at marcm.co.uk (Marc Murphy) Date: Wed, 19 Aug 2015 11:08:03 +0000 Subject: GPS raw problem In-Reply-To: References: Message-ID: <41F7BEE8-C215-46EE-B081-B704E3A40D0C@marcm.co.uk> Hi Ahmed Do you have an antenna connected? Is it an active or passive antenna and can the antenna see the sky. Most antennas are only sensitive enough for line of sight of the satellites. Regards Marc On 19 Aug 2015, at 13:00, Ahmed Tafesh > wrote: Hello I have a Problem in RAW GPS, i enabled the gps-raw root at wica:/# mmcli -m 0 --location-status /org/freedesktop/ModemManager1/Modem/0 ---------------------------- Location | capabilities: '3gpp-lac-ci, gps-raw, gps-nmea, cdma-bs' | enabled: '3gpp-lac-ci, gps-raw, gps-nmea, cdma-bs' | signals: 'no' i enabled the gps-raw successfully, but when i try to get the Location dimntion i get error "Not Available" root at wica:/# mmcli -m 0 --location-get-gps-raw error: couldn't get raw GPS location from the modem: 'not available' plz help me Ahmed tafesh ـــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــ Eng. Ahmed Tafesh MSc. INFOTECH (Embedded System) Mechatronics Engineering Mob No:+4917671973960 Email:Tafish_ahmed at hotmail.com _______________________________________________ ModemManager-devel mailing list ModemManager-devel at lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/modemmanager-devel -------------- next part -------------- An HTML attachment was scrubbed... URL: From pomidorabelisima at gmail.com Wed Aug 19 07:47:42 2015 From: pomidorabelisima at gmail.com (poma) Date: Wed, 19 Aug 2015 16:47:42 +0200 Subject: F23 NetworkManager Test Day August 20th! In-Reply-To: <1439990651.3940.12.camel@redhat.com> References: <55D041D3.2040108@gmail.com> <1439904281.3940.6.camel@redhat.com> <55D4490E.30209@gmail.com> <1439990651.3940.12.camel@redhat.com> Message-ID: <55D4970E.8070204@gmail.com> On 19.08.2015 15:24, Lubomir Rintel wrote: > On Wed, 2015-08-19 at 11:14 +0200, poma wrote: >> On 18.08.2015 15:24, Lubomir Rintel wrote: >>> On Sun, 2015-08-16 at 09:54 +0200, poma wrote: >>> ... >>>> Fedora 23 - mobile broadband components versions: >>>> - ModemManager-1.4.6-2.fc23.x86_64 >>>> - libqmi-1.12.4-3.fc23.x86_64 >>>> - libmbim-1.12.0-2.fc23.x86_64 >>>> - usb_modeswitch-2.2.1-2.fc23.x86_64 >>>> - usb_modeswitch-data-20150115-2.fc23.noarch >>>> >>>> It should be: >>>> - ModemManager-1.4.10-1.fc2x.x86_64 >>>> - libqmi-1.12.6-1.fc2x.x86_64 >>>> - libmbim-1.12.2-1.fc2x.x86_64 >>>> - usb_modeswitch-2.2.5-1.fc2x.x86_64 >>>> - usb_modeswitch-data-20150627-1.fc2x.noarch >>>> >>>> >>>> You intend to test with outdated versions? >>> >>> Thanks for the heads up; will do the updates right away & set up >>> release monitoring. >>> >>> See you on the test day, hopefully! >>> >>> Lubo >>> >> >> >> As I am concerned, by the way thanks for the call, I test a lot of >> things on a daily basis, >> and given that I'm driving the above-mentioned current versions of >> components for quite a long time, >> this "Test Day" has been done already. > > That's great. I'm wondering if you could describe what you have tested > in the wiki, so that we know which areas did you cover? > > Thank you. > You are very welcoming persona, what more can I say. But please take a look the kind of problem I've encountered https://bugzilla.redhat.com/show_bug.cgi?id=1251027 From dcbw at redhat.com Wed Aug 19 08:39:18 2015 From: dcbw at redhat.com (Dan Williams) Date: Wed, 19 Aug 2015 10:39:18 -0500 Subject: GPS raw problem In-Reply-To: References: Message-ID: <1439998758.21431.2.camel@redhat.com> On Wed, 2015-08-19 at 07:10 +0000, Ahmed Tafesh wrote: > Hello > > I have a Problem in RAW GPS, i enabled the gps-raw > > root at wica:/# mmcli -m 0 --location-status > /org/freedesktop/ModemManager1/Modem/0 > ---------------------------- > Location | capabilities: '3gpp-lac-ci, gps-raw, gps-nmea, cdma-bs' > | enabled: '3gpp-lac-ci, gps-raw, gps-nmea, cdma-bs' > | signals: 'no' > > i enabled the gps-raw successfully, but when i try to get the Location dimntion i get error "Not Available" > root at wica:/# mmcli -m 0 --location-get-gps-raw > error: couldn't get raw GPS location from the modem: 'not available' Could you share what modem this is, or at least the manufacturer and whether it is MBIM, QMI, or AT-based? Does it actually expose a GPS port? Dan From aleksander at aleksander.es Wed Aug 19 08:42:24 2015 From: aleksander at aleksander.es (Aleksander Morgado) Date: Wed, 19 Aug 2015 17:42:24 +0200 Subject: GPS raw problem In-Reply-To: References: Message-ID: On Wed, Aug 19, 2015 at 9:16 AM, Ahmed Tafesh wrote: > root at wica:/# mmcli -m 0 --location-status > /org/freedesktop/ModemManager1/Modem/0 > ---------------------------- > Location | capabilities: '3gpp-lac-ci, gps-raw, gps-nmea, cdma-bs' > | enabled: '3gpp-lac-ci, gps-raw, gps-nmea, cdma-bs' > | signals: 'no' > > i enabled the gps-raw successfully, but when i try to get the Location > dimntion i get error "Not Available" > root at wica:/# mmcli -m 0 --location-get-gps-raw > error: couldn't get raw GPS location from the modem: 'not available' > > /org/freedesktop/ModemManager1/Modem/0 > ------------------------- > 3GPP location | Mobile country code: '262' > | Mobile network code: '2' > | Location area code: '1366' > | Cell ID: '80653768' > ------------------------- > GPS NMEA traces | $GLGSV,1,1,01,86,42,046,*5E > | $GPGSV,2,1,06,33,,,34,01,,,,02,20,116,,12,83,352,*70 > | $GPGSV,2,2,06,14,39,286,,15,,,*48 > | $GNGNS,071036.2,,,,,NN,,,,,,*4C > | $GPGSA,A,1,,,,,,,,,,,,,,,*1E > | $GPRMC,,V,,,,,,,,,,N*53 > | $GPVTG,,T,,M,,N,,K,N*2C > | $GPGGA,,,,,,0,,,,,,,,*66 > | $GNGSA,A,1,,,,,,,,,,,,,,,*00 > | $PQXFI,,,,,,,,,,*56 > ------------------------- > Raw GPS | Not available > ------------------------- > CDMA BS | Not available That's a sign of a lack of position fix. GPS gets enabled but the GPPGA traces don't expose enough information in order to get a lat/long fix; hence no "raw GPS" results, just the NMEA traces. As Marc said, check the antenna and coverage. -- Aleksander https://aleksander.es From aleksander at aleksander.es Wed Aug 19 08:43:53 2015 From: aleksander at aleksander.es (Aleksander Morgado) Date: Wed, 19 Aug 2015 17:43:53 +0200 Subject: GPS raw problem In-Reply-To: <1439998758.21431.2.camel@redhat.com> References: <1439998758.21431.2.camel@redhat.com> Message-ID: On Wed, Aug 19, 2015 at 5:39 PM, Dan Williams wrote: >> I have a Problem in RAW GPS, i enabled the gps-raw >> >> root at wica:/# mmcli -m 0 --location-status >> /org/freedesktop/ModemManager1/Modem/0 >> ---------------------------- >> Location | capabilities: '3gpp-lac-ci, gps-raw, gps-nmea, cdma-bs' >> | enabled: '3gpp-lac-ci, gps-raw, gps-nmea, cdma-bs' >> | signals: 'no' >> >> i enabled the gps-raw successfully, but when i try to get the Location dimntion i get error "Not Available" >> root at wica:/# mmcli -m 0 --location-get-gps-raw >> error: couldn't get raw GPS location from the modem: 'not available' > > Could you share what modem this is, or at least the manufacturer and > whether it is MBIM, QMI, or AT-based? Does it actually expose a GPS > port? This looks like a QMI-based modem, maybe a MC7354 or similar (as it also exposes CDMA BS location), so likely retrieving the NMEA traces through QMI PDS service. But more details may help, yes. -- Aleksander https://aleksander.es From lrintel at redhat.com Wed Aug 19 06:24:11 2015 From: lrintel at redhat.com (Lubomir Rintel) Date: Wed, 19 Aug 2015 15:24:11 +0200 Subject: F23 NetworkManager Test Day August 20th! In-Reply-To: <55D4490E.30209@gmail.com> References: <55D041D3.2040108@gmail.com> <1439904281.3940.6.camel@redhat.com> <55D4490E.30209@gmail.com> Message-ID: <1439990651.3940.12.camel@redhat.com> On Wed, 2015-08-19 at 11:14 +0200, poma wrote: > On 18.08.2015 15:24, Lubomir Rintel wrote: > > On Sun, 2015-08-16 at 09:54 +0200, poma wrote: > > ... > > > Fedora 23 - mobile broadband components versions: > > > - ModemManager-1.4.6-2.fc23.x86_64 > > > - libqmi-1.12.4-3.fc23.x86_64 > > > - libmbim-1.12.0-2.fc23.x86_64 > > > - usb_modeswitch-2.2.1-2.fc23.x86_64 > > > - usb_modeswitch-data-20150115-2.fc23.noarch > > > > > > It should be: > > > - ModemManager-1.4.10-1.fc2x.x86_64 > > > - libqmi-1.12.6-1.fc2x.x86_64 > > > - libmbim-1.12.2-1.fc2x.x86_64 > > > - usb_modeswitch-2.2.5-1.fc2x.x86_64 > > > - usb_modeswitch-data-20150627-1.fc2x.noarch > > > > > > > > > You intend to test with outdated versions? > > > > Thanks for the heads up; will do the updates right away & set up > > release monitoring. > > > > See you on the test day, hopefully! > > > > Lubo > > > > > As I am concerned, by the way thanks for the call, I test a lot of > things on a daily basis, > and given that I'm driving the above-mentioned current versions of > components for quite a long time, > this "Test Day" has been done already. That's great. I'm wondering if you could describe what you have tested in the wiki, so that we know which areas did you cover? Thank you. > Besides > https://fedoraproject.org/wiki/Test_Day:2015-08-20_NetworkManager#Liv > e_image > "... Live images can be found here." > http://alt.fedoraproject.org/pub/alt/nightly-composes/desktop/ > Not Found Fixed. Lubo From dcbw at redhat.com Wed Aug 19 10:52:49 2015 From: dcbw at redhat.com (Dan Williams) Date: Wed, 19 Aug 2015 12:52:49 -0500 Subject: [review] dcbw/huawei-at-dhcp: use AT^DHCP response if available for NDISDUP-capable devices Message-ID: <1440006769.21431.8.camel@redhat.com> Hi, I had at least one report of a HiSense device that had successful AT^NDISSTATQRY reply but DHCP didn't work. There's been discussion on this in the past [1] with no real conclusion that I can see, but maybe ^DHCP works here instead. So I just went ahead and did that. It'll need more testing with Huawei modems to make sure we can actually rely on the results (we know we can't for QMI-based devices) but at least the patch can be reviewed. Dan [1] http://lists.freedesktop.org/archives/modemmanager-devel/2014-October/001576.html From tschaefer at t-online.de Wed Aug 19 13:07:48 2015 From: tschaefer at t-online.de (Thomas =?ISO-8859-1?Q?Sch=E4fer?=) Date: Wed, 19 Aug 2015 22:07:48 +0200 Subject: [review] dcbw/huawei-at-dhcp: use AT^DHCP response if available for NDISDUP-capable devices In-Reply-To: <1440006769.21431.8.camel@redhat.com> References: <1440006769.21431.8.camel@redhat.com> Message-ID: <1622297.uVMYpYcscu@eeebox> I am not sure if I understand your question. The E3372s-153 (speedstick v) answers to at^dhcp? But at the moment I don't understand the answer. My second problem is now, that there is no interface, where I could use it. at ^DSFLOWRPT:00000216,00000000,00000000,0000000000000000,0000000000000000,00000000,00000000 ^DSFLOWRPT:00000218,00000000,00000000,0000000000000000,0000000000000000,00000000,00000000 ^ ^DSFLOWRPT:0000021A,00000000,00000000,0000000000000000,0000000000000000,00000000,00000000 dhcp ^DSFLOWRPT:0000021C,00000000,00000000,0000000000000000,0000000000000000,00000000,00000000 ^RSSI:26 ^HCSQ:"LTE",60,52,146,26 ? ^DHCP: BBA24C0A,F8FFFFFF,B9A24C0A,B9A24C0A,D2D24A0A,D3D24A0A,150000000,150000000 OK ^DSFLOWRPT:0000021E,00000000,00000000,0000000000000000,0000000000000000,00000000,00000000 ^DSFLOWRPT:00000220,00000000,00000000,0000000000000000,0000000000000000,00000000,00000000 at ^DSFLOWRPT:00000276,00000000,00000000,0000000000000000,0000000000000000,00000000,00000000 ^ ^RSSI:27 ^HCSQ:"LTE",62,55,146,26 ndis ^DSFLOWRPT:00000278,00000000,00000000,0000000000000000,0000000000000000,00000000,00000000 dup ^DSFLOWRPT:0000027A,00000000,00000000,0000000000000000,0000000000000000,00000000,00000000 =1,0 ^DSFLOWRPT:0000027C,00000000,00000000,0000000000000000,0000000000000000,00000000,00000000 OK ^NDISSTAT:0,36,,"IPV4" ^RSSI:26 /tmp/speedstickv.txt lines 1-41/42 99% ^HCSQ:"LTE",61,53,146,26 My input was at^dhcp? at^ndisdup=1,0 (the first ndisdup=1,1.. is not included here, but the LED switched to "connected") Thomas From dcbw at redhat.com Wed Aug 19 13:52:11 2015 From: dcbw at redhat.com (Dan Williams) Date: Wed, 19 Aug 2015 15:52:11 -0500 Subject: [review] dcbw/huawei-at-dhcp: use AT^DHCP response if available for NDISDUP-capable devices In-Reply-To: <1622297.uVMYpYcscu@eeebox> References: <1440006769.21431.8.camel@redhat.com> <1622297.uVMYpYcscu@eeebox> Message-ID: <1440017531.19201.65.camel@redhat.com> On Wed, 2015-08-19 at 22:07 +0200, Thomas Schäfer wrote: > I am not sure if I understand your question. > > > The E3372s-153 (speedstick v) answers to at^dhcp? > > But at the moment I don't understand the answer. My second problem is now, > that there is no interface, where I could use it. It gets exposed in the bearer properties for the bearer that gets created when you ask ModemManager to connect, the same way it does for HSO or Sierra modems that offer static IP config. Unfortunately mmcli doesn't seem to have a way to print the bearer properties. > ^DHCP: > BBA24C0A,F8FFFFFF,B9A24C0A,B9A24C0A,D2D24A0A,D3D24A0A,150000000,150000000 That would be 10.76.162.187 (ip addr), 255.255.255.248 (netmask), 10.76.162.185 (gateway), 10.76.162.185 (gateway again), 10.74.210.210 (dns1), 10.74.210.211 (dns2). One thing you could do to test more: after doing the ^DHCP request, run actual DHCP on the net interface and see what numbers it comes up with. Dan > OK > > ^DSFLOWRPT:0000021E,00000000,00000000,0000000000000000,0000000000000000,00000000,00000000 > > ^DSFLOWRPT:00000220,00000000,00000000,0000000000000000,0000000000000000,00000000,00000000 > > > at > ^DSFLOWRPT:00000276,00000000,00000000,0000000000000000,0000000000000000,00000000,00000000 > ^ > ^RSSI:27 > > ^HCSQ:"LTE",62,55,146,26 > ndis > ^DSFLOWRPT:00000278,00000000,00000000,0000000000000000,0000000000000000,00000000,00000000 > dup > ^DSFLOWRPT:0000027A,00000000,00000000,0000000000000000,0000000000000000,00000000,00000000 > =1,0 > ^DSFLOWRPT:0000027C,00000000,00000000,0000000000000000,0000000000000000,00000000,00000000 > > OK > > ^NDISSTAT:0,36,,"IPV4" > > ^RSSI:26 > > /tmp/speedstickv.txt lines 1-41/42 99% > > ^HCSQ:"LTE",61,53,146,26 > > > My input was > > at^dhcp? > at^ndisdup=1,0 > > (the first ndisdup=1,1.. is not included here, but the LED switched to > "connected") > > Thomas > > _______________________________________________ > ModemManager-devel mailing list > ModemManager-devel at lists.freedesktop.org > http://lists.freedesktop.org/mailman/listinfo/modemmanager-devel From aleksander at aleksander.es Thu Aug 20 01:39:49 2015 From: aleksander at aleksander.es (Aleksander Morgado) Date: Thu, 20 Aug 2015 10:39:49 +0200 Subject: [review] dcbw/huawei-at-dhcp: use AT^DHCP response if available for NDISDUP-capable devices In-Reply-To: <1440017531.19201.65.camel@redhat.com> References: <1440006769.21431.8.camel@redhat.com> <1622297.uVMYpYcscu@eeebox> <1440017531.19201.65.camel@redhat.com> Message-ID: On Wed, Aug 19, 2015 at 10:52 PM, Dan Williams wrote: > Unfortunately mmcli > doesn't seem to have a way to print the bearer properties. You should be able to print them like this: $ mmcli --bearer=[PATH/INDEX] (i.e. without action) -- Aleksander https://aleksander.es From tafish_ahmed at hotmail.com Wed Aug 19 23:29:09 2015 From: tafish_ahmed at hotmail.com (Ahmed Tafesh) Date: Thu, 20 Aug 2015 06:29:09 +0000 Subject: GPS raw problem In-Reply-To: References: , <1439998758.21431.2.camel@redhat.com>, Message-ID: thanks allot for hellping me i fix the promlem. the proplem is there is no GPS Signal in the room. when i put the sensor in window i got some result. i have another question. is ther a way to start my script automatically when i run the Linux device? thanks in advance. ahmed tafesh ـــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــ Eng. Ahmed Tafesh MSc. INFOTECH (Embedded System)Mechatronics EngineeringMob No:+4917671973960 Email:Tafish_ahmed at hotmail.com > Date: Wed, 19 Aug 2015 17:43:53 +0200 > Subject: Re: GPS raw problem > From: aleksander at aleksander.es > To: dcbw at redhat.com > CC: tafish_ahmed at hotmail.com; modemmanager-devel at lists.freedesktop.org > > On Wed, Aug 19, 2015 at 5:39 PM, Dan Williams wrote: > >> I have a Problem in RAW GPS, i enabled the gps-raw > >> > >> root at wica:/# mmcli -m 0 --location-status > >> /org/freedesktop/ModemManager1/Modem/0 > >> ---------------------------- > >> Location | capabilities: '3gpp-lac-ci, gps-raw, gps-nmea, cdma-bs' > >> | enabled: '3gpp-lac-ci, gps-raw, gps-nmea, cdma-bs' > >> | signals: 'no' > >> > >> i enabled the gps-raw successfully, but when i try to get the Location dimntion i get error "Not Available" > >> root at wica:/# mmcli -m 0 --location-get-gps-raw > >> error: couldn't get raw GPS location from the modem: 'not available' > > > > Could you share what modem this is, or at least the manufacturer and > > whether it is MBIM, QMI, or AT-based? Does it actually expose a GPS > > port? > > This looks like a QMI-based modem, maybe a MC7354 or similar (as it > also exposes CDMA BS location), so likely retrieving the NMEA traces > through QMI PDS service. But more details may help, yes. > > -- > Aleksander > https://aleksander.es -------------- next part -------------- An HTML attachment was scrubbed... URL: From aleksander at aleksander.es Thu Aug 20 01:42:20 2015 From: aleksander at aleksander.es (Aleksander Morgado) Date: Thu, 20 Aug 2015 10:42:20 +0200 Subject: GPS raw problem In-Reply-To: References: <1439998758.21431.2.camel@redhat.com> Message-ID: On Thu, Aug 20, 2015 at 8:29 AM, Ahmed Tafesh wrote: > thanks allot for hellping me i fix the promlem. the proplem is there is no > GPS Signal in the room. > when i put the sensor in window i got some result. > :) > i have another question. > is ther a way to start my script automatically when i run the Linux device? > thanks in advance. You'll need to look at your own system, to see how it's usually done. e.g. you could setup a custom systemd service to do so if you're using systemd; or a custom init.d script to start it on boot and stop it on shutdown. So, yes, there is a way to do it, but it depends on what your distribution is. -- Aleksander https://aleksander.es From tschaefer at t-online.de Thu Aug 20 04:49:37 2015 From: tschaefer at t-online.de (=?UTF-8?Q?Thomas_Sch=c3=a4fer?=) Date: Thu, 20 Aug 2015 13:49:37 +0200 Subject: [review] dcbw/huawei-at-dhcp: use AT^DHCP response if available for NDISDUP-capable devices In-Reply-To: <1440017531.19201.65.camel@redhat.com> References: <1440006769.21431.8.camel@redhat.com> <1622297.uVMYpYcscu@eeebox> <1440017531.19201.65.camel@redhat.com> Message-ID: <55D5BED1.6020301@t-online.de> Am 19.08.2015 um 22:52 schrieb Dan Williams: > On Wed, 2015-08-19 at 22:07 +0200, Thomas Schäfer wrote: >> I am not sure if I understand your question. >> >> >> The E3372s-153 (speedstick v) answers to at^dhcp? >> >> But at the moment I don't understand the answer. My second problem is now, >> that there is no interface, where I could use it. > > It gets exposed in the bearer properties for the bearer that gets > created when you ask ModemManager to connect, the same way it does for > HSO or Sierra modems that offer static IP config. Unfortunately mmcli > doesn't seem to have a way to print the bearer properties. > With (net) interface I mean, what I see with ip link >> ^DHCP: >> BBA24C0A,F8FFFFFF,B9A24C0A,B9A24C0A,D2D24A0A,D3D24A0A,150000000,150000000 > > That would be 10.76.162.187 (ip addr), 255.255.255.248 (netmask), > 10.76.162.185 (gateway), 10.76.162.185 (gateway again), 10.74.210.210 > (dns1), 10.74.210.211 (dns2). The values seem to be correct. > > One thing you could do to test more: after doing the ^DHCP request, run > actual DHCP on the net interface and see what numbers it comes up with. I have no net interface anymore. Maybe the kernel, usb-modeswitch or something else has changed since the first time I tested the stick. The log in the last mail was created with minicom via /dev/ttyUSB0 and without modemmanager. Thomas From dcbw at redhat.com Thu Aug 20 09:43:39 2015 From: dcbw at redhat.com (Dan Williams) Date: Thu, 20 Aug 2015 11:43:39 -0500 Subject: [PATCH] broadband-modem-mbim: disable CDMA capabilities until we actually support MBIM+CDMA Message-ID: <1440089019.12801.6.camel@redhat.com> CDMA-capable modems (like a Sierra EM7355) will fail to even enable, because the internal CDMA code tries to initialize using AT commands and that fails because many MBIM modems don't have an AT port. We should figure out how to support minimal MBIM + CDMA using MBIM instead of AT-anything. [mm-broadband-modem.c:9000] enabling_step(): Modem has CDMA capabilities, enabling the Modem CDMA interface... [mm-iface-modem-cdma.c:946] mm_iface_modem_cdma_run_registration_checks(): Running registration checks (CDMA1x: 'yes', EV-DO: 'yes') [mm-broadband-modem.c:7397] setup_registration_checks_context_complete_and_free(): Will skip all QCDM-based registration checks [mm-broadband-modem.c:7418] setup_registration_checks_context_complete_and_free(): Will skip generic detailed registration check, we don't have Sprint commands [mm-iface-modem-cdma.c:768] registration_check_step(): Starting QCDM-based registration checks [mm-iface-modem-cdma.c:780] registration_check_step(): Skipping all QCDM-based checks and falling back to AT-based checks [mm-iface-modem-cdma.c:823] registration_check_step(): Starting AT-based registration checks [mm-iface-modem-cdma.c:641] get_service_status_ready(): Could not get service status: No AT port available to run command [mm-iface-modem.c:1392] __iface_modem_update_state_internal(): Modem /org/freedesktop/ModemManager1/Modem/0: state changed (enabling -> disabled) --- diff --git a/src/mm-broadband-modem-mbim.c b/src/mm-broadband-modem-mbim.c index bb7ddc2..626d0d7 100644 --- a/src/mm-broadband-modem-mbim.c +++ b/src/mm-broadband-modem-mbim.c @@ -173,8 +173,12 @@ device_caps_query_ready (MbimDevice *device, mask = 0; if (ctx->self->priv->caps_cellular_class & MBIM_CELLULAR_CLASS_GSM) mask |= MM_MODEM_CAPABILITY_GSM_UMTS; + +#if 0 /* Disable until we add MBIM CDMA support */ if (ctx->self->priv->caps_cellular_class & MBIM_CELLULAR_CLASS_CDMA) mask |= MM_MODEM_CAPABILITY_CDMA_EVDO; +#endif + if (ctx->self->priv->caps_data_class & MBIM_DATA_CLASS_LTE) mask |= MM_MODEM_CAPABILITY_LTE; g_simple_async_result_set_op_res_gpointer (ctx->result, From tschaefer at t-online.de Thu Aug 20 14:06:56 2015 From: tschaefer at t-online.de (Thomas =?ISO-8859-1?Q?Sch=E4fer?=) Date: Thu, 20 Aug 2015 23:06:56 +0200 Subject: [review] dcbw/huawei-at-dhcp: use AT^DHCP response if available for NDISDUP-capable devices In-Reply-To: <55D5BED1.6020301@t-online.de> References: <1440006769.21431.8.camel@redhat.com> <1440017531.19201.65.camel@redhat.com> <55D5BED1.6020301@t-online.de> Message-ID: <1643077.b4acg8buPV@eeebox> Hi, Please forget my last mail about the missing net-interface. I have three linux-installations. I just used the one where huawei_cdc_ncm doesn't load. I don't know why. I have to solve the problem before I do contribute to further tests. Regards, Thomas From Harald.Jung at ecos.de Thu Aug 20 08:44:35 2015 From: Harald.Jung at ecos.de (=?utf-8?Q?Harald_Jung_-_ECOS_Technology?=) Date: Thu, 20 Aug 2015 17:44:35 +0200 Subject: nm-applet cannot communicate with ModemManager on serveral Hardware Message-ID:  Hi, we have problems with several notebooks, when nm-applet runs the first time, it cannot get ModemManager via dbus so we can't bring up a mobile broadband connection. When I kill nm-applet and start it again, everything is okay, so it's seems to be a timing issue. There are some notebooks which have the problem, but most of them don't. (nm-applet:2371): nm-applet-WARNING **: Error connecting to D-Bus: Zeitberschreitung wurde erreicht (nm-applet:2371): nm-applet-WARNING **: Cannot grab information for modem at /org/freedesktop/ModemManager1/Modem/0: No ModemManager support xfce.log (END) I've added some hardware information as an attachment. best regards Harald -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: hwtest_nm-applet.txt URL: From aleksander at aleksander.es Fri Aug 21 03:06:40 2015 From: aleksander at aleksander.es (Aleksander Morgado) Date: Fri, 21 Aug 2015 12:06:40 +0200 Subject: [PATCH] broadband-modem-mbim: disable CDMA capabilities until we actually support MBIM+CDMA In-Reply-To: <1440089019.12801.6.camel@redhat.com> References: <1440089019.12801.6.camel@redhat.com> Message-ID: On Thu, Aug 20, 2015 at 6:43 PM, Dan Williams wrote: > CDMA-capable modems (like a Sierra EM7355) will fail to even enable, > because the internal CDMA code tries to initialize using AT commands and > that fails because many MBIM modems don't have an AT port. We should > figure out how to support minimal MBIM + CDMA using MBIM instead of > AT-anything. > > [mm-broadband-modem.c:9000] enabling_step(): Modem has CDMA capabilities, enabling the Modem CDMA interface... > [mm-iface-modem-cdma.c:946] mm_iface_modem_cdma_run_registration_checks(): Running registration checks (CDMA1x: 'yes', EV-DO: 'yes') > [mm-broadband-modem.c:7397] setup_registration_checks_context_complete_and_free(): Will skip all QCDM-based registration checks > [mm-broadband-modem.c:7418] setup_registration_checks_context_complete_and_free(): Will skip generic detailed registration check, we don't have Sprint commands > [mm-iface-modem-cdma.c:768] registration_check_step(): Starting QCDM-based registration checks > [mm-iface-modem-cdma.c:780] registration_check_step(): Skipping all QCDM-based checks and falling back to AT-based checks > [mm-iface-modem-cdma.c:823] registration_check_step(): Starting AT-based registration checks > [mm-iface-modem-cdma.c:641] get_service_status_ready(): Could not get service status: No AT port available to run command > [mm-iface-modem.c:1392] __iface_modem_update_state_internal(): Modem /org/freedesktop/ModemManager1/Modem/0: state changed (enabling -> disabled) > Yeah, push. > --- > > diff --git a/src/mm-broadband-modem-mbim.c b/src/mm-broadband-modem-mbim.c > index bb7ddc2..626d0d7 100644 > --- a/src/mm-broadband-modem-mbim.c > +++ b/src/mm-broadband-modem-mbim.c > @@ -173,8 +173,12 @@ device_caps_query_ready (MbimDevice *device, > mask = 0; > if (ctx->self->priv->caps_cellular_class & MBIM_CELLULAR_CLASS_GSM) > mask |= MM_MODEM_CAPABILITY_GSM_UMTS; > + > +#if 0 /* Disable until we add MBIM CDMA support */ > if (ctx->self->priv->caps_cellular_class & MBIM_CELLULAR_CLASS_CDMA) > mask |= MM_MODEM_CAPABILITY_CDMA_EVDO; > +#endif > + > if (ctx->self->priv->caps_data_class & MBIM_DATA_CLASS_LTE) > mask |= MM_MODEM_CAPABILITY_LTE; > g_simple_async_result_set_op_res_gpointer (ctx->result, > > _______________________________________________ > ModemManager-devel mailing list > ModemManager-devel at lists.freedesktop.org > http://lists.freedesktop.org/mailman/listinfo/modemmanager-devel -- Aleksander https://aleksander.es From joao.m.santos.silva at gmail.com Fri Aug 21 18:02:29 2015 From: joao.m.santos.silva at gmail.com (=?UTF-8?Q?Jo=c3=a3o_M._S._Silva?=) Date: Sat, 22 Aug 2015 02:02:29 +0100 Subject: nm-applet cannot communicate with ModemManager on serveral Hardware In-Reply-To: References: Message-ID: <55D7CA25.1080809@gmail.com> Hi, Maybe it has something to do with the order in which network-manager and modemmanager are started. What distro do you use? Check my last message in the thread "error: couldn't find the ModemManager process in the bus": I got help from ubuntu-devel-discuss and found a way to enable modemmanager without network-manager: $ cat /etc/init/modemmanager.override start on starting dbus stop on stopped dbus This makes it depend on dbus instead of network-manger, which I think is the correct dependence. On 08/20/2015 04:44 PM, Harald Jung - ECOS Technology wrote: >  > > Hi, > > > we have problems with several notebooks, when nm-applet runs the first > time, it cannot get ModemManager via dbus so we can't bring up a mobile > broadband connection. > > When I kill nm-applet and start it again, everything is okay, so it's > seems to be a timing issue. > > There are some notebooks which have the problem, but most of them don't. > > > (nm-applet:2371): nm-applet-WARNING **: Error connecting to D-Bus: > Zeitberschreitung wurde erreicht > > (nm-applet:2371): nm-applet-WARNING **: Cannot grab information for > modem at /org/freedesktop/ModemManager1/Modem/0: No ModemManager support > xfce.log (END) > > > I've added some hardware information as an attachment. > > > > best regards > > Harald > > > > > _______________________________________________ > ModemManager-devel mailing list > ModemManager-devel at lists.freedesktop.org > http://lists.freedesktop.org/mailman/listinfo/modemmanager-devel > -- João M. S. Silva From harald.jung at ecos.de Sat Aug 22 05:14:50 2015 From: harald.jung at ecos.de (Harald Jung) Date: Sat, 22 Aug 2015 14:14:50 +0200 Subject: nm-applet cannot communicate with ModemManager on serveral Hardware In-Reply-To: <55D7CA25.1080809@gmail.com> References: <55D7CA25.1080809@gmail.com> Message-ID: <55D867BA.90709@ecos.de> Hi, we are running a selfmade Distro, which is gentoo based. Modemmanager is started by Networkmanager via dbus. Here is the order of the services, started by our runlevel script: syslogd klogd udev dbus networkmanager 8 different networkservices X xfce (which starts nm-applet via autostart) The thing i am wondering about is that it works on most notebooks, but not on all, so it is related to the hardware it runs from Harald Am 22.08.2015 um 03:02 schrieb João M. S. Silva: > Hi, > > Maybe it has something to do with the order in which network-manager > and modemmanager are started. What distro do you use? > > Check my last message in the thread "error: couldn't find the > ModemManager process in the bus": > > I got help from ubuntu-devel-discuss and found a way to enable > modemmanager without network-manager: > > $ cat /etc/init/modemmanager.override > start on starting dbus > stop on stopped dbus > > This makes it depend on dbus instead of network-manger, which I think > is the correct dependence. > From aleksander at aleksander.es Sun Aug 23 02:44:52 2015 From: aleksander at aleksander.es (Aleksander Morgado) Date: Sun, 23 Aug 2015 11:44:52 +0200 Subject: nm-applet cannot communicate with ModemManager on serveral Hardware In-Reply-To: <55D867BA.90709@ecos.de> References: <55D7CA25.1080809@gmail.com> <55D867BA.90709@ecos.de> Message-ID: On Sat, Aug 22, 2015 at 2:14 PM, Harald Jung wrote: > we are running a selfmade Distro, which is gentoo based. > Modemmanager is started by Networkmanager via dbus. Ideally ModemManager shouldn't be autostarted by NetworkManager. We explicitly avoid this in recent releases of NM when using systemd; where we rely on MM being a systemd service itself (i.e. we just watch the MM name in the bus, never request to auto-start it). > Here is the order of the services, started by our runlevel script: > syslogd > klogd > udev > dbus > networkmanager > 8 different networkservices > X > xfce (which starts nm-applet via autostart) > > The thing i am wondering about is that it works on most notebooks, but not > on all, so it is related to the hardware it runs from The issue you're experiencing, though, is a bit unrelated I believe. This looks like a race within nm-applet, where the creation of the MMManager object in the NMApplet gets finished after something has already requested to use the MMManager. Or something like that. https://git.gnome.org/browse/network-manager-applet/tree/src/applet.c The following warning is because the "mm1" instance (the MMManager object) doesn't exist. (nm-applet:2371): nm-applet-WARNING **: Cannot grab information for modem at /org/freedesktop/ModemManager1/Modem/0: No ModemManager support But this object's creation is explicitly requested when the NMApplet is created. And note that the MMManager object will be successfully created even if MM is not running! I'd suggest you fill a bug in GNOME's bugzilla for the applet component. -- Aleksander https://aleksander.es From carlos.fernandez at edosoftfactory.com Mon Aug 24 09:32:55 2015 From: carlos.fernandez at edosoftfactory.com (=?UTF-8?Q?Carlos_Fern=C3=A1ndez?=) Date: Mon, 24 Aug 2015 17:32:55 +0100 Subject: Modemmanager - Error handling. Message-ID: Hi, I have some questions about Modem Manager errors which I didn't it find in API reference manual and I don't know how errors are reported in Modem Manager. How does modemmanager/d-bus handle the errors? Where the errors values are returned? Is there any object/signal or value that is returned when a method finalizes successfully/unsuccessfully? Thanks in advance, Carlos. -------------- next part -------------- An HTML attachment was scrubbed... URL: From aleksander at aleksander.es Mon Aug 24 10:11:50 2015 From: aleksander at aleksander.es (Aleksander Morgado) Date: Mon, 24 Aug 2015 19:11:50 +0200 Subject: Modemmanager - Error handling. In-Reply-To: References: Message-ID: Hoola Carlos, On Mon, Aug 24, 2015 at 6:32 PM, Carlos Fernández wrote: > I have some questions about Modem Manager errors which I didn't it find in > API reference manual and I don't know how errors are reported in Modem > Manager. There are errors defined in the MM API here: http://www.freedesktop.org/software/ModemManager/api/latest/ModemManager-Errors.html Plus, I believe this is still true, for MBIM modems you may still get libmbim errors: http://www.freedesktop.org/software/libmbim/libmbim-glib/latest/libmbim-glib-Errors.html And for QMI modems you may still get libqmi errors: http://www.freedesktop.org/software/libqmi/libqmi-glib/latest/libqmi-glib-Errors.html This shouldn't happen, though; ideally only ModemManager errors should be reported through DBus to clients. I believe there was an open bug to track that but I cannot find it anywhere now in a quick check. > How does modemmanager/d-bus handle the errors? > Where the errors values are returned? Is there any object/signal or value > that is returned when a method finalizes successfully/unsuccessfully? DBus methods have a built-in setup to return errors. So, when you call a method 3 things may happen: * If the method signature has return values and the operation is successful, you'll get the return values. * If the method signature doesn't have return values and the operation is successful, you'll get the operation finished and no return values. * If the operation fails, you'll get an error reported, regardless of the outputs defined in the method signature. An example; check the Connect() method in the Simple interface: http://www.freedesktop.org/software/ModemManager/api/latest/gdbus-org.freedesktop.ModemManager1.Modem.Simple.html#gdbus-method-org-freedesktop-ModemManager1-Modem-Simple.Connect The DBus method receives a 'properties' dictionary and returns a 'bearer' dictionary. In our "libmm-glib" library which maps the DBus API we now have a mm_modem_simple_connect() method which receives a MMSimpleConnectProperties object: http://www.freedesktop.org/software/ModemManager/libmm-glib/latest/MMModemSimple.html#mm-modem-simple-connect And the corresponding finish() method will return either a MMBearer object, *or* NULL plus the GError set: http://www.freedesktop.org/software/ModemManager/libmm-glib/latest/MMModemSimple.html#mm-modem-simple-connect-finish -- Aleksander https://aleksander.es From joao.m.santos.silva at gmail.com Wed Aug 26 07:17:03 2015 From: joao.m.santos.silva at gmail.com (=?UTF-8?Q?Jo=c3=a3o_M._S._Silva?=) Date: Wed, 26 Aug 2015 15:17:03 +0100 Subject: nm-applet cannot communicate with ModemManager on serveral Hardware In-Reply-To: References: <55D7CA25.1080809@gmail.com> <55D867BA.90709@ecos.de> Message-ID: <55DDCA5F.2040805@gmail.com> Hi Aleksander, I'm not sure I understood all the interfering processes. But: was I right in setting modemmanager dependency on dbus instead of network-manager? On 08/23/2015 10:44 AM, Aleksander Morgado wrote: > On Sat, Aug 22, 2015 at 2:14 PM, Harald Jung wrote: >> we are running a selfmade Distro, which is gentoo based. >> Modemmanager is started by Networkmanager via dbus. > > Ideally ModemManager shouldn't be autostarted by NetworkManager. We > explicitly avoid this in recent releases of NM when using systemd; > where we rely on MM being a systemd service itself (i.e. we just watch > the MM name in the bus, never request to auto-start it). > >> Here is the order of the services, started by our runlevel script: >> syslogd >> klogd >> udev >> dbus >> networkmanager >> 8 different networkservices >> X >> xfce (which starts nm-applet via autostart) >> >> The thing i am wondering about is that it works on most notebooks, but not >> on all, so it is related to the hardware it runs from > > > The issue you're experiencing, though, is a bit unrelated I believe. > This looks like a race within nm-applet, where the creation of the > MMManager object in the NMApplet gets finished after something has > already requested to use the MMManager. Or something like that. > > https://git.gnome.org/browse/network-manager-applet/tree/src/applet.c > > The following warning is because the "mm1" instance (the MMManager > object) doesn't exist. > (nm-applet:2371): nm-applet-WARNING **: Cannot grab information for > modem at /org/freedesktop/ModemManager1/Modem/0: No ModemManager > support > > But this object's creation is explicitly requested when the NMApplet > is created. And note that the MMManager object will be successfully > created even if MM is not running! > > I'd suggest you fill a bug in GNOME's bugzilla for the applet component. > -- João M. S. Silva From aleksander at aleksander.es Wed Aug 26 08:55:10 2015 From: aleksander at aleksander.es (Aleksander Morgado) Date: Wed, 26 Aug 2015 17:55:10 +0200 Subject: nm-applet cannot communicate with ModemManager on serveral Hardware In-Reply-To: <55DDCA5F.2040805@gmail.com> References: <55D7CA25.1080809@gmail.com> <55D867BA.90709@ecos.de> <55DDCA5F.2040805@gmail.com> Message-ID: On Wed, Aug 26, 2015 at 4:17 PM, João M. S. Silva wrote: > I'm not sure I understood all the interfering processes. > > But: was I right in setting modemmanager dependency on dbus instead of > network-manager? Depends on what you want to achieve, but I don't really see any problem in doing that. -- Aleksander https://aleksander.es From harald.jung at ecos.de Wed Aug 26 09:51:39 2015 From: harald.jung at ecos.de (Harald Jung) Date: Wed, 26 Aug 2015 18:51:39 +0200 Subject: nm-applet cannot communicate with ModemManager on serveral Hardware In-Reply-To: References: <55D7CA25.1080809@gmail.com> <55D867BA.90709@ecos.de> <55DDCA5F.2040805@gmail.com> Message-ID: <55DDEE9B.6040902@ecos.de> Hi, I've built a version with ModemManager started seperatly from NetworkManager. I can check it tommorow with a notebook, which has this problem. Am 26.08.2015 um 17:55 schrieb Aleksander Morgado: > On Wed, Aug 26, 2015 at 4:17 PM, João M. S. Silva > wrote: >> I'm not sure I understood all the interfering processes. >> >> But: was I right in setting modemmanager dependency on dbus instead of >> network-manager? > Depends on what you want to achieve, but I don't really see any > problem in doing that. > From joao.m.santos.silva at gmail.com Wed Aug 26 10:05:18 2015 From: joao.m.santos.silva at gmail.com (=?UTF-8?Q?Jo=c3=a3o_M._S._Silva?=) Date: Wed, 26 Aug 2015 18:05:18 +0100 Subject: nm-applet cannot communicate with ModemManager on serveral Hardware In-Reply-To: <55DDEE9B.6040902@ecos.de> References: <55D7CA25.1080809@gmail.com> <55D867BA.90709@ecos.de> <55DDCA5F.2040805@gmail.com> <55DDEE9B.6040902@ecos.de> Message-ID: <55DDF1CE.1040607@gmail.com> Hi Herald, Did you do like this: $ cat /etc/init/modemmanager.override start on starting dbus stop on stopped dbus ? On 08/26/2015 05:51 PM, Harald Jung wrote: > Hi, > > I've built a version with ModemManager started seperatly from > NetworkManager. > I can check it tommorow with a notebook, which has this problem. > > > Am 26.08.2015 um 17:55 schrieb Aleksander Morgado: >> On Wed, Aug 26, 2015 at 4:17 PM, João M. S. Silva >> wrote: >>> I'm not sure I understood all the interfering processes. >>> >>> But: was I right in setting modemmanager dependency on dbus instead of >>> network-manager? >> Depends on what you want to achieve, but I don't really see any >> problem in doing that. >> > > _______________________________________________ > ModemManager-devel mailing list > ModemManager-devel at lists.freedesktop.org > http://lists.freedesktop.org/mailman/listinfo/modemmanager-devel -- João M. S. Silva From harald.jung at ecos.de Wed Aug 26 10:45:31 2015 From: harald.jung at ecos.de (Harald Jung) Date: Wed, 26 Aug 2015 19:45:31 +0200 Subject: Fwd: Re: nm-applet cannot communicate with ModemManager on serveral Hardware In-Reply-To: <55DDFB13.3030300@ecos.de> References: <55DDFB13.3030300@ecos.de> Message-ID: <55DDFB3B.7080207@ecos.de> Hi, in our startscript of NetworkManager we have a prestart section, wich does several things before starting the process. I 've added my $bus = Net::DBus -> system; my $mm = $bus->get_service("org.freedesktop.ModemManager1"); which starts ModemManager by dbus regards Harald Am 26.08.2015 um 19:05 schrieb João M. S. Silva: > Hi Herald, > > Did you do like this: > > $ cat /etc/init/modemmanager.override > start on starting dbus > stop on stopped dbus > > ? > > On 08/26/2015 05:51 PM, Harald Jung wrote: >> Hi, >> >> I've built a version with ModemManager started seperatly from >> NetworkManager. >> I can check it tommorow with a notebook, which has this problem. >> >> >> Am 26.08.2015 um 17:55 schrieb Aleksander Morgado: >>> On Wed, Aug 26, 2015 at 4:17 PM, João M. S. Silva >>> wrote: >>>> I'm not sure I understood all the interfering processes. >>>> >>>> But: was I right in setting modemmanager dependency on dbus instead of >>>> network-manager? >>> Depends on what you want to achieve, but I don't really see any >>> problem in doing that. >>> >> >> _______________________________________________ >> ModemManager-devel mailing list >> ModemManager-devel at lists.freedesktop.org >> http://lists.freedesktop.org/mailman/listinfo/modemmanager-devel > From aleksander at aleksander.es Thu Aug 27 02:41:04 2015 From: aleksander at aleksander.es (Aleksander Morgado) Date: Thu, 27 Aug 2015 11:41:04 +0200 Subject: Schedule for next release Message-ID: Hey everyone, The 1.4.x series is 1 year old now, and we have quite some new things in git master since then (e.g. A-GPS & Voice APIs, the Dell plugin...). Do you guys think it would be a good idea to feature-freeze git master and tag a new 1.5.90 version to test and bugfix for some weeks targeting 1.6.0 in e.g. October? I've got some issues in mind that should be solved before releasing: * Cancel probing properly when udev reports port is gone. * Revisit MBIM suspend/resume logic as Tore had it failed again. * Revisit MBIM open sequence, as it doesn't sync very well with the new Intel chipsets (may actually be a libmbim issue though). * Something else? Wanted to know also, does someone use git master in custom "production" environments (or for personal use)? Or is everyone using 1.4.x? -- Aleksander https://aleksander.es From raul.suarez at blue-tc.com Thu Aug 27 05:27:25 2015 From: raul.suarez at blue-tc.com (Raul Suarez Moreno) Date: Thu, 27 Aug 2015 13:27:25 +0100 Subject: ptxdist-2013.12.0 + ModemManager + Cinterion PLS8 rel.1 Message-ID: Hi everybody, We are trying to get an embedded device (equipped with Cinterion PLS8 rel.1 radio module) working using ModemManager. The device runs a Linux 3.14 configured using ptxdist-2013.12.0. We've been successful at adding the ModemManager module to the distribution (or we think so), we also added QMI drivers to the kernel. The situation now, device is alive, drivers seem to be correctly installed, "ls /dev" shows "ttyUSB0/1/2/3" and "cdc-wdm0" (among others) as recognized devices. "qmicli" is also working, "qmicli -d /dev/cdc-wdm0 --dms-get-manufacturer" command, for example, returns [/dev/cdc-wdm0] Device manufacturer retrieved: Manufacturer: 'QUALCOMM INCORPORATED' However, ModemManager seems not to being automatically started: root at TQMa28:~ mmcli -S error: couldn't find the ModemManager process in the bus And, if we manually start it: root at TQMa28:~ mmcli -S successfully requested to scan devices root at TQMa28:~ mmcli -L No modems were found ModemManager log during last commands execution is attached. Does anyone know why ModemManager is not being started automatically? And, why modem is not being detected? Maybe a plugins issue? Just in case, we are accessing the device via SSH, not serial communication. -- Saludos / Best regards Raúl Suárez Blue TC -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- [ 0.000000] Booting Linux on physical CPU 0x0 [ 0.000000] Linux version 3.14.4-tq-arm-bsp-0109 (raulsuarez at aitor-dell) (gcc version 4.8.2 (OSELAS.Toolchain-2013.12.2) ) #2 PREEMPT Wed Aug 26 09:30:23 WEST 2015 [ 0.000000] CPU: ARM926EJ-S [41069265] revision 5 (ARMv5TEJ), cr=00053177 [ 0.000000] CPU: VIVT data cache, VIVT instruction cache [ 0.000000] Machine model: TQ Systems TQMa28 on MBa28 [ 0.000000] Memory policy: Data cache writeback [ 0.000000] On node 0 totalpages: 32768 [ 0.000000] free_area_init_node: node 0, pgdat c08045f0, node_mem_map c7efa000 [ 0.000000] Normal zone: 256 pages used for memmap [ 0.000000] Normal zone: 0 pages reserved [ 0.000000] Normal zone: 32768 pages, LIFO batch:7 [ 0.000000] pcpu-alloc: s0 r0 d32768 u32768 alloc=1*32768 [ 0.000000] pcpu-alloc: [0] 0 [ 0.000000] Built 1 zonelists in Zone order, mobility grouping on. Total pages: 32512 [ 0.000000] Kernel command line: root=/dev/mmcblk0p3 rw rootwait console=ttyAPP3,115200 lcd_panel=fg0700 ssp1 panic=1 [ 0.000000] PID hash table entries: 512 (order: -1, 2048 bytes) [ 0.000000] Dentry cache hash table entries: 16384 (order: 4, 65536 bytes) [ 0.000000] Inode-cache hash table entries: 8192 (order: 3, 32768 bytes) [ 0.000000] Memory: 116036K/131072K available (5594K kernel code, 318K rwdata, 2032K rodata, 251K init, 5560K bss, 15036K reserved) [ 0.000000] Virtual kernel memory layout: [ 0.000000] vector : 0xffff0000 - 0xffff1000 ( 4 kB) [ 0.000000] fixmap : 0xfff00000 - 0xfffe0000 ( 896 kB) [ 0.000000] vmalloc : 0xc8800000 - 0xff000000 ( 872 MB) [ 0.000000] lowmem : 0xc0000000 - 0xc8000000 ( 128 MB) [ 0.000000] modules : 0xbf000000 - 0xc0000000 ( 16 MB) [ 0.000000] .text : 0xc0008000 - 0xc077afa0 (7628 kB) [ 0.000000] .init : 0xc077b000 - 0xc07b9c04 ( 252 kB) [ 0.000000] .data : 0xc07ba000 - 0xc080985c ( 319 kB) [ 0.000000] .bss : 0xc080985c - 0xc0d77860 (5561 kB) [ 0.000000] SLUB: HWalign=32, Order=0-3, MinObjects=0, CPUs=1, Nodes=1 [ 0.000000] Preemptible hierarchical RCU implementation. [ 0.000000] NR_IRQS:16 nr_irqs:16 16 [ 0.000000] of_irq_init: children remain, but no parents [ 0.000049] sched_clock: 32 bits at 24MHz, resolution 41ns, wraps every 178956969942ns [ 0.001889] Console: colour dummy device 80x30 [ 0.002065] Lock dependency validator: Copyright (c) 2006 Red Hat, Inc., Ingo Molnar [ 0.002103] ... MAX_LOCKDEP_SUBCLASSES: 8 [ 0.002132] ... MAX_LOCK_DEPTH: 48 [ 0.002157] ... MAX_LOCKDEP_KEYS: 8191 [ 0.002180] ... CLASSHASH_SIZE: 4096 [ 0.002202] ... MAX_LOCKDEP_ENTRIES: 16384 [ 0.002226] ... MAX_LOCKDEP_CHAINS: 32768 [ 0.002248] ... CHAINHASH_SIZE: 16384 [ 0.002270] memory used by lock dependency info: 3695 kB [ 0.002294] per task-struct memory footprint: 1152 bytes [ 0.002427] Calibrating delay loop... 226.09 BogoMIPS (lpj=1130496) [ 0.071291] pid_max: default: 32768 minimum: 301 [ 0.072060] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes) [ 0.072130] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes) [ 0.101327] device-tree: Duplicate name in /apb at 80000000/apbh at 80000000/lcdif at 80030000, renamed to "display#1" [ 0.116584] CPU: Testing write buffer coherency: ok [ 0.120292] Setting up static identity map for 0x40551d88 - 0x40551de0 [ 0.138425] devtmpfs: initialized [ 0.150747] pinctrl core: initialized pinctrl subsystem [ 0.158242] regulator-dummy: no parameters [ 0.162765] NET: Registered protocol family 16 [ 0.164557] DMA: preallocated 256 KiB pool for atomic coherent allocations [ 0.255152] Serial: AMBA PL011 UART driver [ 0.257426] 80074000.serial: ttyAMA0 at MMIO 0x80074000 (irq = 221, base_baud = 0) is a PL011 rev2 [ 0.324226] bio: create slab at 0 [ 0.340988] mxs-dma 80004000.dma-apbh: initialized [ 0.352427] mxs-dma 80024000.dma-apbx: initialized [ 0.354868] 3P3V: 3300 mV [ 0.356957] vddio-sd0: 3300 mV [ 0.359244] usb0_vbus: 5000 mV [ 0.361483] usb1_vbus: 5000 mV [ 0.364368] SCSI subsystem initialized [ 0.367077] usbcore: registered new interface driver usbfs [ 0.367648] usbcore: registered new interface driver hub [ 0.368532] usbcore: registered new device driver usb [ 0.380332] imx28-pinctrl 80018000.pinctrl: invalid group "i2c1.1" for function "i2c1" [ 0.398533] pps_core: LinuxPPS API ver. 1 registered [ 0.398589] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti [ 0.398791] PTP clock support registered [ 0.401975] Advanced Linux Sound Architecture Driver Initialized. [ 0.409544] Bluetooth: Core ver 2.18 [ 0.409924] NET: Registered protocol family 31 [ 0.409975] Bluetooth: HCI device and connection manager initialized [ 0.410302] Bluetooth: HCI socket layer initialized [ 0.410423] Bluetooth: L2CAP socket layer initialized [ 0.410946] Bluetooth: SCO socket layer initialized [ 0.411670] Switched to clocksource mxs_timer [ 0.750105] FS-Cache: Loaded [ 0.753069] CacheFiles: Loaded [ 0.831114] NET: Registered protocol family 2 [ 0.836449] TCP established hash table entries: 1024 (order: 0, 4096 bytes) [ 0.836852] TCP bind hash table entries: 1024 (order: 3, 36864 bytes) [ 0.837943] TCP: Hash tables configured (established 1024 bind 1024) [ 0.838452] TCP: reno registered [ 0.838565] UDP hash table entries: 256 (order: 2, 20480 bytes) [ 0.839184] UDP-Lite hash table entries: 256 (order: 2, 20480 bytes) [ 0.843917] NET: Registered protocol family 1 [ 0.847904] RPC: Registered named UNIX socket transport module. [ 0.847975] RPC: Registered udp transport module. [ 0.848015] RPC: Registered tcp transport module. [ 0.848048] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 0.856383] futex hash table entries: 256 (order: 1, 11264 bytes) [ 0.974580] NFS: Registering the id_resolver key type [ 0.975876] Key type id_resolver registered [ 0.975959] Key type id_legacy registered [ 0.976527] msgmni has been set to 226 [ 0.994573] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 249) [ 0.994927] io scheduler noop registered (default) [ 1.005427] 80030000.lcdif supply lcd not found, using dummy regulator [ 1.018380] mxsfb 80030000.lcdif: initialized [ 1.020348] of_dma_request_slave_channel: dma-names property of node '/apb at 80000000/apbx at 80040000/serial at 80074000' missing or empty [ 1.020423] uart-pl011 80074000.serial: no DMA platform data [ 1.022560] 8006a000.serial: ttyAPP0 at MMIO 0x8006a000 (irq = 218, base_baud = 1500000) is a 8006a000.serial [ 1.024850] mxs-auart 8006a000.serial: Found APPUART 3.1.0 [ 1.025888] 8006c000.serial: ttyAPP1 at MMIO 0x8006c000 (irq = 219, base_baud = 1500000) is a 8006c000.serial [ 1.028444] mxs-auart 8006c000.serial: Found APPUART 3.1.0 [ 1.029521] 80070000.serial: ttyAPP3 at MMIO 0x80070000 (irq = 220, base_baud = 1500000) is a 80070000.serial [ 1.638536] console [ttyAPP3] enabled [ 1.644795] mxs-auart 80070000.serial: Found APPUART 3.1.0 [ 1.651528] at24 0-0050: 4096 byte 24c32 EEPROM, read-only, 0 bytes/write [ 1.659001] at24 1-0050: 8192 byte 24c64 EEPROM, writable, 32 bytes/write [ 1.669474] CAN device driver interface [ 1.674868] 80032000.can supply xceiver not found, using dummy regulator [ 1.687526] flexcan 80032000.can: device registered (reg_base=c88a4000, irq=211) [ 1.697782] 800f0000.ethernet supply phy not found, using dummy regulator [ 1.826836] libphy: fec_enet_mii_bus: probed [ 1.835849] PPP generic driver version 2.4.2 [ 1.843035] usbcore: registered new interface driver asix [ 1.848946] usbcore: registered new interface driver ax88179_178a [ 1.855881] usbcore: registered new interface driver cdc_ether [ 1.862400] usbcore: registered new interface driver net1080 [ 1.868542] usbcore: registered new interface driver cdc_subset [ 1.875319] usbcore: registered new interface driver zaurus [ 1.881647] usbcore: registered new interface driver cdc_ncm [ 1.888171] usbcore: registered new interface driver qmi_wwan [ 1.894191] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver [ 1.901349] usbcore: registered new interface driver cdc_acm [ 1.907240] cdc_acm: USB Abstract Control Model driver for USB modems and ISDN adapters [ 1.915885] usbcore: registered new interface driver cdc_wdm [ 1.922417] usbcore: registered new interface driver usb-storage [ 1.929484] usbcore: registered new interface driver usbserial [ 1.935914] usbcore: registered new interface driver usbserial_generic [ 1.943825] usbserial: USB Serial support registered for generic [ 1.950289] usbcore: registered new interface driver ftdi_sio [ 1.956741] usbserial: USB Serial support registered for FTDI USB Serial Device [ 1.964651] usbcore: registered new interface driver option [ 1.970669] usbserial: USB Serial support registered for GSM modem (1-port) [ 1.978206] usbcore: registered new interface driver pl2303 [ 1.984408] usbserial: USB Serial support registered for pl2303 [ 1.990723] usbcore: registered new interface driver qcaux [ 1.996828] usbserial: USB Serial support registered for qcaux [ 2.003240] usbcore: registered new interface driver qcserial [ 2.009423] usbserial: USB Serial support registered for Qualcomm USB modem [ 2.017022] usbcore: registered new interface driver sierra [ 2.023281] usbserial: USB Serial support registered for Sierra USB modem [ 2.030476] usbcore: registered new interface driver zte_ev [ 2.036673] usbserial: USB Serial support registered for zte_ev [ 2.049954] ci_hdrc ci_hdrc.0: EHCI Host Controller [ 2.057438] ci_hdrc ci_hdrc.0: new USB bus registered, assigned bus number 1 [ 2.082127] ci_hdrc ci_hdrc.0: USB 2.0 started, EHCI 1.00 [ 2.102518] hub 1-0:1.0: USB hub found [ 2.107130] hub 1-0:1.0: 1 port detected [ 2.127566] ci_hdrc ci_hdrc.1: EHCI Host Controller [ 2.133007] ci_hdrc ci_hdrc.1: new USB bus registered, assigned bus number 2 [ 2.152015] ci_hdrc ci_hdrc.1: USB 2.0 started, EHCI 1.00 [ 2.164440] hub 2-0:1.0: USB hub found [ 2.168548] hub 2-0:1.0: 1 port detected [ 2.185785] rtc-ds1307 1-0068: rtc core: registered ds1339 as rtc0 [ 2.192668] i2c /dev entries driver [ 2.200922] Driver for 1-wire Dallas network protocol. [ 2.210335] lm73 1-0049: sensor 'lm73' [ 2.217048] Bluetooth: HCI UART driver ver 2.2 [ 2.221567] Bluetooth: HCI H4 protocol initialized [ 2.226599] Bluetooth: HCI BCSP protocol initialized [ 2.232452] usbcore: registered new interface driver btusb [ 2.238001] Bluetooth: Generic Bluetooth SDIO driver ver 0.1 [ 2.281970] mxs-mmc 80010000.ssp: initialized [ 2.292344] mxs-mmc 80012000.ssp: Got WP GPIO #28. [ 2.336657] mmc0: BKOPS_EN bit is not set [ 2.342017] mxs-mmc 80012000.ssp: initialized [ 2.353344] mmc0: new high speed MMC card at address 0001 [ 2.363665] usbcore: registered new interface driver usbhid [ 2.369292] usbhid: USB HID core driver [ 2.378483] mmcblk0: mmc0:0001 MMC04G 3.57 GiB [ 2.396097] Netfilter messages via NETLINK v0.30. [ 2.401039] nfnl_acct: registering with nfnetlink. [ 2.406488] mmcblk0boot0: mmc0:0001 MMC04G partition 1 2.00 MiB [ 2.413789] mmcblk0boot1: mmc0:0001 MMC04G partition 2 2.00 MiB [ 2.434056] nf_conntrack version 0.5.0 (1813 buckets, 7252 max) [ 2.442227] mmcblk0: p1 p2 p3 [ 2.450610] nf_tables: (c) 2007-2009 Patrick McHardy [ 2.472146] mmcblk0boot1: unknown partition table [ 2.480917] ip_set: protocol 6 [ 2.484527] IPVS: Registered protocols () [ 2.488925] IPVS: Connection hash table configured (size=4096, memory=32Kbytes) [ 2.497174] usb 2-1: new high-speed USB device number 2 using ci_hdrc [ 2.508153] mmcblk0boot0: unknown partition table [ 2.515286] IPVS: Creating netns size=1200 id=0 [ 2.520400] IPVS: ipvs loaded. [ 2.527509] ipip: IPv4 over IPv4 tunneling driver [ 2.544695] ip_tables: (C) 2000-2006 Netfilter Core Team [ 2.553518] ipt_CLUSTERIP: ClusterIP Version 0.8 loaded successfully [ 2.561180] arp_tables: (C) 2002 David S. Miller [ 2.568387] TCP: cubic registered [ 2.586216] NET: Registered protocol family 10 [ 2.594793] mmc1: new high speed SDIO card at address 0001 [ 2.613294] ip6_tables: (C) 2000-2006 Netfilter Core Team [ 2.621481] sit: IPv6 over IPv4 tunneling driver [ 2.631015] NET: Registered protocol family 17 [ 2.637072] can: controller area network core (rev 20120528 abi 9) [ 2.644513] NET: Registered protocol family 29 [ 2.650211] Bluetooth: RFCOMM TTY layer initialized [ 2.657435] Bluetooth: RFCOMM socket layer initialized [ 2.664641] Bluetooth: RFCOMM ver 1.11 [ 2.669465] Bluetooth: BNEP (Ethernet Emulation) ver 1.3 [ 2.675475] Bluetooth: BNEP filters: protocol multicast [ 2.685682] Bluetooth: BNEP socket layer initialized [ 2.694160] option 2-1:1.0: GSM modem (1-port) converter detected [ 2.701968] Bluetooth: HIDP (Human Interface Emulation) ver 1.2 [ 2.708087] Bluetooth: HIDP socket layer initialized [ 2.715562] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB0 [ 2.723778] lib80211: common routines for IEEE802.11 drivers [ 2.729762] lib80211_crypt: registered algorithm 'NULL' [ 2.729830] lib80211_crypt: registered algorithm 'WEP' [ 2.729871] lib80211_crypt: registered algorithm 'CCMP' [ 2.729909] lib80211_crypt: registered algorithm 'TKIP' [ 2.730164] Key type dns_resolver registered [ 2.739139] option 2-1:1.1: GSM modem (1-port) converter detected [ 2.750051] registered taskstats version 1 [ 2.756690] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB1 [ 2.766846] regulator-dummy: disabling [ 2.774757] option 2-1:1.2: GSM modem (1-port) converter detected [ 2.785222] rtc-ds1307 1-0068: setting system clock to 2000-01-01 16:35:09 UTC (946744509) [ 2.795198] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB2 [ 2.817133] option 2-1:1.3: GSM modem (1-port) converter detected [ 2.834366] usb 2-1: GSM modem (1-port) converter now attached to ttyUSB3 [ 2.873104] qmi_wwan 2-1:1.4: cdc-wdm0: USB WDM device [ 2.888102] ALSA device list: [ 2.891127] No soundcards found. [ 2.897499] qmi_wwan 2-1:1.4 wwan0: register 'qmi_wwan' at usb-ci_hdrc.1-1, WWAN/QMI device, 8a:6e:15:fa:b8:61 [ 2.932307] EXT3-fs (mmcblk0p3): warning: checktime reached, running e2fsck is recommended [ 2.942247] kjournald starting. Commit interval 5 seconds [ 3.041414] EXT3-fs (mmcblk0p3): using internal journal [ 3.046891] EXT3-fs (mmcblk0p3): mounted filesystem with ordered data mode [ 3.054334] VFS: Mounted root (ext3 filesystem) on device 179:3. [ 3.067503] devtmpfs: mounted [ 3.072858] Freeing unused kernel memory: 248K (c077b000 - c07b9000) [ 5.106783] random: dropbearkey urandom read with 64 bits of entropy available [ 39.757915] random: nonblocking pool is initialized [ 154.474503] fec 800f0000.ethernet eth0: Freescale FEC PHY driver [SMSC LAN8710/LAN8720] (mii_bus:phy_addr=800f0000.etherne:01, irq=-1) [ 154.509634] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready [ 165.912308] UniFi SDIO Driver: 5.2.2-r1 Jun 1 2015 15:13:12 [ 165.918031] CSR SME with WEXT support [ 165.923880] Split patch support [ 165.927102] Kernel 3.14.4 [ 165.930005] UniFi: Using native Linux MMC driver for SDIO. [ 165.939035] sdio bus_id: mmc1:0001:1 - UniFi card 0x1 inserted [ 166.175554] SDIO: Skip power on; card is already powered. [ 166.181054] unifi1: Initialising UniFi, attempt 1 [ 166.188251] unifi1: Chip ID 0x07 Function 1 Block Size 512 Name UniFi-4(UF60xx) [ 166.242475] unifi1: Chip Version 0x3A22 [ 166.246385] unifi1: Calling CsrSdioHardReset [ 166.250812] unifi1: Falling back to software hard reset [ 166.258517] unifi1: Chip ID 0x07 Function 1 Block Size 512 Name UniFi-4(UF60xx) [ 166.342236] unifi1: unifi_dl_patch c25a2110 0100060e [ 166.716265] unifi1: SDIO block size 64 requires 8 padding chunks [ 166.724985] unifi1: UniFi f/w protocol version 9.1 (driver 9.1) [ 166.730987] unifi1: Firmware build 1089: 2010-10-05 14:50 cindr03_core_softmac_rom_sdio_gcc 1089 bfsw at eagle@630492 [ 168.461026] unifi1: Firmware patch 1563 [ 168.478505] unifi1: unifi1 is wlan0 [ 168.483998] unifi1: UniFi ready [ 171.136633] unifi1: Resetting UniFi with AP patch [ 171.149383] unifi1: Initialising UniFi, attempt 1 [ 171.157168] unifi1: Chip ID 0x07 Function 1 Block Size 64 Name UniFi-4(UF60xx) [ 171.212212] unifi1: Chip Version 0x3A22 [ 171.216120] unifi1: Calling CsrSdioHardReset [ 171.220430] unifi1: Falling back to software hard reset [ 171.228014] unifi1: Chip ID 0x07 Function 1 Block Size 64 Name UniFi-4(UF60xx) [ 171.312198] unifi1: unifi_dl_patch c25a2110 0100060e [ 171.686680] unifi1: SDIO block size 64 requires 8 padding chunks [ 171.695317] unifi1: UniFi f/w protocol version 9.1 (driver 9.1) [ 171.701315] unifi1: Firmware build 1089: 2010-10-05 14:50 cindr03_core_softmac_rom_sdio_gcc 1089 bfsw at eagle@630492 [ 173.515986] unifi1: Firmware patch 1562 [ 173.521456] unifi1: Completed firmware reload with AP patch [ 173.530113] unifi1: UniFi ready [ 178.799445] unifi1: IP address assigned for wlan0 [ 470.853686] unifi1: uf_send_ba_err_wq: Calling CsrWifiRouterCtrlBlockAckErrorIndSend(3, 0, 0, 0, 90:48:9a:92:23:4b, 0) [ 470.873452] unifi1: blockack_session_stop: stopping ba_session for peer = 90:48:9a:92:23:4b role = 1 tID = 0 [ 513.512006] unifi1: uf_send_ba_err_wq: Calling CsrWifiRouterCtrlBlockAckErrorIndSend(3, 0, 0, 0, 90:48:9a:92:23:4b, 0) [ 513.589650] unifi1: blockack_session_stop: stopping ba_session for peer = 90:48:9a:92:23:4b role = 1 tID = 0 [ 542.951999] unifi1: uf_send_ba_err_wq: Calling CsrWifiRouterCtrlBlockAckErrorIndSend(3, 0, 0, 0, 90:48:9a:92:23:4b, 0) [ 542.994544] unifi1: blockack_session_stop: stopping ba_session for peer = 90:48:9a:92:23:4b role = 1 tID = 0 [ 560.652002] unifi1: uf_send_ba_err_wq: Calling CsrWifiRouterCtrlBlockAckErrorIndSend(3, 0, 0, 0, 90:48:9a:92:23:4b, 0) [ 600.795476] unifi1: blockack_session_start: ba_session for Rx[tID = 0] already exists [ 612.933172] unifi1: uf_send_ba_err_wq: Calling CsrWifiRouterCtrlBlockAckErrorIndSend(3, 0, 0, 0, 90:48:9a:92:23:4b, 0) [ 613.755289] unifi1: blockack_session_stop: stopping ba_session for peer = 90:48:9a:92:23:4b role = 1 tID = 0 [ 666.628323] unifi1: blockack_session_stop: stopping ba_session for peer = 90:48:9a:92:23:4b role = 1 tID = 0 [ 683.711989] unifi1: uf_send_ba_err_wq: Calling CsrWifiRouterCtrlBlockAckErrorIndSend(3, 0, 0, 0, 90:48:9a:92:23:4b, 0) [ 683.728997] unifi1: blockack_session_stop: stopping ba_session for peer = 90:48:9a:92:23:4b role = 1 tID = 0 [ 695.932019] unifi1: uf_send_ba_err_wq: Calling CsrWifiRouterCtrlBlockAckErrorIndSend(3, 0, 0, 0, 90:48:9a:92:23:4b, 0) [ 695.978916] unifi1: blockack_session_stop: stopping ba_session for peer = 90:48:9a:92:23:4b role = 1 tID = 0 [ 719.672029] unifi1: uf_send_ba_err_wq: Calling CsrWifiRouterCtrlBlockAckErrorIndSend(3, 0, 0, 0, 90:48:9a:92:23:4b, 0) [ 719.699669] unifi1: blockack_session_stop: stopping ba_session for peer = 90:48:9a:92:23:4b role = 1 tID = 0 [ 742.052341] unifi1: uf_send_ba_err_wq: Calling CsrWifiRouterCtrlBlockAckErrorIndSend(3, 0, 0, 0, 90:48:9a:92:23:4b, 0) [ 742.069012] unifi1: blockack_session_stop: stopping ba_session for peer = 90:48:9a:92:23:4b role = 1 tID = 0 [ 782.412010] unifi1: uf_send_ba_err_wq: Calling CsrWifiRouterCtrlBlockAckErrorIndSend(3, 0, 0, 0, 90:48:9a:92:23:4b, 0) [ 784.952827] unifi1: blockack_session_stop: stopping ba_session for peer = 90:48:9a:92:23:4b role = 1 tID = 0 [ 853.671995] unifi1: uf_send_ba_err_wq: Calling CsrWifiRouterCtrlBlockAckErrorIndSend(3, 0, 0, 0, 90:48:9a:92:23:4b, 0) [ 853.689021] unifi1: blockack_session_stop: stopping ba_session for peer = 90:48:9a:92:23:4b role = 1 tID = 0 [ 867.208317] unifi1: blockack_session_stop: stopping ba_session for peer = 90:48:9a:92:23:4b role = 1 tID = 0 [ 867.219200] unifi1: uf_send_ba_err_wq: Calling CsrWifiRouterCtrlBlockAckErrorIndSend(3, 0, 0, 0, 90:48:9a:92:23:4b, 0) [ 885.053125] unifi1: uf_send_ba_err_wq: Calling CsrWifiRouterCtrlBlockAckErrorIndSend(3, 0, 0, 0, 90:48:9a:92:23:4b, 0) [ 885.070229] unifi1: blockack_session_stop: stopping ba_session for peer = 90:48:9a:92:23:4b role = 1 tID = 0 [ 902.272008] unifi1: uf_send_ba_err_wq: Calling CsrWifiRouterCtrlBlockAckErrorIndSend(3, 0, 0, 0, 90:48:9a:92:23:4b, 0) [ 904.976441] unifi1: blockack_session_stop: stopping ba_session for peer = 90:48:9a:92:23:4b role = 1 tID = 0 [ 911.571972] unifi1: uf_send_ba_err_wq: Calling CsrWifiRouterCtrlBlockAckErrorIndSend(3, 0, 0, 0, 90:48:9a:92:23:4b, 0) [ 911.606002] unifi1: blockack_session_stop: stopping ba_session for peer = 90:48:9a:92:23:4b role = 1 tID = 0 [ 2047.302180] usb 1-1: new high-speed USB device number 2 using ci_hdrc [ 2047.489272] usb-storage 1-1:1.0: USB Mass Storage device detected [ 2047.500495] scsi0 : usb-storage 1-1:1.0 [ 2047.515358] usb-storage 1-1:1.1: USB Mass Storage device detected [ 2047.525122] scsi1 : usb-storage 1-1:1.1 [ 2048.530126] scsi 0:0:0:0: CD-ROM HUAWEI Mass Storage 2.31 PQ: 0 ANSI: 2 [ 2048.557653] scsi 1:0:0:0: Direct-Access HUAWEI TF CARD Storage 2.31 PQ: 0 ANSI: 2 [ 2048.602346] sd 1:0:0:0: [sda] Attached SCSI removable disk [ 2071.827686] unifi1: blockack_session_stop: stopping ba_session for peer = 90:48:9a:92:23:4b role = 1 tID = 0 [ 2071.838617] unifi1: uf_send_ba_err_wq: Calling CsrWifiRouterCtrlBlockAckErrorIndSend(3, 0, 0, 0, 90:48:9a:92:23:4b, 0) [ 2146.271993] unifi1: uf_send_ba_err_wq: Calling CsrWifiRouterCtrlBlockAckErrorIndSend(3, 0, 0, 0, 90:48:9a:92:23:4b, 0) [ 2146.289111] unifi1: blockack_session_stop: stopping ba_session for peer = 90:48:9a:92:23:4b role = 1 tID = 0 [ 2178.890315] unifi1: blockack_session_stop: stopping ba_session for peer = 90:48:9a:92:23:4b role = 1 tID = 0 [ 2178.901195] unifi1: uf_send_ba_err_wq: Calling CsrWifiRouterCtrlBlockAckErrorIndSend(3, 0, 0, 0, 90:48:9a:92:23:4b, 0) [ 2186.453092] usb 1-1: USB disconnect, device number 2 [ 2201.982169] usb 1-1: new high-speed USB device number 3 using ci_hdrc [ 2202.140785] usb-storage 1-1:1.0: USB Mass Storage device detected [ 2202.150480] scsi2 : usb-storage 1-1:1.0 [ 2203.154830] scsi 2:0:0:0: CD-ROM HUAWEI Mass Storage 2.31 PQ: 0 ANSI: 2 [ 2223.892002] unifi1: uf_send_ba_err_wq: Calling CsrWifiRouterCtrlBlockAckErrorIndSend(3, 0, 0, 0, 90:48:9a:92:23:4b, 0) [ 2225.004188] unifi1: blockack_session_stop: stopping ba_session for peer = 90:48:9a:92:23:4b role = 1 tID = 0 [ 2253.371988] unifi1: uf_send_ba_err_wq: Calling CsrWifiRouterCtrlBlockAckErrorIndSend(3, 0, 0, 0, 90:48:9a:92:23:4b, 0) [ 2253.389224] unifi1: blockack_session_stop: stopping ba_session for peer = 90:48:9a:92:23:4b role = 1 tID = 0 [ 2873.312323] unifi1: uf_send_ba_err_wq: Calling CsrWifiRouterCtrlBlockAckErrorIndSend(3, 0, 0, 0, 90:48:9a:92:23:4b, 0) [ 2873.329302] unifi1: blockack_session_stop: stopping ba_session for peer = 90:48:9a:92:23:4b role = 1 tID = 0 From raul.suarez at blue-tc.com Thu Aug 27 05:32:59 2015 From: raul.suarez at blue-tc.com (Raul Suarez Moreno) Date: Thu, 27 Aug 2015 13:32:59 +0100 Subject: ptxdist-2013.12.0 + ModemManager + Cinterion PLS8 rel.1 In-Reply-To: References: Message-ID: Sorry for the mistake, the attached document was not the right one. Here it is. On Thu, Aug 27, 2015 at 1:27 PM, Raul Suarez Moreno wrote: > Hi everybody, > > We are trying to get an embedded device (equipped with Cinterion PLS8 > rel.1 radio module) working using ModemManager. The device runs a Linux > 3.14 configured using ptxdist-2013.12.0. We've been successful at adding > the ModemManager module to the distribution (or we think so), we also added > QMI drivers to the kernel. > > The situation now, device is alive, drivers seem to be correctly > installed, "ls /dev" shows "ttyUSB0/1/2/3" and "cdc-wdm0" (among others) as > recognized devices. "qmicli" is also working, "qmicli -d /dev/cdc-wdm0 > --dms-get-manufacturer" command, for example, returns > > [/dev/cdc-wdm0] Device manufacturer retrieved: > Manufacturer: 'QUALCOMM INCORPORATED' > > However, ModemManager seems not to being automatically started: > > root at TQMa28:~ mmcli -S > error: couldn't find the ModemManager process in the bus > > And, if we manually start it: > > root at TQMa28:~ mmcli -S > successfully requested to scan devices > root at TQMa28:~ mmcli -L > No modems were found > > ModemManager log during last commands execution is attached. > > Does anyone know why ModemManager is not being started automatically? And, > why modem is not being detected? Maybe a plugins issue? > > Just in case, we are accessing the device via SSH, not serial > communication. > > -- > Saludos / Best regards > > Raúl Suárez > Blue TC > -- Saludos / Best regards Raúl Suárez Blue TC -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- ModemManager (version 1.4.8) starting in system bus... Bus acquired, creating manager... Looking for plugins in '/usr/lib/ModemManager' Loaded plugin 'X22X' Loaded plugin 'Via CBP7' Loaded plugin 'Gobi' Loaded plugin 'Huawei' Loaded plugin 'Linktop' Loaded plugin 'Generic' Loaded plugin 'Sierra' Loaded plugin 'Iridium' Loaded plugin 'Cinterion' Loaded plugin 'Nokia' Loaded plugin 'Longcheer' Loaded plugin 'Option' Loaded plugin 'Nokia (Icera)' Loaded plugin 'Pantech' Loaded plugin 'Telit' Loaded plugin 'Motorola' Loaded plugin 'AnyDATA' Loaded plugin 'Option High-Speed' Loaded plugin 'Ericsson MBM' Loaded plugin 'MTK' Loaded plugin 'Novatel LTE' Loaded plugin 'Novatel' Loaded plugin 'SimTech' Loaded plugin 'Samsung' Loaded plugin 'ZTE' Loaded plugin 'Wavecom' Loaded plugin 'Altair LTE' Successfully loaded 27 plugins Service name 'org.freedesktop.ModemManager1' was acquired Starting automatic device scan... Finished device scan... Starting manual device scan... Finished device scan... From carlos.fernandez at edosoftfactory.com Thu Aug 27 06:47:16 2015 From: carlos.fernandez at edosoftfactory.com (=?UTF-8?Q?Carlos_Fern=C3=A1ndez?=) Date: Thu, 27 Aug 2015 14:47:16 +0100 Subject: Modem Manager API using Message-ID: Hi, I am trying to get use of ModemManager API in order to develop a C application that communicates and ask the modem for diverse operations. I've seen some python and javascript client examples in the ModemManager repository, but nothing about C programming. Does anyone know if C coding examples on how to deal with ModemManager are available on the net, just to be used as a reference, as I have never programmed using D-Bus?? Both ModemManager and libmm-glib are called high-level APIs, but I'm not sure what are the difference between each other apart from the fact, as long as I understand, that libmm is invoked using its own library functions wether ModemManager is invoked using its D-bus methods (maybe I'm confused about how it works). I don't know if I should develop my program to use libmm or if it should call ModemManager methods (or even if ModemManager internally uses libmm functions). Best regards. -------------- next part -------------- An HTML attachment was scrubbed... URL: From aleksander at aleksander.es Thu Aug 27 07:22:04 2015 From: aleksander at aleksander.es (Aleksander Morgado) Date: Thu, 27 Aug 2015 16:22:04 +0200 Subject: ptxdist-2013.12.0 + ModemManager + Cinterion PLS8 rel.1 In-Reply-To: References: Message-ID: On Thu, Aug 27, 2015 at 2:27 PM, Raul Suarez Moreno wrote: > We are trying to get an embedded device (equipped with Cinterion PLS8 rel.1 > radio module) working using ModemManager. The device runs a Linux 3.14 > configured using ptxdist-2013.12.0. We've been successful at adding the > ModemManager module to the distribution (or we think so), we also added QMI > drivers to the kernel. > > The situation now, device is alive, drivers seem to be correctly installed, > "ls /dev" shows "ttyUSB0/1/2/3" and "cdc-wdm0" (among others) as recognized > devices. "qmicli" is also working, "qmicli -d /dev/cdc-wdm0 > --dms-get-manufacturer" command, for example, returns > > [/dev/cdc-wdm0] Device manufacturer retrieved: > Manufacturer: 'QUALCOMM INCORPORATED' > > However, ModemManager seems not to being automatically started: > > root at TQMa28:~ mmcli -S > error: couldn't find the ModemManager process in the bus > > And, if we manually start it: > > root at TQMa28:~ mmcli -S > successfully requested to scan devices > root at TQMa28:~ mmcli -L > No modems were found > > ModemManager log during last commands execution is attached. > > Does anyone know why ModemManager is not being started automatically? And, > why modem is not being detected? Maybe a plugins issue? > > Just in case, we are accessing the device via SSH, not serial communication. Just installing ModemManager won't auto-start it, and mmcli explicitly avoids autostarting it in most cases (e.g. when just checking status). You need to configure yourself to start ModemManager on boot, or otherwise setup a program which will auto-start it by requesting the well-known DBus name. Also, if you want to know why the modem wasn't properly detected, you should run ModemManager with --debug to get debug logs. Cheers! -- Aleksander https://aleksander.es From Glenn.Highland at digi.com Thu Aug 27 06:57:56 2015 From: Glenn.Highland at digi.com (Highland, Glenn) Date: Thu, 27 Aug 2015 13:57:56 +0000 Subject: Modem Manager API using In-Reply-To: References: Message-ID: <0D659A5A3F184B459470CC3DFE7A4CE12FD46C4D@MTK-SMS-XCH02.digi.com> I found the two links below very helpful. I’ve implemented C code that communicates with ModemManager via DBus using the DBus API, not the libmm-glib. http://raulherbster.blogspot.com/2010/11/dbus-how-to-pass-dict-as-parameter.html http://www.matthew.ath.cx/misc/dbus From: ModemManager-devel [mailto:modemmanager-devel-bounces at lists.freedesktop.org] On Behalf Of Carlos Fernández Sent: Thursday, August 27, 2015 8:47 AM To: modemmanager-devel at lists.freedesktop.org Subject: Modem Manager API using Hi, I am trying to get use of ModemManager API in order to develop a C application that communicates and ask the modem for diverse operations. I've seen some python and javascript client examples in the ModemManager repository, but nothing about C programming. Does anyone know if C coding examples on how to deal with ModemManager are available on the net, just to be used as a reference, as I have never programmed using D-Bus?? Both ModemManager and libmm-glib are called high-level APIs, but I'm not sure what are the difference between each other apart from the fact, as long as I understand, that libmm is invoked using its own library functions wether ModemManager is invoked using its D-bus methods (maybe I'm confused about how it works). I don't know if I should develop my program to use libmm or if it should call ModemManager methods (or even if ModemManager internally uses libmm functions). Best regards. -------------- next part -------------- An HTML attachment was scrubbed... URL: From aleksander at aleksander.es Thu Aug 27 07:26:14 2015 From: aleksander at aleksander.es (Aleksander Morgado) Date: Thu, 27 Aug 2015 16:26:14 +0200 Subject: Modem Manager API using In-Reply-To: References: Message-ID: On Thu, Aug 27, 2015 at 3:47 PM, Carlos Fernández wrote: > I am trying to get use of ModemManager API in order to develop a C > application > that communicates and ask the modem for diverse operations. I've seen some > python and javascript client examples in the ModemManager repository, but > nothing about C programming. > > Does anyone know if C coding examples on how to deal with ModemManager are > available on the net, just to be used as a reference, as I have never > programmed using D-Bus?? > Oh, well, I thought that was implicit... :) See the mmcli program here: http://cgit.freedesktop.org/ModemManager/ModemManager/tree/cli That's the best example of a C program using libmm-glib to communicate with ModemManager through DBus. > Both ModemManager and libmm-glib are called high-level APIs, but I'm not > sure > what are the difference between each other apart from the fact, as long as I > understand, that libmm is invoked using its own library functions wether > ModemManager is invoked using its D-bus methods (maybe I'm confused about > how it works). I don't know if I should develop my program to use libmm or > if it > should call ModemManager methods (or even if ModemManager internally uses > libmm > functions). libmm-glib provides a common ground for both ModemManager (the daemon) and its clients. Both the daemon and the clients link to it, but they use different sets of APIs. The APIs that the clients should use are the ones explained in the API doc. If you're developing a C program to talk to ModemManager, I'd suggest you go and use libmm-glib directly. -- Aleksander https://aleksander.es From raul.suarez at blue-tc.com Thu Aug 27 07:26:19 2015 From: raul.suarez at blue-tc.com (Raul Suarez Moreno) Date: Thu, 27 Aug 2015 15:26:19 +0100 Subject: ptxdist-2013.12.0 + ModemManager + Cinterion PLS8 rel.1 In-Reply-To: References: Message-ID: Ok, thinks are clearer now. Indeed, I did it. I attached the ModemManager log to this message. On Thu, Aug 27, 2015 at 3:22 PM, Aleksander Morgado < aleksander at aleksander.es> wrote: > On Thu, Aug 27, 2015 at 2:27 PM, Raul Suarez Moreno > wrote: > > We are trying to get an embedded device (equipped with Cinterion PLS8 > rel.1 > > radio module) working using ModemManager. The device runs a Linux 3.14 > > configured using ptxdist-2013.12.0. We've been successful at adding the > > ModemManager module to the distribution (or we think so), we also added > QMI > > drivers to the kernel. > > > > The situation now, device is alive, drivers seem to be correctly > installed, > > "ls /dev" shows "ttyUSB0/1/2/3" and "cdc-wdm0" (among others) as > recognized > > devices. "qmicli" is also working, "qmicli -d /dev/cdc-wdm0 > > --dms-get-manufacturer" command, for example, returns > > > > [/dev/cdc-wdm0] Device manufacturer retrieved: > > Manufacturer: 'QUALCOMM INCORPORATED' > > > > However, ModemManager seems not to being automatically started: > > > > root at TQMa28:~ mmcli -S > > error: couldn't find the ModemManager process in the bus > > > > And, if we manually start it: > > > > root at TQMa28:~ mmcli -S > > successfully requested to scan devices > > root at TQMa28:~ mmcli -L > > No modems were found > > > > ModemManager log during last commands execution is attached. > > > > Does anyone know why ModemManager is not being started automatically? > And, > > why modem is not being detected? Maybe a plugins issue? > > > > Just in case, we are accessing the device via SSH, not serial > communication. > > Just installing ModemManager won't auto-start it, and mmcli explicitly > avoids autostarting it in most cases (e.g. when just checking status). > > You need to configure yourself to start ModemManager on boot, or > otherwise setup a program which will auto-start it by requesting the > well-known DBus name. > > Also, if you want to know why the modem wasn't properly detected, you > should run ModemManager with --debug to get debug logs. > > Cheers! > > -- > Aleksander > https://aleksander.es > -- Saludos / Best regards Raúl Suárez Blue TC -------------- next part -------------- An HTML attachment was scrubbed... URL: From aleksander at aleksander.es Thu Aug 27 07:27:42 2015 From: aleksander at aleksander.es (Aleksander Morgado) Date: Thu, 27 Aug 2015 16:27:42 +0200 Subject: Modem Manager API using In-Reply-To: <0D659A5A3F184B459470CC3DFE7A4CE12FD46C4D@MTK-SMS-XCH02.digi.com> References: <0D659A5A3F184B459470CC3DFE7A4CE12FD46C4D@MTK-SMS-XCH02.digi.com> Message-ID: On Thu, Aug 27, 2015 at 3:57 PM, Highland, Glenn wrote: > I found the two links below very helpful. I’ve implemented C code that > communicates with > > ModemManager via DBus using the DBus API, not the libmm-glib. > > > > http://raulherbster.blogspot.com/2010/11/dbus-how-to-pass-dict-as-parameter.html > > > > http://www.matthew.ath.cx/misc/dbus Well, yes. Of course you can use "libdbus" directly to talk to the ModemManager API; but that is much more lower level. If you're not worried about the GLib/GIO dependency in your program, using libmm-glib is waaaaay easier. -- Aleksander https://aleksander.es From aleksander at aleksander.es Thu Aug 27 07:29:11 2015 From: aleksander at aleksander.es (Aleksander Morgado) Date: Thu, 27 Aug 2015 16:29:11 +0200 Subject: ptxdist-2013.12.0 + ModemManager + Cinterion PLS8 rel.1 In-Reply-To: References: Message-ID: On Thu, Aug 27, 2015 at 4:26 PM, Raul Suarez Moreno wrote: > Ok, thinks are clearer now. > > Indeed, I did it. I attached the ModemManager log to this message. Ah, I see it now in the other email. Do you have udev setup in your system? Looks like ModemManager wasn't notified of any port via udev. -- Aleksander https://aleksander.es From david.ward at ll.mit.edu Sat Aug 29 23:21:45 2015 From: david.ward at ll.mit.edu (Ward, David - 0665 - MITLL) Date: Sun, 30 Aug 2015 06:21:45 +0000 Subject: [PATCH] broadband-modem-mbim: disable CDMA capabilities until we actually support MBIM+CDMA In-Reply-To: <1440089019.12801.6.camel@redhat.com> References: <1440089019.12801.6.camel@redhat.com> Message-ID: <55E2A0F3.7080208@ll.mit.edu> On 08/20/2015 12:43 PM, Dan Williams wrote: > CDMA-capable modems (like a Sierra EM7355) will fail to even enable, > because the internal CDMA code tries to initialize using AT commands and > that fails because many MBIM modems don't have an AT port. We should > figure out how to support minimal MBIM + CDMA using MBIM instead of > AT-anything. Not only does this fix allow me to use MBIM on a Dell Wireless 5808e (branded Sierra Wireless EM7355)... I now seem to be able to use MBIM directly from a cold boot, without ever switching to the QMI configuration. And for that matter, the QMI configuration no longer seems to require the FCC Auth command; the modem goes directly to an online state even if ModemManager is disabled at startup. I have disconnected the laptop from both AC and battery for 10 minutes and then this still works. I'm quite confident this was not possible three weeks ago. Was this a Verizon over-the-air firmware update perhaps? Is anyone else with this modem noticing this too? # qmicli -p -d /dev/cdc-wdm0 --dms-get-revision [/dev/cdc-wdm0] Device revision retrieved: Revision: 'SWI9X15C_05.05.16.03 r22385 carmd-fwbuild1 2014/06/04 15:01:26' From david.ward at ll.mit.edu Sun Aug 30 10:33:16 2015 From: david.ward at ll.mit.edu (Ward, David - 0665 - MITLL) Date: Sun, 30 Aug 2015 17:33:16 +0000 Subject: [PATCH] broadband-modem-mbim: disable CDMA capabilities until we actually support MBIM+CDMA In-Reply-To: <55E2A0F3.7080208@ll.mit.edu> References: <1440089019.12801.6.camel@redhat.com> <55E2A0F3.7080208@ll.mit.edu> Message-ID: <55E33E56.7070309@ll.mit.edu> On 08/30/2015 02:21 AM, David Ward wrote: > On 08/20/2015 12:43 PM, Dan Williams wrote: >> CDMA-capable modems (like a Sierra EM7355) will fail to even enable, >> because the internal CDMA code tries to initialize using AT commands and >> that fails because many MBIM modems don't have an AT port. We should >> figure out how to support minimal MBIM + CDMA using MBIM instead of >> AT-anything. > > Not only does this fix allow me to use MBIM on a Dell Wireless 5808e > (branded Sierra Wireless EM7355)... > > I now seem to be able to use MBIM directly from a cold boot, without > ever switching to the QMI configuration. And for that matter, the QMI > configuration no longer seems to require the FCC Auth command; the > modem goes directly to an online state even if ModemManager is > disabled at startup. I have disconnected the laptop from both AC and > battery for 10 minutes and then this still works. I'm quite confident > this was not possible three weeks ago. > > Was this a Verizon over-the-air firmware update perhaps? Is anyone > else with this modem noticing this too? > > # qmicli -p -d /dev/cdc-wdm0 --dms-get-revision > [/dev/cdc-wdm0] Device revision retrieved: > Revision: 'SWI9X15C_05.05.16.03 r22385 carmd-fwbuild1 2014/06/04 > 15:01:26' I left out one potentially relevant detail: a data plan was only activated on this modem this past week. But prior to that (when I was still using QMI with the FCC Auth command), the modem still connected to the network, and my browser just redirected me to a Verizon landing page for activating a data plan instead. From raul.suarez at blue-tc.com Mon Aug 31 05:17:06 2015 From: raul.suarez at blue-tc.com (Raul Suarez Moreno) Date: Mon, 31 Aug 2015 13:17:06 +0100 Subject: ptxdist-2013.12.0 + ModemManager + Cinterion PLS8 rel.1 In-Reply-To: References: Message-ID: Finally, ModemManager detected my modem. Problem was the udev startup script, udevd was not being correctly initiated. Now, "mmcli -L" shows my modem device correctly. I could enable it and even send a text SMS, but I am not being successful at using "mmcli -m 0 --simple-connect", always getting: *error: couldn't connect the modem: 'Timeout was reached'* And if I use the command with "--timeout=300", the error returned is because of Network timeout. I've enabled --debug mode in ModemManager and here it is the log file extract when trying the --simple-connect: * [947188221.002169] [mm-iface-modem-simple.c:641] connect_auth_ready(): Simple connect started...* * [947188221.022600] [mm-iface-modem-simple.c:651] connect_auth_ready(): PIN: unspecified* * [947188221.030484] [mm-iface-modem-simple.c:653] connect_auth_ready(): Operator ID: unspecified* * [947188221.038286] [mm-iface-modem-simple.c:655] connect_auth_ready(): Allowed roaming: yes* * [947188221.047354] [mm-iface-modem-simple.c:657] connect_auth_ready(): APN: airtelnet.es * * [947188221.056593] [mm-iface-modem-simple.c:665] connect_auth_ready(): IP family: unspecified* * [947188221.064477] [mm-iface-modem-simple.c:673] connect_auth_ready(): Allowed authentication: unspecified* * [947188221.073221] [mm-iface-modem-simple.c:675] connect_auth_ready(): User: vodafone* * [947188221.081010] [mm-iface-modem-simple.c:677] connect_auth_ready(): Password: vodafone* * [947188221.088754] [mm-iface-modem-simple.c:679] connect_auth_ready(): Number: unspecified* * [947188221.097630] [mm-iface-modem-simple.c:469] connection_step(): Simple connect state (4/8): Wait to get fully enabled* * [947188221.107283] [mm-iface-modem-simple.c:478] connection_step(): Simple connect state (5/8): Register* * [947188221.115731] [mm-iface-modem-3gpp.c:397] mm_iface_modem_3gpp_register_in_network(): Launching automatic network registration...* *[/dev/cdc-wdm0] Sent message...* *<<<<<< RAW:* *<<<<<< length = 17* *<<<<<< data = 01:10:00:00:03:04:00:35:00:22:00:04:00:01:01:00:01* *[/dev/cdc-wdm0] Sent message (translated)...* *<<<<<< QMUX:* *<<<<<< length = 16* *<<<<<< flags = 0x00* *<<<<<< service = "nas"* *<<<<<< client = 4* *<<<<<< QMI:* *<<<<<< flags = "none"* *<<<<<< transaction = 53* *<<<<<< tlv_length = 4* *<<<<<< message = "Initiate Network Register" (0x0022)* *<<<<<< TLV:* *<<<<<< type = "Action" (0x01)* *<<<<<< length = 1* *<<<<<< value = 01* *<<<<<< translated = automatic* *[/dev/cdc-wdm0] Received message...* *>>>>>> RAW:* *>>>>>> length = 20* *>>>>>> data = 01:13:00:80:03:04:02:35:00:22:00:07:00:02:04:00:00:00:00:00* *[/dev/cdc-wdm0] Received message (translated)...* *>>>>>> QMUX:* *>>>>>> length = 19* *>>>>>> flags = 0x80* *>>>>>> service = "nas"* *>>>>>> client = 4* *>>>>>> QMI:* *>>>>>> flags = "response"* *>>>>>> transaction = 53* *>>>>>> tlv_length = 7* *>>>>>> message = "Initiate Network Register" (0x0022)* *>>>>>> TLV:* *>>>>>> type = "Result" (0x02)* *>>>>>> length = 4* *>>>>>> value = 00:00:00:00* *>>>>>> translated = SUCCESS* * [947188221.161321] [mm-iface-modem-3gpp.c:751] mm_iface_modem_3gpp_run_registration_checks(): Running registration checks (CS: 'yes', PS: 'yes', EPS: 'no')* *[/dev/cdc-wdm0] Sent message...* *<<<<<< RAW:* *<<<<<< length = 13* *<<<<<< data = 01:0C:00:00:03:04:00:36:00:4D:00:00:00* *[/dev/cdc-wdm0] Sent message (translated)...* *<<<<<< QMUX:* *<<<<<< length = 12* *<<<<<< flags = 0x00* *<<<<<< service = "nas"* *<<<<<< client = 4* *<<<<<< QMI:* *<<<<<< flags = "none"* *<<<<<< transaction = 54* *<<<<<< tlv_length = 0* *<<<<<< message = "Get System Info" (0x004D)* *[/dev/cdc-wdm0] Received message...* *>>>>>> RAW:* *>>>>>> length = 97* *>>>>>> data = 01:60:00:80:03:04:02:36:00:4D:00:54:00:02:04:00:00:00:00:00:12:03:00:00:00:00:13:03:00:00:00:00:14:03:00:02:02:00:19:1D:00:01:03:01:03:01:00:01:00:00:FF:FF:01:02:0B:66:05:00:00:00:01:32:31* *:34:30:31:FF:01:02:11:1E:02:00:FF:FF:21:01:00:01:27:04:00:01:00:00:00:29:01:00:00:2A:04:00:00:00:00:00* *[/dev/cdc-wdm0] Received message (translated)...* *>>>>>> QMUX:* *>>>>>> length = 96* *>>>>>> flags = 0x80* *>>>>>> service = "nas"* *>>>>>> client = 4* *>>>>>> QMI:* *>>>>>> flags = "response"* *>>>>>> transaction = 54* *>>>>>> tlv_length = 84* *>>>>>> message = "Get System Info" (0x004D)* *>>>>>> TLV:* *>>>>>> type = "Result" (0x02)* *>>>>>> length = 4* *>>>>>> value = 00:00:00:00* *>>>>>> translated = SUCCESS* *>>>>>> TLV:* *>>>>>> type = "GSM Service Status" (0x12)* *>>>>>> length = 3* *>>>>>> value = 00:00:00* *>>>>>> translated = [ service_status = 'none' true_service_status = 'none' preferred_data_path = 'no' ]* *>>>>>> TLV:* *>>>>>> type = "WCDMA Service Status" (0x13)* *>>>>>> length = 3* *>>>>>> value = 00:00:00* *>>>>>> translated = [ service_status = 'none' true_service_status = 'none' preferred_data_path = 'no' ]* *>>>>>> TLV:* *>>>>>> type = "LTE Service Status" (0x14)* *>>>>>> length = 3* *>>>>>> value = 02:02:00* *>>>>>> translated = [ service_status = 'available' true_service_status = 'available' preferred_data_path = 'no' ]* *>>>>>> TLV:* *>>>>>> type = "LTE System Info" (0x19)* *>>>>>> length = 29* *>>>>>> value = 01:03:01:03:01:00:01:00:00:FF:FF:01:02:0B:66:05:00:00:00:01:32:31:34:30:31:FF:01:02:11* *>>>>>> translated = [ domain_valid = 'yes' domain = 'cs-ps' service_capability_valid = 'yes' service_capability = 'cs-ps' roaming_status_valid = 'yes' roaming_status = 'off' forbidden_valid = 'yes' forbid* *den = 'no' lac_valid = 'no' lac = '65535' cid_valid = 'yes' cid = '90573570' registration_reject_info_valid = 'no' registration_reject_domain = 'none' registration_reject_cause = '0' network_id_valid = 'yes* *' mcc = '214' mnc = '01�' tac_valid = 'yes' tac = '4354' ]* *>>>>>> TLV:* *>>>>>> type = "Additional LTE System Info" (0x1e)* *>>>>>> length = 2* *>>>>>> value = FF:FF* *>>>>>> translated = [ geo_system_index = '65535' ]* *>>>>>> TLV:* *>>>>>> type = "LTE Voice Support" (0x21)* *>>>>>> length = 1* *>>>>>> value = 01* *>>>>>> translated = yes* *>>>>>> TLV:* *>>>>>> type = "SIM Reject Info" (0x27)* *>>>>>> length = 4* *>>>>>> value = 01:00:00:00* *>>>>>> translated = vailable* *>>>>>> TLV:* *>>>>>> type = 0x29* *>>>>>> length = 1* *>>>>>> value = 00* *>>>>>> TLV:* *>>>>>> type = 0x2a* *>>>>>> length = 4* *>>>>>> value = 00:00:00:00* * [947188221.227560] [mm-iface-modem-3gpp.c:1169] update_registration_state(): Modem /org/freedesktop/ModemManager1/Modem/0: 3GPP Registration state changed (idle -> unknown)* * [947188221.239038] [mm-iface-modem-3gpp.c:287] run_registration_checks_ready(): Modem not yet registered in a 3GPP network... will recheck soon* * [947188224.081628] [mm-iface-modem-3gpp.c:751] mm_iface_modem_3gpp_run_registration_checks(): Running registration checks (CS: 'yes', PS: 'yes', EPS: 'no')* *[...]* And it continues that way until timeout. It seems that modem is not registered, however if I run "mmcli -m 0 --3gpp-scan --timeout=300", next is returned: *Found 12 networks:* *21407 - Movistar (umts, forbidden)* *21404 - YOIGO (gsm, forbidden)* *21404 - YOIGO (umts, forbidden)* *21403 - Orange (umts, forbidden)* *21407 - Movistar (gsm, forbidden)* *21403 - Orange (lte, forbidden)* *21404 - YOIGO (lte, forbidden)* *21403 - Orange (gsm, forbidden)* *21407 - Movistar (lte, forbidden)* *21401 - vodafone ES (lte, current)* *21401 - Voda ES (umts, available)* *21401 - Voda ES (gsm, available)* And if "mmcli -m 0 --3gpp-register-home --timeout=300", same as with connect: *error: couldn't register the modem: 'GDBus.Error:org.freedesktop.ModemManager1.Error.MobileEquipment.NetworkTimeout: Network timeout'* Maybe some previous settings config missing?? On Thu, Aug 27, 2015 at 3:29 PM, Aleksander Morgado < aleksander at aleksander.es> wrote: > On Thu, Aug 27, 2015 at 4:26 PM, Raul Suarez Moreno > wrote: > > Ok, thinks are clearer now. > > > > Indeed, I did it. I attached the ModemManager log to this message. > > Ah, I see it now in the other email. > > Do you have udev setup in your system? Looks like ModemManager wasn't > notified of any port via udev. > > -- > Aleksander > https://aleksander.es > -- Saludos / Best regards Raúl Suárez Blue TC -------------- next part -------------- An HTML attachment was scrubbed... URL: From dcbw at redhat.com Mon Aug 31 08:50:54 2015 From: dcbw at redhat.com (Dan Williams) Date: Mon, 31 Aug 2015 10:50:54 -0500 Subject: [PATCH] broadband-modem-mbim: disable CDMA capabilities until we actually support MBIM+CDMA In-Reply-To: References: <1440089019.12801.6.camel@redhat.com> Message-ID: <1441036254.2718.7.camel@redhat.com> On Fri, 2015-08-21 at 12:06 +0200, Aleksander Morgado wrote: > On Thu, Aug 20, 2015 at 6:43 PM, Dan Williams wrote: > > CDMA-capable modems (like a Sierra EM7355) will fail to even enable, > > because the internal CDMA code tries to initialize using AT commands and > > that fails because many MBIM modems don't have an AT port. We should > > figure out how to support minimal MBIM + CDMA using MBIM instead of > > AT-anything. > > > > [mm-broadband-modem.c:9000] enabling_step(): Modem has CDMA capabilities, enabling the Modem CDMA interface... > > [mm-iface-modem-cdma.c:946] mm_iface_modem_cdma_run_registration_checks(): Running registration checks (CDMA1x: 'yes', EV-DO: 'yes') > > [mm-broadband-modem.c:7397] setup_registration_checks_context_complete_and_free(): Will skip all QCDM-based registration checks > > [mm-broadband-modem.c:7418] setup_registration_checks_context_complete_and_free(): Will skip generic detailed registration check, we don't have Sprint commands > > [mm-iface-modem-cdma.c:768] registration_check_step(): Starting QCDM-based registration checks > > [mm-iface-modem-cdma.c:780] registration_check_step(): Skipping all QCDM-based checks and falling back to AT-based checks > > [mm-iface-modem-cdma.c:823] registration_check_step(): Starting AT-based registration checks > > [mm-iface-modem-cdma.c:641] get_service_status_ready(): Could not get service status: No AT port available to run command > > [mm-iface-modem.c:1392] __iface_modem_update_state_internal(): Modem /org/freedesktop/ModemManager1/Modem/0: state changed (enabling -> disabled) > > > > Yeah, push. Pushed to relevant branches. Dan > > --- > > > > diff --git a/src/mm-broadband-modem-mbim.c b/src/mm-broadband-modem-mbim.c > > index bb7ddc2..626d0d7 100644 > > --- a/src/mm-broadband-modem-mbim.c > > +++ b/src/mm-broadband-modem-mbim.c > > @@ -173,8 +173,12 @@ device_caps_query_ready (MbimDevice *device, > > mask = 0; > > if (ctx->self->priv->caps_cellular_class & MBIM_CELLULAR_CLASS_GSM) > > mask |= MM_MODEM_CAPABILITY_GSM_UMTS; > > + > > +#if 0 /* Disable until we add MBIM CDMA support */ > > if (ctx->self->priv->caps_cellular_class & MBIM_CELLULAR_CLASS_CDMA) > > mask |= MM_MODEM_CAPABILITY_CDMA_EVDO; > > +#endif > > + > > if (ctx->self->priv->caps_data_class & MBIM_DATA_CLASS_LTE) > > mask |= MM_MODEM_CAPABILITY_LTE; > > g_simple_async_result_set_op_res_gpointer (ctx->result, > > > > _______________________________________________ > > ModemManager-devel mailing list > > ModemManager-devel at lists.freedesktop.org > > http://lists.freedesktop.org/mailman/listinfo/modemmanager-devel > > > From dcbw at redhat.com Mon Aug 31 09:09:50 2015 From: dcbw at redhat.com (Dan Williams) Date: Mon, 31 Aug 2015 11:09:50 -0500 Subject: ptxdist-2013.12.0 + ModemManager + Cinterion PLS8 rel.1 In-Reply-To: References: Message-ID: <1441037390.2718.8.camel@redhat.com> On Mon, 2015-08-31 at 13:17 +0100, Raul Suarez Moreno wrote: > Finally, ModemManager detected my modem. Problem was the udev startup > script, udevd was not being correctly initiated. > > Now, "mmcli -L" shows my modem device correctly. I could enable it and even > send a text SMS, but I am not being successful at using "mmcli -m 0 > --simple-connect", always getting: > > *error: couldn't connect the modem: 'Timeout was reached'* >From the traces, I can't figure out why MM thinks the modem isn't registered. Are you able to rebuild MM with some small patches to further debug the issue? Dan > And if I use the command with "--timeout=300", the error returned is > because of Network timeout. I've enabled --debug mode in ModemManager and > here it is the log file extract when trying the --simple-connect: > > * [947188221.002169] [mm-iface-modem-simple.c:641] > connect_auth_ready(): Simple connect started...* > * [947188221.022600] [mm-iface-modem-simple.c:651] > connect_auth_ready(): PIN: unspecified* > * [947188221.030484] [mm-iface-modem-simple.c:653] > connect_auth_ready(): Operator ID: unspecified* > * [947188221.038286] [mm-iface-modem-simple.c:655] > connect_auth_ready(): Allowed roaming: yes* > * [947188221.047354] [mm-iface-modem-simple.c:657] > connect_auth_ready(): APN: airtelnet.es * > * [947188221.056593] [mm-iface-modem-simple.c:665] > connect_auth_ready(): IP family: unspecified* > * [947188221.064477] [mm-iface-modem-simple.c:673] > connect_auth_ready(): Allowed authentication: unspecified* > * [947188221.073221] [mm-iface-modem-simple.c:675] > connect_auth_ready(): User: vodafone* > * [947188221.081010] [mm-iface-modem-simple.c:677] > connect_auth_ready(): Password: vodafone* > * [947188221.088754] [mm-iface-modem-simple.c:679] > connect_auth_ready(): Number: unspecified* > * [947188221.097630] [mm-iface-modem-simple.c:469] > connection_step(): Simple connect state (4/8): Wait to get fully enabled* > * [947188221.107283] [mm-iface-modem-simple.c:478] > connection_step(): Simple connect state (5/8): Register* > * [947188221.115731] [mm-iface-modem-3gpp.c:397] > mm_iface_modem_3gpp_register_in_network(): Launching automatic network > registration...* > *[/dev/cdc-wdm0] Sent message...* > *<<<<<< RAW:* > *<<<<<< length = 17* > *<<<<<< data = 01:10:00:00:03:04:00:35:00:22:00:04:00:01:01:00:01* > *[/dev/cdc-wdm0] Sent message (translated)...* > *<<<<<< QMUX:* > *<<<<<< length = 16* > *<<<<<< flags = 0x00* > *<<<<<< service = "nas"* > *<<<<<< client = 4* > *<<<<<< QMI:* > *<<<<<< flags = "none"* > *<<<<<< transaction = 53* > *<<<<<< tlv_length = 4* > *<<<<<< message = "Initiate Network Register" (0x0022)* > *<<<<<< TLV:* > *<<<<<< type = "Action" (0x01)* > *<<<<<< length = 1* > *<<<<<< value = 01* > *<<<<<< translated = automatic* > *[/dev/cdc-wdm0] Received message...* > *>>>>>> RAW:* > *>>>>>> length = 20* > *>>>>>> data = > 01:13:00:80:03:04:02:35:00:22:00:07:00:02:04:00:00:00:00:00* > *[/dev/cdc-wdm0] Received message (translated)...* > *>>>>>> QMUX:* > *>>>>>> length = 19* > *>>>>>> flags = 0x80* > *>>>>>> service = "nas"* > *>>>>>> client = 4* > *>>>>>> QMI:* > *>>>>>> flags = "response"* > *>>>>>> transaction = 53* > *>>>>>> tlv_length = 7* > *>>>>>> message = "Initiate Network Register" (0x0022)* > *>>>>>> TLV:* > *>>>>>> type = "Result" (0x02)* > *>>>>>> length = 4* > *>>>>>> value = 00:00:00:00* > *>>>>>> translated = SUCCESS* > * [947188221.161321] [mm-iface-modem-3gpp.c:751] > mm_iface_modem_3gpp_run_registration_checks(): Running registration checks > (CS: 'yes', PS: 'yes', EPS: 'no')* > *[/dev/cdc-wdm0] Sent message...* > *<<<<<< RAW:* > *<<<<<< length = 13* > *<<<<<< data = 01:0C:00:00:03:04:00:36:00:4D:00:00:00* > *[/dev/cdc-wdm0] Sent message (translated)...* > *<<<<<< QMUX:* > *<<<<<< length = 12* > *<<<<<< flags = 0x00* > *<<<<<< service = "nas"* > *<<<<<< client = 4* > *<<<<<< QMI:* > *<<<<<< flags = "none"* > *<<<<<< transaction = 54* > *<<<<<< tlv_length = 0* > *<<<<<< message = "Get System Info" (0x004D)* > *[/dev/cdc-wdm0] Received message...* > *>>>>>> RAW:* > *>>>>>> length = 97* > *>>>>>> data = > 01:60:00:80:03:04:02:36:00:4D:00:54:00:02:04:00:00:00:00:00:12:03:00:00:00:00:13:03:00:00:00:00:14:03:00:02:02:00:19:1D:00:01:03:01:03:01:00:01:00:00:FF:FF:01:02:0B:66:05:00:00:00:01:32:31* > *:34:30:31:FF:01:02:11:1E:02:00:FF:FF:21:01:00:01:27:04:00:01:00:00:00:29:01:00:00:2A:04:00:00:00:00:00* > *[/dev/cdc-wdm0] Received message (translated)...* > *>>>>>> QMUX:* > *>>>>>> length = 96* > *>>>>>> flags = 0x80* > *>>>>>> service = "nas"* > *>>>>>> client = 4* > *>>>>>> QMI:* > *>>>>>> flags = "response"* > *>>>>>> transaction = 54* > *>>>>>> tlv_length = 84* > *>>>>>> message = "Get System Info" (0x004D)* > *>>>>>> TLV:* > *>>>>>> type = "Result" (0x02)* > *>>>>>> length = 4* > *>>>>>> value = 00:00:00:00* > *>>>>>> translated = SUCCESS* > *>>>>>> TLV:* > *>>>>>> type = "GSM Service Status" (0x12)* > *>>>>>> length = 3* > *>>>>>> value = 00:00:00* > *>>>>>> translated = [ service_status = 'none' true_service_status = > 'none' preferred_data_path = 'no' ]* > *>>>>>> TLV:* > *>>>>>> type = "WCDMA Service Status" (0x13)* > *>>>>>> length = 3* > *>>>>>> value = 00:00:00* > *>>>>>> translated = [ service_status = 'none' true_service_status = > 'none' preferred_data_path = 'no' ]* > *>>>>>> TLV:* > *>>>>>> type = "LTE Service Status" (0x14)* > *>>>>>> length = 3* > *>>>>>> value = 02:02:00* > *>>>>>> translated = [ service_status = 'available' true_service_status = > 'available' preferred_data_path = 'no' ]* > *>>>>>> TLV:* > *>>>>>> type = "LTE System Info" (0x19)* > *>>>>>> length = 29* > *>>>>>> value = > 01:03:01:03:01:00:01:00:00:FF:FF:01:02:0B:66:05:00:00:00:01:32:31:34:30:31:FF:01:02:11* > *>>>>>> translated = [ domain_valid = 'yes' domain = 'cs-ps' > service_capability_valid = 'yes' service_capability = 'cs-ps' > roaming_status_valid = 'yes' roaming_status = 'off' forbidden_valid = 'yes' > forbid* > *den = 'no' lac_valid = 'no' lac = '65535' cid_valid = 'yes' cid = > '90573570' registration_reject_info_valid = 'no' registration_reject_domain > = 'none' registration_reject_cause = '0' network_id_valid = 'yes* > *' mcc = '214' mnc = '01�' tac_valid = 'yes' tac = '4354' ]* > *>>>>>> TLV:* > *>>>>>> type = "Additional LTE System Info" (0x1e)* > *>>>>>> length = 2* > *>>>>>> value = FF:FF* > *>>>>>> translated = [ geo_system_index = '65535' ]* > *>>>>>> TLV:* > *>>>>>> type = "LTE Voice Support" (0x21)* > *>>>>>> length = 1* > *>>>>>> value = 01* > *>>>>>> translated = yes* > *>>>>>> TLV:* > *>>>>>> type = "SIM Reject Info" (0x27)* > *>>>>>> length = 4* > *>>>>>> value = 01:00:00:00* > *>>>>>> translated = vailable* > *>>>>>> TLV:* > *>>>>>> type = 0x29* > *>>>>>> length = 1* > *>>>>>> value = 00* > *>>>>>> TLV:* > *>>>>>> type = 0x2a* > *>>>>>> length = 4* > *>>>>>> value = 00:00:00:00* > * [947188221.227560] [mm-iface-modem-3gpp.c:1169] > update_registration_state(): Modem /org/freedesktop/ModemManager1/Modem/0: > 3GPP Registration state changed (idle -> unknown)* > * [947188221.239038] [mm-iface-modem-3gpp.c:287] > run_registration_checks_ready(): Modem not yet registered in a 3GPP > network... will recheck soon* > * [947188224.081628] [mm-iface-modem-3gpp.c:751] > mm_iface_modem_3gpp_run_registration_checks(): Running registration checks > (CS: 'yes', PS: 'yes', EPS: 'no')* > *[...]* > > And it continues that way until timeout. It seems that modem is not > registered, however if I run "mmcli -m 0 --3gpp-scan --timeout=300", next > is returned: > > *Found 12 networks:* > *21407 - Movistar (umts, forbidden)* > *21404 - YOIGO (gsm, forbidden)* > *21404 - YOIGO (umts, forbidden)* > *21403 - Orange (umts, forbidden)* > *21407 - Movistar (gsm, forbidden)* > *21403 - Orange (lte, forbidden)* > *21404 - YOIGO (lte, forbidden)* > *21403 - Orange (gsm, forbidden)* > *21407 - Movistar (lte, forbidden)* > *21401 - vodafone ES (lte, current)* > *21401 - Voda ES (umts, available)* > *21401 - Voda ES (gsm, available)* > > And if "mmcli -m 0 --3gpp-register-home --timeout=300", same as with > connect: > > *error: couldn't register the modem: > 'GDBus.Error:org.freedesktop.ModemManager1.Error.MobileEquipment.NetworkTimeout: > Network timeout'* > > Maybe some previous settings config missing?? > > On Thu, Aug 27, 2015 at 3:29 PM, Aleksander Morgado < > aleksander at aleksander.es> wrote: > > > On Thu, Aug 27, 2015 at 4:26 PM, Raul Suarez Moreno > > wrote: > > > Ok, thinks are clearer now. > > > > > > Indeed, I did it. I attached the ModemManager log to this message. > > > > Ah, I see it now in the other email. > > > > Do you have udev setup in your system? Looks like ModemManager wasn't > > notified of any port via udev. > > > > -- > > Aleksander > > https://aleksander.es > > > > > > _______________________________________________ > ModemManager-devel mailing list > ModemManager-devel at lists.freedesktop.org > http://lists.freedesktop.org/mailman/listinfo/modemmanager-devel From dcbw at redhat.com Mon Aug 31 09:10:29 2015 From: dcbw at redhat.com (Dan Williams) Date: Mon, 31 Aug 2015 11:10:29 -0500 Subject: Schedule for next release In-Reply-To: References: Message-ID: <1441037429.2718.9.camel@redhat.com> On Thu, 2015-08-27 at 11:41 +0200, Aleksander Morgado wrote: > Hey everyone, > > The 1.4.x series is 1 year old now, and we have quite some new things > in git master since then (e.g. A-GPS & Voice APIs, the Dell > plugin...). > > Do you guys think it would be a good idea to feature-freeze git master > and tag a new 1.5.90 version to test and bugfix for some weeks > targeting 1.6.0 in e.g. October? > > I've got some issues in mind that should be solved before releasing: > * Cancel probing properly when udev reports port is gone. > * Revisit MBIM suspend/resume logic as Tore had it failed again. > * Revisit MBIM open sequence, as it doesn't sync very well with the > new Intel chipsets (may actually be a libmbim issue though). > * Something else? > > Wanted to know also, does someone use git master in custom > "production" environments (or for personal use)? Or is everyone using > 1.4.x? This all sounds good to me... Dan From raul.suarez at blue-tc.com Mon Aug 31 09:52:13 2015 From: raul.suarez at blue-tc.com (Raul Suarez Moreno) Date: Mon, 31 Aug 2015 17:52:13 +0100 Subject: ptxdist-2013.12.0 + ModemManager + Cinterion PLS8 rel.1 In-Reply-To: <1441037390.2718.8.camel@redhat.com> References: <1441037390.2718.8.camel@redhat.com> Message-ID: Hi Dan! Yes, I could rebuild the project. What patches should I apply? FYI, I'm currently using MM 1.4.8 version, may I move to 1.4.10? On Mon, Aug 31, 2015 at 5:09 PM, Dan Williams wrote: > On Mon, 2015-08-31 at 13:17 +0100, Raul Suarez Moreno wrote: > > Finally, ModemManager detected my modem. Problem was the udev startup > > script, udevd was not being correctly initiated. > > > > Now, "mmcli -L" shows my modem device correctly. I could enable it and > even > > send a text SMS, but I am not being successful at using "mmcli -m 0 > > --simple-connect", always getting: > > > > *error: couldn't connect the modem: 'Timeout was reached'* > > From the traces, I can't figure out why MM thinks the modem isn't > registered. Are you able to rebuild MM with some small patches to > further debug the issue? > > Dan > > _______________________________________________ > ModemManager-devel mailing list > ModemManager-devel at lists.freedesktop.org > http://lists.freedesktop.org/mailman/listinfo/modemmanager-devel > -- Saludos / Best regards Raúl Suárez Blue TC -------------- next part -------------- An HTML attachment was scrubbed... URL: From joao.m.santos.silva at gmail.com Mon Aug 31 11:22:38 2015 From: joao.m.santos.silva at gmail.com (=?UTF-8?Q?Jo=c3=a3o_M._S._Silva?=) Date: Mon, 31 Aug 2015 19:22:38 +0100 Subject: nm-applet cannot communicate with ModemManager on serveral Hardware In-Reply-To: <55DDEE9B.6040902@ecos.de> References: <55D7CA25.1080809@gmail.com> <55D867BA.90709@ecos.de> <55DDCA5F.2040805@gmail.com> <55DDEE9B.6040902@ecos.de> Message-ID: <55E49B6E.8030404@gmail.com> On 08/26/2015 05:51 PM, Harald Jung wrote: > I've built a version with ModemManager started seperatly from > NetworkManager. > I can check it tommorow with a notebook, which has this problem. Did it work? -- João M. S. Silva From dcbw at redhat.com Mon Aug 31 11:24:39 2015 From: dcbw at redhat.com (Dan Williams) Date: Mon, 31 Aug 2015 13:24:39 -0500 Subject: ptxdist-2013.12.0 + ModemManager + Cinterion PLS8 rel.1 In-Reply-To: References: <1441037390.2718.8.camel@redhat.com> Message-ID: <1441045479.2718.22.camel@redhat.com> On Mon, 2015-08-31 at 17:52 +0100, Raul Suarez Moreno wrote: > Hi Dan! Yes, I could rebuild the project. What patches should I apply? FYI, > I'm currently using MM 1.4.8 version, may I move to 1.4.10? Probably not required; first lets try the attached patch. Dan > On Mon, Aug 31, 2015 at 5:09 PM, Dan Williams wrote: > > > On Mon, 2015-08-31 at 13:17 +0100, Raul Suarez Moreno wrote: > > > Finally, ModemManager detected my modem. Problem was the udev startup > > > script, udevd was not being correctly initiated. > > > > > > Now, "mmcli -L" shows my modem device correctly. I could enable it and > > even > > > send a text SMS, but I am not being successful at using "mmcli -m 0 > > > --simple-connect", always getting: > > > > > > *error: couldn't connect the modem: 'Timeout was reached'* > > > > From the traces, I can't figure out why MM thinks the modem isn't > > registered. Are you able to rebuild MM with some small patches to > > further debug the issue? > > > > Dan > > > > _______________________________________________ > > ModemManager-devel mailing list > > ModemManager-devel at lists.freedesktop.org > > http://lists.freedesktop.org/mailman/listinfo/modemmanager-devel > > > > > > _______________________________________________ > ModemManager-devel mailing list > ModemManager-devel at lists.freedesktop.org > http://lists.freedesktop.org/mailman/listinfo/modemmanager-devel -------------- next part -------------- A non-text attachment was scrubbed... Name: mm-qmi-reg-test.patch Type: text/x-patch Size: 7975 bytes Desc: not available URL: From joao.m.santos.silva at gmail.com Mon Aug 31 11:37:27 2015 From: joao.m.santos.silva at gmail.com (=?UTF-8?Q?Jo=c3=a3o_M._S._Silva?=) Date: Mon, 31 Aug 2015 19:37:27 +0100 Subject: Fundamental doubt Message-ID: <55E49EE7.7010801@gmail.com> Hi, I am using ModemManager to control an HSDPA modem: $ lsusb Bus 001 Device 004: ID 12d1:1001 Huawei Technologies Co., Ltd. E169/E620/E800 HSDPA Modem But now we are testing this device: SIM800L from SIMCom. This modem understands AT commands that we send through a terminal program, like miniterm.py or so. My question is: how does ModemManager relate to AT commands? Is it a wrapper for AT commands, i.e. in an higher abstraction layer? We cannot use ModemManager for this SIM800L module since it uses a serial connection and not DBus, is this correct? Thanks. -- João M. S. Silva From aleksander at aleksander.es Mon Aug 31 11:47:33 2015 From: aleksander at aleksander.es (Aleksander Morgado) Date: Mon, 31 Aug 2015 20:47:33 +0200 Subject: ptxdist-2013.12.0 + ModemManager + Cinterion PLS8 rel.1 In-Reply-To: References: Message-ID: On Mon, Aug 31, 2015 at 2:17 PM, Raul Suarez Moreno wrote: > [947188221.161321] [mm-iface-modem-3gpp.c:751] > mm_iface_modem_3gpp_run_registration_checks(): Running registration checks > (CS: 'yes', PS: 'yes', EPS: 'no') Looks like the modem was detected, but wasn't flagged as supporting 4G: it's not running EPS registration checks, so even if it's registered in LTE, it will think it isn't registered anywhere. Could you gather full debug logs from the modem being detected via udev until it is fully exposed in DBus? -- Aleksander https://aleksander.es From dcbw at redhat.com Mon Aug 31 11:59:43 2015 From: dcbw at redhat.com (Dan Williams) Date: Mon, 31 Aug 2015 13:59:43 -0500 Subject: Fundamental doubt In-Reply-To: <55E49EE7.7010801@gmail.com> References: <55E49EE7.7010801@gmail.com> Message-ID: <1441047583.2718.28.camel@redhat.com> On Mon, 2015-08-31 at 19:37 +0100, João M. S. Silva wrote: > Hi, > > I am using ModemManager to control an HSDPA modem: > > $ lsusb > Bus 001 Device 004: ID 12d1:1001 Huawei Technologies Co., Ltd. > E169/E620/E800 HSDPA Modem > > But now we are testing this device: SIM800L from SIMCom. > > This modem understands AT commands that we send through a terminal > program, like miniterm.py or so. > > My question is: how does ModemManager relate to AT commands? Is it a > wrapper for AT commands, i.e. in an higher abstraction layer? Yes, or for MBIM or QMI or whatever. ModemManager exposes a higher-level D-Bus API and translates requests from that API into commands sent to the modem, regardless of what kind of command interface that modem has. > We cannot use ModemManager for this SIM800L module since it uses a > serial connection and not DBus, is this correct? Not quite correct. ModemManager does not use D-Bus to talk to the modem; it uses D-Bus to talk to client applications. To talk to the modem, MM uses the protocol that the modem supports (eg AT-over-serial, AT-over-WDM, MBIM, QMI, or QCDM-over-serial) to speak with the kernel driver, which then formats the data correctly for the modem itself. So your SIMCom device will have serial lines that a kernel driver knows how to control, and the kernel exposes a device node (like ttyACM0 or ttyUSB0 or cdc-wdm0), which is what ModemManager then uses to control the device based on what requests client applications make via MM's D-Bus API. The only caveat here is that many modems use proprietary AT commands for some of their functionality, and if there is no support in ModemManager for those commands some functions may not be available. MM has a SimTech/SimCom plugin already, but for other SimCom devices that appear to support different commands than the 800L. Dan From joao.m.santos.silva at gmail.com Mon Aug 31 12:23:42 2015 From: joao.m.santos.silva at gmail.com (=?UTF-8?Q?Jo=c3=a3o_M._S._Silva?=) Date: Mon, 31 Aug 2015 20:23:42 +0100 Subject: Fundamental doubt In-Reply-To: <1441047583.2718.28.camel@redhat.com> References: <55E49EE7.7010801@gmail.com> <1441047583.2718.28.camel@redhat.com> Message-ID: <55E4A9BE.9010803@gmail.com> Thanks for the explanation. On 08/31/2015 07:59 PM, Dan Williams wrote: > Not quite correct. ModemManager does not use D-Bus to talk to the > modem; it uses D-Bus to talk to client applications. To talk to the So, when I use mmcli (client application), I am using the DBus to talk to the ModemManager daemon, which then connects directly to the HSDPA modem through /dev/ttyUSB*? > modem, MM uses the protocol that the modem supports (eg AT-over-serial, > AT-over-WDM, MBIM, QMI, or QCDM-over-serial) to speak with the kernel > driver, which then formats the data correctly for the modem itself. But in the case of the SIM800L module, does the Linux kernel recognize it? Does it have to? Why? I am talking directly with the modem. There is no hardware recognition message in the kernel. In the case of the HSDPA modem, the kernel recognizes the hardware and creates /dev/ttyUSB*, if I understand correctly. > So your SIMCom device will have serial lines that a kernel driver knows > how to control, and the kernel exposes a device node (like ttyACM0 or > ttyUSB0 or cdc-wdm0), which is what ModemManager then uses to control > the device based on what requests client applications make via MM's > D-Bus API. Hum... so I guess the kernels I'm using don't recognize this hardware, so no nodes are created. > The only caveat here is that many modems use proprietary AT commands for > some of their functionality, and if there is no support in ModemManager > for those commands some functions may not be available. MM has a > SimTech/SimCom plugin already, but for other SimCom devices that appear > to support different commands than the 800L. So, I could eventually use MM but it currently does not support SIM800L commands, right? How do I make Linux recognize SIM800L? -- João M. S. Silva From Glenn.Highland at digi.com Mon Aug 31 11:38:08 2015 From: Glenn.Highland at digi.com (Highland, Glenn) Date: Mon, 31 Aug 2015 18:38:08 +0000 Subject: MM v1.4.6/Telit HE910-D SMS question Message-ID: <0D659A5A3F184B459470CC3DFE7A4CE12FD4C641@MTK-SMS-XCH02.digi.com> Hello all, Our device is running ModemManager v1.4.6 against a Telit HE910-D modem (rev. 12.00.024). We've been quite successful in expediting data transfer via IP through the cell network (no problems there), but we're having considerable difficulty getting SMS messages to be received by the device. The signal strength being measured looks reasonable and since IP connectivity is quite reliable I don't think it's RF-related. I've been running ModemManager in debug mode and using mmcli. The issue I'm seeing is when the modem is enabled, ModemManager appears to be properly configuring the HE910-D for SMS handling (I see the AT+CNMI="2,1,2,1,0" command being successfully executed to set-up new message indication handling and the default message storage is properly selected). Running the AT+CSMS? command shows the mode is capable of sending/receiving SMS messages (as does AT+CSMS=0 and AT+CSMS=1). However, immediately after I successfully connect to the AT&T "i2gold" APN (mmcli -m 0 -simple-connect="apn=i2gold"), I then re-query the New Message Indications configuration (AT+CNMI?) and the result is "0,0,0,0,0". My question to the group is: Do you think it is the AT&T network that is causing the change in the New Message Indications configuration in the HE910-D? Any help/ideas would be appreciated. I've attached a highlighted log to perhaps help illustrate. Thanks in advance Glenn -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: teraterm.docx Type: application/vnd.openxmlformats-officedocument.wordprocessingml.document Size: 30687 bytes Desc: teraterm.docx URL: From aleksander at aleksander.es Mon Aug 31 12:31:14 2015 From: aleksander at aleksander.es (Aleksander Morgado) Date: Mon, 31 Aug 2015 21:31:14 +0200 Subject: MM v1.4.6/Telit HE910-D SMS question In-Reply-To: <0D659A5A3F184B459470CC3DFE7A4CE12FD4C641@MTK-SMS-XCH02.digi.com> References: <0D659A5A3F184B459470CC3DFE7A4CE12FD4C641@MTK-SMS-XCH02.digi.com> Message-ID: On Mon, Aug 31, 2015 at 8:38 PM, Highland, Glenn wrote: > Our device is running ModemManager v1.4.6 against a Telit HE910-D modem > (rev. 12.00.024). We’ve been quite successful > > in expediting data transfer via IP through the cell network (no problems > there), but we’re having considerable difficulty > > getting SMS messages to be received by the device. The signal strength > being measured looks reasonable and since IP > > connectivity is quite reliable I don’t think it’s RF-related. > > > > I’ve been running ModemManager in debug mode and using mmcli. > > > > The issue I’m seeing is when the modem is enabled, ModemManager appears to > be properly configuring the HE910-D > > for SMS handling (I see the AT+CNMI=”2,1,2,1,0” command being successfully > executed to set-up new message indication > > handling and the default message storage is properly selected). Running the > AT+CSMS? command shows the mode is > > capable of sending/receiving SMS messages (as does AT+CSMS=0 and AT+CSMS=1). > > > > However, immediately after I successfully connect to the AT&T “i2gold” APN > (mmcli –m 0 –simple-connect=”apn=i2gold”), > > I then re-query the New Message Indications configuration (AT+CNMI?) and the > result is “0,0,0,0,0”. > > > > My question to the group is: Do you think it is the AT&T network that is > causing the change in the New Message Indications > > configuration in the HE910-D? > > > > Any help/ideas would be appreciated. I’ve attached a highlighted log to > perhaps help illustrate. While the modem is not connected all your commands go through ttyACM0. When you connect the modem, ttyACM0 is used for PPP, so ModemManager tries to use a secondary port, ttyACM3 in your case. Looks like the reply is different in that one. Maybe we need to use a different port flagged for "data", so that ttyACM0 is always used as primary. Can you try to run through minicom the SMS related commands but using ttyACM3 instead of ttyACM0, while the modem is not connected and ModemManager not running? That's just to confirm whether ttyACM3 cannot be used as secondary. -- Aleksander https://aleksander.es From dcbw at redhat.com Mon Aug 31 13:03:01 2015 From: dcbw at redhat.com (Dan Williams) Date: Mon, 31 Aug 2015 15:03:01 -0500 Subject: Fundamental doubt In-Reply-To: <55E4A9BE.9010803@gmail.com> References: <55E49EE7.7010801@gmail.com> <1441047583.2718.28.camel@redhat.com> <55E4A9BE.9010803@gmail.com> Message-ID: <1441051381.2718.36.camel@redhat.com> On Mon, 2015-08-31 at 20:23 +0100, João M. S. Silva wrote: > Thanks for the explanation. > > On 08/31/2015 07:59 PM, Dan Williams wrote: > > Not quite correct. ModemManager does not use D-Bus to talk to the > > modem; it uses D-Bus to talk to client applications. To talk to the > > So, when I use mmcli (client application), I am using the DBus to talk > to the ModemManager daemon, which then connects directly to the HSDPA > modem through /dev/ttyUSB*? Correct. > > modem, MM uses the protocol that the modem supports (eg AT-over-serial, > > AT-over-WDM, MBIM, QMI, or QCDM-over-serial) to speak with the kernel > > driver, which then formats the data correctly for the modem itself. > > But in the case of the SIM800L module, does the Linux kernel recognize > it? Does it have to? Why? I am talking directly with the modem. There is > no hardware recognition message in the kernel. The kernel must recognize the serial port through which communication with the modem is possible. So it may just be that the kernel recognizes the computer's built-in serial port, to which you have attached the modem itself. With most add-in cards and dongles, that is done via USB. But there are still devices that communicate via RS232 and other serial standards, and as long as the kernel can talk to the modem, ModemManager should be able to use it too. > In the case of the HSDPA modem, the kernel recognizes the hardware and > creates /dev/ttyUSB*, if I understand correctly. > > > So your SIMCom device will have serial lines that a kernel driver knows > > how to control, and the kernel exposes a device node (like ttyACM0 or > > ttyUSB0 or cdc-wdm0), which is what ModemManager then uses to control > > the device based on what requests client applications make via MM's > > D-Bus API. > > Hum... so I guess the kernels I'm using don't recognize this hardware, > so no nodes are created. So looking at http://www.headele.com/Datasheet/Wireless% 20module/GPRS/SIMCOM/SIM800L_Hardware_Design_V1.00.pdf the modem would just be somehow hooked up to the serial port of the computer you are using. As long as Linux knows about the computer's serial port, then you should be OK. These ports are often referred to as "platform" serial ports and may be designated /dev/ttyS0. Do you have any /dev/ttySx ports and if so can you talk to the modem with them? > > The only caveat here is that many modems use proprietary AT commands for > > some of their functionality, and if there is no support in ModemManager > > for those commands some functions may not be available. MM has a > > SimTech/SimCom plugin already, but for other SimCom devices that appear > > to support different commands than the 800L. > > So, I could eventually use MM but it currently does not support SIM800L > commands, right? *Maybe*. ModemManager supports standard 3GPP AT commands that many modems use. But some features are not available through standard AT commands (access technology reporting, 2g/3g/4g mode selection, etc) and modems use proprietary commands for those functions. These must be specially supported by ModemManager because they are not standard commands. Dan From joao.m.santos.silva at gmail.com Mon Aug 31 16:38:11 2015 From: joao.m.santos.silva at gmail.com (=?UTF-8?Q?Jo=c3=a3o_M._S._Silva?=) Date: Tue, 1 Sep 2015 00:38:11 +0100 Subject: Fundamental doubt In-Reply-To: <1441051381.2718.36.camel@redhat.com> References: <55E49EE7.7010801@gmail.com> <1441047583.2718.28.camel@redhat.com> <55E4A9BE.9010803@gmail.com> <1441051381.2718.36.camel@redhat.com> Message-ID: <55E4E563.5040703@gmail.com> On 08/31/2015 09:03 PM, Dan Williams wrote: > serial ports and may be designated /dev/ttyS0. Do you have > any /dev/ttySx ports and if so can you talk to the modem with them? Yes, I communicate for instance with miniterm.py /dev/ttyS0 115200. > *Maybe*. ModemManager supports standard 3GPP AT commands that many > modems use. But some features are not available through standard AT > commands (access technology reporting, 2g/3g/4g mode selection, etc) and > modems use proprietary commands for those functions. These must be > specially supported by ModemManager because they are not standard > commands. OK, understood. Thanks. -- João M. S. Silva From dcbw at redhat.com Mon Aug 31 17:06:33 2015 From: dcbw at redhat.com (Dan Williams) Date: Mon, 31 Aug 2015 19:06:33 -0500 Subject: Fundamental doubt In-Reply-To: <55E4E563.5040703@gmail.com> References: <55E49EE7.7010801@gmail.com> <1441047583.2718.28.camel@redhat.com> <55E4A9BE.9010803@gmail.com> <1441051381.2718.36.camel@redhat.com> <55E4E563.5040703@gmail.com> Message-ID: <1441065993.2718.78.camel@redhat.com> On Tue, 2015-09-01 at 00:38 +0100, João M. S. Silva wrote: > On 08/31/2015 09:03 PM, Dan Williams wrote: > > serial ports and may be designated /dev/ttyS0. Do you have > > any /dev/ttySx ports and if so can you talk to the modem with them? > > Yes, I communicate for instance with miniterm.py /dev/ttyS0 115200. Ok, great. In this case I would expect ModemManager to find the modem in /dev/ttyS0 through probing, but you may need to manually trigger probing of this platform serial device, since many platform devices are "greylisted" since they are often *not* modems. You can do that with the org.freedesktop.ModemManager1.ScanDevices() dbus method call. Dan > > *Maybe*. ModemManager supports standard 3GPP AT commands that many > > modems use. But some features are not available through standard AT > > commands (access technology reporting, 2g/3g/4g mode selection, etc) and > > modems use proprietary commands for those functions. These must be > > specially supported by ModemManager because they are not standard > > commands. > > OK, understood. > > Thanks. >