diff options
author | kanaya516 <abcs516tk1@gmail.com> | 2023-01-04 16:47:43 +0100 |
---|---|---|
committer | kanaya516 <abcs516tk1@gmail.com> | 2023-01-04 16:47:43 +0100 |
commit | 4747dddbea2311b6d31c630cd86d0288f4c1da23 (patch) | |
tree | 729e3279839443a62a600eeb2e61c423d86fa25d /yang | |
parent | isisd: changed to output the adjacency-sid in yang format (diff) | |
download | frr-4747dddbea2311b6d31c630cd86d0288f4c1da23.tar.xz frr-4747dddbea2311b6d31c630cd86d0288f4c1da23.zip |
isisd: changed to output the LAN-adjacency-sid in yang format
Signed-off-by: kanaya516 <abcs516tk1@gmail.com>
Diffstat (limited to 'yang')
-rw-r--r-- | yang/frr-isisd.yang | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/yang/frr-isisd.yang b/yang/frr-isisd.yang index 28b578739..5483410d0 100644 --- a/yang/frr-isisd.yang +++ b/yang/frr-isisd.yang @@ -883,6 +883,7 @@ module frr-isisd { } uses adjacency-sids; + uses lan-adjacency-sids; } } } @@ -1041,6 +1042,41 @@ module frr-isisd { } } + grouping lan-adjacency-sids { + description + "IS-IS segment routing LAN adjacency SID grouping."; + container lan-adjacency-sids { + description + "This container lists the information of LAN adjacency SID."; + list lan-adjacency-sid { + leaf af { + type uint8; + description + "This leaf describes the protocol-family associated with the + LAN adjacency SID."; + } + + leaf value { + type uint32; + description + "This leaf describes the value of LAN adjacency SID."; + } + + leaf weight { + type uint8; + description + "This leaf describes the weight of the LAN adjacency SID."; + } + + leaf protection-requested { + type boolean; + description + "This leaf describes if the LAN adjacency SID must be protected."; + } + } + } + } + container isis { description "Configuration of the IS-IS routing daemon."; |