Skip to content

Commit

Permalink
add evpn to afi safi map dict
Browse files Browse the repository at this point in the history
Signed-off-by: Peng Xiao <xiaoquwl@gmail.com>
  • Loading branch information
xiaopeng163 committed Jan 25, 2016
1 parent 480b83d commit 203fe4f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions yabgp/common/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,13 +197,15 @@
(1, 1): 'ipv4',
(2, 1): 'ipv6',
(1, 133): 'flowspec',
(1, 128): 'vpnv4'
(1, 128): 'vpnv4',
(25, 70): 'evpn'
}
AFI_SAFI_STR_DICT = {
'ipv6': (2, 1),
'ipv4': (1, 1),
'flowspec': (1, 133),
'vpnv4': (1, 128)
'vpnv4': (1, 128),
'evpn': (25, 70)
}

ADD_PATH_ACT_DICT = {
Expand Down

0 comments on commit 203fe4f

Please sign in to comment.