Skip to content

Commit

Permalink
update port configurations in lldpd as soon as port created
Browse files Browse the repository at this point in the history
  • Loading branch information
pavel-shirshov committed Oct 31, 2016
1 parent 73cbf6c commit 30438bb
Show file tree
Hide file tree
Showing 3 changed files with 63 additions and 0 deletions.
1 change: 1 addition & 0 deletions dockers/docker-lldp-sv2/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,6 @@ RUN apt-get update && \
rm -rf /deps ~/.cache

COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf
COPY reconfigure.sh /opt/reconfigure.sh

ENTRYPOINT ["/usr/bin/supervisord"]
58 changes: 58 additions & 0 deletions dockers/docker-lldp-sv2/reconfigure.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
#!/bin/bash

set -e

num_of_interfaces=32
if_step=4
last_if_idx=$((num_of_interfaces*if_step - if_step))

function wait_until_if_exists
{
while /bin/true ;
do
if [ -L /sys/class/net/"$if" ];
then
break
fi
sleep 1
done
echo interface "$if" is up
}


function wait_until_if_not_exists
{
while /bin/true ;
do
if [ ! -L /sys/class/net/"$if" ];
then
break
fi
sleep 1
done
echo interface "$if" is down
}


while /bin/true ;
do
# wait until all interfaces are up
echo Wait until all ifaces are up
for i in $(seq 0 $if_step $last_if_idx)
do
if=Ethernet${i}
wait_until_if_exists
done

# apply lldpd configuration
echo apply lldpd configuration
lldpcli -c /etc/lldpd.conf

# wait until all interfaces are down
echo Wait until all ifaces are down
for i in $(seq 0 $if_step $last_if_idx)
do
if=Ethernet${i}
wait_until_if_not_exists
done
done
4 changes: 4 additions & 0 deletions dockers/docker-lldp-sv2/supervisord.conf
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ nodaemon=true
command=/usr/sbin/lldpd -d -I Ethernet*,eth*
priority=100

[program:lldpd-conf-reload]
command=/opt/reconfigure.sh
priority=150

[program:lldp-syncd]
command=/usr/bin/env python2 -m lldp_syncd
priority=200
Expand Down

0 comments on commit 30438bb

Please sign in to comment.