Comment on Can't access exposed rootful podman container from outside of host device
fluckx@lemmy.world 1 week ago
Connections timing out have always been a firewall issue for me.
Client sends packet, firewall drops packet, client waits for a reply that’ll never come. Client times out.
I would check firewall logs or temporarily disable it to see if it works without it.
so yeah check the firewall on the server, the client and in between ( if any ). That’s what I would do.
MysteriousSophon21@lemmy.world 1 week ago
100% agree on the firewall being the culprit, i’d check if podman uses different chain names in iptables than docker does - try running
sudo iptables -I INPUT 1 -p tcp --dport 5050 -j ACCEPT
to see if that fixes it.