The default value of 0 is incorrect, as by default, NDP is enabled for both iptables and nftables. Change the default value to 1 to reflect that.
Signed-off-by: Michael Köppl <[email protected]> --- src/PVE/Firewall.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/PVE/Firewall.pm b/src/PVE/Firewall.pm index ec9c9ae..93f8c34 100644 --- a/src/PVE/Firewall.pm +++ b/src/PVE/Firewall.pm @@ -1404,7 +1404,7 @@ our $host_option_properties = { ndp => { description => "Enable NDP (Neighbor Discovery Protocol).", type => 'boolean', - default => 0, + default => 1, optional => 1, }, nf_conntrack_allow_invalid => { @@ -1475,7 +1475,7 @@ our $vm_option_properties = { ndp => { description => "Enable NDP (Neighbor Discovery Protocol).", type => 'boolean', - default => 0, + default => 1, optional => 1, }, radv => { -- 2.47.3 _______________________________________________ pve-devel mailing list [email protected] https://lists.proxmox.com/cgi-bin/mailman/listinfo/pve-devel
