diff options
author | lynne <lynne@voltanet.io> | 2020-07-22 20:32:35 +0200 |
---|---|---|
committer | lynne <lynne@voltanet.io> | 2020-09-09 20:38:44 +0200 |
commit | 1cbf96a8adf020ce6107ce26fb065d44373e14ce (patch) | |
tree | 95fee3dcf2509698b274c76586944eba57fd9cb0 /yang/frr-isisd.yang | |
parent | ospfd: ldp-igp-sync feature: adding ospf support (diff) | |
download | frr-1cbf96a8adf020ce6107ce26fb065d44373e14ce.tar.xz frr-1cbf96a8adf020ce6107ce26fb065d44373e14ce.zip |
isisd: ldp-igp-sync feature: adding isis support
Signed-off-by: Lynne Morrison <lynne@voltanet.io>
Signed-off-by: Karen Schoener <karen@voltanet.io>
Diffstat (limited to 'yang/frr-isisd.yang')
-rw-r--r-- | yang/frr-isisd.yang | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/yang/frr-isisd.yang b/yang/frr-isisd.yang index 1bb693a1e..c0f128f3d 100644 --- a/yang/frr-isisd.yang +++ b/yang/frr-isisd.yang @@ -605,6 +605,26 @@ module frr-isisd { "IPv6 destination-source topology."; } } + + container mpls { + description + "Configuration of MPLS parameters"; + leaf ldp-sync { + type boolean; + default "true"; + description + "Enable MPLS LDP-Sync functionality on this circuit."; + } + leaf holddown { + type uint16 { + range "0..10000"; + } + units "seconds"; + description + "Time to wait for LDP-Sync to occur before restoring interface metric."; + } + } + } grouping adjacency-state { @@ -1311,6 +1331,26 @@ module frr-isisd { } } } + + container mpls { + description + "Configuration of MPLS parameters"; + container ldp-sync { + presence "Present if MPLS LDP-Sync is enabled."; + description + "Enable MPLS LDP-Sync functionality."; + leaf holddown { + type uint16 { + range "0..10000"; + } + units "seconds"; + default "0"; + description + "Time to wait for LDP-Sync to occur before restoring interface metric."; + } + } + } + } } |