diff --git a/NEWS b/NEWS index da99a7778..d9501e084 100644 --- a/NEWS +++ b/NEWS @@ -37,6 +37,7 @@ USE AT YOUR OWN RISK. NOT RECOMMENDED FOR PRODUCTION USE! * Dnsconfd plugin can now be used for configuration of system-wide DNS caching resolver. If dnsconfd plugin is enabled and ipvX.routed-dns is set to -1 then adding routes is by default enabled. +* Add "shared" method to the IPv6 configuration options in nmtui. ============================================= NetworkManager-1.50 diff --git a/src/nmtui/nmt-page-ip6.c b/src/nmtui/nmt-page-ip6.c index 7e7a48c54..bd29a3a7c 100644 --- a/src/nmtui/nmt-page-ip6.c +++ b/src/nmtui/nmt-page-ip6.c @@ -29,6 +29,7 @@ static NmtNewtPopupEntry ip6methods[] = { {N_("Automatic (DHCP-only)"), NM_SETTING_IP6_CONFIG_METHOD_DHCP}, {N_("Link-Local"), NM_SETTING_IP6_CONFIG_METHOD_LINK_LOCAL}, {N_("Manual"), NM_SETTING_IP6_CONFIG_METHOD_MANUAL}, + {N_("Shared"), NM_SETTING_IP6_CONFIG_METHOD_SHARED}, {N_("Disabled"), NM_SETTING_IP6_CONFIG_METHOD_DISABLED}, {NULL, NULL}};