I have a network interface alias which I declared in /etc/rc.conf, as follows:
The jail is configured to use 192.168.1.17 (and two other jails are on each of the other 2).
At some (unknown) point, the 192.168.1.17 address disappears from the list of interfaces of
I've looked through /var/log for some message/error which would let me find the source of the issue and fix it, but I can't seem to find anything relevant. Is there somewhere else I should be looking?
Code:
ifconfig_alc0="DHCP"
ifconfig_alc0_alias0="inet 192.168.1.17/32"
ifconfig_alc0_alias1="inet 192.168.1.16/32"
ifconfig_alc0_alias2="inet 192.168.1.12/32"
The jail is configured to use 192.168.1.17 (and two other jails are on each of the other 2).
At some (unknown) point, the 192.168.1.17 address disappears from the list of interfaces of
ifconfig
of the host, and running ifconfig
from inside the jail shows an interface with no IP address. The problem persists even after restarting the jail, but restarting the entire physical machine fixes it.I've looked through /var/log for some message/error which would let me find the source of the issue and fix it, but I can't seem to find anything relevant. Is there somewhere else I should be looking?