En este artículo explico como configurar la red en un sistema FreeBSD tanto de forma estática como por DHCP y como sobreescribir ciertos parámetros incluso habiendo adquirido la configuración por DHCP.
Ip estática:
vi /etc/rc.conf
hostname="server1.example.com"
ifconfig_em0="inet 10.10.10.100 netmask 255.255.255.0"
defaultrouter="10.10.10.1"
service routing restart
Ip DHCP:
vi /etc/rc.conf
hostname="server1.example.com"
ifconfig_em0="DHCP"
Si pedimos ip por DHCP pero queremos utilizar otros dns:
vim /etc/dhclient.conf
supersede domain-name-servers 8.8.8.8, 8.8.4.4;
service dhclient restart em0