mirror of
https://github.com/systemd/systemd.git
synced 2025-02-24 17:57:34 +03:00
network: introduce ManageTemporaryAddress= setting in [DHCPv6PrefixDelegation] section
The setting is enabled by default, as NDisc also enabled the flag by default. Closes #18208.
This commit is contained in:
parent
8b76ee89d7
commit
fec1b650ad
@ -1081,11 +1081,11 @@ IPv6Token=prefixstable:2002:da8:1::</programlisting></para>
|
|||||||
<listitem>
|
<listitem>
|
||||||
<para>Takes a boolean. If true the kernel manage temporary addresses created
|
<para>Takes a boolean. If true the kernel manage temporary addresses created
|
||||||
from this one as template on behalf of Privacy Extensions
|
from this one as template on behalf of Privacy Extensions
|
||||||
<ulink url="https://tools.ietf.org/html/rfc3041">RFC 3041</ulink>. For this to become
|
<ulink url="https://tools.ietf.org/html/rfc3041">RFC 3041</ulink>. For this to become
|
||||||
active, the use_tempaddr sysctl setting has to be set to a value greater than zero.
|
active, the use_tempaddr sysctl setting has to be set to a value greater than zero.
|
||||||
The given address needs to have a prefix length of 64. This flag allows using privacy
|
The given address needs to have a prefix length of 64. This flag allows using privacy
|
||||||
extensions in a manually configured network, just like if stateless auto-configuration
|
extensions in a manually configured network, just like if stateless auto-configuration
|
||||||
was active. Defaults to false. </para>
|
was active. Defaults to false.</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
<varlistentry>
|
<varlistentry>
|
||||||
@ -2056,6 +2056,13 @@ IPv6Token=prefixstable:2002:da8:1::</programlisting></para>
|
|||||||
addresses. Defaults to unset.</para>
|
addresses. Defaults to unset.</para>
|
||||||
</listitem>
|
</listitem>
|
||||||
</varlistentry>
|
</varlistentry>
|
||||||
|
|
||||||
|
<varlistentry>
|
||||||
|
<term><varname>ManageTemporaryAddress=</varname></term>
|
||||||
|
<listitem>
|
||||||
|
<para>As in the [Address] section, but defaults to true.</para>
|
||||||
|
</listitem>
|
||||||
|
</varlistentry>
|
||||||
</variablelist>
|
</variablelist>
|
||||||
</refsect1>
|
</refsect1>
|
||||||
|
|
||||||
|
@ -400,6 +400,7 @@ static int dhcp6_set_pd_address(
|
|||||||
address->family = AF_INET6;
|
address->family = AF_INET6;
|
||||||
address->cinfo.ifa_prefered = lifetime_preferred;
|
address->cinfo.ifa_prefered = lifetime_preferred;
|
||||||
address->cinfo.ifa_valid = lifetime_valid;
|
address->cinfo.ifa_valid = lifetime_valid;
|
||||||
|
SET_FLAG(address->flags, IFA_F_MANAGETEMPADDR, link->network->dhcp6_pd_manage_temporary_address);
|
||||||
|
|
||||||
r = address_configure(address, link, dhcp6_pd_address_handler, true, &ret);
|
r = address_configure(address, link, dhcp6_pd_address_handler, true, &ret);
|
||||||
if (r < 0)
|
if (r < 0)
|
||||||
|
@ -295,6 +295,7 @@ BridgeVLAN.EgressUntagged, config_parse_brvlan_untagged,
|
|||||||
DHCPv6PrefixDelegation.SubnetId, config_parse_dhcp6_pd_subnet_id, 0, offsetof(Network, dhcp6_pd_subnet_id)
|
DHCPv6PrefixDelegation.SubnetId, config_parse_dhcp6_pd_subnet_id, 0, offsetof(Network, dhcp6_pd_subnet_id)
|
||||||
DHCPv6PrefixDelegation.Announce, config_parse_bool, 0, offsetof(Network, dhcp6_pd_announce)
|
DHCPv6PrefixDelegation.Announce, config_parse_bool, 0, offsetof(Network, dhcp6_pd_announce)
|
||||||
DHCPv6PrefixDelegation.Assign, config_parse_bool, 0, offsetof(Network, dhcp6_pd_assign)
|
DHCPv6PrefixDelegation.Assign, config_parse_bool, 0, offsetof(Network, dhcp6_pd_assign)
|
||||||
|
DHCPv6PrefixDelegation.ManageTemporaryAddress, config_parse_bool, 0, offsetof(Network, dhcp6_pd_manage_temporary_address)
|
||||||
DHCPv6PrefixDelegation.Token, config_parse_dhcp6_pd_token, 0, offsetof(Network, dhcp6_pd_token)
|
DHCPv6PrefixDelegation.Token, config_parse_dhcp6_pd_token, 0, offsetof(Network, dhcp6_pd_token)
|
||||||
IPv6SendRA.RouterLifetimeSec, config_parse_sec, 0, offsetof(Network, router_lifetime_usec)
|
IPv6SendRA.RouterLifetimeSec, config_parse_sec, 0, offsetof(Network, router_lifetime_usec)
|
||||||
IPv6SendRA.Managed, config_parse_bool, 0, offsetof(Network, router_managed)
|
IPv6SendRA.Managed, config_parse_bool, 0, offsetof(Network, router_managed)
|
||||||
|
@ -361,6 +361,7 @@ int network_load_one(Manager *manager, OrderedHashmap **networks, const char *fi
|
|||||||
.dhcp6_pd = -1,
|
.dhcp6_pd = -1,
|
||||||
.dhcp6_pd_announce = true,
|
.dhcp6_pd_announce = true,
|
||||||
.dhcp6_pd_assign = true,
|
.dhcp6_pd_assign = true,
|
||||||
|
.dhcp6_pd_manage_temporary_address = true,
|
||||||
.dhcp6_pd_subnet_id = -1,
|
.dhcp6_pd_subnet_id = -1,
|
||||||
|
|
||||||
.dhcp_server_emit[SD_DHCP_LEASE_DNS].emit = true,
|
.dhcp_server_emit[SD_DHCP_LEASE_DNS].emit = true,
|
||||||
|
@ -200,6 +200,7 @@ struct Network {
|
|||||||
int dhcp6_pd;
|
int dhcp6_pd;
|
||||||
bool dhcp6_pd_announce;
|
bool dhcp6_pd_announce;
|
||||||
bool dhcp6_pd_assign;
|
bool dhcp6_pd_assign;
|
||||||
|
bool dhcp6_pd_manage_temporary_address;
|
||||||
int64_t dhcp6_pd_subnet_id;
|
int64_t dhcp6_pd_subnet_id;
|
||||||
union in_addr_union dhcp6_pd_token;
|
union in_addr_union dhcp6_pd_token;
|
||||||
|
|
||||||
|
@ -143,6 +143,7 @@ RouteMetric=
|
|||||||
SubnetId=
|
SubnetId=
|
||||||
Announce=
|
Announce=
|
||||||
Assign=
|
Assign=
|
||||||
|
ManageTemporaryAddress=
|
||||||
Token=
|
Token=
|
||||||
[Route]
|
[Route]
|
||||||
Destination=
|
Destination=
|
||||||
|
Loading…
x
Reference in New Issue
Block a user