I love chips and salsa - issue being that I’ll house a party sized bag of tortilla chips and a big ol container of salsa in like 2-3 sittings, which I guess is fine… But it feels like that many corn chips ain’t healthy. Main concern is my salt intake.
Was able to get it working with the following
sudo systemctl start roonserver
sudo systemctl enable roonserver
sudo mkdir -p /etc/firewalld/services/
sudo nano /etc/firewalld/services/roonserver.xml
Add the following content to the
roonserver.xml
file:<?xml version=“1.0” encoding=“utf-8”?> <service> <short>Roon Server</short> <description>Roon Server ports</description> <port protocol=“tcp” port=“9100-9200”/> <port protocol=“tcp” port=“9330-9339”/> <port protocol=“tcp” port=“30000-30010”/> <port protocol=“tcp” port=“55000”/> <port protocol=“udp” port=“9003”/> </service>
sudo firewall-cmd --reload
sudo firewall-cmd --zone=public --add-service=roonserver --permanent
sudo firewall-cmd --reload