Skip to content

Commit

Permalink
we were not announcing add-path IPv6 capability
Browse files Browse the repository at this point in the history
  • Loading branch information
thomas-mangin committed Sep 4, 2013
1 parent f0b71c5 commit 332a9af
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ Version explained:
minor : increase on risk of code breakage during a major release
bug : increase on bug or incremental changes

Version 3.2.10
* Fix: was not announcing add-path for IPv6 unicast

Version 3.2.9
* Fix: some json generation issue
reported by: Peter Spikings
Expand Down
2 changes: 2 additions & 0 deletions lib/exabgp/bgp/message/open/capability/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,8 @@ def new (self,neighbor,restarted):
ap_families = []
if (AFI(AFI.ipv4),SAFI(SAFI.unicast)) in families:
ap_families.append((AFI(AFI.ipv4),SAFI(SAFI.unicast)))
if (AFI(AFI.ipv6),SAFI(SAFI.unicast)) in families:
ap_families.append((AFI(AFI.ipv4),SAFI(SAFI.unicast)))
if (AFI(AFI.ipv4),SAFI(SAFI.nlri_mpls)) in families:
ap_families.append((AFI(AFI.ipv4),SAFI(SAFI.nlri_mpls)))
#if (AFI(AFI.ipv6),SAFI(SAFI.unicast)) in families:
Expand Down

0 comments on commit 332a9af

Please sign in to comment.