Make NetworkManager manage a interface












0














I am trying to create a WiFi hotspot (from the int connection) on a small test file server running a near stock CentOS 7 (the sort of unsupported 32bit AltArch version), but NetworkManager does not seem to want to manage the device:



$ nmcli dev status
DEVICE TYPE STATE CONNECTION
enp0s2 ethernet connected ext
enp3s1 ethernet connected int
lo loopback unmanaged --
wlp0s2 wifi unmanaged --


I have tried adding managed=true to /etc/NetworkManager/NetworkManager.conf, and /etc/network/interfaces does not exist. I have tried creating various ifcfg files manually using nano, vim, nmtui and other methods (no GUI is currently available) - it does not recognise it automatically.



How can I get NetworkManager to use the wifi device? It works on other computers, and though I could reconfigure the network with something else, there doesn't seem to be any obvious solutions I have found to get it to work (I have found lots of stuff on getting it to NOT manage devices).



EDIT: Network manager does sort of recognise the custom ifcfg profile - it shows in nmtui profile editor (but not in the 'Activate Connection' bit), and when restarting the process it shows:



Oct 21 18:05:53 HOSTNAME network[6076]: Bringing up interface USB-Hotspot:  [  OK  ]


but does not seem to associate with the device despite having the correct MAC and interface addresses.



EDIT2: Here is one of the inital files (/etc/sysconfig/network-scripts/ifcfg-USB-Hotspot - MAC etc blanked)



HWADDR=XX:XX:XX:XX:XX:XX
ESSID="26-3"
MODE=Ap
KEY_MGMT=WPA-PSK
TYPE=Wireless
BOOTPROTO=shared
DEFROUTE=yes
IPV4_FAILURE_FATAL=no
IPV6INIT=no
NAME=USB-Hotspot
UUID=36b6cb89-6f59-453a-84d9-1ef7ff35f187
DEVICE=wlp0s2
ONBOOT=yes
WPA_ALLOW_WPA=yes
WPA_ALLOW_WPA2=yes
NM_CONTROLLED=yes
MAC_ADDRESS_RANDOMIZATION=default
ZONE=public


I have just tried various other incantations of it as well, including this (based on the working config file off another computer, using the same wifi adapter):



HWADDR=XX:XX:XX:XX:XX:XX
ESSID="wtop"
MODE=Ap
SSID_HIDDEN=yes
TYPE=Wireless
BOOTPROTO=shared
DEFROUTE=yes
IPV4_FAILURE_FATAL=no
IPV6INIT=no
IPV6_AUTOCONF=yes
IPV6_DEFROUTE=yes
IPV6_PEERDNS=yes
IPV6_PEERROUTES=yes
IPV6_FAILURE_FATAL=no
IPV6_ADDR_GEN_MODE=stable-privacy
NAME=Hotspot
UUID=bb8842f3-79ae-4f9c-ae93-838d064e4fa4
ONBOOT=no
ZONE=public
KEY_MGMT=WPA-PSK
MAC_ADDRESS_RANDOMIZATION=default


I when I first installed this ages ago I also had a problem that the NIC added post install was also not managed, but I reinstalled CentOS for something else and it worked then. I have got this sort of thing to work using NetworkManager and other things (hostapd, udhcpd, etc), but this is a bit odd.



Also, nmtui:



]



And when created manually I did do the required /etc/sysconfig/network-scripts/keys* files.



EDIT3: This works on a laptop, same wireless adapter - weird:



HWADDR=XX:XX:XX:XX:XX:XX
ESSID="testing"
MODE=Ap
KEY_MGMT=WPA-PSK
SSID_HIDDEN=yes
TYPE=Wireless
BOOTPROTO=shared
DEFROUTE=yes
IPV4_FAILURE_FATAL=no
IPV6INIT=no
IPV6_AUTOCONF=yes
IPV6_DEFROUTE=yes
IPV6_PEERDNS=yes
IPV6_PEERROUTES=yes
IPV6_FAILURE_FATAL=no
IPV6_ADDR_GEN_MODE=stable-privacy
NAME=USB-Hotspot
UUID=8b6a2f48-ab82-412d-bf22-36ec2120ff2a
ONBOOT=yes
MAC_ADDRESS_RANDOMIZATION=default
WPA_ALLOW_WPA=yes
WPA_ALLOW_WPA2=yes









share|improve this question
























  • you cannot possibly create a standard wireless hotspot without specifying an SSID (network name). If you've already done so, please show the content of the config file :)
    – sourcejedi
    Oct 20 '16 at 17:18










  • 4th google result for networkmanager create hotspot shows an example config in a screenshot: askubuntu.com/questions/490950/create-wifi-hotspot-on-ubuntu
    – sourcejedi
    Oct 20 '16 at 17:22










  • If it forces you to specify a Universally Unique IDentifier for it, there are commands like uuidgen.
    – sourcejedi
    Oct 20 '16 at 17:35










  • @sourcejedi I think I tried that AU one a day or so go - see edit for updates. I have tried loads of different files but only have the inital one and one of the newer ones, created manually as normal or using nmtui. I will probably try nmcli directly later.
    – Wilf
    Oct 21 '16 at 16:12
















0














I am trying to create a WiFi hotspot (from the int connection) on a small test file server running a near stock CentOS 7 (the sort of unsupported 32bit AltArch version), but NetworkManager does not seem to want to manage the device:



$ nmcli dev status
DEVICE TYPE STATE CONNECTION
enp0s2 ethernet connected ext
enp3s1 ethernet connected int
lo loopback unmanaged --
wlp0s2 wifi unmanaged --


I have tried adding managed=true to /etc/NetworkManager/NetworkManager.conf, and /etc/network/interfaces does not exist. I have tried creating various ifcfg files manually using nano, vim, nmtui and other methods (no GUI is currently available) - it does not recognise it automatically.



How can I get NetworkManager to use the wifi device? It works on other computers, and though I could reconfigure the network with something else, there doesn't seem to be any obvious solutions I have found to get it to work (I have found lots of stuff on getting it to NOT manage devices).



EDIT: Network manager does sort of recognise the custom ifcfg profile - it shows in nmtui profile editor (but not in the 'Activate Connection' bit), and when restarting the process it shows:



Oct 21 18:05:53 HOSTNAME network[6076]: Bringing up interface USB-Hotspot:  [  OK  ]


but does not seem to associate with the device despite having the correct MAC and interface addresses.



EDIT2: Here is one of the inital files (/etc/sysconfig/network-scripts/ifcfg-USB-Hotspot - MAC etc blanked)



HWADDR=XX:XX:XX:XX:XX:XX
ESSID="26-3"
MODE=Ap
KEY_MGMT=WPA-PSK
TYPE=Wireless
BOOTPROTO=shared
DEFROUTE=yes
IPV4_FAILURE_FATAL=no
IPV6INIT=no
NAME=USB-Hotspot
UUID=36b6cb89-6f59-453a-84d9-1ef7ff35f187
DEVICE=wlp0s2
ONBOOT=yes
WPA_ALLOW_WPA=yes
WPA_ALLOW_WPA2=yes
NM_CONTROLLED=yes
MAC_ADDRESS_RANDOMIZATION=default
ZONE=public


I have just tried various other incantations of it as well, including this (based on the working config file off another computer, using the same wifi adapter):



HWADDR=XX:XX:XX:XX:XX:XX
ESSID="wtop"
MODE=Ap
SSID_HIDDEN=yes
TYPE=Wireless
BOOTPROTO=shared
DEFROUTE=yes
IPV4_FAILURE_FATAL=no
IPV6INIT=no
IPV6_AUTOCONF=yes
IPV6_DEFROUTE=yes
IPV6_PEERDNS=yes
IPV6_PEERROUTES=yes
IPV6_FAILURE_FATAL=no
IPV6_ADDR_GEN_MODE=stable-privacy
NAME=Hotspot
UUID=bb8842f3-79ae-4f9c-ae93-838d064e4fa4
ONBOOT=no
ZONE=public
KEY_MGMT=WPA-PSK
MAC_ADDRESS_RANDOMIZATION=default


I when I first installed this ages ago I also had a problem that the NIC added post install was also not managed, but I reinstalled CentOS for something else and it worked then. I have got this sort of thing to work using NetworkManager and other things (hostapd, udhcpd, etc), but this is a bit odd.



Also, nmtui:



]



And when created manually I did do the required /etc/sysconfig/network-scripts/keys* files.



EDIT3: This works on a laptop, same wireless adapter - weird:



HWADDR=XX:XX:XX:XX:XX:XX
ESSID="testing"
MODE=Ap
KEY_MGMT=WPA-PSK
SSID_HIDDEN=yes
TYPE=Wireless
BOOTPROTO=shared
DEFROUTE=yes
IPV4_FAILURE_FATAL=no
IPV6INIT=no
IPV6_AUTOCONF=yes
IPV6_DEFROUTE=yes
IPV6_PEERDNS=yes
IPV6_PEERROUTES=yes
IPV6_FAILURE_FATAL=no
IPV6_ADDR_GEN_MODE=stable-privacy
NAME=USB-Hotspot
UUID=8b6a2f48-ab82-412d-bf22-36ec2120ff2a
ONBOOT=yes
MAC_ADDRESS_RANDOMIZATION=default
WPA_ALLOW_WPA=yes
WPA_ALLOW_WPA2=yes









share|improve this question
























  • you cannot possibly create a standard wireless hotspot without specifying an SSID (network name). If you've already done so, please show the content of the config file :)
    – sourcejedi
    Oct 20 '16 at 17:18










  • 4th google result for networkmanager create hotspot shows an example config in a screenshot: askubuntu.com/questions/490950/create-wifi-hotspot-on-ubuntu
    – sourcejedi
    Oct 20 '16 at 17:22










  • If it forces you to specify a Universally Unique IDentifier for it, there are commands like uuidgen.
    – sourcejedi
    Oct 20 '16 at 17:35










  • @sourcejedi I think I tried that AU one a day or so go - see edit for updates. I have tried loads of different files but only have the inital one and one of the newer ones, created manually as normal or using nmtui. I will probably try nmcli directly later.
    – Wilf
    Oct 21 '16 at 16:12














0












0








0







I am trying to create a WiFi hotspot (from the int connection) on a small test file server running a near stock CentOS 7 (the sort of unsupported 32bit AltArch version), but NetworkManager does not seem to want to manage the device:



$ nmcli dev status
DEVICE TYPE STATE CONNECTION
enp0s2 ethernet connected ext
enp3s1 ethernet connected int
lo loopback unmanaged --
wlp0s2 wifi unmanaged --


I have tried adding managed=true to /etc/NetworkManager/NetworkManager.conf, and /etc/network/interfaces does not exist. I have tried creating various ifcfg files manually using nano, vim, nmtui and other methods (no GUI is currently available) - it does not recognise it automatically.



How can I get NetworkManager to use the wifi device? It works on other computers, and though I could reconfigure the network with something else, there doesn't seem to be any obvious solutions I have found to get it to work (I have found lots of stuff on getting it to NOT manage devices).



EDIT: Network manager does sort of recognise the custom ifcfg profile - it shows in nmtui profile editor (but not in the 'Activate Connection' bit), and when restarting the process it shows:



Oct 21 18:05:53 HOSTNAME network[6076]: Bringing up interface USB-Hotspot:  [  OK  ]


but does not seem to associate with the device despite having the correct MAC and interface addresses.



EDIT2: Here is one of the inital files (/etc/sysconfig/network-scripts/ifcfg-USB-Hotspot - MAC etc blanked)



HWADDR=XX:XX:XX:XX:XX:XX
ESSID="26-3"
MODE=Ap
KEY_MGMT=WPA-PSK
TYPE=Wireless
BOOTPROTO=shared
DEFROUTE=yes
IPV4_FAILURE_FATAL=no
IPV6INIT=no
NAME=USB-Hotspot
UUID=36b6cb89-6f59-453a-84d9-1ef7ff35f187
DEVICE=wlp0s2
ONBOOT=yes
WPA_ALLOW_WPA=yes
WPA_ALLOW_WPA2=yes
NM_CONTROLLED=yes
MAC_ADDRESS_RANDOMIZATION=default
ZONE=public


I have just tried various other incantations of it as well, including this (based on the working config file off another computer, using the same wifi adapter):



HWADDR=XX:XX:XX:XX:XX:XX
ESSID="wtop"
MODE=Ap
SSID_HIDDEN=yes
TYPE=Wireless
BOOTPROTO=shared
DEFROUTE=yes
IPV4_FAILURE_FATAL=no
IPV6INIT=no
IPV6_AUTOCONF=yes
IPV6_DEFROUTE=yes
IPV6_PEERDNS=yes
IPV6_PEERROUTES=yes
IPV6_FAILURE_FATAL=no
IPV6_ADDR_GEN_MODE=stable-privacy
NAME=Hotspot
UUID=bb8842f3-79ae-4f9c-ae93-838d064e4fa4
ONBOOT=no
ZONE=public
KEY_MGMT=WPA-PSK
MAC_ADDRESS_RANDOMIZATION=default


I when I first installed this ages ago I also had a problem that the NIC added post install was also not managed, but I reinstalled CentOS for something else and it worked then. I have got this sort of thing to work using NetworkManager and other things (hostapd, udhcpd, etc), but this is a bit odd.



Also, nmtui:



]



And when created manually I did do the required /etc/sysconfig/network-scripts/keys* files.



EDIT3: This works on a laptop, same wireless adapter - weird:



HWADDR=XX:XX:XX:XX:XX:XX
ESSID="testing"
MODE=Ap
KEY_MGMT=WPA-PSK
SSID_HIDDEN=yes
TYPE=Wireless
BOOTPROTO=shared
DEFROUTE=yes
IPV4_FAILURE_FATAL=no
IPV6INIT=no
IPV6_AUTOCONF=yes
IPV6_DEFROUTE=yes
IPV6_PEERDNS=yes
IPV6_PEERROUTES=yes
IPV6_FAILURE_FATAL=no
IPV6_ADDR_GEN_MODE=stable-privacy
NAME=USB-Hotspot
UUID=8b6a2f48-ab82-412d-bf22-36ec2120ff2a
ONBOOT=yes
MAC_ADDRESS_RANDOMIZATION=default
WPA_ALLOW_WPA=yes
WPA_ALLOW_WPA2=yes









share|improve this question















I am trying to create a WiFi hotspot (from the int connection) on a small test file server running a near stock CentOS 7 (the sort of unsupported 32bit AltArch version), but NetworkManager does not seem to want to manage the device:



$ nmcli dev status
DEVICE TYPE STATE CONNECTION
enp0s2 ethernet connected ext
enp3s1 ethernet connected int
lo loopback unmanaged --
wlp0s2 wifi unmanaged --


I have tried adding managed=true to /etc/NetworkManager/NetworkManager.conf, and /etc/network/interfaces does not exist. I have tried creating various ifcfg files manually using nano, vim, nmtui and other methods (no GUI is currently available) - it does not recognise it automatically.



How can I get NetworkManager to use the wifi device? It works on other computers, and though I could reconfigure the network with something else, there doesn't seem to be any obvious solutions I have found to get it to work (I have found lots of stuff on getting it to NOT manage devices).



EDIT: Network manager does sort of recognise the custom ifcfg profile - it shows in nmtui profile editor (but not in the 'Activate Connection' bit), and when restarting the process it shows:



Oct 21 18:05:53 HOSTNAME network[6076]: Bringing up interface USB-Hotspot:  [  OK  ]


but does not seem to associate with the device despite having the correct MAC and interface addresses.



EDIT2: Here is one of the inital files (/etc/sysconfig/network-scripts/ifcfg-USB-Hotspot - MAC etc blanked)



HWADDR=XX:XX:XX:XX:XX:XX
ESSID="26-3"
MODE=Ap
KEY_MGMT=WPA-PSK
TYPE=Wireless
BOOTPROTO=shared
DEFROUTE=yes
IPV4_FAILURE_FATAL=no
IPV6INIT=no
NAME=USB-Hotspot
UUID=36b6cb89-6f59-453a-84d9-1ef7ff35f187
DEVICE=wlp0s2
ONBOOT=yes
WPA_ALLOW_WPA=yes
WPA_ALLOW_WPA2=yes
NM_CONTROLLED=yes
MAC_ADDRESS_RANDOMIZATION=default
ZONE=public


I have just tried various other incantations of it as well, including this (based on the working config file off another computer, using the same wifi adapter):



HWADDR=XX:XX:XX:XX:XX:XX
ESSID="wtop"
MODE=Ap
SSID_HIDDEN=yes
TYPE=Wireless
BOOTPROTO=shared
DEFROUTE=yes
IPV4_FAILURE_FATAL=no
IPV6INIT=no
IPV6_AUTOCONF=yes
IPV6_DEFROUTE=yes
IPV6_PEERDNS=yes
IPV6_PEERROUTES=yes
IPV6_FAILURE_FATAL=no
IPV6_ADDR_GEN_MODE=stable-privacy
NAME=Hotspot
UUID=bb8842f3-79ae-4f9c-ae93-838d064e4fa4
ONBOOT=no
ZONE=public
KEY_MGMT=WPA-PSK
MAC_ADDRESS_RANDOMIZATION=default


I when I first installed this ages ago I also had a problem that the NIC added post install was also not managed, but I reinstalled CentOS for something else and it worked then. I have got this sort of thing to work using NetworkManager and other things (hostapd, udhcpd, etc), but this is a bit odd.



Also, nmtui:



]



And when created manually I did do the required /etc/sysconfig/network-scripts/keys* files.



EDIT3: This works on a laptop, same wireless adapter - weird:



HWADDR=XX:XX:XX:XX:XX:XX
ESSID="testing"
MODE=Ap
KEY_MGMT=WPA-PSK
SSID_HIDDEN=yes
TYPE=Wireless
BOOTPROTO=shared
DEFROUTE=yes
IPV4_FAILURE_FATAL=no
IPV6INIT=no
IPV6_AUTOCONF=yes
IPV6_DEFROUTE=yes
IPV6_PEERDNS=yes
IPV6_PEERROUTES=yes
IPV6_FAILURE_FATAL=no
IPV6_ADDR_GEN_MODE=stable-privacy
NAME=USB-Hotspot
UUID=8b6a2f48-ab82-412d-bf22-36ec2120ff2a
ONBOOT=yes
MAC_ADDRESS_RANDOMIZATION=default
WPA_ALLOW_WPA=yes
WPA_ALLOW_WPA2=yes






wifi configuration networkmanager






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Oct 21 '16 at 16:42

























asked Oct 20 '16 at 16:39









Wilf

1,74911333




1,74911333












  • you cannot possibly create a standard wireless hotspot without specifying an SSID (network name). If you've already done so, please show the content of the config file :)
    – sourcejedi
    Oct 20 '16 at 17:18










  • 4th google result for networkmanager create hotspot shows an example config in a screenshot: askubuntu.com/questions/490950/create-wifi-hotspot-on-ubuntu
    – sourcejedi
    Oct 20 '16 at 17:22










  • If it forces you to specify a Universally Unique IDentifier for it, there are commands like uuidgen.
    – sourcejedi
    Oct 20 '16 at 17:35










  • @sourcejedi I think I tried that AU one a day or so go - see edit for updates. I have tried loads of different files but only have the inital one and one of the newer ones, created manually as normal or using nmtui. I will probably try nmcli directly later.
    – Wilf
    Oct 21 '16 at 16:12


















  • you cannot possibly create a standard wireless hotspot without specifying an SSID (network name). If you've already done so, please show the content of the config file :)
    – sourcejedi
    Oct 20 '16 at 17:18










  • 4th google result for networkmanager create hotspot shows an example config in a screenshot: askubuntu.com/questions/490950/create-wifi-hotspot-on-ubuntu
    – sourcejedi
    Oct 20 '16 at 17:22










  • If it forces you to specify a Universally Unique IDentifier for it, there are commands like uuidgen.
    – sourcejedi
    Oct 20 '16 at 17:35










  • @sourcejedi I think I tried that AU one a day or so go - see edit for updates. I have tried loads of different files but only have the inital one and one of the newer ones, created manually as normal or using nmtui. I will probably try nmcli directly later.
    – Wilf
    Oct 21 '16 at 16:12
















you cannot possibly create a standard wireless hotspot without specifying an SSID (network name). If you've already done so, please show the content of the config file :)
– sourcejedi
Oct 20 '16 at 17:18




you cannot possibly create a standard wireless hotspot without specifying an SSID (network name). If you've already done so, please show the content of the config file :)
– sourcejedi
Oct 20 '16 at 17:18












4th google result for networkmanager create hotspot shows an example config in a screenshot: askubuntu.com/questions/490950/create-wifi-hotspot-on-ubuntu
– sourcejedi
Oct 20 '16 at 17:22




4th google result for networkmanager create hotspot shows an example config in a screenshot: askubuntu.com/questions/490950/create-wifi-hotspot-on-ubuntu
– sourcejedi
Oct 20 '16 at 17:22












If it forces you to specify a Universally Unique IDentifier for it, there are commands like uuidgen.
– sourcejedi
Oct 20 '16 at 17:35




If it forces you to specify a Universally Unique IDentifier for it, there are commands like uuidgen.
– sourcejedi
Oct 20 '16 at 17:35












@sourcejedi I think I tried that AU one a day or so go - see edit for updates. I have tried loads of different files but only have the inital one and one of the newer ones, created manually as normal or using nmtui. I will probably try nmcli directly later.
– Wilf
Oct 21 '16 at 16:12




@sourcejedi I think I tried that AU one a day or so go - see edit for updates. I have tried loads of different files but only have the inital one and one of the newer ones, created manually as normal or using nmtui. I will probably try nmcli directly later.
– Wilf
Oct 21 '16 at 16:12










1 Answer
1






active

oldest

votes


















1














After many trials and errors to force Network-Manager to handle unmanaged network devices I had on last resort which -- helas -- did the trick:



touch /etc/NetworkManager/conf.d/10-globally-managed-devices.conf


This is also mentioned here, here and with multiple variations also here.



If one had known what to look for in the first place.. so many red herrings..



Edit: was on Ubuntu 18.10, so after all those years, still valid.



HTH






share|improve this answer





















  • Wow this was a while ago! I'll try when I do something else as the thing I was using is no dead and obselete :-/ I think for similar projects I used create_ap, quickest link I could find was here askubuntu.com/a/853386/178596 . Can't try either at the moment though.
    – Wilf
    Dec 10 at 16:59











Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "106"
};
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',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
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%2funix.stackexchange.com%2fquestions%2f317741%2fmake-networkmanager-manage-a-interface%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









1














After many trials and errors to force Network-Manager to handle unmanaged network devices I had on last resort which -- helas -- did the trick:



touch /etc/NetworkManager/conf.d/10-globally-managed-devices.conf


This is also mentioned here, here and with multiple variations also here.



If one had known what to look for in the first place.. so many red herrings..



Edit: was on Ubuntu 18.10, so after all those years, still valid.



HTH






share|improve this answer





















  • Wow this was a while ago! I'll try when I do something else as the thing I was using is no dead and obselete :-/ I think for similar projects I used create_ap, quickest link I could find was here askubuntu.com/a/853386/178596 . Can't try either at the moment though.
    – Wilf
    Dec 10 at 16:59
















1














After many trials and errors to force Network-Manager to handle unmanaged network devices I had on last resort which -- helas -- did the trick:



touch /etc/NetworkManager/conf.d/10-globally-managed-devices.conf


This is also mentioned here, here and with multiple variations also here.



If one had known what to look for in the first place.. so many red herrings..



Edit: was on Ubuntu 18.10, so after all those years, still valid.



HTH






share|improve this answer





















  • Wow this was a while ago! I'll try when I do something else as the thing I was using is no dead and obselete :-/ I think for similar projects I used create_ap, quickest link I could find was here askubuntu.com/a/853386/178596 . Can't try either at the moment though.
    – Wilf
    Dec 10 at 16:59














1












1








1






After many trials and errors to force Network-Manager to handle unmanaged network devices I had on last resort which -- helas -- did the trick:



touch /etc/NetworkManager/conf.d/10-globally-managed-devices.conf


This is also mentioned here, here and with multiple variations also here.



If one had known what to look for in the first place.. so many red herrings..



Edit: was on Ubuntu 18.10, so after all those years, still valid.



HTH






share|improve this answer












After many trials and errors to force Network-Manager to handle unmanaged network devices I had on last resort which -- helas -- did the trick:



touch /etc/NetworkManager/conf.d/10-globally-managed-devices.conf


This is also mentioned here, here and with multiple variations also here.



If one had known what to look for in the first place.. so many red herrings..



Edit: was on Ubuntu 18.10, so after all those years, still valid.



HTH







share|improve this answer












share|improve this answer



share|improve this answer










answered Dec 8 at 23:07









Gen.Stack

1095




1095












  • Wow this was a while ago! I'll try when I do something else as the thing I was using is no dead and obselete :-/ I think for similar projects I used create_ap, quickest link I could find was here askubuntu.com/a/853386/178596 . Can't try either at the moment though.
    – Wilf
    Dec 10 at 16:59


















  • Wow this was a while ago! I'll try when I do something else as the thing I was using is no dead and obselete :-/ I think for similar projects I used create_ap, quickest link I could find was here askubuntu.com/a/853386/178596 . Can't try either at the moment though.
    – Wilf
    Dec 10 at 16:59
















Wow this was a while ago! I'll try when I do something else as the thing I was using is no dead and obselete :-/ I think for similar projects I used create_ap, quickest link I could find was here askubuntu.com/a/853386/178596 . Can't try either at the moment though.
– Wilf
Dec 10 at 16:59




Wow this was a while ago! I'll try when I do something else as the thing I was using is no dead and obselete :-/ I think for similar projects I used create_ap, quickest link I could find was here askubuntu.com/a/853386/178596 . Can't try either at the moment though.
– Wilf
Dec 10 at 16:59


















draft saved

draft discarded




















































Thanks for contributing an answer to Unix & Linux Stack Exchange!


  • 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%2funix.stackexchange.com%2fquestions%2f317741%2fmake-networkmanager-manage-a-interface%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

Morgemoulin

Scott Moir

Souastre