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.)
networking connman
add a comment |
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.)
networking connman
add a comment |
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.)
networking connman
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
networking connman
edited Nov 21 at 9:25
Zanna
49.1k13123234
49.1k13123234
asked Jul 13 '16 at 23:11
Steve Summit
12115
12115
add a comment |
add a comment |
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
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
add a comment |
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.
add a comment |
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
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
add a comment |
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
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
add a comment |
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,usb1You 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,usb1edited 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
add a comment |
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
add a comment |
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.
add a comment |
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.
add a comment |
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.
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.
edited Nov 21 at 9:22
Zanna
49.1k13123234
49.1k13123234
answered Jul 14 '16 at 17:19
Steve Summit
12115
12115
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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