diff options
| author | lynne <lynne@voltanet.io> | 2020-07-22 14:32:35 -0400 | 
|---|---|---|
| committer | lynne <lynne@voltanet.io> | 2020-09-09 14:38:44 -0400 | 
| commit | 1cbf96a8adf020ce6107ce26fb065d44373e14ce (patch) | |
| tree | 95fee3dcf2509698b274c76586944eba57fd9cb0 /yang/frr-isisd.yang | |
| parent | 132a782eb829931aa41482393e83ab253f2ed3c9 (diff) | |
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 1bb693a1ef..c0f128f3d6 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."; +          } +        } +      } +      }    }  | 
