Skip to content

Commit

Permalink
Merge branch 'master' into channel-flags
Browse files Browse the repository at this point in the history
  • Loading branch information
dplore authored Nov 26, 2024
2 parents 2ce5b4b + c58e42f commit 98fc4a7
Show file tree
Hide file tree
Showing 5 changed files with 1,812 additions and 1 deletion.
41 changes: 40 additions & 1 deletion release/models/interfaces/openconfig-if-ip.yang
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,13 @@ module openconfig-if-ip {
Section 4.c of the IETF Trust's Legal Provisions Relating
to IETF Documents (http://trustee.ietf.org/license-info).";

oc-ext:openconfig-version "3.5.1";
oc-ext:openconfig-version "3.6.0";

revision "2024-05-28" {
description
"Add gratuitous-arp-accepted for IPv4 and unsolicited-na-accepted for IPv6.";
reference "3.6.0";
}

revision "2024-03-13" {
description
Expand Down Expand Up @@ -480,6 +486,15 @@ revision "2023-06-30" {
"RFC 791: Internet Protocol";
}

leaf gratuitous-arp-accepted {
type boolean;
description
"When set to true, gratuitous ARPs will be accepted and
the ARP table will be updated.";
reference
"RFC 826: An Ethernet Address Resolution Protocol";
}

uses ip-common-global-config;


Expand Down Expand Up @@ -605,6 +620,30 @@ revision "2023-06-30" {
"RFC 4862: IPv6 Stateless Address Autoconfiguration";
}

leaf learn-unsolicited {
type enumeration {
enum NONE {
value 0;
}
enum GLOBAL {
value 1;
}
enum LINK_LOCAL {
value 2;
}
enum BOTH {
value 3;
}
}
default "NONE";
description
"Sets if neighbors should be learned from unsolicited neighbor
advertisements for global or link local addresses or both.";
reference
"RFC 9131: Routers Creating Cache Entries upon
Receiving Unsolicited Neighbor Advertisements";
}

uses ip-common-global-config;
}

Expand Down
9 changes: 9 additions & 0 deletions release/models/oam/.spec.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
- name: openconfig-oam
docs:
- yang/oam/openconfig-oam.yang
- yang/oam/openconfig-cfm-types.yang
- yang/oam/openconfig-oam-cfm.yang
build:
- yang/oam/openconfig-oam.yang
- yang/oam/openconfig-oam-cfm.yang
run-ci: true
Loading

0 comments on commit 98fc4a7

Please sign in to comment.