LLDP Support
Hello,
Is there any plans to add LLDP support to Firewalla so other devices in a network can build a complete topology? Can this be added from the command line and be persistent across upgrades?
Thanks,
-
I used this to fix topology on my unifi network. My steps use Nano but you can adjust as necessary.
Use an SSH Terminal client to access the device then proceed with the instructions
sudo -s
apt-get install nano
mkdir /home/pi/.firewalla/config/post_main.d
nano /home/pi/.firewalla/config/post_main.d/allow_lldp.sh
Paste the following text into nano:
#!/bin/bash
echo 16384 | sudo tee /sys/class/net/br0/bridge/group_fwd_mask > /dev/null
echo 16384 | sudo tee /sys/class/net/br1/bridge/group_fwd_mask > /dev/null
Ctrl-X to start saving
Y to Save modified buffer
Hit enter to save using the file name allow_lldp.sh
Type: chown -R root:root /home/pi/.firewalla/config/post_main.d/
Type: chmod 0755 /home/pi/.firewalla/config/post_main.d/allow_lldp.sh
Type: sudo bash /home/pi/.firewalla/config/post_main.d/allow_lldp.sh
Verify in the Unifi console that the topology updates correctly
Please sign in to leave a comment.
Comments
5 comments