My #FreeBSD jail needed a second interface in the storage #VLAN.
I like to use #DHCP for central configuration, but this extra interface should not set the hostname, routing, etc.
Ended up adding a kind of dummy entry to the dhclient.conf which only gets the IP address AFAIS.
interface "epair13b" {
send host-name "myhost-vlan1";
request subnet-mask;
}
✅ 💪
Tips for a better way to do this?