frr/yang/ietf/frr-deviations-ietf-routing.yang
Daniel Baumann 3124f89aed
Adding upstream version 10.1.1.
Signed-off-by: Daniel Baumann <daniel@debian.org>
2025-02-05 10:03:58 +01:00

56 lines
1.5 KiB
YANG

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;
}
import ietf-rip {
prefix ietf-rip;
}
organization
"FRRouting";
contact
"FRR Users List: <mailto:frog@lists.frrouting.org>
FRR Development List: <mailto:dev@lists.frrouting.org>";
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;
}
}