this post was submitted on 19 Jun 2024
11 points (100.0% liked)
Linux Gaming
15774 readers
339 users here now
Gaming on the GNU/Linux operating system.
Recommended news sources:
Related chat:
Related Communities:
Please be nice to other members. Anyone not being nice will be banned. Keep it fun, respectful and just be awesome to each other.
founded 4 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Maybe firewalld is getting in the way. You can temporarily disable it:
sudo systemctl stop firewalld
If that doesn’t work, you can see if SELinux is the issue. Temporarily disable:
sudo setenforce 0
Be sure to re-enable SELinux:
sudo setenforce 1
Wouldn't it be better to open specific ports than disabling the entire firewall? Or am i missing something?
Better for testing to disable, then figure out ports and stuff afterward if the disable worked, I assume is the logic
Good point, thanks for clarifying