Closed ypopovych closed 3 months ago
I think I found the problem. Podman ethernet interface can have more than one IPv6. One of them will be global, and other are local ones.
So line:
container_ipv6_network="$(ip -o addr show dev eth0 | awk '$3 == "inet6" {print $4}')"
should be updated to:
container_ipv6_network="$(ip -o addr show dev eth0 | awk '$3 == "inet6" && $6 == "global" {print $4}')"
Hey @ypopovych , sorry for the late reply. This looks like an excellent fix!
Would you like to open the PR, or shall I?
Hello, I have strange ipv6 error in podman and container fails to start properly.