Does anybody know how to disable connman?











up vote
2
down vote

favorite












I have a BeagleBone running Ubuntu. connman is getting in my way and I'd like to disable it. I deleted /etc/rc*/*connman, but somehow it's still getting started.



(Why am I trying to disable it? Because I'm trying to set a static IP address for eth0 in /etc/network/interfaces, but that doesn't work because evidently connman brings up eth0 first, with no address, which keeps ifup from working.)










share|improve this question




























    up vote
    2
    down vote

    favorite












    I have a BeagleBone running Ubuntu. connman is getting in my way and I'd like to disable it. I deleted /etc/rc*/*connman, but somehow it's still getting started.



    (Why am I trying to disable it? Because I'm trying to set a static IP address for eth0 in /etc/network/interfaces, but that doesn't work because evidently connman brings up eth0 first, with no address, which keeps ifup from working.)










    share|improve this question


























      up vote
      2
      down vote

      favorite









      up vote
      2
      down vote

      favorite











      I have a BeagleBone running Ubuntu. connman is getting in my way and I'd like to disable it. I deleted /etc/rc*/*connman, but somehow it's still getting started.



      (Why am I trying to disable it? Because I'm trying to set a static IP address for eth0 in /etc/network/interfaces, but that doesn't work because evidently connman brings up eth0 first, with no address, which keeps ifup from working.)










      share|improve this question















      I have a BeagleBone running Ubuntu. connman is getting in my way and I'd like to disable it. I deleted /etc/rc*/*connman, but somehow it's still getting started.



      (Why am I trying to disable it? Because I'm trying to set a static IP address for eth0 in /etc/network/interfaces, but that doesn't work because evidently connman brings up eth0 first, with no address, which keeps ifup from working.)







      networking connman






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 21 at 9:25









      Zanna

      49.1k13123234




      49.1k13123234










      asked Jul 13 '16 at 23:11









      Steve Summit

      12115




      12115






















          2 Answers
          2






          active

          oldest

          votes

















          up vote
          1
          down vote













          You can also configure connman to ignore a specific interface.



          I had to do exactly the same (static IP for eth0) and could do so by
          configuring it in /etc/network/interfaces AND
          by modifying (adding) a line in /etc/connman/main.conf:



          NetworkinterfaceBlacklist=eth0,SoftAp0,usb0,usb1





          share|improve this answer























          • Thanks for the tip. In the end, I guess, connman or something like it is the way of the future, and we're supposed to use it to configure all network interfaces and stop using /etc/network/interfaces, because /etc/network/interfaces is on the way out.
            – Steve Summit
            Nov 24 '17 at 14:08










          • This worked for me with a 2018 image. I could not get connman to configure or startup properly with a static IP without a cable plugged in, which ruined my DHCP server that was trying to start...
            – MadHatter
            Jun 14 at 3:18


















          up vote
          1
          down vote













          I never did figure out how to disable it, so I ended up just deleting it:



          sudo apt remove connman


          Now my conventional, static IP configurations (in /etc/network/interfaces) are working fine.






          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: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            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%2f798346%2fdoes-anybody-know-how-to-disable-connman%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            1
            down vote













            You can also configure connman to ignore a specific interface.



            I had to do exactly the same (static IP for eth0) and could do so by
            configuring it in /etc/network/interfaces AND
            by modifying (adding) a line in /etc/connman/main.conf:



            NetworkinterfaceBlacklist=eth0,SoftAp0,usb0,usb1





            share|improve this answer























            • Thanks for the tip. In the end, I guess, connman or something like it is the way of the future, and we're supposed to use it to configure all network interfaces and stop using /etc/network/interfaces, because /etc/network/interfaces is on the way out.
              – Steve Summit
              Nov 24 '17 at 14:08










            • This worked for me with a 2018 image. I could not get connman to configure or startup properly with a static IP without a cable plugged in, which ruined my DHCP server that was trying to start...
              – MadHatter
              Jun 14 at 3:18















            up vote
            1
            down vote













            You can also configure connman to ignore a specific interface.



            I had to do exactly the same (static IP for eth0) and could do so by
            configuring it in /etc/network/interfaces AND
            by modifying (adding) a line in /etc/connman/main.conf:



            NetworkinterfaceBlacklist=eth0,SoftAp0,usb0,usb1





            share|improve this answer























            • Thanks for the tip. In the end, I guess, connman or something like it is the way of the future, and we're supposed to use it to configure all network interfaces and stop using /etc/network/interfaces, because /etc/network/interfaces is on the way out.
              – Steve Summit
              Nov 24 '17 at 14:08










            • This worked for me with a 2018 image. I could not get connman to configure or startup properly with a static IP without a cable plugged in, which ruined my DHCP server that was trying to start...
              – MadHatter
              Jun 14 at 3:18













            up vote
            1
            down vote










            up vote
            1
            down vote









            You can also configure connman to ignore a specific interface.



            I had to do exactly the same (static IP for eth0) and could do so by
            configuring it in /etc/network/interfaces AND
            by modifying (adding) a line in /etc/connman/main.conf:



            NetworkinterfaceBlacklist=eth0,SoftAp0,usb0,usb1





            share|improve this answer














            You can also configure connman to ignore a specific interface.



            I had to do exactly the same (static IP for eth0) and could do so by
            configuring it in /etc/network/interfaces AND
            by modifying (adding) a line in /etc/connman/main.conf:



            NetworkinterfaceBlacklist=eth0,SoftAp0,usb0,usb1






            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Nov 21 at 9:21









            Zanna

            49.1k13123234




            49.1k13123234










            answered Nov 24 '17 at 10:05









            LucBerben

            111




            111












            • Thanks for the tip. In the end, I guess, connman or something like it is the way of the future, and we're supposed to use it to configure all network interfaces and stop using /etc/network/interfaces, because /etc/network/interfaces is on the way out.
              – Steve Summit
              Nov 24 '17 at 14:08










            • This worked for me with a 2018 image. I could not get connman to configure or startup properly with a static IP without a cable plugged in, which ruined my DHCP server that was trying to start...
              – MadHatter
              Jun 14 at 3:18


















            • Thanks for the tip. In the end, I guess, connman or something like it is the way of the future, and we're supposed to use it to configure all network interfaces and stop using /etc/network/interfaces, because /etc/network/interfaces is on the way out.
              – Steve Summit
              Nov 24 '17 at 14:08










            • This worked for me with a 2018 image. I could not get connman to configure or startup properly with a static IP without a cable plugged in, which ruined my DHCP server that was trying to start...
              – MadHatter
              Jun 14 at 3:18
















            Thanks for the tip. In the end, I guess, connman or something like it is the way of the future, and we're supposed to use it to configure all network interfaces and stop using /etc/network/interfaces, because /etc/network/interfaces is on the way out.
            – Steve Summit
            Nov 24 '17 at 14:08




            Thanks for the tip. In the end, I guess, connman or something like it is the way of the future, and we're supposed to use it to configure all network interfaces and stop using /etc/network/interfaces, because /etc/network/interfaces is on the way out.
            – Steve Summit
            Nov 24 '17 at 14:08












            This worked for me with a 2018 image. I could not get connman to configure or startup properly with a static IP without a cable plugged in, which ruined my DHCP server that was trying to start...
            – MadHatter
            Jun 14 at 3:18




            This worked for me with a 2018 image. I could not get connman to configure or startup properly with a static IP without a cable plugged in, which ruined my DHCP server that was trying to start...
            – MadHatter
            Jun 14 at 3:18












            up vote
            1
            down vote













            I never did figure out how to disable it, so I ended up just deleting it:



            sudo apt remove connman


            Now my conventional, static IP configurations (in /etc/network/interfaces) are working fine.






            share|improve this answer



























              up vote
              1
              down vote













              I never did figure out how to disable it, so I ended up just deleting it:



              sudo apt remove connman


              Now my conventional, static IP configurations (in /etc/network/interfaces) are working fine.






              share|improve this answer

























                up vote
                1
                down vote










                up vote
                1
                down vote









                I never did figure out how to disable it, so I ended up just deleting it:



                sudo apt remove connman


                Now my conventional, static IP configurations (in /etc/network/interfaces) are working fine.






                share|improve this answer














                I never did figure out how to disable it, so I ended up just deleting it:



                sudo apt remove connman


                Now my conventional, static IP configurations (in /etc/network/interfaces) are working fine.







                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Nov 21 at 9:22









                Zanna

                49.1k13123234




                49.1k13123234










                answered Jul 14 '16 at 17:19









                Steve Summit

                12115




                12115






























                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Ask Ubuntu!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.





                    Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                    Please pay close attention to the following guidance:


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2faskubuntu.com%2fquestions%2f798346%2fdoes-anybody-know-how-to-disable-connman%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    How to send String Array data to Server using php in android

                    Title Spacing in Bjornstrup Chapter, Removing Chapter Number From Contents

                    Is anime1.com a legal site for watching anime?