I have a cidr block that I would like to allow 174.192.0.0/10. From only the following tcp/udp ports: 5000-5299 that I want to add to trusted. I am not sure what the proper add would be. I best guess would be the following, could someone please correct my best guess below?
firewall-cmd --permanent --add-service=family="ipv4" source address="174.192.0.0/10" port protocol="tcp" port="5000-5299" accept' firewall-cmd --permanent --add-service=family="ipv4" source address="174.192.0.0/10" port protocol="udp" port="5000-5299" accept' firewall-cmd --permanent --add-service=family="ipv6" source address="174.192.0.0/10" port protocol="tcp" port="5000-5299" accept' firewall-cmd --permanent --add-service=family="ipv6" source address="174.192.0.0/10" port protocol="udp" port="5000-5299" accept'
TIA.