Configure connection sharing with specific IP Address

15,236

In versions before 1.4.2, 10.42.0.x is hard-coded into NetworkManager. Forget about GUI-based solution or wait until the bug/feature request is fixed. Or fix it yourself for all of us. Or at least vote the bug on launchpad for faster resolution.

Either upgrade to Ubuntu 17.04, with version 1.4.4, or use the following command from Thomas Haller to set the host IP and class.

nmcli connection modify $CONNECTION_ID +ipv4.addresses 192.168.5.1/24

where $CONNECTION_ID if found via nmcli connection show. Afterwards, verify with nmcli connection show $CONNECTION_ID.

Share:
15,236

Related videos on Youtube

jake
Author by

jake

Graduate student studying marine autonomy. Interested in everything that makes computers easier, more automated, or more efficient to use.

Updated on September 18, 2022

Comments

  • jake
    jake almost 2 years

    Edit - a more concise version of the question:

    When using connection sharing, I want network manager to use the 192.168.254 subnet instead of the 10.42.0 subnet. Is this possible?

    Background:

    I need to share my wireless internet connection (on an Ubuntu laptop) with a RasPi connected to the laptop by ethernet.

    Everything works fine by configuring eth0 as "Shared to Other Computers" (documented in many places, for example here).

    Using this setup, my IP address when connected to the RasPi is 10.42.0.1. The RasPi picks up another address in that subnet. Everything works great!

    Because of how the RasPi is configured (to work with several other systems), I want eth0 to use 192.168.254.1. If I configure eth0 to manually use 192.168.254.1: Manual eth0 configuration

    the RasPi connects to my laptop and I am able to ssh into it. However, although I still see a valid wlan0 configuration when running ifconfig, I'm unable to access the internet (presumably my laptop is trying to use eth0 instead of wlan0).

    I'm looking for a way to either:

    a) Still use wlan0 to access the internet when eth0 is manually configured

    b) Force eth0 to use a specific IP address when configured with "Shared to Other Computers"

    I'm trying to set up simple instructions for other users, so if possible I'd like to avoid any manual iptables-type setups.

  • jake
    jake about 9 years
    I'm not sure what you mean about my gateway/address. When I'm sharing my connection, isn't my laptop the gateway for the RasPi? In the manual configuration I showed in the OP, the RasPi picks up 192.168.254.100 - I have no problems being unable to communicate due to different subnets.
  • jake
    jake about 9 years
    A better way of phrasing the question might be: when sharing my connection, I want network manager to use the 192.168.254 subnet instead of the 10.42.0 subnet
  • Wilhelm Erasmus
    Wilhelm Erasmus about 9 years
    @jake your laptop is indeed the gateway. Sorry, I misunderstood the question a bit I see the problem now. You can do a route -n as root(sudo su) and then do route del default gw 192.168.254.1 dev eth0 or, to be more exact, you would use the info from route -n to fill in the del statement, so it's route del default gw <gateway> dev <Iface>
  • hoijui
    hoijui about 7 years
    apparently, the bug was fixed on 14. September 2016! It is now possible to configure it through the GUI, but it will take time for this to trickle down into releases of course.
  • Lucas
    Lucas almost 7 years
    This was fixed in network-manager 1.4.2. Ubuntu 17.04 has 1.4.4. I asked Canonical to backport this to 16.04 LTS. bugs.launchpad.net/ubuntu/+source/network-manager/+bug/10983‌​62/…
  • leo
    leo over 6 years
    And how do we do it o newer versions?
  • user2364305
    user2364305 almost 4 years
    20.04.1 LTS supports gui config out of the box... just set your ip and gateway to yourself... done! I unplugged and plugged back in... but an ip link eno2 down && ip link eno2 up should do it also
  • Peter
    Peter over 3 years
    @RayFoss Interesting, in my install of 20.04, the moment I select that I want to share the connection it removes the option to set an IP address. I had to go back to setting it from the console.
  • Mehdi
    Mehdi over 3 years
    So what is the actual way to do it right in the fixed gui?