-
I have rootful container with published port and I can access it from local machine fine but it doesn't work from another machine. From another machine it hangs forever
From same machine where podman container is running works fine
I'm on openSUSE 15.6 with podman |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 5 replies
-
Something doesn't work with container's network because from inside container I can't access internet but I can access host with |
Beta Was this translation helpful? Give feedback.
-
Did you check the firewall? |
Beta Was this translation helpful? Give feedback.
-
It was something really strange. I cleared nft rules with |
Beta Was this translation helpful? Give feedback.
-
This was such a PITA to find out, but basically |
Beta Was this translation helpful? Give feedback.
This was such a PITA to find out, but basically
podman
container was starting beforefirewalld
had started so onlyiptables
was setup but later whenfirewalld
started it switched over tonftables
but those doesn't have rules for container.I fixed this by adding
After=firewalld.service
in container systemd unit and now it always works.