Huawei E3272 Ubuntu

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP








up vote
12
down vote

favorite
5












I have a problem with Huawei E3272 modem. Ubuntu 14.04 does not detect it as a mobile broadband modem. If I put my SIM card into my old modem(E3131) everything works, E3272 is just not detected. I have checked lsusb, and here I can see the system detects it as
12d1:14fe Huawei Technologies Co., Ltd.
but I cannot choose it in my Network Connections.



I tried adding usbserial vendor=0x12d1 product=0x14fe in /etc/modules, but it did not change anything. The same goes for adding



# Huawei E3272
ATTRidVendor=="12d1", ATTRidProduct=="157c", RUN +="usb_modeswitch '%b/%k'"



in /lib/udev/rules.d/40-usb_modeswitch.rules. I also tried installing Modem Manager, but it did not help.



Have you got any idea what could I do, so my system would detect my new modem? I would like to be able to use LTE. :)










share|improve this question





















  • What's the firmware of your Huawei E3272?
    – Lte Mall
    Dec 25 '15 at 3:45














up vote
12
down vote

favorite
5












I have a problem with Huawei E3272 modem. Ubuntu 14.04 does not detect it as a mobile broadband modem. If I put my SIM card into my old modem(E3131) everything works, E3272 is just not detected. I have checked lsusb, and here I can see the system detects it as
12d1:14fe Huawei Technologies Co., Ltd.
but I cannot choose it in my Network Connections.



I tried adding usbserial vendor=0x12d1 product=0x14fe in /etc/modules, but it did not change anything. The same goes for adding



# Huawei E3272
ATTRidVendor=="12d1", ATTRidProduct=="157c", RUN +="usb_modeswitch '%b/%k'"



in /lib/udev/rules.d/40-usb_modeswitch.rules. I also tried installing Modem Manager, but it did not help.



Have you got any idea what could I do, so my system would detect my new modem? I would like to be able to use LTE. :)










share|improve this question





















  • What's the firmware of your Huawei E3272?
    – Lte Mall
    Dec 25 '15 at 3:45












up vote
12
down vote

favorite
5









up vote
12
down vote

favorite
5






5





I have a problem with Huawei E3272 modem. Ubuntu 14.04 does not detect it as a mobile broadband modem. If I put my SIM card into my old modem(E3131) everything works, E3272 is just not detected. I have checked lsusb, and here I can see the system detects it as
12d1:14fe Huawei Technologies Co., Ltd.
but I cannot choose it in my Network Connections.



I tried adding usbserial vendor=0x12d1 product=0x14fe in /etc/modules, but it did not change anything. The same goes for adding



# Huawei E3272
ATTRidVendor=="12d1", ATTRidProduct=="157c", RUN +="usb_modeswitch '%b/%k'"



in /lib/udev/rules.d/40-usb_modeswitch.rules. I also tried installing Modem Manager, but it did not help.



Have you got any idea what could I do, so my system would detect my new modem? I would like to be able to use LTE. :)










share|improve this question













I have a problem with Huawei E3272 modem. Ubuntu 14.04 does not detect it as a mobile broadband modem. If I put my SIM card into my old modem(E3131) everything works, E3272 is just not detected. I have checked lsusb, and here I can see the system detects it as
12d1:14fe Huawei Technologies Co., Ltd.
but I cannot choose it in my Network Connections.



I tried adding usbserial vendor=0x12d1 product=0x14fe in /etc/modules, but it did not change anything. The same goes for adding



# Huawei E3272
ATTRidVendor=="12d1", ATTRidProduct=="157c", RUN +="usb_modeswitch '%b/%k'"



in /lib/udev/rules.d/40-usb_modeswitch.rules. I also tried installing Modem Manager, but it did not help.



Have you got any idea what could I do, so my system would detect my new modem? I would like to be able to use LTE. :)







usb-modem huawei






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Sep 19 '14 at 10:32









Jan Kowalski

71114




71114











  • What's the firmware of your Huawei E3272?
    – Lte Mall
    Dec 25 '15 at 3:45
















  • What's the firmware of your Huawei E3272?
    – Lte Mall
    Dec 25 '15 at 3:45















What's the firmware of your Huawei E3272?
– Lte Mall
Dec 25 '15 at 3:45




What's the firmware of your Huawei E3272?
– Lte Mall
Dec 25 '15 at 3:45










5 Answers
5






active

oldest

votes

















up vote
3
down vote













The same changes is applicable, and needed, in Ubuntu 14.10 as well.



So open the Terminal and copy the following:



sudo gedit /lib/udev/rules.d/40-usb_modeswitch.rules


Add the following lines:



# Huawei E3272 
ATTRidVendor=="12d1", ATTRidProduct=="157c", RUN +="usb_modeswitch '%b/%k'"


Save the file, close all open programs and restart the system. Now reinsert your modem. There will be no message or confirmation, but the connection will appear in your panel as it would if you would insert an ethernet cable.






share|improve this answer






















  • This worked for me only after I restarted the system. Hence, edited answer to add the restart bit. No harm in restarting the system, even if it works for some.
    – Sri
    Jul 17 '15 at 10:11

















up vote
2
down vote













This worked for my E353/E3131 HiLink Modem on Ubuntu 16.04LTS:



  • Find the modem idvendor and idProduct using lsusb.



  • Open the Terminal and run the following:



    sudo gedit /lib/udev/rules.d/40-usb_modeswitch.rules


This will open gedit editor. There, add the following lines:



# Huawei E353/E3131
ATTRidVendor=="12d1", ATTRidProduct=="1f01", RUN +="usb_modeswitch '%b/%k'"


  • Save and you are done.





share|improve this answer





























    up vote
    1
    down vote













    Nevermind, I deleted the mentioned line in /etc/modules and Ubuntu detected my modem. If you have similar problem just add your modem using information from lsusb in /lib/udev/rules.d/40-usb_modeswitch.rules , it works like a charm. :)






    share|improve this answer




















    • +1 because OP had confirmed that two workarounds don't work together. So this question seemed to be solved by OP already, but why nobody vote this answer over a year?
      – clearkimura
      Dec 25 '15 at 4:36

















    up vote
    0
    down vote













    The rules for the initial codes must be like this:



    Huawei E3272 ATTRidVendor=="12d1", ATTRidProduct=="14fe", RUN +="usb_modeswitch...


    See the usb_modeswitc_data package for details. The latest version for 14.04 contains rules for this modem. You may update it, it has no dependences.






    share|improve this answer





























      up vote
      0
      down vote













      FYI:



      # HUAWEI Mobile WiFi E5776
      ATTRidVendor=="12d1", ATTRidProduct=="1506", RUN +="usb_modeswitch '%b/%k'"





      share|improve this answer






















        Your Answer







        StackExchange.ready(function()
        var channelOptions =
        tags: "".split(" "),
        id: "89"
        ;
        initTagRenderer("".split(" "), "".split(" "), channelOptions);

        StackExchange.using("externalEditor", function()
        // Have to fire editor after snippets, if snippets enabled
        if (StackExchange.settings.snippets.snippetsEnabled)
        StackExchange.using("snippets", function()
        createEditor();
        );

        else
        createEditor();

        );

        function createEditor()
        StackExchange.prepareEditor(
        heartbeatType: 'answer',
        convertImagesToLinks: true,
        noModals: false,
        showLowRepImageUploadWarning: true,
        reputationToPostImages: 10,
        bindNavPrevention: true,
        postfix: "",
        onDemand: true,
        discardSelector: ".discard-answer"
        ,immediatelyShowMarkdownHelp:true
        );



        );













         

        draft saved


        draft discarded


















        StackExchange.ready(
        function ()
        StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f525965%2fhuawei-e3272-ubuntu%23new-answer', 'question_page');

        );

        Post as a guest






























        5 Answers
        5






        active

        oldest

        votes








        5 Answers
        5






        active

        oldest

        votes









        active

        oldest

        votes






        active

        oldest

        votes








        up vote
        3
        down vote













        The same changes is applicable, and needed, in Ubuntu 14.10 as well.



        So open the Terminal and copy the following:



        sudo gedit /lib/udev/rules.d/40-usb_modeswitch.rules


        Add the following lines:



        # Huawei E3272 
        ATTRidVendor=="12d1", ATTRidProduct=="157c", RUN +="usb_modeswitch '%b/%k'"


        Save the file, close all open programs and restart the system. Now reinsert your modem. There will be no message or confirmation, but the connection will appear in your panel as it would if you would insert an ethernet cable.






        share|improve this answer






















        • This worked for me only after I restarted the system. Hence, edited answer to add the restart bit. No harm in restarting the system, even if it works for some.
          – Sri
          Jul 17 '15 at 10:11














        up vote
        3
        down vote













        The same changes is applicable, and needed, in Ubuntu 14.10 as well.



        So open the Terminal and copy the following:



        sudo gedit /lib/udev/rules.d/40-usb_modeswitch.rules


        Add the following lines:



        # Huawei E3272 
        ATTRidVendor=="12d1", ATTRidProduct=="157c", RUN +="usb_modeswitch '%b/%k'"


        Save the file, close all open programs and restart the system. Now reinsert your modem. There will be no message or confirmation, but the connection will appear in your panel as it would if you would insert an ethernet cable.






        share|improve this answer






















        • This worked for me only after I restarted the system. Hence, edited answer to add the restart bit. No harm in restarting the system, even if it works for some.
          – Sri
          Jul 17 '15 at 10:11












        up vote
        3
        down vote










        up vote
        3
        down vote









        The same changes is applicable, and needed, in Ubuntu 14.10 as well.



        So open the Terminal and copy the following:



        sudo gedit /lib/udev/rules.d/40-usb_modeswitch.rules


        Add the following lines:



        # Huawei E3272 
        ATTRidVendor=="12d1", ATTRidProduct=="157c", RUN +="usb_modeswitch '%b/%k'"


        Save the file, close all open programs and restart the system. Now reinsert your modem. There will be no message or confirmation, but the connection will appear in your panel as it would if you would insert an ethernet cable.






        share|improve this answer














        The same changes is applicable, and needed, in Ubuntu 14.10 as well.



        So open the Terminal and copy the following:



        sudo gedit /lib/udev/rules.d/40-usb_modeswitch.rules


        Add the following lines:



        # Huawei E3272 
        ATTRidVendor=="12d1", ATTRidProduct=="157c", RUN +="usb_modeswitch '%b/%k'"


        Save the file, close all open programs and restart the system. Now reinsert your modem. There will be no message or confirmation, but the connection will appear in your panel as it would if you would insert an ethernet cable.







        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Jul 17 '15 at 11:44









        Sri

        1,12511031




        1,12511031










        answered Oct 21 '14 at 8:38









        Joachim Johansson

        312




        312











        • This worked for me only after I restarted the system. Hence, edited answer to add the restart bit. No harm in restarting the system, even if it works for some.
          – Sri
          Jul 17 '15 at 10:11
















        • This worked for me only after I restarted the system. Hence, edited answer to add the restart bit. No harm in restarting the system, even if it works for some.
          – Sri
          Jul 17 '15 at 10:11















        This worked for me only after I restarted the system. Hence, edited answer to add the restart bit. No harm in restarting the system, even if it works for some.
        – Sri
        Jul 17 '15 at 10:11




        This worked for me only after I restarted the system. Hence, edited answer to add the restart bit. No harm in restarting the system, even if it works for some.
        – Sri
        Jul 17 '15 at 10:11












        up vote
        2
        down vote













        This worked for my E353/E3131 HiLink Modem on Ubuntu 16.04LTS:



        • Find the modem idvendor and idProduct using lsusb.



        • Open the Terminal and run the following:



          sudo gedit /lib/udev/rules.d/40-usb_modeswitch.rules


        This will open gedit editor. There, add the following lines:



        # Huawei E353/E3131
        ATTRidVendor=="12d1", ATTRidProduct=="1f01", RUN +="usb_modeswitch '%b/%k'"


        • Save and you are done.





        share|improve this answer


























          up vote
          2
          down vote













          This worked for my E353/E3131 HiLink Modem on Ubuntu 16.04LTS:



          • Find the modem idvendor and idProduct using lsusb.



          • Open the Terminal and run the following:



            sudo gedit /lib/udev/rules.d/40-usb_modeswitch.rules


          This will open gedit editor. There, add the following lines:



          # Huawei E353/E3131
          ATTRidVendor=="12d1", ATTRidProduct=="1f01", RUN +="usb_modeswitch '%b/%k'"


          • Save and you are done.





          share|improve this answer
























            up vote
            2
            down vote










            up vote
            2
            down vote









            This worked for my E353/E3131 HiLink Modem on Ubuntu 16.04LTS:



            • Find the modem idvendor and idProduct using lsusb.



            • Open the Terminal and run the following:



              sudo gedit /lib/udev/rules.d/40-usb_modeswitch.rules


            This will open gedit editor. There, add the following lines:



            # Huawei E353/E3131
            ATTRidVendor=="12d1", ATTRidProduct=="1f01", RUN +="usb_modeswitch '%b/%k'"


            • Save and you are done.





            share|improve this answer














            This worked for my E353/E3131 HiLink Modem on Ubuntu 16.04LTS:



            • Find the modem idvendor and idProduct using lsusb.



            • Open the Terminal and run the following:



              sudo gedit /lib/udev/rules.d/40-usb_modeswitch.rules


            This will open gedit editor. There, add the following lines:



            # Huawei E353/E3131
            ATTRidVendor=="12d1", ATTRidProduct=="1f01", RUN +="usb_modeswitch '%b/%k'"


            • Save and you are done.






            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Aug 17 '16 at 14:42







            user308164

















            answered Aug 17 '16 at 13:34









            James

            211




            211




















                up vote
                1
                down vote













                Nevermind, I deleted the mentioned line in /etc/modules and Ubuntu detected my modem. If you have similar problem just add your modem using information from lsusb in /lib/udev/rules.d/40-usb_modeswitch.rules , it works like a charm. :)






                share|improve this answer




















                • +1 because OP had confirmed that two workarounds don't work together. So this question seemed to be solved by OP already, but why nobody vote this answer over a year?
                  – clearkimura
                  Dec 25 '15 at 4:36














                up vote
                1
                down vote













                Nevermind, I deleted the mentioned line in /etc/modules and Ubuntu detected my modem. If you have similar problem just add your modem using information from lsusb in /lib/udev/rules.d/40-usb_modeswitch.rules , it works like a charm. :)






                share|improve this answer




















                • +1 because OP had confirmed that two workarounds don't work together. So this question seemed to be solved by OP already, but why nobody vote this answer over a year?
                  – clearkimura
                  Dec 25 '15 at 4:36












                up vote
                1
                down vote










                up vote
                1
                down vote









                Nevermind, I deleted the mentioned line in /etc/modules and Ubuntu detected my modem. If you have similar problem just add your modem using information from lsusb in /lib/udev/rules.d/40-usb_modeswitch.rules , it works like a charm. :)






                share|improve this answer












                Nevermind, I deleted the mentioned line in /etc/modules and Ubuntu detected my modem. If you have similar problem just add your modem using information from lsusb in /lib/udev/rules.d/40-usb_modeswitch.rules , it works like a charm. :)







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Sep 19 '14 at 10:43









                Jan Kowalski

                71114




                71114











                • +1 because OP had confirmed that two workarounds don't work together. So this question seemed to be solved by OP already, but why nobody vote this answer over a year?
                  – clearkimura
                  Dec 25 '15 at 4:36
















                • +1 because OP had confirmed that two workarounds don't work together. So this question seemed to be solved by OP already, but why nobody vote this answer over a year?
                  – clearkimura
                  Dec 25 '15 at 4:36















                +1 because OP had confirmed that two workarounds don't work together. So this question seemed to be solved by OP already, but why nobody vote this answer over a year?
                – clearkimura
                Dec 25 '15 at 4:36




                +1 because OP had confirmed that two workarounds don't work together. So this question seemed to be solved by OP already, but why nobody vote this answer over a year?
                – clearkimura
                Dec 25 '15 at 4:36










                up vote
                0
                down vote













                The rules for the initial codes must be like this:



                Huawei E3272 ATTRidVendor=="12d1", ATTRidProduct=="14fe", RUN +="usb_modeswitch...


                See the usb_modeswitc_data package for details. The latest version for 14.04 contains rules for this modem. You may update it, it has no dependences.






                share|improve this answer


























                  up vote
                  0
                  down vote













                  The rules for the initial codes must be like this:



                  Huawei E3272 ATTRidVendor=="12d1", ATTRidProduct=="14fe", RUN +="usb_modeswitch...


                  See the usb_modeswitc_data package for details. The latest version for 14.04 contains rules for this modem. You may update it, it has no dependences.






                  share|improve this answer
























                    up vote
                    0
                    down vote










                    up vote
                    0
                    down vote









                    The rules for the initial codes must be like this:



                    Huawei E3272 ATTRidVendor=="12d1", ATTRidProduct=="14fe", RUN +="usb_modeswitch...


                    See the usb_modeswitc_data package for details. The latest version for 14.04 contains rules for this modem. You may update it, it has no dependences.






                    share|improve this answer














                    The rules for the initial codes must be like this:



                    Huawei E3272 ATTRidVendor=="12d1", ATTRidProduct=="14fe", RUN +="usb_modeswitch...


                    See the usb_modeswitc_data package for details. The latest version for 14.04 contains rules for this modem. You may update it, it has no dependences.







                    share|improve this answer














                    share|improve this answer



                    share|improve this answer








                    edited Nov 5 '14 at 10:06









                    Luís de Sousa

                    8,818174995




                    8,818174995










                    answered Nov 5 '14 at 9:30









                    Toivo80

                    1




                    1




















                        up vote
                        0
                        down vote













                        FYI:



                        # HUAWEI Mobile WiFi E5776
                        ATTRidVendor=="12d1", ATTRidProduct=="1506", RUN +="usb_modeswitch '%b/%k'"





                        share|improve this answer


























                          up vote
                          0
                          down vote













                          FYI:



                          # HUAWEI Mobile WiFi E5776
                          ATTRidVendor=="12d1", ATTRidProduct=="1506", RUN +="usb_modeswitch '%b/%k'"





                          share|improve this answer
























                            up vote
                            0
                            down vote










                            up vote
                            0
                            down vote









                            FYI:



                            # HUAWEI Mobile WiFi E5776
                            ATTRidVendor=="12d1", ATTRidProduct=="1506", RUN +="usb_modeswitch '%b/%k'"





                            share|improve this answer














                            FYI:



                            # HUAWEI Mobile WiFi E5776
                            ATTRidVendor=="12d1", ATTRidProduct=="1506", RUN +="usb_modeswitch '%b/%k'"






                            share|improve this answer














                            share|improve this answer



                            share|improve this answer








                            edited Apr 18 '15 at 2:24









                            muru

                            130k19273463




                            130k19273463










                            answered Apr 18 '15 at 1:18









                            CNSKnight

                            1012




                            1012



























                                 

                                draft saved


                                draft discarded















































                                 


                                draft saved


                                draft discarded














                                StackExchange.ready(
                                function ()
                                StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f525965%2fhuawei-e3272-ubuntu%23new-answer', 'question_page');

                                );

                                Post as a guest













































































                                Popular posts from this blog

                                pylint3 and pip3 broken

                                Missing snmpget and snmpwalk

                                How to enroll fingerprints to Ubuntu 17.10 with VFS491