Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add gratuitous-arp-accepted and unsolicited-na-accepted #1120

Merged
merged 14 commits into from
Nov 21, 2024
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 28 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.5.2";
cagdasalagoz-arista marked this conversation as resolved.
Show resolved Hide resolved

revision "2024-05-28" {
description
"Add gratuitous-arp-accepted for IPv4 and unsolicited-na-accepted for IPv6";
reference "3.5.2";
cagdasalagoz-arista marked this conversation as resolved.
Show resolved Hide resolved
}

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

leaf gratuitous-arp-accepted {
type boolean;
default false;
cagdasalagoz-arista marked this conversation as resolved.
Show resolved Hide resolved
description
"When set to true, gratuitous neighbor advertisements
cagdasalagoz-arista marked this conversation as resolved.
Show resolved Hide resolved
will be accepted.";
cagdasalagoz-arista marked this conversation as resolved.
Show resolved Hide resolved
reference
"RFC 826: An Ethernet Address Resolution Protocol";
}

uses ip-common-global-config;


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

leaf unsolicited-na-accepted {
dplore marked this conversation as resolved.
Show resolved Hide resolved
type boolean;
cagdasalagoz-arista marked this conversation as resolved.
Show resolved Hide resolved
dplore marked this conversation as resolved.
Show resolved Hide resolved
default false;
description
"When set to true unsolicited neighbor advertisements
will be accepted.";
reference
"RFC 9131: Gratuitous Neighbor Discovery: Creating
Neighbor Cache Entries on First-Hop Routers";
}

uses ip-common-global-config;
}

Expand Down
Loading