summaryrefslogtreecommitdiff
path: root/bgpd/ChangeLog
diff options
context:
space:
mode:
authorPaul Jakma <paul.jakma@sun.com>2007-08-06 15:24:51 +0000
committerPaul Jakma <paul.jakma@sun.com>2007-08-06 15:24:51 +0000
commit41367172d812354c05b11818346f0d49c2245aef (patch)
treeeb8f83ec0e93cb5a1d8470afd5c79ce55bc853da /bgpd/ChangeLog
parent6d58272b4cf96f0daa846210dd2104877900f921 (diff)
[bgpd] Add support for AS_PATHLIMIT / draft-ietf-idr-as-pathlimit
2007-07-31 Paul Jakma <paul.jakma@sun.com> * (general) Support for draft-ietf-idr-as-pathlimit-03. * bgp_attr.h: (struct attr) Add pathlimit struct bgp_attr.c: (attr_str) Add BGP_ATTR_AS_PATHLIMIT string. (attrhash_key_make) tally pathlimit too (attrhash_cmp) cmp pathlimit attr (bgp_attr_aspathlimit) New, parse AS_PATHLIMIT attr. (bgp_attr_parse) ditto (bgp_packet_attribute) Write out AS_PATHLIMIT when set (bgp_dump_routes_attr) ditto * bgp_route.h: (struct bgp_static) Add TTL field * bgp_route.c: (bgp_announce_check) Drop paths that are over their hop-count TTL before sending via EBGP. Mangle ASN in pathlimit for confeds/private as best we can. (bgp_static_update_{rsclient,main}) Add any configure pathlimit information. (bgp_pathlimit_update_parents) New, update atomic-aggr setting for parents of an aspathlimit'ed static. (bgp_static_set) Add TTL argument, for all the 'bgp network' commands. Call previous for TTL changed statics. (bgp_static_unset) Call pathlimit_update_parents. (various bgp network commands) Add 'pathlimit <0-255>' qualifier to all the various forms, bar route-map - which can set ttl itself. * bgp_routemap.c: (general) Add support for 'set pathlimit ttl' and 'match pathlimit as'. * doc/bgpd.texi: Document 'network ... pathlimit <ttl>'
Diffstat (limited to 'bgpd/ChangeLog')
-rw-r--r--bgpd/ChangeLog29
1 files changed, 29 insertions, 0 deletions
diff --git a/bgpd/ChangeLog b/bgpd/ChangeLog
index 7a93a90b..26614ced 100644
--- a/bgpd/ChangeLog
+++ b/bgpd/ChangeLog
@@ -1,3 +1,32 @@
+2007-07-31 Paul Jakma <paul.jakma@sun.com>
+
+ * (general) Support for draft-ietf-idr-as-pathlimit-03.
+ * bgp_attr.h: (struct attr) Add pathlimit struct
+ bgp_attr.c: (attr_str) Add BGP_ATTR_AS_PATHLIMIT string.
+ (attrhash_key_make) tally pathlimit too
+ (attrhash_cmp) cmp pathlimit attr
+ (bgp_attr_aspathlimit) New, parse AS_PATHLIMIT attr.
+ (bgp_attr_parse) ditto
+ (bgp_packet_attribute) Write out AS_PATHLIMIT when set
+ (bgp_dump_routes_attr) ditto
+ * bgp_route.h: (struct bgp_static) Add TTL field
+ * bgp_route.c: (bgp_announce_check) Drop paths that are over
+ their hop-count TTL before sending via EBGP.
+ Mangle ASN in pathlimit for confeds/private as best we can.
+ (bgp_static_update_{rsclient,main}) Add any configure pathlimit
+ information.
+ (bgp_pathlimit_update_parents) New, update atomic-aggr setting for
+ parents of an aspathlimit'ed static.
+ (bgp_static_set) Add TTL argument, for all the 'bgp network'
+ commands.
+ Call previous for TTL changed statics.
+ (bgp_static_unset) Call pathlimit_update_parents.
+ (various bgp network commands) Add 'pathlimit <0-255>' qualifier
+ to all the various forms, bar route-map - which can set ttl
+ itself.
+ * bgp_routemap.c: (general) Add support for 'set pathlimit ttl' and
+ 'match pathlimit as'.
+
2007-07-26 Paul Jakma <paul.jakma@sun.com>
* (general) Clean up and compact capability parsing slightly.