Page 2 of 2 FirstFirst 12
Results 11 to 12 of 12

Thread: Editing network manager default wired

  1. #11
    Join Date
    Aug 2006
    Beans
    1

    Re: Editing network manager default wired

    I know this is an old thread but I have been struggling with this as well and I have a few machines that do this and a few that work properly and allow me to edit the interface. I found a way to get this working and wanted to share the solution here.

    If you can't edit the default auto connections the edit the file /etc/NetworkManager/nm-system-settings.conf or /etc/NetworkManager/NetworkManager.conf (depends on the version you are using) and it should look something like this:

    Code:
    [main]
    plugins=ifupdown,keyfile
    
    [ifupdown]
    managed=false
    Add a line to tell Network manager not to auto configure interfaces (replace 00:00:00:00:00:00 with your mac address, multiples separated by commas)

    Code:
    [main]
    plugins=ifupdown,keyfile
    
    no-auto-default=00:00:00:00:00:00,00:00:00:00:00:00
    
    [ifupdown]
    managed=false
    now restart network manager
    Code:
    sudo service network-manager restart
    Then open the edit interface and add the wired connection manually and make sure you fill in the mac address field.

    *** Update ***

    I just found out what is going on when I read this page from Network Manager
    http://live.gnome.org/NetworkManagerConfiguration

    At the very bottom of the page it talks about Administration and Privilige and indicates that it uses PolicyKit for user rights and sure enough on the machines it didn't work on they didn't have policykit installed so a simply running the command below and rebooting fixed the issue without any other configuration.
    Code:
    sudo apt-get install policykit-1-gnome
    Last edited by bobbobly; September 19th, 2011 at 11:25 PM.

  2. #12
    Join Date
    Apr 2008
    Location
    Bundaberg, Qld
    Beans
    164
    Distro
    Ubuntu 20.04 Focal Fossa

    Re: Editing network manager default wired

    Thanks for that Bobbobly(?)
    Sure that will help someone in the future...
    John.
    Ubuntu 22.04 / Opensuse Tumbleweed
    i5 / 16GB
    Onboard graphic/sound

Page 2 of 2 FirstFirst 12

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •