As far as I know AICloud uses port 445. If you have that enabled, try switching it off and scan again.
IMHO, you need not account for yourself Merlin. You provide a product free of charge and spend about a bazillion hours each week doing it. I am very appreciative of both your product the effort you put forth in production.Asus has been doing some stuff regarding SMB on the AC56 and AC68U in recent versions to resolves performance issues caused by connection tracking overhead. In their latest code they changed the firewall rules a bit, however those new rules broke disk sharing on the LAN when I tested them, so I haven't implemented them yet. I still need to revisit these rules and find a better way to implement them, I just haven't had the time yet.
This is only specific to the AC56 and AC68.
#!/bin/sh
iptables -t filter -D INPUT -p udp --dport 137:139 -j ACCEPT
iptables -t filter -D INPUT -p udp --dport 445 -j ACCEPT
iptables -t filter -D INPUT -p tcp --dport 137:139 -j ACCEPT
iptables -t filter -D INPUT -p tcp --dport 445 -j ACCEPT
iptables -t filter -I INPUT -i br0 -p udp --dport 137:139 -j ACCEPT
iptables -t filter -I INPUT -i br0 -p udp --dport 445 -j ACCEPT
iptables -t filter -I INPUT -i br0 -p tcp --dport 137:139 -j ACCEPT
iptables -t filter -I INPUT -i br0 -p tcp --dport 445 -j ACCEPT
We use essential cookies to make this site work, and optional cookies to enhance your experience.