Skip to content

Security Analysis Changes Part 7 #1296

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

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Bugfixes from automated checks
  • Loading branch information
mihirra authored and mrajpal2 committed May 7, 2025
commit d8269b49ce907836a36f5320e2bfc368bd1993b0
8 changes: 4 additions & 4 deletions release/models/system/openconfig-aaa.yang
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ module openconfig-aaa {
}

leaf admin-password-hashed {
type oc-types:crypt-password-type;
type oc-aaa-types:crypt-password-type;
description
"The admin/root password, supplied as a hashed value
using the notation described in the definition of the
Expand Down Expand Up @@ -389,7 +389,7 @@ module openconfig-aaa {
}

leaf password-hashed {
type oc-types:crypt-password-type;
type oc-aaa-types:crypt-password-type;
description
"The user password, supplied as a hashed value
using the notation described in the definition of the
Expand All @@ -406,7 +406,7 @@ module openconfig-aaa {
type boolean;
default false;
description
"Indicate to the device that the current user must change their
"Indicate to the device that the current user must change their
password when they login next.";
}

Expand All @@ -415,7 +415,7 @@ module openconfig-aaa {
units seconds;
description
"When the specified user's password should be set to expire.
Default is that the password never expires. After expiry,
Default is that the password never expires. After expiry,
the system should behave as if the user-must-change-password
flag was set.";
}
Expand Down
20 changes: 10 additions & 10 deletions release/models/system/openconfig-system-logging.yang
Original file line number Diff line number Diff line change
Expand Up @@ -659,43 +659,43 @@ revision "2023-07-20" {
grouping logging-global-state {
description
"Contains the global state for logging.";

leaf logging-starts-on-boot {
type boolean;
description
"Whether or not logging to the specified locations starts on boot";
}

leaf account-creation-logged {
type boolean;
description
"Whether or not account creation is logged";
}

leaf account-modification-logged {
type boolean;
description
"Whether or not account modification is logged";
}

leaf account-disabling-logged {
type boolean;
description
"Whether or not account disabling is logged";
}

leaf account-enabling-logged {
type boolean;
description
"Whether or not account enabling is logged";
}

leaf account-removal-logged {
type boolean;
description
"Whether or not account removal is logged";
}

leaf privileged-operations-logged {
type boolean;
description
Expand All @@ -706,7 +706,7 @@ revision "2023-07-20" {
grouping logging-global-config {
description
"Contains the global configuration options for logging.";

leaf log-full-commands {
type boolean;
description
Expand All @@ -728,14 +728,14 @@ revision "2023-07-20" {
uses logging-vty-top;

container global-config {
description
description
"Global configuration for logging";
uses logging-global-config;
}

container global-state {
config false;
description
description
"Global state for logging";
uses logging-global-config;
uses logging-global-state;
Expand Down
2 changes: 1 addition & 1 deletion release/models/vlan/openconfig-vlan.yang
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ module openconfig-vlan {
type boolean;
description
"Whether or not VLAN auto-negotiation is enabled on this
interface. If false, VTP, MVTP, DTP, and any other vlan
interface. If false, VTP, MVTP, DTP, and any other vlan
auto-negotiation protocols must be disabled for this interface.";
}

Expand Down