Ubuntu 22.04 - network configuration
In ubuntu 22.04 i file di configurazione della rete (IP e affini) è in /etc/netplan nel file che di default è: 00-installer-config.yaml
Questo è un esempio del contenuto
# This is the network config written by 'subiquity'
network:
version: 2
ethernets:
ens160:
# dhcp4: true
addresses:
- 192.168.2.5/24
nameservers:
addresses: [192.168.1.8, 192.168.2.27]
routes:
- to: default
via: 192.168.2.1
- to: 192.168.1.0/24
via: 192.168.2.18