Background / Purpose / Getting Started / Cluster Guide
As of Ubuntu 18.04 LTS, ubuntu has switched to Netplan for configuring network interfaces. Netplan is a YAML-based configuration system that makes the process of configuring a network simple and very straightforward.
For those not using Ubuntu 18.04 LTS, you will have to manually install netplan
sudo apt update -y
sudo apt install netplan
By default, it may be disabled, thus we have to enable it
echo "ENABLED=1" | sudo tee /etc/default/netplan
Reboot the system
sudo reboot
Keep in mind that if you are not using Ubuntu 18.04 LTS which comes with Netplan installed by default then you will have to install Netplan first. However, if you are not or cannot connect to the internet via Ethernet, how will you download and install Netplan?
For such specific cases I would recommend attempting to configure your network with the previous guides (above). If none of them worked out for you, I would suggest to stick to Raspbian with Desktop in which network can be set up easily or switch to Ubuntu 18.04 LTS or a newer version.
List all network interfaces
ip a
You typically have two (2) or more network interfaces:
To set up a network interface named eth0
via Ethernet to get an automatically IP address assigned via DHCP, create a eth0-config.yaml
configuration file with the following:
network:
version: 2
renderer: networkd
ethernets:
eth0:
dhcp4: true
Now refer to Network configuration to apply the new configuration.
To set up a network interface named eth0
via Ethernet to have a static IP address assigned to it, create a eth0-config.yaml
configuration file with the following:
network:
version: 2
renderer: networkd
ethernets:
eth0:
addresses:
- 192.168.0.25/24
gateway4: 192.168.0.1
nameservers:
addresses: [192.168.0.1, 8.8.8.8]
For your IP address mask value, e.g. your Subnet Mask
is 255.255.255.0
then the IP address mask is xxx.xxx.xxx.xxx/24
as specified above, refer to this guide here for more details.
Now refer to Network configuration to apply the new configuration.
To set up a network interface named wlan0
and connect to a open wireless connection (public WiFi), create a wlan0-config.yaml
configuration file with the following:
network:
version: 2
wifis:
wlan0:
access-points:
opennetwork: {}
dhcp4: yes
Now refer to Network configuration to apply the new configuration.
To set up a network interface named wlan0
and connect to a private wireless connection (WPA/WPA2 WiFi), create a wlan0-config.yaml
configuration file with the following:
network:
version: 2
renderer: networkd
wifis:
wlan0:
dhcp4: no
dhcp6: no
addresses: [192.168.0.25/24]
gateway4: 192.168.0.1
nameservers:
addresses: [192.168.0.1, 8.8.8.8]
access-points:
"network_ssid_name":
password: "**********"
For your IP address mask value, e.g. your Subnet Mask
is 255.255.255.0
then the IP address mask is xxx.xxx.xxx.xxx/24
as specified above, refer to this guide here for more details.
Don’t forget to replace "network_ssid_name"
with your network SSID and "**********"
with your network’s passphrase key or pre-shared key password.
Now refer to Network configuration to apply the new configuration.
Save your configuration files under /etc/netplan/
with the .yaml
extension, e.g. /etc/netplan/eth0-config.yaml
.
Apply the new configuration
sudo netplan apply
The configuration will be written to disk under /etc/netplan/
and will persist between reboots if accepted and properly configured.
Verify you are connected to the internet
ping google.com
You should start seeing data being received constantly, meaning you are downloading packets from google.com as a test. Type Ctrl+C
to interrupt.