From e095283641a2616688761e91acc48c3991f6608f Mon Sep 17 00:00:00 2001 From: Yihong Wu <54519668+domosekai@users.noreply.github.com> Date: Tue, 23 Nov 2021 23:54:42 +0800 Subject: [PATCH] Change default hub option to allow default router in IPv6 RA --- src/Cedar/Server.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Cedar/Server.c b/src/Cedar/Server.c index 38f900e3..50e70fcd 100644 --- a/src/Cedar/Server.c +++ b/src/Cedar/Server.c @@ -2320,7 +2320,7 @@ void SiSetDefaultHubOption(HUB_OPTION *o) o->DefaultSubnet = SetIP32(255, 255, 255, 0); o->MaxSession = 0; o->VlanTypeId = MAC_PROTO_TAGVLAN; - o->NoIPv6DefaultRouterInRAWhenIPv6 = true; + o->NoIPv6DefaultRouterInRAWhenIPv6 = false; o->ManageOnlyPrivateIP = true; o->ManageOnlyLocalUnicastIPv6 = true; o->NoMacAddressLog = true;