aboutsummaryrefslogtreecommitdiff
path: root/package/network
diff options
context:
space:
mode:
authorStephen Howell <howels@allthatwemight.be>2023-12-17 00:17:14 +0000
committerStijn Tintel <stijn@linux-ipv6.be>2024-02-08 12:35:36 +0200
commit61dbe756d8edc1adcd152920f71d6dce26232662 (patch)
tree3c19514beb766b3db5451fd70b8e2aae65d83d65 /package/network
parentac771313ebedd2c4bfda8adef47650d45d77c32d (diff)
lldpd: allow disabling LLDP protcol
add option to allow LLDP disabling while using other supported protocols Signed-off-by: Stephen Howell <howels@allthatwemight.be>
Diffstat (limited to 'package/network')
-rw-r--r--package/network/services/lldpd/files/lldpd.init14
1 files changed, 14 insertions, 0 deletions
diff --git a/package/network/services/lldpd/files/lldpd.init b/package/network/services/lldpd/files/lldpd.init
index db81f8a9ae..98e7e97193 100644
--- a/package/network/services/lldpd/files/lldpd.init
+++ b/package/network/services/lldpd/files/lldpd.init
@@ -43,6 +43,7 @@ get_config_restart_hash() {
config_get_bool v 'config' 'lldpmed_no_inventory'; append _string "$v" ","
fi
config_get_bool v 'config' 'enable_lldp' 1; append _string "$v" ","
+ config_get_bool v 'config' 'force_lldp'; append _string "$v" ","
config_get_bool v 'config' 'enable_cdp'; append _string "$v" ","
config_get_bool v 'config' 'enable_edp'; append _string "$v" ","
config_get_bool v 'config' 'enable_fdp'; append _string "$v" ","
@@ -131,6 +132,8 @@ write_lldpd_conf()
start_service() {
+ local enable_lldp
+ local force_lldp
local enable_cdp
local enable_fdp
local enable_sonmp
@@ -144,6 +147,8 @@ start_service() {
local filter
config_load 'lldpd'
+ config_get_bool enable_lldp 'config' 'enable_lldp' 1
+ config_get_bool force_lldp 'config' 'force_lldp' 0
config_get_bool enable_cdp 'config' 'enable_cdp' 0
config_get_bool enable_fdp 'config' 'enable_fdp' 0
config_get_bool enable_sonmp 'config' 'enable_sonmp' 0
@@ -168,6 +173,15 @@ start_service() {
procd_set_param command ${LLDPDBIN}
procd_append_param command -d
+ if [ $enable_lldp -gt 0 ]; then
+ if [ $force_lldp -gt 0 ]; then
+ procd_append_param command '-l'
+ fi
+ else
+ # Disable LLDP
+ procd_append_param command '-ll'
+ fi
+
[ $enable_cdp -gt 0 ] && procd_append_param command '-c'
[ $enable_fdp -gt 0 ] && procd_append_param command '-f'
[ $enable_sonmp -gt 0 ] && procd_append_param command '-s'