Hello all,
I'd like to assign about a dozen IPv6 aliases to an interface, so I can allocate them to jails. I can add a v4 address range by doing this in /etc/rc.conf
I found a similar directive for v6 called
I'd like to assign about a dozen IPv6 aliases to an interface, so I can allocate them to jails. I can add a v4 address range by doing this in /etc/rc.conf
Code:
ipv4_addrs_fxp0="192.168.0.1/24 192.168.1.1-5/28" # example IPv4 address entry.
I found a similar directive for v6 called
% ipv6_prefix_<interface>
, which uses EUI64 for the lower bits. I don't think I can use this since I only have a /64 prefix (correct me if I'm wrong.) Is there a standard way to simply specify a v6 address range similar to the % ipv4_addrs
directive?