I have multiple interfaces on the host attached to different switch ports, all using DHCP. I want to have a "primary" interface that sets the default route, the DNS domain and DNS search values (again, all for the host itself).
In Ubuntu using netplan, this is easy, I would do something like:
...
Read more
In Ubuntu using netplan, this is easy, I would do something like:
Code:
network:
ethernets:
eno1:
dhcp4: true
dhcp4-overrides:
use-routes: false
use-dns: false
use-domains: false
eno2:
dhcp4: true
version: 2
Read more