summaryrefslogtreecommitdiffstats
path: root/package
diff options
context:
space:
mode:
authorPaul Donald <newtwen+github@gmail.com>2024-04-03 14:06:29 +0200
committerChristian Marangi <ansuelsmth@gmail.com>2024-04-12 13:45:48 +0200
commit4d8f56bd59f457fd815e2bb4f87df8c7dad2d4fd (patch)
tree049b85c0c432aa62b40261e9cda0254afb827bd0 /package
parent849ebc905bf9c994ccfcec379a51ff51479f1215 (diff)
downloadopenwrt-4d8f56bd59f457fd815e2bb4f87df8c7dad2d4fd.tar.gz
openwrt-4d8f56bd59f457fd815e2bb4f87df8c7dad2d4fd.tar.bz2
openwrt-4d8f56bd59f457fd815e2bb4f87df8c7dad2d4fd.zip
lldpd: make capabilities advertisement controllable
Defaults to off. Only available from >= 1.0.15 These capabilities are sent in TLV. Signed-off-by: Paul Donald <newtwen+github@gmail.com>
Diffstat (limited to 'package')
-rw-r--r--package/network/services/lldpd/files/lldpd.init7
1 files changed, 7 insertions, 0 deletions
diff --git a/package/network/services/lldpd/files/lldpd.init b/package/network/services/lldpd/files/lldpd.init
index 6707476e55..6685aa11af 100644
--- a/package/network/services/lldpd/files/lldpd.init
+++ b/package/network/services/lldpd/files/lldpd.init
@@ -110,6 +110,10 @@ write_lldpd_conf()
local lldp_syscapabilities
config_get lldp_syscapabilities 'config' 'lldp_syscapabilities'
+ # Configurable capabilities in lldpd >= v1.0.15
+ local lldp_capability_advertisements
+ config_get_bool lldp_capability_advertisements 'config' 'lldp_capability_advertisements' 0
+
if [ "$CONFIG_LLDPD_WITH_LLDPMED" = "y" ]; then
local lldpmed_fast_start
config_get_bool lldpmed_fast_start 'config' 'lldpmed_fast_start' 0
@@ -150,6 +154,7 @@ write_lldpd_conf()
[ -n "$lldp_hostname" ] && echo "configure system hostname" "\"$lldp_hostname\"" >> "$LLDPD_CONF"
[ -n "$lldp_mgmt_ip" ] && echo "configure system ip management pattern" "\"$lldp_mgmt_ip\"" >> "$LLDPD_CONF"
[ -n "$lldp_syscapabilities" ] && echo "configure system capabilities enabled $lldp_syscapabilities" >> "$LLDPD_CONF"
+
if [ "$CONFIG_LLDPD_WITH_LLDPMED" = "y" ] && [ "$lldpmed_fast_start" -gt 0 ]; then
if [ "$lldpmed_fast_start_tx_interval" -gt 0 ]; then
echo "configure med fast-start tx-interval $lldpmed_fast_start_tx_interval" >> "$LLDPD_CONF"
@@ -175,6 +180,7 @@ write_lldpd_conf()
[ -n "$lldp_platform" ] && echo "configure system platform" "\"$lldp_platform\"" >> "$LLDPD_CONF"
[ -n "$lldp_tx_interval" ] && echo "configure lldp tx-interval $lldp_tx_interval" >> "$LLDPD_CONF"
[ "$lldp_tx_hold" -gt 0 ] && echo "configure lldp tx-hold $lldp_tx_hold" >> "$LLDPD_CONF"
+ [ "$lldp_capability_advertisements" -gt 0 ] && echo "configure lldp capabilities-advertisements" >> "$LLDPD_CONF"
# Since lldpd's sysconfdir is /tmp, we'll symlink /etc/lldpd.d to /tmp/$LLDPD_CONFS_DIR
[ -e "$LLDPD_CONFS_DIR" ] || ln -s /etc/lldpd.d "$LLDPD_CONFS_DIR"
@@ -353,6 +359,7 @@ reload_service() {
$LLDPCLI -u "$LLDPSOCKET" >/dev/null 2>&1 <<-EOF
pause
unconfigure lldp custom-tlv
+ unconfigure lldp capabilities-advertisements
unconfigure system interface pattern
unconfigure system description
unconfigure system hostname