One immediate symptom is that my weather station is unable to send data to port 2001.
We verify that it is running via:
systemctl status firewalldWe can stop and start it via:
systemctl stop firewalld systemctl start firewalldIndeed, stopping it allows temperature data to be sent from my weather station.
Note that enable/disable will cause it to be started (or not) on every reboot.
firewall-cmd --list-allThis command shows that only these services are enabled:
services: dhcpv6-client mdns sshI can do this to add the port for my weather station:
firewall-cmd --list-ports firewall-cmd --add-port 2001/tcp firewall-cmd --permanent --add-port 2001/tcpThere were no ports listed before I added port 2001. Adding it permanently means it will stick after a reboot.
Indeed, this works and I am getting temperature data.
firewall-cmd --add-service=samba --permanentHowever, this does work:
firewall-cmd --permanent --zone=FedoraWorkstation --add-service=samba firewall-cmd --reload firewall-cmd --list-services dhcpv6-client mdns samba sshSo, I clearly need to learn about these zones. I will "some fine day".
Adventures in Computing / tom@mmto.org