IPv6 is enabled on the router and also for WireGuard VPN Server and OpenVPNServer, But OpenVpn Server config shows IPv6 not Enabled tried restarting the OpenVPN Server but no luck.
For OpenVPN there is no configuration in UI to enabled IPv6 and in config also it’s disabled.
config service 'vpn'
option auth 'SHA256'
option proto 'udp'
option dev 'ovpnserver'
option dev_type 'tun'
option cipher 'AES-256-GCM'
option comp 'adaptive'
option ipv6_enable '0'
option subnetv4 '10.8.0.0'
option subnetv6 'fd00:db8:0:123::0/64'
option mask '255.255.255.0'
option host '127.0.0.1'
option start '10.8.0.2'
option end '10.8.0.100'
option verb '3'
option access_scope '1'
option client_auth '1'
option tap_address '10.8.0.1'
option tap_mask '255.255.255.0'
option ddns '1'
option domain '``example.glddns.com``'
option lzo '0'
option hmac '0'
option client_to_client '0'
option port '1194'
option mssfix '1320'
As there are no option to enable IPv6 from UI, what uci commands I can use to enable IPv6 and then restart the service.

