diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2015-05-20 02:40:47 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2015-05-20 02:40:47 +0200 |
commit | bc4131433590f605da05dd9f9d6d385dbbd1c1d0 (patch) | |
tree | b7c7bb1f63e125aa031918c01b1420ac7ef56c19 /bgpd/bgp_attr.h | |
parent | Make "no redistribute" always remove the redistribute statement (diff) | |
download | frr-bc4131433590f605da05dd9f9d6d385dbbd1c1d0.tar.xz frr-bc4131433590f605da05dd9f9d6d385dbbd1c1d0.zip |
bgpd: bgpd-route-map-match-interface.patch
BGP: Add match interface support to BGP route-map.
Currently, BGP route maps don't support interface match. This is a problem
for commands such as redistribite connected that cannot exclude routes from
specific interfaces (such as mgmt interfaces).
Diffstat (limited to 'bgpd/bgp_attr.h')
-rw-r--r-- | bgpd/bgp_attr.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bgpd/bgp_attr.h b/bgpd/bgp_attr.h index 2d796b5b7..5aa0c39f9 100644 --- a/bgpd/bgp_attr.h +++ b/bgpd/bgp_attr.h @@ -109,6 +109,7 @@ struct attr struct in_addr nexthop; u_int32_t med; u_int32_t local_pref; + u_int32_t nh_ifindex; /* Path origin attribute */ u_char origin; |