podman: adding IPv6 section to 87-podman-bridge.conflist breaks host's ipv6 network access
Is this a BUG REPORT or FEATURE REQUEST? (leave only one on its own line)
/kind bug
Description
Since I’ve gotten IPv6 connectivity recently set up to my CentOS 7 host, i wanted to start taking advantage and see how well Podman supports IPv6. This is as root (so not rootless).
After adding the relevant IPv6 section to /etc/cni/net.d/87-podman-bridge.conflist per the docs pages, then when starting a container, while a ping running on the host starts responding with ping: sendmsg: Network is unreachable
Steps to reproduce the issue:
-
add a 2nd array to original
/etc/cni/net.d/87-podman-bridge.conflistas.plugins[0].ipam.ranges[1](diff included below) -
starting a ping on host:
ping6 ipv6.google.com, responses start coming in as expected… -
starting a (as root) container:
sudo podman run -it --rm docker.io/library/alpine:3.11 -
see ping starts failing with errors:
ping: sendmsg: Network is unreachable -
additionally, container cannot reach the internet either and the only way to fix host ipv6 connectivity is to
systemctl restart network
Describe the results you received:
a.) the host ipv6 networking is greatly affected (in effect being completely broken), this is really bad as it could cause an outage
b.) the container still has no ipv6 connectivity either
Describe the results you expected:
container should simply be able to reach the ipv6 network and the host ipv6 networking should not be affected at all!
Additional information you deem important (e.g. issue happens only occasionally):
issue always happens
a diff of what the changes i made to 87-podman-bridge.conflist (adding my ipv6 GUA)
--- /var/tmp/orig-87-podman-bridge.conflist 2020-05-07 11:50:15.695848051 +0000
+++ 87-podman-bridge.conflist 2020-05-07 11:53:37.681314127 +0000
@@ -9,13 +9,20 @@
"ipMasq": true,
"ipam": {
"type": "host-local",
- "routes": [{ "dst": "0.0.0.0/0" }],
+ "routes": [{ "dst": "0.0.0.0/0", "dst": "::/0" }],
"ranges": [
[
{
"subnet": "10.88.0.0/16",
"gateway": "10.88.0.1"
}
+ ],
+ [
+ {
+ "subnet": "2a03:8c00:1a:8::/64",
+ "rangeStart": "2a03:8c00:1a:8::100",
+ "rangeEnd": "2a03:8c00:1a:8::200"
+ }
]
]
}
note: this happens even if i don’t update the routes section (though ultimately i’d like my container reachable on the internet).
output of running podman with --log-level=debug
$ sudo podman run --log-level=debug -it --rm docker.io/library/alpine:3.11
DEBU[0000] Found deprecated file /usr/share/containers/libpod.conf, please remove. Use /etc/containers/containers.conf to override defaults.
DEBU[0000] Reading configuration file "/usr/share/containers/libpod.conf"
DEBU[0000] Reading configuration file "/etc/containers/containers.conf"
DEBU[0000] Merged system config "/etc/containers/containers.conf": &{{[] [] container-default [] host [CAP_AUDIT_WRITE CAP_CHOWN CAP_DAC_OVERRIDE CAP_FOWNER CAP_FSETID CAP_KILL CAP_MKNOD CAP_NET_BIND_SERVICE CAP_NET_RAW CAP_SETFCAP CAP_SETGID CAP_SETPCAP CAP_S
ETUID CAP_SYS_CHROOT] [] [nproc=32768:32768] [] [] [] false [PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin] false false false private k8s-file -1 bridge false 2048 private /usr/share/containers/seccomp.json 65536k private private 65536} {
false systemd [PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin] [/usr/libexec/podman/conmon /usr/local/libexec/podman/conmon /usr/local/lib/podman/conmon /usr/bin/conmon /usr/sbin/conmon /usr/local/bin/conmon /usr/local/sbin/conmon /run/curre
nt-system/sw/bin/conmon] ctrl-p,ctrl-q true /var/run/libpod/events/events.log journald [/usr/share/containers/oci/hooks.d] docker:// /pause k8s.gcr.io/pause:3.2 /usr/libexec/podman/catatonit shm false 2048 runc map[crun:[/usr/bin/crun /usr/sbin/crun /usr/loc
al/bin/crun /usr/local/sbin/crun /sbin/crun /bin/crun /run/current-system/sw/bin/crun] kata:[/usr/bin/kata-runtime /usr/sbin/kata-runtime /usr/local/bin/kata-runtime /usr/local/sbin/kata-runtime /sbin/kata-runtime /bin/kata-runtime] kata-fc:[/usr/bin/kata-fc]
kata-qemu:[/usr/bin/kata-qemu] kata-runtime:[/usr/bin/kata-runtime] runc:[/usr/bin/runc /usr/sbin/runc /usr/local/bin/runc /usr/local/sbin/runc /sbin/runc /bin/runc /usr/lib/cri-o-runc/sbin/runc /run/current-system/sw/bin/runc]] missing [] [crun runc] [crun] {
false false false true true true} false 3 /var/lib/containers/storage/libpod 10 /var/run/libpod /var/lib/containers/storage/volumes} {[/usr/libexec/cni /usr/lib/cni /usr/local/lib/cni /opt/cni/bin] podman /etc/cni/net.d/}}
DEBU[0000] Using conmon: "/usr/libexec/podman/conmon"
DEBU[0000] Initializing boltdb state at /var/lib/containers/storage/libpod/bolt_state.db
DEBU[0000] Using graph driver overlay
DEBU[0000] Using graph root /var/lib/containers/storage
DEBU[0000] Using run root /var/run/containers/storage
DEBU[0000] Using static dir /var/lib/containers/storage/libpod
DEBU[0000] Using tmp dir /var/run/libpod
DEBU[0000] Using volume path /var/lib/containers/storage/volumes
DEBU[0000] Set libpod namespace to ""
DEBU[0000] [graphdriver] trying provided driver "overlay"
DEBU[0000] cached value indicated that overlay is supported
DEBU[0000] cached value indicated that metacopy is not being used
DEBU[0000] cached value indicated that native-diff is usable
DEBU[0000] backingFs=extfs, projectQuotaSupported=false, useNativeDiff=true, usingMetacopy=false
DEBU[0000] Initializing event backend journald
WARN[0000] Error initializing configured OCI runtime kata-runtime: no valid executable found for OCI runtime kata-runtime: invalid argument
WARN[0000] Error initializing configured OCI runtime kata-qemu: no valid executable found for OCI runtime kata-qemu: invalid argument
WARN[0000] Error initializing configured OCI runtime kata-fc: no valid executable found for OCI runtime kata-fc: invalid argument
DEBU[0000] using runtime "/usr/bin/runc"
WARN[0000] Error initializing configured OCI runtime crun: no valid executable found for OCI runtime crun: invalid argument
WARN[0000] Error initializing configured OCI runtime kata: no valid executable found for OCI runtime kata: invalid argument
INFO[0000] Found CNI network podman (type=bridge) at /etc/cni/net.d/87-podman-bridge.conflist
WARN[0000] Default CNI network name podman is unchangeable
DEBU[0000] parsed reference into "[overlay@/var/lib/containers/storage+/var/run/containers/storage:overlay.mountopt=nodev]docker.io/library/alpine:3.11"
DEBU[0000] parsed reference into "[overlay@/var/lib/containers/storage+/var/run/containers/storage:overlay.mountopt=nodev]@f70734b6a266dcb5f44c383274821207885b549b75c8e119404917a61335981a"
DEBU[0000] exporting opaque data as blob "sha256:f70734b6a266dcb5f44c383274821207885b549b75c8e119404917a61335981a"
DEBU[0000] Using bridge netmode
DEBU[0000] No hostname set; container's hostname will default to runtime default
DEBU[0000] Loading seccomp profile from "/usr/share/containers/seccomp.json"
DEBU[0000] created OCI spec and options for new container
DEBU[0000] Allocated lock 2 for container f9cbdbede1eccf5eb4092cc4afb8030f6786f4b614c0faada62ef8f0ba2bd217
DEBU[0000] parsed reference into "[overlay@/var/lib/containers/storage+/var/run/containers/storage:overlay.mountopt=nodev]@f70734b6a266dcb5f44c383274821207885b549b75c8e119404917a61335981a"
DEBU[0000] exporting opaque data as blob "sha256:f70734b6a266dcb5f44c383274821207885b549b75c8e119404917a61335981a"
DEBU[0000] created container "f9cbdbede1eccf5eb4092cc4afb8030f6786f4b614c0faada62ef8f0ba2bd217"
DEBU[0000] container "f9cbdbede1eccf5eb4092cc4afb8030f6786f4b614c0faada62ef8f0ba2bd217" has work directory "/var/lib/containers/storage/overlay-containers/f9cbdbede1eccf5eb4092cc4afb8030f6786f4b614c0faada62ef8f0ba2bd217/userdata"
DEBU[0000] container "f9cbdbede1eccf5eb4092cc4afb8030f6786f4b614c0faada62ef8f0ba2bd217" has run directory "/var/run/containers/storage/overlay-containers/f9cbdbede1eccf5eb4092cc4afb8030f6786f4b614c0faada62ef8f0ba2bd217/userdata"
DEBU[0000] New container created "f9cbdbede1eccf5eb4092cc4afb8030f6786f4b614c0faada62ef8f0ba2bd217"
DEBU[0000] container "f9cbdbede1eccf5eb4092cc4afb8030f6786f4b614c0faada62ef8f0ba2bd217" has CgroupParent "machine.slice/libpod-f9cbdbede1eccf5eb4092cc4afb8030f6786f4b614c0faada62ef8f0ba2bd217.scope"
DEBU[0000] Handling terminal attach
DEBU[0000] overlay: mount_data=nodev,lowerdir=/var/lib/containers/storage/overlay/l/NWJTW4RWZL2KWL2W3DRBEJAYS7,upperdir=/var/lib/containers/storage/overlay/8c5a0934b63847336aa0cdc69fe37aad2eb8b373bac7375ca20f766e6352e0d2/diff,workdir=/var/lib/containers/storage/overlay/8c5a0934b63847336aa0cdc69fe37aad2eb8b373bac7375ca20f766e6352e0d2/work
DEBU[0000] mounted container "f9cbdbede1eccf5eb4092cc4afb8030f6786f4b614c0faada62ef8f0ba2bd217" at "/var/lib/containers/storage/overlay/8c5a0934b63847336aa0cdc69fe37aad2eb8b373bac7375ca20f766e6352e0d2/merged"
DEBU[0000] Created root filesystem for container f9cbdbede1eccf5eb4092cc4afb8030f6786f4b614c0faada62ef8f0ba2bd217 at /var/lib/containers/storage/overlay/8c5a0934b63847336aa0cdc69fe37aad2eb8b373bac7375ca20f766e6352e0d2/merged
DEBU[0000] Made network namespace at /var/run/netns/cni-24d1f8fc-6e09-002a-59d9-c83225881d60 for container f9cbdbede1eccf5eb4092cc4afb8030f6786f4b614c0faada62ef8f0ba2bd217
INFO[0000] About to add CNI network lo (type=loopback)
INFO[0000] Got pod network &{Name:happy_sutherland Namespace:happy_sutherland ID:f9cbdbede1eccf5eb4092cc4afb8030f6786f4b614c0faada62ef8f0ba2bd217 NetNS:/var/run/netns/cni-24d1f8fc-6e09-002a-59d9-c83225881d60 Networks:[] RuntimeConfig:map[podman:{IP: MAC: PortMappings:[] Bandwidth:<nil> IpRanges:[]}]}
INFO[0000] About to add CNI network podman (type=bridge)
DEBU[0001] [0] CNI result: &{0.4.0 [{Name:cni-podman0 Mac:ba:04:ac:9b:88:1d Sandbox:} {Name:vethf40dd2e6 Mac:fe:b5:65:09:90:a5 Sandbox:} {Name:eth0 Mac:ae:f7:f6:50:38:fb Sandbox:/var/run/netns/cni-24d1f8fc-6e09-002a-59d9-c83225881d60}] [{Version:4 Interface:0xc000163de8 Address:{IP:10.88.0.57 Mask:ffff0000} Gateway:10.88.0.1} {Version:6 Interface:0xc000163fa0 Address:{IP:2a03:8c00:1a:8::106 Mask:ffffffffffffffff0000000000000000} Gateway:2a03:8c00:1a:8::1}] [{Dst:{IP::: Mask:00000000000000000000000000000000} GW:<nil>}] {[] [] []}}
DEBU[0001] /etc/system-fips does not exist on host, not mounting FIPS mode secret
DEBU[0001] Setting CGroups for container f9cbdbede1eccf5eb4092cc4afb8030f6786f4b614c0faada62ef8f0ba2bd217 to machine.slice:libpod:f9cbdbede1eccf5eb4092cc4afb8030f6786f4b614c0faada62ef8f0ba2bd217
DEBU[0001] reading hooks from /usr/share/containers/oci/hooks.d
DEBU[0001] Created OCI spec for container f9cbdbede1eccf5eb4092cc4afb8030f6786f4b614c0faada62ef8f0ba2bd217 at /var/lib/containers/storage/overlay-containers/f9cbdbede1eccf5eb4092cc4afb8030f6786f4b614c0faada62ef8f0ba2bd217/userdata/config.json
DEBU[0001] /usr/libexec/podman/conmon messages will be logged to syslog
DEBU[0001] running conmon: /usr/libexec/podman/conmon args="[--api-version 1 -s -c f9cbdbede1eccf5eb4092cc4afb8030f6786f4b614c0faada62ef8f0ba2bd217 -u f9cbdbede1eccf5eb4092cc4afb8030f6786f4b614c0faada62ef8f0ba2bd217 -r /usr/bin/runc -b /var/lib/containers/storage/overlay-containers/f9cbdbede1eccf5eb4092cc4afb8030f6786f4b614c0faada62ef8f0ba2bd217/userdata -p /var/run/containers/storage/overlay-containers/f9cbdbede1eccf5eb4092cc4afb8030f6786f4b614c0faada62ef8f0ba2bd217/userdata/pidfile -l k8s-file:/var/lib/containers/storage/overlay-containers/f9cbdbede1eccf5eb4092cc4afb8030f6786f4b614c0faada62ef8f0ba2bd217/userdata/ctr.log --exit-dir /var/run/libpod/exits --socket-dir-path /var/run/libpod/socket --log-level debug --syslog -t --conmon-pidfile /var/run/containers/storage/overlay-containers/f9cbdbede1eccf5eb4092cc4afb8030f6786f4b614c0faada62ef8f0ba2bd217/userdata/conmon.pid --exit-command /usr/bin/podman --exit-command-arg --root --exit-command-arg /var/lib/containers/storage --exit-command-arg --runroot --exit-command-arg /var/run/containers/storage --exit-command-arg --log-level --exit-command-arg debug --exit-command-arg --cgroup-manager --exit-command-arg systemd --exit-command-arg --tmpdir --exit-command-arg /var/run/libpod --exit-command-arg --runtime --exit-command-arg runc --exit-command-arg --storage-driver --exit-command-arg overlay --exit-command-arg --storage-opt --exit-command-arg overlay.mountopt=nodev --exit-command-arg --events-backend --exit-command-arg journald --exit-command-arg container --exit-command-arg cleanup --exit-command-arg --rm --exit-command-arg f9cbdbede1eccf5eb4092cc4afb8030f6786f4b614c0faada62ef8f0ba2bd217]"
INFO[0001] Running conmon under slice machine.slice and unitName libpod-conmon-f9cbdbede1eccf5eb4092cc4afb8030f6786f4b614c0faada62ef8f0ba2bd217.scope
DEBU[0002] Received: 16856
INFO[0002] Got Conmon PID as 16844
DEBU[0002] Created container f9cbdbede1eccf5eb4092cc4afb8030f6786f4b614c0faada62ef8f0ba2bd217 in OCI runtime
DEBU[0002] Attaching to container f9cbdbede1eccf5eb4092cc4afb8030f6786f4b614c0faada62ef8f0ba2bd217
DEBU[0002] connecting to socket /var/run/libpod/socket/f9cbdbede1eccf5eb4092cc4afb8030f6786f4b614c0faada62ef8f0ba2bd217/attach
DEBU[0002] Starting container f9cbdbede1eccf5eb4092cc4afb8030f6786f4b614c0faada62ef8f0ba2bd217 with command [/bin/sh]
DEBU[0002] Received a resize event: {Width:260 Height:58}
DEBU[0002] Started container f9cbdbede1eccf5eb4092cc4afb8030f6786f4b614c0faada62ef8f0ba2bd217
/ # DEBU[0002] Enabling signal proxying
here are some log entries from /var/log/messages when starting the container
May 7 12:05:02 shell podman: 2020-05-07 12:05:02.551688071 +0000 UTC m=+0.201037333 container create f9cbdbede1eccf5eb4092cc4afb8030f6786f4b614c0faada62ef8f0ba2bd217 (image=docker.io/library/alpine:3.11, name=happy_sutherland)
May 7 12:05:02 shell kernel: IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
May 7 12:05:02 shell kernel: IPv6: ADDRCONF(NETDEV_UP): vethf40dd2e6: link is not ready
May 7 12:05:02 shell kernel: IPv6: ADDRCONF(NETDEV_CHANGE): vethf40dd2e6: link becomes ready
May 7 12:05:02 shell kernel: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
May 7 12:05:02 shell kernel: cni-podman0: port 1(vethf40dd2e6) entered blocking state
May 7 12:05:02 shell kernel: cni-podman0: port 1(vethf40dd2e6) entered disabled state
May 7 12:05:02 shell kernel: device vethf40dd2e6 entered promiscuous mode
May 7 12:05:02 shell kernel: cni-podman0: port 1(vethf40dd2e6) entered blocking state
May 7 12:05:02 shell kernel: cni-podman0: port 1(vethf40dd2e6) entered forwarding state
May 7 12:05:04 shell systemd: Started libpod-conmon-f9cbdbede1eccf5eb4092cc4afb8030f6786f4b614c0faada62ef8f0ba2bd217.scope.
May 7 12:05:04 shell conmon: conmon f9cbdbede1eccf5eb409 <ninfo>: addr{sun_family=AF_UNIX, sun_path=/tmp/conmon-term.1463J0}
May 7 12:05:04 shell conmon: conmon f9cbdbede1eccf5eb409 <ninfo>: attach sock path: /var/run/libpod/socket/f9cbdbede1eccf5eb4092cc4afb8030f6786f4b614c0faada62ef8f0ba2bd217/attach
May 7 12:05:04 shell conmon: conmon f9cbdbede1eccf5eb409 <ninfo>: addr{sun_family=AF_UNIX, sun_path=/var/run/libpod/socket/f9cbdbede1eccf5eb4092cc4afb8030f6786f4b614c0faada62ef8f0ba2bd217/attach}
May 7 12:05:04 shell conmon: conmon f9cbdbede1eccf5eb409 <ninfo>: terminal_ctrl_fd: 13
May 7 12:05:04 shell conmon: conmon f9cbdbede1eccf5eb409 <ninfo>: winsz read side: 15, winsz write side: 15
May 7 12:05:04 shell conmon: conmon f9cbdbede1eccf5eb409 <ninfo>: about to accept from console_socket_fd: 9
May 7 12:05:04 shell conmon: conmon f9cbdbede1eccf5eb409 <ninfo>: about to recvfd from connfd: 11
May 7 12:05:04 shell systemd: Started libcontainer container f9cbdbede1eccf5eb4092cc4afb8030f6786f4b614c0faada62ef8f0ba2bd217.
May 7 12:05:04 shell kernel: IN=eth0 OUT= MAC=52:54:00:e9:6b:f1:00:1f:ca:b2:ea:40:08:00 SRC=94.102.56.181 DST=93.189.2.51 LEN=40 TOS=0x00 PREC=0x00 TTL=247 ID=24778 PROTO=TCP SPT=58913 DPT=5157 WINDOW=1024 RES=0x00 SYN URGP=0
May 7 12:05:04 shell conmon: conmon f9cbdbede1eccf5eb409 <ninfo>: console = {.name = '/dev/ptmxG?^ '; .fd = 9}
May 7 12:05:04 shell conmon: conmon f9cbdbede1eccf5eb409 <ndebug>: container PID: 16856
May 7 12:05:04 shell podman: 2020-05-07 12:05:04.753350082 +0000 UTC m=+2.402699389 container init f9cbdbede1eccf5eb4092cc4afb8030f6786f4b614c0faada62ef8f0ba2bd217 (image=docker.io/library/alpine:3.11, name=happy_sutherland)
May 7 12:05:04 shell conmon: conmon f9cbdbede1eccf5eb409 <ninfo>: Accepted connection 10
May 7 12:05:04 shell conmon: conmon f9cbdbede1eccf5eb409 <ninfo>: Got ctl message: 1 58 260#012 on fd 13
May 7 12:05:04 shell conmon: conmon f9cbdbede1eccf5eb409 <ninfo>: Message type: 1
May 7 12:05:04 shell conmon: conmon f9cbdbede1eccf5eb409 <ninfo>: Got ctl message: 58 260#012 on fd 15
May 7 12:05:04 shell conmon: conmon f9cbdbede1eccf5eb409 <ninfo>: Height: 58, Width: 260
May 7 12:05:04 shell podman: 2020-05-07 12:05:04.781728951 +0000 UTC m=+2.431078254 container start f9cbdbede1eccf5eb4092cc4afb8030f6786f4b614c0faada62ef8f0ba2bd217 (image=docker.io/library/alpine:3.11, name=happy_sutherland)
May 7 12:05:04 shell podman: 2020-05-07 12:05:04.782121696 +0000 UTC m=+2.431471037 container attach f9cbdbede1eccf5eb4092cc4afb8030f6786f4b614c0faada62ef8f0ba2bd217 (image=docker.io/library/alpine:3.11, name=happy_sutherland)
additionally, this is the output of running `ip monitor` that shows all network related changes
fe80::21f:caff:feb2:ea40 dev eth0 lladdr 00:1f:ca:b2:ea:40 router REACHABLE
lladdr ba:04:ac:9b:88:1d PERMANENT
43: cni-podman0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default
link/ether ba:04:ac:9b:88:1d brd ff:ff:ff:ff:ff:ff
43: cni-podman0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UNKNOWN group default
link/ether ba:04:ac:9b:88:1d brd ff:ff:ff:ff:ff:ff
ff00::/8 dev cni-podman0 table local metric 256 pref medium
fe80::/64 dev cni-podman0 proto kernel metric 256 pref medium
nsid 0 (iproute2 netns name: cni-24d1f8fc-6e09-002a-59d9-c83225881d60)
44: vethf40dd2e6@if3: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default
link/ether fe:b5:65:09:90:a5 brd ff:ff:ff:ff:ff:ff link-netnsid 0
44: vethf40dd2e6@if3: <NO-CARRIER,BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state LOWERLAYERDOWN group default
link/ether fe:b5:65:09:90:a5 brd ff:ff:ff:ff:ff:ff link-netnsid 0
ff00::/8 dev vethf40dd2e6 table local metric 256 pref medium
fe80::/64 dev vethf40dd2e6 proto kernel metric 256 pref medium
44: vethf40dd2e6@if3: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default
link/ether fe:b5:65:09:90:a5 brd ff:ff:ff:ff:ff:ff link-netnsid 0
44: vethf40dd2e6@if3: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master cni-podman0 state UP group default
link/ether fe:b5:65:09:90:a5 brd ff:ff:ff:ff:ff:ff link-netnsid 0
44: vethf40dd2e6@if3: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master cni-podman0 state UP group default
link/ether fe:b5:65:09:90:a5 brd ff:ff:ff:ff:ff:ff link-netnsid 0
43: cni-podman0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UNKNOWN group default
link/ether ba:04:ac:9b:88:1d brd ff:ff:ff:ff:ff:ff
dev vethf40dd2e6 lladdr fe:b5:65:09:90:a5 PERMANENT
dev vethf40dd2e6 lladdr fe:b5:65:09:90:a5 PERMANENT
Deleted dev cni-podman0 lladdr ba:04:ac:9b:88:1d PERMANENT
44: vethf40dd2e6@eth1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master cni-podman0 state UP
link/ether fe:b5:65:09:90:a5
44: vethf40dd2e6@eth1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master cni-podman0 state UP
link/ether fe:b5:65:09:90:a5
44: vethf40dd2e6@eth1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master cni-podman0 state UP
link/ether fe:b5:65:09:90:a5
43: cni-podman0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UNKNOWN group default
link/ether fe:b5:65:09:90:a5 brd ff:ff:ff:ff:ff:ff
Deleted ff02::16 dev cni-podman0 lladdr 33:33:00:00:00:16 NOARP
44: vethf40dd2e6@eth1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master cni-podman0 state UP
link/ether fe:b5:65:09:90:a5
dev vethf40dd2e6 lladdr ae:f7:f6:50:38:fb REACHABLE
43: cni-podman0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default
link/ether fe:b5:65:09:90:a5 brd ff:ff:ff:ff:ff:ff
43: cni-podman0 inet 10.88.0.1/16 brd 10.88.255.255 scope global cni-podman0
valid_lft forever preferred_lft forever
local 10.88.0.1 dev cni-podman0 table local proto kernel scope host src 10.88.0.1
broadcast 10.88.255.255 dev cni-podman0 table local proto kernel scope link src 10.88.0.1
10.88.0.0/16 dev cni-podman0 proto kernel scope link src 10.88.0.1
broadcast 10.88.0.0 dev cni-podman0 table local proto kernel scope link src 10.88.0.1
dev cni-podman0 lladdr ba:04:ac:9b:88:1d PERMANENT
dev cni-podman0 lladdr ba:04:ac:9b:88:1d PERMANENT
43: cni-podman0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default
link/ether ba:04:ac:9b:88:1d brd ff:ff:ff:ff:ff:ff
Deleted ff02::16 dev cni-podman0 lladdr 33:33:00:00:00:16 NOARP
Deleted ff02::1:ff9b:881d dev cni-podman0 lladdr 33:33:ff:9b:88:1d NOARP
ipv4 all forwarding on
ipv4 default forwarding on
ipv4 dev lo forwarding on
ipv4 dev eth0 forwarding on
ipv4 dev eth1 forwarding on
ipv4 dev dns0 forwarding on
ipv4 dev cni-podman0 forwarding on
ipv4 dev vethf40dd2e6 forwarding on
2a03:8c00:1a:8::/64 dev cni-podman0 proto kernel metric 256 pref medium
43: cni-podman0 inet6 2a03:8c00:1a:8::1/64 scope global tentative
valid_lft forever preferred_lft forever
43: cni-podman0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default
link/ether ba:04:ac:9b:88:1d brd ff:ff:ff:ff:ff:ff
ipv6 dev lo forwarding on
local 2a03:8c00:1a:8:: dev lo table local proto unspec metric 0 pref medium
local fe80:: dev lo table local proto unspec metric 0 pref medium
ipv6 dev eth0 forwarding on
local fe80:: dev lo table local proto unspec metric 0 pref medium
ipv6 dev eth1 forwarding on
ipv6 dev cni-podman0 forwarding on
ipv6 dev vethf40dd2e6 forwarding on
ipv6 all forwarding on
Deleted default via fe80::21f:caff:feb2:ea40 dev eth0 proto ra metric 1024 expires 1630sec hoplimit 64 pref medium
44: vethf40dd2e6 inet6 fe80::fcb5:65ff:fe09:90a5/64 scope link
valid_lft forever preferred_lft forever
local fe80::fcb5:65ff:fe09:90a5 dev lo table local proto unspec metric 0 pref medium
local fe80:: dev lo table local proto unspec metric 0 pref medium
43: cni-podman0 inet6 fe80::b804:acff:fe9b:881d/64 scope link
valid_lft forever preferred_lft forever
local fe80::b804:acff:fe9b:881d dev lo table local proto unspec metric 0 pref medium
local fe80:: dev lo table local proto unspec metric 0 pref medium
43: cni-podman0 inet6 2a03:8c00:1a:8::1/64 scope global
valid_lft forever preferred_lft forever
local 2a03:8c00:1a:8::1 dev lo table local proto unspec metric 0 pref medium
local 2a03:8c00:1a:8:: dev lo table local proto unspec metric 0 pref medium
for the heck of it, the above three interlaced along with a flood ping (interval-time=10ms) at my gateway, to indicate exactly _when_ the ipv6 functionality on the host breaks
$ sudo tail -f /var/log/messages & sudo ip monitor & sudo ping6 -i 0.01 2a03:8c00:1a:6::1 & sleep 0.5 && sudo podman run --log-level=debug -d docker.io/library/alpine:3.11 && sudo pkill -9 ping6
[1] 20237
[2] 20238
[3] 20239
PING 2a03:8c00:1a:6::1(2a03:8c00:1a:6::1) 56 data bytes
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=1 ttl=64 time=0.675 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=2 ttl=64 time=0.359 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=3 ttl=64 time=0.448 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=4 ttl=64 time=0.517 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=5 ttl=64 time=0.877 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=6 ttl=64 time=0.434 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=7 ttl=64 time=0.465 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=8 ttl=64 time=0.515 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=9 ttl=64 time=0.640 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=10 ttl=64 time=0.411 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=11 ttl=64 time=2.59 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=12 ttl=64 time=0.416 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=13 ttl=64 time=0.405 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=14 ttl=64 time=0.966 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=15 ttl=64 time=0.540 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=16 ttl=64 time=0.607 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=17 ttl=64 time=0.532 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=18 ttl=64 time=0.544 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=19 ttl=64 time=0.510 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=20 ttl=64 time=0.538 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=21 ttl=64 time=0.576 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=22 ttl=64 time=0.560 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=23 ttl=64 time=0.547 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=24 ttl=64 time=0.546 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=25 ttl=64 time=0.447 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=26 ttl=64 time=0.493 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=27 ttl=64 time=0.553 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=28 ttl=64 time=0.520 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=29 ttl=64 time=0.647 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=30 ttl=64 time=0.681 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=31 ttl=64 time=0.650 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=32 ttl=64 time=0.620 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=33 ttl=64 time=0.641 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=34 ttl=64 time=0.582 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=35 ttl=64 time=0.498 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=36 ttl=64 time=0.634 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=37 ttl=64 time=0.630 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=38 ttl=64 time=0.651 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=39 ttl=64 time=0.966 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=40 ttl=64 time=0.551 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=41 ttl=64 time=0.438 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=42 ttl=64 time=0.423 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=43 ttl=64 time=0.498 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=44 ttl=64 time=0.407 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=45 ttl=64 time=0.577 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=46 ttl=64 time=0.517 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=47 ttl=64 time=0.494 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=48 ttl=64 time=0.489 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=49 ttl=64 time=0.432 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=50 ttl=64 time=0.377 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=51 ttl=64 time=0.459 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=52 ttl=64 time=0.599 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=53 ttl=64 time=0.842 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=54 ttl=64 time=0.512 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=55 ttl=64 time=0.557 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=56 ttl=64 time=0.523 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=57 ttl=64 time=1.94 ms
DEBU[0000] Found deprecated file /usr/share/containers/libpod.conf, please remove. Use /etc/containers/containers.conf to override defaults.
DEBU[0000] Reading configuration file "/usr/share/containers/libpod.conf"
DEBU[0000] Reading configuration file "/etc/containers/containers.conf"
DEBU[0000] Merged system config "/etc/containers/containers.conf": &{{[] [] container-default [] host [CAP_AUDIT_WRITE CAP_CHOWN CAP_DAC_OVERRIDE CAP_FOWNER CAP_FSETID CAP_KILL CAP_MKNOD CAP_NET_BIND_SERVICE CAP_NET_RAW CAP_SETFCAP CAP_SETGID CAP_SETPCAP CAP_SETUID CAP_SYS_CHROOT] [] [nproc=32768:32768] [] [] [] false [PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin] false false false private k8s-file -1 bridge false 2048 private /usr/share/containers/seccomp.json 65536k private private 65536} {false systemd [PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin] [/usr/libexec/podman/conmon /usr/local/libexec/podman/conmon /usr/local/lib/podman/conmon /usr/bin/conmon /usr/sbin/conmon /usr/local/bin/conmon /usr/local/sbin/conmon /run/current-system/sw/bin/conmon] ctrl-p,ctrl-q true /var/run/libpod/events/events.log journald [/usr/share/containers/oci/hooks.d] docker:// /pause k8s.gcr.io/pause:3.2 /usr/libexec/podman/catatonit shm false 2048 runc map[crun:[/usr/bin/crun /usr/sbin/crun /usr/local/bin/crun /usr/local/sbin/crun /sbin/crun /bin/crun /run/current-system/sw/bin/crun] kata:[/usr/bin/kata-runtime /usr/sbin/kata-runtime /usr/local/bin/kata-runtime /usr/local/sbin/kata-runtime /sbin/kata-runtime /bin/kata-runtime] kata-fc:[/usr/bin/kata-fc] kata-qemu:[/usr/bin/kata-qemu] kata-runtime:[/usr/bin/kata-runtime] runc:[/usr/bin/runc /usr/sbin/runc /usr/local/bin/runc /usr/local/sbin/runc /sbin/runc /bin/runc /usr/lib/cri-o-runc/sbin/runc /run/current-system/sw/bin/runc]] missing [] [crun runc] [crun] {false false false true true true} false 3 /var/lib/containers/storage/libpod 10 /var/run/libpod /var/lib/containers/storage/volumes} {[/usr/libexec/cni /usr/lib/cni /usr/local/lib/cni /opt/cni/bin] podman /etc/cni/net.d/}}
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=58 ttl=64 time=0.637 ms
DEBU[0000] Using conmon: "/usr/libexec/podman/conmon"
DEBU[0000] Initializing boltdb state at /var/lib/containers/storage/libpod/bolt_state.db
DEBU[0000] Using graph driver overlay
DEBU[0000] Using graph root /var/lib/containers/storage
DEBU[0000] Using run root /var/run/containers/storage
DEBU[0000] Using static dir /var/lib/containers/storage/libpod
DEBU[0000] Using tmp dir /var/run/libpod
DEBU[0000] Using volume path /var/lib/containers/storage/volumes
DEBU[0000] Set libpod namespace to ""
DEBU[0000] [graphdriver] trying provided driver "overlay"
DEBU[0000] cached value indicated that overlay is supported
DEBU[0000] cached value indicated that metacopy is not being used
DEBU[0000] cached value indicated that native-diff is usable
DEBU[0000] backingFs=extfs, projectQuotaSupported=false, useNativeDiff=true, usingMetacopy=false
DEBU[0000] Initializing event backend journald
WARN[0000] Error initializing configured OCI runtime crun: no valid executable found for OCI runtime crun: invalid argument
WARN[0000] Error initializing configured OCI runtime kata: no valid executable found for OCI runtime kata: invalid argument
WARN[0000] Error initializing configured OCI runtime kata-runtime: no valid executable found for OCI runtime kata-runtime: invalid argument
WARN[0000] Error initializing configured OCI runtime kata-qemu: no valid executable found for OCI runtime kata-qemu: invalid argument
WARN[0000] Error initializing configured OCI runtime kata-fc: no valid executable found for OCI runtime kata-fc: invalid argument
DEBU[0000] using runtime "/usr/bin/runc"
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=59 ttl=64 time=0.472 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=60 ttl=64 time=0.432 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=61 ttl=64 time=0.885 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=62 ttl=64 time=0.422 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=63 ttl=64 time=0.345 ms
INFO[0000] Found CNI network podman (type=bridge) at /etc/cni/net.d/87-podman-bridge.conflist
WARN[0000] Default CNI network name podman is unchangeable
DEBU[0000] parsed reference into "[overlay@/var/lib/containers/storage+/var/run/containers/storage:overlay.mountopt=nodev]docker.io/library/alpine:3.11"
DEBU[0000] parsed reference into "[overlay@/var/lib/containers/storage+/var/run/containers/storage:overlay.mountopt=nodev]@f70734b6a266dcb5f44c383274821207885b549b75c8e119404917a61335981a"
DEBU[0000] exporting opaque data as blob "sha256:f70734b6a266dcb5f44c383274821207885b549b75c8e119404917a61335981a"
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=64 ttl=64 time=0.527 ms
DEBU[0000] Using bridge netmode
DEBU[0000] No hostname set; container's hostname will default to runtime default
DEBU[0000] Loading seccomp profile from "/usr/share/containers/seccomp.json"
DEBU[0000] created OCI spec and options for new container
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=65 ttl=64 time=0.495 ms
DEBU[0000] Allocated lock 3 for container b21c566e466fe717a6579e788048e80c5418fad3e81264a276d7a2e9d8072503
DEBU[0000] parsed reference into "[overlay@/var/lib/containers/storage+/var/run/containers/storage:overlay.mountopt=nodev]@f70734b6a266dcb5f44c383274821207885b549b75c8e119404917a61335981a"
DEBU[0000] exporting opaque data as blob "sha256:f70734b6a266dcb5f44c383274821207885b549b75c8e119404917a61335981a"
DEBU[0000] created container "b21c566e466fe717a6579e788048e80c5418fad3e81264a276d7a2e9d8072503"
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=66 ttl=64 time=1.75 ms
DEBU[0000] container "b21c566e466fe717a6579e788048e80c5418fad3e81264a276d7a2e9d8072503" has work directory "/var/lib/containers/storage/overlay-containers/b21c566e466fe717a6579e788048e80c5418fad3e81264a276d7a2e9d8072503/userdata"
DEBU[0000] container "b21c566e466fe717a6579e788048e80c5418fad3e81264a276d7a2e9d8072503" has run directory "/var/run/containers/storage/overlay-containers/b21c566e466fe717a6579e788048e80c5418fad3e81264a276d7a2e9d8072503/userdata"
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=67 ttl=64 time=0.420 ms
DEBU[0000] New container created "b21c566e466fe717a6579e788048e80c5418fad3e81264a276d7a2e9d8072503"
DEBU[0000] container "b21c566e466fe717a6579e788048e80c5418fad3e81264a276d7a2e9d8072503" has CgroupParent "machine.slice/libpod-b21c566e466fe717a6579e788048e80c5418fad3e81264a276d7a2e9d8072503.scope"
May 7 12:18:33 shell podman: 2020-05-07 12:18:33.648266278 +0000 UTC m=+0.184733739 container create b21c566e466fe717a6579e788048e80c5418fad3e81264a276d7a2e9d8072503 (image=docker.io/library/alpine:3.11, name=quirky_sammet)
DEBU[0000] overlay: mount_data=nodev,lowerdir=/var/lib/containers/storage/overlay/l/NWJTW4RWZL2KWL2W3DRBEJAYS7,upperdir=/var/lib/containers/storage/overlay/e1c605a7219566bf771a1127d2ce2e24f501f0292f2ff692d097c16b91d0a0ad/diff,workdir=/var/lib/containers/storage/overlay/e1c605a7219566bf771a1127d2ce2e24f501f0292f2ff692d097c16b91d0a0ad/work
DEBU[0000] mounted container "b21c566e466fe717a6579e788048e80c5418fad3e81264a276d7a2e9d8072503" at "/var/lib/containers/storage/overlay/e1c605a7219566bf771a1127d2ce2e24f501f0292f2ff692d097c16b91d0a0ad/merged"
DEBU[0000] Created root filesystem for container b21c566e466fe717a6579e788048e80c5418fad3e81264a276d7a2e9d8072503 at /var/lib/containers/storage/overlay/e1c605a7219566bf771a1127d2ce2e24f501f0292f2ff692d097c16b91d0a0ad/merged
DEBU[0000] Made network namespace at /var/run/netns/cni-ca167143-3d9a-09da-3cf4-1107a0e37197 for container b21c566e466fe717a6579e788048e80c5418fad3e81264a276d7a2e9d8072503
INFO[0000] About to add CNI network lo (type=loopback)
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=68 ttl=64 time=0.481 ms
INFO[0000] Got pod network &{Name:quirky_sammet Namespace:quirky_sammet ID:b21c566e466fe717a6579e788048e80c5418fad3e81264a276d7a2e9d8072503 NetNS:/var/run/netns/cni-ca167143-3d9a-09da-3cf4-1107a0e37197 Networks:[] RuntimeConfig:map[podman:{IP: MAC: PortMappings:[] Bandwidth:<nil> IpRanges:[]}]}
INFO[0000] About to add CNI network podman (type=bridge)
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=69 ttl=64 time=0.414 ms
lladdr 6e:eb:22:8b:d1:bc PERMANENT
47: cni-podman0: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default
link/ether 6e:eb:22:8b:d1:bc brd ff:ff:ff:ff:ff:ff
47: cni-podman0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UNKNOWN group default
link/ether 6e:eb:22:8b:d1:bc brd ff:ff:ff:ff:ff:ff
ff00::/8 dev cni-podman0 table local metric 256 pref medium
fe80::/64 dev cni-podman0 proto kernel metric 256 pref medium
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=70 ttl=64 time=0.393 ms
May 7 12:18:33 shell kernel: IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=71 ttl=64 time=0.379 ms
nsid 0 (iproute2 netns name: cni-ca167143-3d9a-09da-3cf4-1107a0e37197)
48: veth20db8f87@if3: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default
link/ether f2:09:58:a5:64:5a brd ff:ff:ff:ff:ff:ff link-netnsid 0
48: veth20db8f87@if3: <NO-CARRIER,BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state LOWERLAYERDOWN group default
link/ether f2:09:58:a5:64:5a brd ff:ff:ff:ff:ff:ff link-netnsid 0
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=72 ttl=64 time=0.464 ms
ff00::/8 dev veth20db8f87 table local metric 256 pref medium
fe80::/64 dev veth20db8f87 proto kernel metric 256 pref medium
48: veth20db8f87@if3: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default
link/ether f2:09:58:a5:64:5a brd ff:ff:ff:ff:ff:ff link-netnsid 0
May 7 12:18:33 shell kernel: IPv6: ADDRCONF(NETDEV_UP): veth20db8f87: link is not ready
May 7 12:18:33 shell kernel: IPv6: ADDRCONF(NETDEV_CHANGE): veth20db8f87: link becomes ready
May 7 12:18:33 shell kernel: IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
May 7 12:18:33 shell kernel: cni-podman0: port 1(veth20db8f87) entered blocking state
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=73 ttl=64 time=0.498 ms
48: veth20db8f87@if3: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master cni-podman0 state UP group default
link/ether f2:09:58:a5:64:5a brd ff:ff:ff:ff:ff:ff link-netnsid 0
May 7 12:18:33 shell kernel: cni-podman0: port 1(veth20db8f87) entered disabled state
May 7 12:18:33 shell kernel: device veth20db8f87 entered promiscuous mode
48: veth20db8f87@if3: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master cni-podman0 state UP group default
link/ether f2:09:58:a5:64:5a brd ff:ff:ff:ff:ff:ff link-netnsid 0
47: cni-podman0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UNKNOWN group default
link/ether 6e:eb:22:8b:d1:bc brd ff:ff:ff:ff:ff:ff
dev veth20db8f87 lladdr f2:09:58:a5:64:5a PERMANENT
dev veth20db8f87 lladdr f2:09:58:a5:64:5a PERMANENT
Deleted dev cni-podman0 lladdr 6e:eb:22:8b:d1:bc PERMANENT
May 7 12:18:33 shell kernel: cni-podman0: port 1(veth20db8f87) entered blocking state
May 7 12:18:33 shell kernel: cni-podman0: port 1(veth20db8f87) entered forwarding state
48: veth20db8f87@eth1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master cni-podman0 state UP
link/ether f2:09:58:a5:64:5a
48: veth20db8f87@eth1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master cni-podman0 state UP
link/ether f2:09:58:a5:64:5a
48: veth20db8f87@eth1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master cni-podman0 state UP
link/ether f2:09:58:a5:64:5a
47: cni-podman0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UNKNOWN group default
link/ether f2:09:58:a5:64:5a brd ff:ff:ff:ff:ff:ff
Deleted ff02::16 dev cni-podman0 lladdr 33:33:00:00:00:16 NOARP
48: veth20db8f87@eth1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master cni-podman0 state UP
link/ether f2:09:58:a5:64:5a
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=74 ttl=64 time=3.72 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=75 ttl=64 time=0.709 ms
dev veth20db8f87 lladdr 56:74:ec:00:22:d9 REACHABLE
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=76 ttl=64 time=0.599 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=77 ttl=64 time=0.439 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=78 ttl=64 time=0.488 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=79 ttl=64 time=0.949 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=80 ttl=64 time=0.813 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=81 ttl=64 time=0.652 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=82 ttl=64 time=0.623 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=83 ttl=64 time=1.18 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=84 ttl=64 time=1.17 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=85 ttl=64 time=0.694 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=86 ttl=64 time=0.676 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=87 ttl=64 time=0.729 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=88 ttl=64 time=4.00 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=89 ttl=64 time=0.471 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=90 ttl=64 time=0.807 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=91 ttl=64 time=0.444 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=92 ttl=64 time=0.750 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=93 ttl=64 time=0.682 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=94 ttl=64 time=0.656 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=95 ttl=64 time=0.644 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=96 ttl=64 time=0.737 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=97 ttl=64 time=0.544 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=98 ttl=64 time=0.477 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=99 ttl=64 time=0.428 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=100 ttl=64 time=0.537 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=101 ttl=64 time=0.949 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=102 ttl=64 time=0.548 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=103 ttl=64 time=0.511 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=104 ttl=64 time=0.748 ms
fe80::21f:caff:feb2:ea40 dev eth0 lladdr 00:1f:ca:b2:ea:40 router REACHABLE
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=105 ttl=64 time=0.511 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=106 ttl=64 time=2.33 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=107 ttl=64 time=0.583 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=108 ttl=64 time=0.535 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=109 ttl=64 time=0.521 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=110 ttl=64 time=0.514 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=111 ttl=64 time=0.491 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=112 ttl=64 time=0.483 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=113 ttl=64 time=0.579 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=114 ttl=64 time=0.654 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=115 ttl=64 time=0.617 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=116 ttl=64 time=0.507 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=117 ttl=64 time=0.569 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=118 ttl=64 time=0.539 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=119 ttl=64 time=1.02 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=120 ttl=64 time=0.632 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=121 ttl=64 time=0.585 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=122 ttl=64 time=0.538 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=123 ttl=64 time=0.642 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=124 ttl=64 time=0.615 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=125 ttl=64 time=0.506 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=126 ttl=64 time=0.514 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=127 ttl=64 time=0.510 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=128 ttl=64 time=0.483 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=129 ttl=64 time=0.574 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=130 ttl=64 time=0.731 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=131 ttl=64 time=0.610 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=132 ttl=64 time=0.712 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=133 ttl=64 time=0.686 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=134 ttl=64 time=0.695 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=135 ttl=64 time=0.677 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=136 ttl=64 time=0.559 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=137 ttl=64 time=0.524 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=138 ttl=64 time=0.486 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=139 ttl=64 time=0.511 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=140 ttl=64 time=0.509 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=141 ttl=64 time=0.907 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=142 ttl=64 time=0.579 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=143 ttl=64 time=0.618 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=144 ttl=64 time=0.435 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=145 ttl=64 time=0.383 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=146 ttl=64 time=0.383 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=147 ttl=64 time=0.345 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=148 ttl=64 time=0.314 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=149 ttl=64 time=0.362 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=150 ttl=64 time=0.929 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=151 ttl=64 time=0.435 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=152 ttl=64 time=0.424 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=153 ttl=64 time=0.353 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=154 ttl=64 time=0.352 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=155 ttl=64 time=0.387 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=156 ttl=64 time=0.334 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=157 ttl=64 time=0.366 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=158 ttl=64 time=0.384 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=159 ttl=64 time=0.373 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=160 ttl=64 time=0.439 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=161 ttl=64 time=0.436 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=162 ttl=64 time=0.416 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=163 ttl=64 time=0.620 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=164 ttl=64 time=4.30 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=165 ttl=64 time=0.503 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=166 ttl=64 time=0.515 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=167 ttl=64 time=0.487 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=168 ttl=64 time=0.422 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=169 ttl=64 time=0.384 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=170 ttl=64 time=0.380 ms
47: cni-podman0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default
link/ether f2:09:58:a5:64:5a brd ff:ff:ff:ff:ff:ff
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=171 ttl=64 time=0.435 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=172 ttl=64 time=0.382 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=173 ttl=64 time=0.766 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=174 ttl=64 time=0.721 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=175 ttl=64 time=0.700 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=176 ttl=64 time=0.629 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=177 ttl=64 time=0.867 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=178 ttl=64 time=0.738 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=179 ttl=64 time=0.698 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=180 ttl=64 time=0.672 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=181 ttl=64 time=0.638 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=182 ttl=64 time=0.680 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=183 ttl=64 time=0.706 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=184 ttl=64 time=0.550 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=185 ttl=64 time=0.641 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=186 ttl=64 time=0.631 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=187 ttl=64 time=0.527 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=188 ttl=64 time=1.04 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=189 ttl=64 time=0.421 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=190 ttl=64 time=0.436 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=191 ttl=64 time=0.365 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=192 ttl=64 time=0.536 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=193 ttl=64 time=0.427 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=194 ttl=64 time=0.555 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=195 ttl=64 time=0.608 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=196 ttl=64 time=0.494 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=197 ttl=64 time=0.533 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=198 ttl=64 time=0.514 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=199 ttl=64 time=0.502 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=200 ttl=64 time=0.541 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=201 ttl=64 time=0.653 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=202 ttl=64 time=0.548 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=203 ttl=64 time=0.492 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=204 ttl=64 time=0.585 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=205 ttl=64 time=1.40 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=206 ttl=64 time=0.504 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=207 ttl=64 time=0.419 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=208 ttl=64 time=0.450 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=209 ttl=64 time=0.442 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=210 ttl=64 time=0.711 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=211 ttl=64 time=0.481 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=212 ttl=64 time=0.502 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=213 ttl=64 time=0.554 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=214 ttl=64 time=0.424 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=215 ttl=64 time=0.625 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=216 ttl=64 time=0.460 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=217 ttl=64 time=0.975 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=218 ttl=64 time=0.617 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=219 ttl=64 time=0.619 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=220 ttl=64 time=0.732 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=221 ttl=64 time=0.582 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=222 ttl=64 time=0.651 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=223 ttl=64 time=0.729 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=224 ttl=64 time=0.461 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=225 ttl=64 time=0.734 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=226 ttl=64 time=0.698 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=227 ttl=64 time=0.586 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=228 ttl=64 time=0.644 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=229 ttl=64 time=0.672 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=230 ttl=64 time=0.655 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=231 ttl=64 time=1.19 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=232 ttl=64 time=0.650 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=233 ttl=64 time=0.669 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=234 ttl=64 time=0.626 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=235 ttl=64 time=0.679 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=236 ttl=64 time=0.539 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=237 ttl=64 time=0.477 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=238 ttl=64 time=0.462 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=239 ttl=64 time=0.565 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=240 ttl=64 time=0.688 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=241 ttl=64 time=0.593 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=242 ttl=64 time=0.615 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=243 ttl=64 time=0.632 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=244 ttl=64 time=0.718 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=245 ttl=64 time=0.657 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=246 ttl=64 time=0.647 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=247 ttl=64 time=0.630 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=248 ttl=64 time=0.931 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=249 ttl=64 time=0.584 ms
47: cni-podman0 inet6 fe80::6ceb:22ff:fe8b:d1bc/64 scope link
valid_lft forever preferred_lft forever
local fe80::6ceb:22ff:fe8b:d1bc dev lo table local proto unspec metric 0 pref medium
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=250 ttl=64 time=17.6 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=251 ttl=64 time=0.690 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=252 ttl=64 time=0.691 ms
48: veth20db8f87 inet6 fe80::f009:58ff:fea5:645a/64 scope link
valid_lft forever preferred_lft forever
local fe80::f009:58ff:fea5:645a dev lo table local proto unspec metric 0 pref medium
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=253 ttl=64 time=0.687 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=254 ttl=64 time=0.663 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=255 ttl=64 time=0.814 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=256 ttl=64 time=0.776 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=257 ttl=64 time=0.886 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=258 ttl=64 time=0.681 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=259 ttl=64 time=0.972 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=260 ttl=64 time=0.831 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=261 ttl=64 time=0.945 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=262 ttl=64 time=0.639 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=263 ttl=64 time=0.649 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=264 ttl=64 time=0.730 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=265 ttl=64 time=0.839 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=266 ttl=64 time=1.09 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=267 ttl=64 time=0.952 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=268 ttl=64 time=2.16 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=269 ttl=64 time=0.856 ms
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=270 ttl=64 time=0.626 ms
47: cni-podman0 inet 10.88.0.1/16 brd 10.88.255.255 scope global cni-podman0
valid_lft forever preferred_lft forever
local 10.88.0.1 dev cni-podman0 table local proto kernel scope host src 10.88.0.1
broadcast 10.88.255.255 dev cni-podman0 table local proto kernel scope link src 10.88.0.1
10.88.0.0/16 dev cni-podman0 proto kernel scope link src 10.88.0.1
broadcast 10.88.0.0 dev cni-podman0 table local proto kernel scope link src 10.88.0.1
dev cni-podman0 lladdr 6e:eb:22:8b:d1:bc PERMANENT
dev cni-podman0 lladdr 6e:eb:22:8b:d1:bc PERMANENT
47: cni-podman0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default
link/ether 6e:eb:22:8b:d1:bc brd ff:ff:ff:ff:ff:ff
Deleted ff02::1:ff8b:d1bc dev cni-podman0 lladdr 33:33:ff:8b:d1:bc NOARP
Deleted ff02::16 dev cni-podman0 lladdr 33:33:00:00:00:16 NOARP
Deleted ff02::2 dev cni-podman0 lladdr 33:33:00:00:00:02 NOARP
ipv4 all forwarding on
ipv4 default forwarding on
ipv4 dev lo forwarding on
ipv4 dev eth0 forwarding on
ipv4 dev eth1 forwarding on
ipv4 dev dns0 forwarding on
ipv4 dev cni-podman0 forwarding on
ipv4 dev veth20db8f87 forwarding on
2a03:8c00:1a:8::/64 dev cni-podman0 proto kernel metric 256 pref medium
47: cni-podman0 inet6 2a03:8c00:1a:8::1/64 scope global tentative
valid_lft forever preferred_lft forever
47: cni-podman0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default
link/ether 6e:eb:22:8b:d1:bc brd ff:ff:ff:ff:ff:ff
ipv6 dev lo forwarding on
local 2a03:8c00:1a:8:: dev lo table local proto unspec metric 0 pref medium
local fe80:: dev lo table local proto unspec metric 0 pref medium
ipv6 dev eth0 forwarding on
local fe80:: dev lo table local proto unspec metric 0 pref medium
ipv6 dev eth1 forwarding on
local fe80:: dev lo table local proto unspec metric 0 pref medium
ipv6 dev cni-podman0 forwarding on
local fe80:: dev lo table local proto unspec metric 0 pref medium
ipv6 dev veth20db8f87 forwarding on
ipv6 all forwarding on
Deleted default via fe80::21f:caff:feb2:ea40 dev eth0 proto ra metric 1024 expires 1751sec hoplimit 64 pref medium
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=271 ttl=64 time=7.34 ms
ping: sendmsg: Network is unreachable
ping: sendmsg: Network is unreachable
ping: sendmsg: Network is unreachable
ping: sendmsg: Network is unreachable
ping: sendmsg: Network is unreachable
ping: sendmsg: Network is unreachable
DEBU[0002] [0] CNI result: &{0.4.0 [{Name:cni-podman0 Mac:6e:eb:22:8b:d1:bc Sandbox:} {Name:veth20db8f87 Mac:f2:09:58:a5:64:5a Sandbox:} {Name:eth0 Mac:56:74:ec:00:22:d9 Sandbox:/var/run/netns/cni-ca167143-3d9a-09da-3cf4-1107a0e37197}] [{Version:4 Interface:0xc0001eed18 Address:{IP:10.88.0.59 Mask:ffff0000} Gateway:10.88.0.1} {Version:6 Interface:0xc0001eedf0 Address:{IP:2a03:8c00:1a:8::108 Mask:ffffffffffffffff0000000000000000} Gateway:2a03:8c00:1a:8::1}] [{Dst:{IP::: Mask:00000000000000000000000000000000} GW:<nil>}] {[] [] []}}
ping: sendmsg: Network is unreachable
DEBU[0002] /etc/system-fips does not exist on host, not mounting FIPS mode secret
DEBU[0002] Setting CGroups for container b21c566e466fe717a6579e788048e80c5418fad3e81264a276d7a2e9d8072503 to machine.slice:libpod:b21c566e466fe717a6579e788048e80c5418fad3e81264a276d7a2e9d8072503
DEBU[0002] reading hooks from /usr/share/containers/oci/hooks.d
DEBU[0002] Created OCI spec for container b21c566e466fe717a6579e788048e80c5418fad3e81264a276d7a2e9d8072503 at /var/lib/containers/storage/overlay-containers/b21c566e466fe717a6579e788048e80c5418fad3e81264a276d7a2e9d8072503/userdata/config.json
DEBU[0002] /usr/libexec/podman/conmon messages will be logged to syslog
DEBU[0002] running conmon: /usr/libexec/podman/conmon args="[--api-version 1 -s -c b21c566e466fe717a6579e788048e80c5418fad3e81264a276d7a2e9d8072503 -u b21c566e466fe717a6579e788048e80c5418fad3e81264a276d7a2e9d8072503 -r /usr/bin/runc -b /var/lib/containers/storage/overlay-containers/b21c566e466fe717a6579e788048e80c5418fad3e81264a276d7a2e9d8072503/userdata -p /var/run/containers/storage/overlay-containers/b21c566e466fe717a6579e788048e80c5418fad3e81264a276d7a2e9d8072503/userdata/pidfile -l k8s-file:/var/lib/containers/storage/overlay-containers/b21c566e466fe717a6579e788048e80c5418fad3e81264a276d7a2e9d8072503/userdata/ctr.log --exit-dir /var/run/libpod/exits --socket-dir-path /var/run/libpod/socket --log-level debug --syslog --conmon-pidfile /var/run/containers/storage/overlay-containers/b21c566e466fe717a6579e788048e80c5418fad3e81264a276d7a2e9d8072503/userdata/conmon.pid --exit-command /usr/bin/podman --exit-command-arg --root --exit-command-arg /var/lib/containers/storage --exit-command-arg --runroot --exit-command-arg /var/run/containers/storage --exit-command-arg --log-level --exit-command-arg debug --exit-command-arg --cgroup-manager --exit-command-arg systemd --exit-command-arg --tmpdir --exit-command-arg /var/run/libpod --exit-command-arg --runtime --exit-command-arg runc --exit-command-arg --storage-driver --exit-command-arg overlay --exit-command-arg --storage-opt --exit-command-arg overlay.mountopt=nodev --exit-command-arg --events-backend --exit-command-arg journald --exit-command-arg container --exit-command-arg cleanup --exit-command-arg b21c566e466fe717a6579e788048e80c5418fad3e81264a276d7a2e9d8072503]"
INFO[0002] Running conmon under slice machine.slice and unitName libpod-conmon-b21c566e466fe717a6579e788048e80c5418fad3e81264a276d7a2e9d8072503.scope
ping: sendmsg: Network is unreachable
May 7 12:18:35 shell systemd: Started libpod-conmon-b21c566e466fe717a6579e788048e80c5418fad3e81264a276d7a2e9d8072503.scope.
ping: sendmsg: Network is unreachable
May 7 12:18:35 shell conmon: conmon b21c566e466fe717a657 <ninfo>: attach sock path: /var/run/libpod/socket/b21c566e466fe717a6579e788048e80c5418fad3e81264a276d7a2e9d8072503/attach
May 7 12:18:35 shell conmon: conmon b21c566e466fe717a657 <ninfo>: addr{sun_family=AF_UNIX, sun_path=/var/run/libpod/socket/b21c566e466fe717a6579e788048e80c5418fad3e81264a276d7a2e9d8072503/attach}
May 7 12:18:35 shell conmon: conmon b21c566e466fe717a657 <ninfo>: terminal_ctrl_fd: 14
May 7 12:18:35 shell conmon: conmon b21c566e466fe717a657 <ninfo>: winsz read side: 16, winsz write side: 16
ping: sendmsg: Network is unreachable
ping: sendmsg: Network is unreachable
ping: sendmsg: Network is unreachable
May 7 12:18:35 shell systemd: Started libcontainer container b21c566e466fe717a6579e788048e80c5418fad3e81264a276d7a2e9d8072503.
ping: sendmsg: Network is unreachable
ping: sendmsg: Network is unreachable
ping: sendmsg: Network is unreachable
ping: sendmsg: Network is unreachable
ping: sendmsg: Network is unreachable
ping: sendmsg: Network is unreachable
ping: sendmsg: Network is unreachable
ping: sendmsg: Network is unreachable
ping: sendmsg: Network is unreachable
ping: sendmsg: Network is unreachable
ping: sendmsg: Network is unreachable
ping: sendmsg: Network is unreachable
ping: sendmsg: Network is unreachable
ping: sendmsg: Network is unreachable
ping: sendmsg: Network is unreachable
ping: sendmsg: Network is unreachable
ping: sendmsg: Network is unreachable
ping: sendmsg: Network is unreachable
ping: sendmsg: Network is unreachable
ping: sendmsg: Network is unreachable
ping: sendmsg: Network is unreachable
ping: sendmsg: Network is unreachable
ping: sendmsg: Network is unreachable
DEBU[0002] Received: 20389
INFO[0002] Got Conmon PID as 20377
DEBU[0002] Created container b21c566e466fe717a6579e788048e80c5418fad3e81264a276d7a2e9d8072503 in OCI runtime
May 7 12:18:36 shell conmon: conmon b21c566e466fe717a657 <ndebug>: container PID: 20389
DEBU[0002] Starting container b21c566e466fe717a6579e788048e80c5418fad3e81264a276d7a2e9d8072503 with command [/bin/sh]
May 7 12:18:36 shell podman: 2020-05-07 12:18:36.370532323 +0000 UTC m=+2.906999784 container init b21c566e466fe717a6579e788048e80c5418fad3e81264a276d7a2e9d8072503 (image=docker.io/library/alpine:3.11, name=quirky_sammet)
ping: sendmsg: Network is unreachable
DEBU[0002] Started container b21c566e466fe717a6579e788048e80c5418fad3e81264a276d7a2e9d8072503
b21c566e466fe717a6579e788048e80c5418fad3e81264a276d7a2e9d8072503
May 7 12:18:36 shell podman: 2020-05-07 12:18:36.392082603 +0000 UTC m=+2.928550046 container start b21c566e466fe717a6579e788048e80c5418fad3e81264a276d7a2e9d8072503 (image=docker.io/library/alpine:3.11, name=quirky_sammet)
ping: sendmsg: Network is unreachable
ping: sendmsg: Network is unreachable
[3]+ Killed sudo ping6 -i 0.01 2a03:8c00:1a:6::1
May 7 12:18:36 shell podman: 2020-05-07 12:18:36.522226644 +0000 UTC m=+0.107800307 container died b21c566e466fe717a6579e788048e80c5418fad3e81264a276d7a2e9d8072503 (image=docker.io/library/alpine:3.11, name=quirky_sammet)
48: veth20db8f87@NONE: <BROADCAST,MULTICAST> mtu 1500 qdisc noqueue master cni-podman0 state DOWN group default
link/ether f2:09:58:a5:64:5a brd ff:ff:ff:ff:ff:ff
Deleted ff02::1:ffa5:645a dev veth20db8f87 lladdr 33:33:ff:a5:64:5a NOARP
Deleted ff02::16 dev veth20db8f87 lladdr 33:33:00:00:00:16 NOARP
Deleted ff02::2 dev veth20db8f87 lladdr 33:33:00:00:00:02 NOARP
Deleted fe80::/64 dev veth20db8f87 proto kernel metric 256 pref medium
Deleted ff00::/8 dev veth20db8f87 table local metric 256 pref medium
Deleted 48: veth20db8f87 inet6 fe80::f009:58ff:fea5:645a/64 scope link
valid_lft forever preferred_lft forever
Deleted local fe80:: dev lo table local proto unspec metric 0 pref medium
Deleted local fe80::f009:58ff:fea5:645a dev lo table local proto unspec metric 0 pref medium
48: veth20db8f87@NONE: <BROADCAST,MULTICAST> mtu 1500 master cni-podman0 state DOWN
link/ether f2:09:58:a5:64:5a
Deleted dev veth20db8f87 lladdr 56:74:ec:00:22:d9 REACHABLE
48: veth20db8f87@NONE: <BROADCAST,MULTICAST> mtu 1500 master cni-podman0 state DOWN
link/ether f2:09:58:a5:64:5a
May 7 12:18:36 shell kernel: cni-podman0: port 1(veth20db8f87) entered disabled state
48: veth20db8f87@NONE: <BROADCAST,MULTICAST> mtu 1500 master cni-podman0 state DOWN
link/ether f2:09:58:a5:64:5a
Deleted 48: veth20db8f87@NONE: <BROADCAST,MULTICAST> mtu 1500 master cni-podman0 state DOWN
link/ether f2:09:58:a5:64:5a
May 7 12:18:36 shell kernel: device veth20db8f87 left promiscuous mode
May 7 12:18:36 shell kernel: cni-podman0: port 1(veth20db8f87) entered disabled state
Deleted dev if48 lladdr f2:09:58:a5:64:5a PERMANENT
Deleted dev if48 lladdr f2:09:58:a5:64:5a PERMANENT
47: cni-podman0: <BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state UP group default
link/ether 6e:eb:22:8b:d1:bc brd ff:ff:ff:ff:ff:ff
Deleted 48: veth20db8f87@NONE: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default
link/ether f2:09:58:a5:64:5a brd ff:ff:ff:ff:ff:ff
47: cni-podman0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default
link/ether 6e:eb:22:8b:d1:bc brd ff:ff:ff:ff:ff:ff
Deleted nsid 0 (iproute2 netns name: cni-ca167143-3d9a-09da-3cf4-1107a0e37197)
May 7 12:18:36 shell podman: 2020-05-07 12:18:36.750932148 +0000 UTC m=+0.336505730 container cleanup b21c566e466fe717a6579e788048e80c5418fad3e81264a276d7a2e9d8072503 (image=docker.io/library/alpine:3.11, name=quirky_sammet)
47: cni-podman0 inet6 2a03:8c00:1a:8::1/64 scope global
valid_lft forever preferred_lft forever
local 2a03:8c00:1a:8::1 dev lo table local proto unspec metric 0 pref medium
local 2a03:8c00:1a:8:: dev lo table local proto unspec metric 0 pref medium
$ sudo pkill -15 'ip'
[2]+ Terminated sudo ip monitor
$ sudo pkill -15 tail
[1]+ Terminated sudo tail -f /var/log/messages
per the above, the part that look of interest to me are when the actual pinging starts failing:
[...]
ipv6 dev veth20db8f87 forwarding on
ipv6 all forwarding on
Deleted default via fe80::21f:caff:feb2:ea40 dev eth0 proto ra metric 1024 expires 1751sec hoplimit 64 pref medium
64 bytes from 2a03:8c00:1a:6::1: icmp_seq=271 ttl=64 time=7.34 ms
ping: sendmsg: Network is unreachable
[...]
also output of `podman version`:
Version: 1.9.0
RemoteAPI Version: 1
Go Version: go1.13.6
Git Commit: d3d78010e8fd8483456db2873b0c30937113dab1-dirty
Built: Wed Apr 29 22:21:53 2020
OS/Arch: linux/amd64
note: i am running podman 1.9 but patched with #6025 but it should not make any difference as this issue being discussed now is not using rootless mode.
also output of `podman info --debug`:
debug:
compiler: gc
gitCommit: d3d78010e8fd8483456db2873b0c30937113dab1-dirty
goVersion: go1.13.6
podmanVersion: 1.9.0
host:
arch: amd64
buildahVersion: 1.14.8
cgroupVersion: v1
conmon:
package: podman-1.9.0-1588198879.gited47046c.el7.x86_64
path: /usr/libexec/podman/conmon
version: 'conmon version 2.0.7, commit: d3d78010e8fd8483456db2873b0c30937113dab1-dirty'
cpus: 8
distribution:
distribution: '"centos"'
version: "7"
eventLogger: journald
hostname: shell
idMappings:
gidmap:
- container_id: 0
host_id: 100
size: 1
- container_id: 1
host_id: 100000
size: 65536
uidmap:
- container_id: 0
host_id: 1000
size: 1
- container_id: 1
host_id: 100000
size: 65536
kernel: 3.10.0-1127.el7.centos.plus.x86_64
memFree: 164622336
memTotal: 16655831040
ociRuntime:
name: runc
package: containerd.io-1.2.13-3.1.el7.x86_64
path: /usr/bin/runc
version: |-
runc version 1.0.0-rc10
commit: dc9208a3303feef5b3839f4323d9beb36df0a9dd
spec: 1.0.1-dev
os: linux
rootless: true
slirp4netns:
executable: /usr/bin/slirp4netns
package: slirp4netns-1.0.0-6.1.el7.x86_64
version: |-
slirp4netns version 1.0.0
commit: a3be729152a33e692cd28b52f664defbf2e7810a
libslirp: 4.2.0
swapFree: 0
swapTotal: 0
uptime: 65h 27m 4.83s (Approximately 2.71 days)
registries:
search:
- registry.fedoraproject.org
- registry.access.redhat.com
- registry.centos.org
- docker.io
store:
configFile: /home/cynikal/.config/containers/storage.conf
containerStore:
number: 7
paused: 0
running: 2
stopped: 5
graphDriverName: vfs
graphOptions: {}
graphRoot: /home/cynikal/.local/share/containers/storage
graphStatus: {}
imageStore:
number: 8
runRoot: /run/user/1000
volumePath: /home/cynikal/.local/share/containers/storage/volumes
Package info (e.g. output of rpm -q podman or apt list podman):
podman-1.9.0-1588198879.gited47046c.el7.x86_64
containernetworking-plugins-0.8.5-145.2.el7.x86_64
Additional environment details (AWS, VirtualBox, physical, etc.):
This is a libvirtd/KVM guest running CentOS 7 (whose hypervisor is a physical rackmount host)
About this issue
- Original URL
- State: closed
- Created 4 years ago
- Comments: 55 (27 by maintainers)
There should be a dedicated flag for static IPv6 addresses (
--ip6) but we haven’t wired it in yet. It’s actually a simple change - I’ll see about getting it landed in master tomorrow.@mheon What is the scoop on this one?
I would love to take credit for that, but someone else did it, we just take advantage of it.