From 249196639ecbb269222bb8c81bc3d70959478322 Mon Sep 17 00:00:00 2001 From: Guohan Lu Date: Wed, 28 Nov 2018 02:08:18 +0000 Subject: [PATCH] [vs]: only send lldp over eth0 (management port) In vs platform, eth[n] where n > 0 is physical port, we should not send lldp over those ports Signed-off-by: Guohan Lu --- dockers/docker-lldp-sv2/supervisord.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockers/docker-lldp-sv2/supervisord.conf b/dockers/docker-lldp-sv2/supervisord.conf index e8022a9a5fa6..5feb3543f1bc 100644 --- a/dockers/docker-lldp-sv2/supervisord.conf +++ b/dockers/docker-lldp-sv2/supervisord.conf @@ -25,7 +25,7 @@ stderr_logfile=syslog # - `-dd` means to stay in foreground, log warnings to console # - `-ddd` means to stay in foreground, log warnings and info to console # - `-dddd` means to stay in foreground, log all to console -command=/usr/sbin/lldpd -d -I Ethernet*,eth* -C eth0 +command=/usr/sbin/lldpd -d -I Ethernet*,eth0 -C eth0 priority=3 autostart=false autorestart=false