-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
confd: Enable configuring LLDP tx interval
This change introduces the configuration of the tx-interval parameter for the LLDP service, allowing control over the frequency of LLDP hello messages. By reducing the tx-interval, the waiting time for LLDP packets during tests is significantly shortened. This improvement eliminates the need to toggle the interface down and up to force the emission of LLDP packets.
- Loading branch information
Showing
4 changed files
with
45 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,7 +29,7 @@ MODULES=( | |
"[email protected]" | ||
"[email protected]" | ||
"[email protected]" | ||
"infix-lldp@2023-08-23.yang" | ||
"infix-lldp@2025-01-08.yang" | ||
"[email protected]" | ||
"[email protected]" | ||
"[email protected]" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,10 @@ module infix-lldp { | |
contact "[email protected]"; | ||
description "Infix augments and deviations to ieee-dot1ab-lldp."; | ||
|
||
revision 2025-01-08 { | ||
description "Switched to the standard 'message-tx-interval' for regular LLDP transmit interval configuration."; | ||
} | ||
|
||
revision 2023-08-23 { | ||
description "Initial revision."; | ||
reference "internal"; | ||
|
@@ -34,9 +38,6 @@ module infix-lldp { | |
deviation "/lldp:lldp/lldp:message-tx-hold-multiplier" { | ||
deviate not-supported; | ||
} | ||
deviation "/lldp:lldp/lldp:message-tx-interval" { | ||
deviate not-supported; | ||
} | ||
deviation "/lldp:lldp/lldp:notification-interval" { | ||
deviate not-supported; | ||
} | ||
|
File renamed without changes.