Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -157,6 +157,10 @@ return network.registerProtocol('wireguard', {
o.datatype = 'ipaddr';
o.optional = true;

o = s.taboption('general', form.DynamicList, 'ip6prefix', _('IPv6 routed prefix'), _('IPv6 prefix routed to this interface for use by clients. Use this for Prefix Delegation.'));
o.datatype = 'cidr6';
o.optional = true;

o = s.taboption('general', form.Flag, 'nohostroute', _('No Host Routes'), _('Optional. Do not create host routes to peers.'));
o.optional = true;

Expand All @@ -182,9 +186,6 @@ return network.registerProtocol('wireguard', {
return true;
};

o = s.taboption('advanced', form.DynamicList, 'ip6prefix', _('IPv6 routed prefix'), _('This is the prefix routed to you by your provider for use by clients'));
o.datatype = 'cidr6';

// -- peers -----------------------------------------------------------------------

try {
Expand Down
Loading