Home Linux Networking Configuration
Post
Cancel

Linux Networking Configuration

Configure a static IP

We need to modify the network configuration file /etc/network/interfaces to add this :

1
2
3
4
5
auto ens18
iface ens18 inet static
  address 192.168.0.2
  netmask 255.255.255.0
  gateway 192.168.0.1

Configure custom dns servers

We need to modify the network configuration file /etc/resolv.conf to add this :

1
2
3
nameserver dns1
nameserver dns2
nameserver dns3
This post is licensed under CC BY 4.0 by the author.