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
Welcome To SNBForums
SNBForums is a community for anyone who wants to learn about or discuss the latest in wireless routers, network storage and the ins and outs of building and maintaining a small network.
If you'd like to post a question, simply register and have at it!
While you're at it, please check out SmallNetBuilder for product reviews and our famous Router Charts, Ranker and plenty more!