Skip to content

Commit

Permalink
Merge pull request FRRouting#16891 from okda-networks/bgp_yang
Browse files Browse the repository at this point in the history
yang: added as-notation leaf to global-bgp-config
  • Loading branch information
donaldsharp authored Sep 22, 2024
2 parents 74c5c62 + e6b2030 commit df87ad9
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions yang/frr-bgp-common.yang
Original file line number Diff line number Diff line change
Expand Up @@ -320,6 +320,19 @@ submodule frr-bgp-common {
When set to 'false' BGP instance type is regular.";
}

leaf as-notation {
type enumeration {
enum "plain" { value 0; }
enum "dot" { value 1; }
enum "dot+" { value 2; }
}
description
"The as-notation type:
- plain: use plain format for all AS values
- dot: use 'AA.BB' format for AS 4 byte values.
- dot+: use 'AA.BB' format for all AS values.";
}

leaf ebgp-multihop-connected-route-check {
type boolean;
default "false";
Expand Down

0 comments on commit df87ad9

Please sign in to comment.