I need multiple IP on my homelab server with this configuration:
All is fine except that, at boot, the first alias (
Regards
Code:
#/etc/rc.conf
ifconfig_re0="DHCP"
ifconfig_re0_alias0="inet 192.168.1.100 netmask 255.255.255.255"
ifconfig_re0_alias1="inet 192.168.1.101 netmask 255.255.255.255"
ifconfig_re0_alias2="inet 192.168.1.102 netmask 255.255.255.255"
ifconfig_re0_alias3="inet 192.168.1.103 netmask 255.255.255.255"
ifconfig_re0_alias4="inet 192.168.1.104 netmask 255.255.255.255"
Code:
# ifconfig re0
re0: flags=1008843<UP,BROADCAST,RUNNING,SIMPLEX,MULTICAST,LOWER_UP> metric 0 mtu 1500
options=8209b<RXCSUM,TXCSUM,VLAN_MTU,VLAN_HWTAGGING,VLAN_HWCSUM,WOL_MAGIC,LINKSTATE>
ether 70:71:de:ad:be:ef
inet 192.168.1.101 netmask 0xffffffff broadcast 192.168.1.101
inet 192.168.1.102 netmask 0xffffffff broadcast 192.168.1.102
inet 192.168.1.103 netmask 0xffffffff broadcast 192.168.1.103
inet 192.168.1.104 netmask 0xffffffff broadcast 192.168.1.104
inet 192.168.1.13 netmask 0xffffff00 broadcast 192.168.1.255
media: Ethernet autoselect (1000baseT <full-duplex>)
status: active
nd6 options=29<PERFORMNUD,IFDISABLED,AUTO_LINKLOCAL>
alias0) is missing (or ignored). I try from alias1 to alias5 but it's the same. Is this a bug?Regards