Page 1 of 1

Unifi Threat Management affecting AD2PI

PostPosted: Tue Aug 03, 2021 5:41 am
by roquej
Unifi Dream Machine Pro Threat Management is affecting my AD2PI. It seems the AD2PI is considered a thread. The result is that the AD2PI goes unstable and must be rebooted every few hours. The AD2PI is connected to Indigo, but even if you reboot the plug-in, it doesn't work. The only thing that solved the issue is rebooting it.

If I disable Threat Management, everything works fine.

Any ideas?

JP

Re: Unifi Threat Management affecting AD2PI

PostPosted: Tue Sep 07, 2021 10:07 am
by mathewss
Yep a new issue I have seen more and more the past year. For the new IoT embedded firmware it has a ACL system to block / allow only specific hosts that needed access to port 10000. On the Pi the next time I make an image I will be adding this script but I will need a WEBUI way to set the allowed addresses :( in this case 192.168.0.100

## This set of commands will setup the firewall to block port 10000 from other hosts not allowed
sudo apt install ufw
sudo ufw enable
sudo ufw allow ssh
sudo ufw allow https
sudo ufw allow from 192.168.0.100 to any port 10000 proto tcp