diff options
| author | Philippe Guibert <philippe.guibert@6wind.com> | 2021-03-11 16:01:10 +0100 | 
|---|---|---|
| committer | Philippe Guibert <philippe.guibert@6wind.com> | 2021-04-30 10:33:18 +0200 | 
| commit | db51f0cd10709079c73b68e6abe9bed0785f2137 (patch) | |
| tree | 7c3b27b656443c5c036fee8f6a4d1c4e141b8597 /nhrpd/nhrp_route.c | |
| parent | 62b4b7e44ae72cbd611a78cd7abe8558366af21c (diff) | |
nhrp: Preserve mtu during interface up/down and tunnel source change
preserve mtu upon interface flapping and tunnel source change.
Signed-off-by:Reuben Dowle <reuben.dowle@4rf.com>
Signed-off-by: Philippe Guibert <philippe.guibert@6wind.com>
Diffstat (limited to 'nhrpd/nhrp_route.c')
| -rw-r--r-- | nhrpd/nhrp_route.c | 1 | 
1 files changed, 1 insertions, 0 deletions
diff --git a/nhrpd/nhrp_route.c b/nhrpd/nhrp_route.c index 1f513b7c0e..ee8db277d9 100644 --- a/nhrpd/nhrp_route.c +++ b/nhrpd/nhrp_route.c @@ -435,6 +435,7 @@ void nhrp_send_zebra_gre_source_set(struct interface *ifp,  	stream_putl(s, ifp->ifindex);  	stream_putl(s, link_idx);  	stream_putl(s, link_vrf_id); +	stream_putl(s, 0); /* mtu provisioning */  	stream_putw_at(s, 0, stream_get_endp(s));  	zclient_send_message(zclient);  }  | 
