Setting up a new zone, with a port that has restricted access to an IP address. How does one apply this to more than one IP?
$ firewall-cmd --new-zone=special
$ firewall-cmd --permanent --zone=special --add-rich-rule='
rule family="ipv4"
source address=”123.1.1.1"
port protocol="tcp" port="10050" accept'
Is source address allowed an array of CSV? Is it defined like this?
source address="123.1.1.1","234.1.1.1"
firewall-cmd --zone=special --add-source=231.1.1.1– mcv Dec 06 '16 at 13:48firewall-cmd --reloadperfectly acceptable? – mcv Dec 07 '16 at 00:22