diff options
author | Neale Ranns <nranns@cisco.com> | 2020-04-23 07:36:12 +0000 |
---|---|---|
committer | Ole Trøan <otroan@employees.org> | 2020-04-24 09:24:43 +0000 |
commit | ec40a7d2bce4bba67af3b3d971547d40e90fdf97 (patch) | |
tree | 8cab359d02dfce38d57f7d9b2e741e7a406ef6b1 /src/plugins/dhcp | |
parent | 82b62bbf58bc3d1143a359d8f58f7be2f473cddd (diff) |
ip: Setting the Link-Local address from the API enables IPv6 on the
interface
Type: fix
Signed-off-by: Neale Ranns <nranns@cisco.com>
Change-Id: I0b7c189006e30a357cd6be4f3c9c61fded4157cb
Diffstat (limited to 'src/plugins/dhcp')
-rw-r--r-- | src/plugins/dhcp/dhcp6_ia_na_client_cp.c | 4 | ||||
-rw-r--r-- | src/plugins/dhcp/dhcp6_pd_client_cp.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/plugins/dhcp/dhcp6_ia_na_client_cp.c b/src/plugins/dhcp/dhcp6_ia_na_client_cp.c index 4d59f607fe1..975a7e09eed 100644 --- a/src/plugins/dhcp/dhcp6_ia_na_client_cp.c +++ b/src/plugins/dhcp/dhcp6_ia_na_client_cp.c @@ -412,7 +412,7 @@ dhcp6_client_cp_process (vlib_main_t * vm, vlib_node_runtime_t * rt, clib_warning ("Failed to delete interface address"); pool_put (rm->address_pool, address_info); /* make sure ip6 stays enabled */ - ip6_link_enable (sw_if_index); + ip6_link_enable (sw_if_index, NULL); client_state = &rm->client_state_by_sw_if_index[sw_if_index]; if (--client_state->address_count == 0) { @@ -645,7 +645,7 @@ dhcp6_client_enable_disable (u32 sw_if_index, u8 enable) dhcp6_clients_enable_disable (1); } - ip6_link_enable (sw_if_index); + ip6_link_enable (sw_if_index, NULL); send_client_message_start_stop (sw_if_index, ~0, DHCPV6_MSG_SOLICIT, 0, 1); } diff --git a/src/plugins/dhcp/dhcp6_pd_client_cp.c b/src/plugins/dhcp/dhcp6_pd_client_cp.c index 077b4a38639..2328dfda3f5 100644 --- a/src/plugins/dhcp/dhcp6_pd_client_cp.c +++ b/src/plugins/dhcp/dhcp6_pd_client_cp.c @@ -1287,7 +1287,7 @@ dhcp6_pd_client_enable_disable (u32 sw_if_index, dhcp6_clients_enable_disable (1); } - ip6_link_enable (sw_if_index); + ip6_link_enable (sw_if_index, NULL); send_client_message_start_stop (sw_if_index, ~0, DHCPV6_MSG_SOLICIT, 0, 1); } |