20

I want to have the wired interface simultaneously obtain a DHCP address, and also alias a fixed address so I can communicate with a device with a fixed IP address on a different subnet over the same link.

When searching for IP address aliasing in Ubuntu, I found this article How do I add interface aliases using Network Manager GUI?. Unfortunately, the Edit Connections GUI in Ubuntu 14 does not have the "additional addresses" button.

Where has this functionality moved?

tim11g
  • 583

4 Answers4

32

Skip the gui and do it via command line.

The following link provides detailed information on how to create the alias on a temporary basis, as well as how to edit the interfaces file to make the change permanent.

http://www.cyberciti.biz/faq/linux-creating-or-adding-new-network-alias-to-a-network-card-nic/

Information from site in case of site death:

ifconfig command line

You can use ifconfig command to configure a network interface and alias. For example:

  • eth0 NIC IP 192.168.1.5
  • eth0:0 first NIC alias: 192.168.1.6

To setup eth0:0 alias type the following command as the root user:

# ifconfig eth0:0 192.168.1.6 up

Verify alias is up and running using following command:

# ifconfig -a

# ping 192.168.1.6

However, if you reboot the system you will lost all your alias. To make it permanent you need to add it network configuration file.

# vi /etc/network/interfaces

Append the following to the file (This is in addition to existing information, not a replacement for it)

auto eth0:1
iface eth0:1 inet static
name Ethernet alias LAN card
address 192.168.1.7
netmask 255.255.255.0
broadcast 192.168.1.255
network 192.168.1.0

Save and close the file. Restart the network:

# /etc/init.d/networking restart
Dave
  • 962
8

In order to add an address temporarily use ip:

ip a add 192.168.178.2/24 dev enx0050b60c19af

For example to install OpenWRT on some old devices:

https://openwrt.org/toh/avm/avm_fritz_wlan_repeater_450e

ceving
  • 351
0

You can use the below steps to add IP Address in a ubuntu network interface.

  1. Login to Ubuntu server via ssh.

  2. Hit the Following Command.

nano /etc/network/interfaces

  1. Enter the interface alias eth0:0 as mentioned in below.

(Note: If you already have interface alias eth0:0, you can add eth0:1 or eth0:2 for additional IP Address)

#secondary ip address
auto eth0:0
iface eth0:0 inet static
address 1*3.2*8.149.***
netmask 255.255.255.***
  1. Below Command will up the added interface alias within the network.

ifconfig eth0:0 1*3.2*8.149.*** up

  1. Restart the network service.

/etc/init.d/networking restart

  1. check the newly added ip address with the below command.

ifconfig

It is Done.

0

I just learned a trick from my colleague which involve the following:

If say eth_lan0 is set as the name of your wired network and has first been configured with the IP 192.168.1.2, say with something like netplan, you can then add an alias to connect to another internal network say with an IP with the pattern 10.42.0.x with the following:

sudo ifconfig eth_lan0:1 10.42.0.2

This assumes that the IP 10.42.0.2 has not yet been assigned to your LAN and that your host is connected to both networks, one with IP 192.168.1.x and the other with 10.42.0.x. Check if you have been successful by running ifconfig to see if the alias has been set. Then, it would be recommended to ping the hosts you are trying to connect on the two local networks to make sure everything runs as expected.