The rcvar should be `defaultrouter` instead: https://www.freebsd.org/doc/handbook/network-routing.html
7 lines
212 B
Plaintext
7 lines
212 B
Plaintext
#VAGRANT-BEGIN
|
|
ifconfig_<%= options[:device] %>_ipv6="inet6 <%= options[:ip] %> prefixlen <%= options[:netmask] %>"
|
|
<% if options[:gateway] %>
|
|
ipv6_defaultrouter="<%= options[:gateway] %>"
|
|
<% end %>
|
|
#VAGRANT-END
|