Created
August 2, 2018 13:52
-
-
Save rwestphal/01fc2041955bd102e5ef8090764a88c9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module frr-deviations-ietf-routing { | |
yang-version 1.1; | |
namespace "http://frrouting.org/yang/frr-deviations-ietf-routing"; | |
prefix frr-deviations-ietf-routing; | |
import ietf-routing { | |
prefix ietf-routing; | |
} | |
organization | |
"Free Range Routing"; | |
contact | |
"FRR Users List: <mailto:[email protected]> | |
FRR Development List: <mailto:[email protected]>"; | |
description | |
"This module defines deviation statements for the ietf-routing | |
module."; | |
deviation "/ietf-routing:routing/ietf-routing:router-id" { | |
deviate not-supported; | |
} | |
deviation "/ietf-routing:routing/ietf-routing:interfaces" { | |
deviate not-supported; | |
} | |
deviation "/ietf-routing:routing/ietf-routing:control-plane-protocols/ietf-routing:control-plane-protocol" { | |
deviate add { | |
must '(type != "ietf-rip:ripv2") or (name = "main")' { | |
description | |
"ripd supports one RIP instance only"; | |
} | |
} | |
} | |
deviation "/ietf-routing:routing/ietf-routing:control-plane-protocols/ietf-routing:control-plane-protocol/ietf-routing:description" { | |
deviate not-supported; | |
} | |
deviation "/ietf-routing:routing/ietf-routing:control-plane-protocols/ietf-routing:control-plane-protocol/ietf-routing:static-routes" { | |
deviate not-supported; | |
} | |
deviation "/ietf-routing:routing/ietf-routing:ribs" { | |
deviate not-supported; | |
} | |
deviation "/ietf-routing:routing-state" { | |
deviate not-supported; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment