Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion src/confd/yang/confd.inc
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ MODULES=(
"infix-routing@2025-12-02.yang"
"ieee802-dot1ab-lldp@2022-03-15.yang"
"infix-lldp@2025-05-05.yang"
"infix-dhcp-common@2025-11-09.yang"
"infix-dhcp-common@2025-12-21.yang"
"infix-dhcp-client@2025-11-09.yang"
"infix-dhcpv6-client@2025-11-09.yang"
"infix-dhcp-server@2025-10-28.yang"
Expand Down
24 changes: 14 additions & 10 deletions src/confd/yang/confd/infix-dhcp-common.yang
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ module infix-dhcp-common {
contact "kernelkit@googlegroups.com";
description "Shared types between DHCP server and client.";

revision 2025-12-21 {
description "Reorder enum values to ascending order, see https://github.com/CESNET/libyang/issues/2462";
reference "internal";
}
revision 2025-11-09 {
description "Add DHCPv6 options typedef and DHCPv4 vendor-class option.";
reference "internal";
Expand Down Expand Up @@ -171,21 +175,21 @@ module infix-dhcp-common {
value 25;
description "Identity Association for Prefix Delegation, RFC 8415.";
}
enum ntp-server {
value 56;
description "NTP time servers, RFC 5908.";
}
enum client-fqdn {
value 39;
description "Client Fully Qualified Domain Name, RFC 4704.";
enum sntp-server {
value 31;
description "Simple Network Time Protocol servers, RFC 4075.";
}
enum information-refresh-time {
value 32;
description "Information refresh time for stateless DHCPv6, RFC 8415.";
}
enum sntp-server {
value 31;
description "Simple Network Time Protocol servers, RFC 4075.";
enum client-fqdn {
value 39;
description "Client Fully Qualified Domain Name, RFC 4704.";
}
enum ntp-server {
value 56;
description "NTP time servers, RFC 5908.";
}
}
}
Expand Down