Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

k0s upgrade of single node cluster borked it #5287

Closed
till opened this issue Nov 23, 2024 · 19 comments
Closed

k0s upgrade of single node cluster borked it #5287

till opened this issue Nov 23, 2024 · 19 comments
Labels
area/network question Further information is requested

Comments

@till
Copy link
Contributor

till commented Nov 23, 2024

We tried to upgrade a single node cluster yesterday and it ended up in a somewhat borked state. The initial version of k0s was 1.27.5+k0s.0 and we upgraded one by one to e.g. 1.28.x (always latest patch release) all the way to 1.31.2.

This is the config (extract from k0sctl's config):

apiVersion: k0s.k0sproject.io/v1beta1
kind: ClusterConfig
metadata:
  creationTimestamp: null
  name: runway-support
spec:
  controllerManager:
    extraArgs:
      flex-volume-plugin-dir: /opt/libexec/k0s/kubelet-plugins/volume/exec
  workerProfiles:
  - name: flatcar
    values:
      volumePluginDir: /opt/libexec/k0s/kubelet-plugins/volume/exec
  api:
    address: PRIVATE.IP.OF.THE.NODE
    externalAddress: PUBLIC.IP.OF.THE.NODE
  extensions:
    helm:
      repositories:
      - name: cpo
        url: https://kubernetes.github.io/cloud-provider-openstack
      charts:
      - name: cinder-csi
        order: 2
        chartname: cpo/openstack-cinder-csi
        version: 2.28.1
        namespace: kube-system
        values: |
          clusterID: support
          secret:
            enabled: true
            hostMount: false
            create: false
            name: cloud-config
          storageClass:
            enabled: true
          csi:
            plugin:
              nodePlugin:
                kubeletDir: /var/lib/k0s/kubelet
      - name: openstack-cloud-controller-manager
        order: 1
        chartname: cpo/openstack-cloud-controller-manager
        version: 2.28.2
        namespace: kube-system
        values: |
          cluster:
            name: support
          secret:
            enabled: true
            name: cloud-config
            create: false
          tolerations:
          - key: node.cloudprovider.kubernetes.io/uninitialized
            value: "true"
            effect: NoSchedule
          extraVolumes:
          - name: flexvolume-dir
            hostPath:
              path: /opt/libexec/k0s/kubelet-plugins/volume/exec
          - name: k8s-certs
            hostPath:
              path: /var/lib/k0s/pki
          # Where the additional volumes should be mounted into the pods:
          extraVolumeMounts:
            - name: flexvolume-dir
              mountPath: /opt/libexec/k0s/kubelet-plugins/volume/exec
              readOnly: true
            - name: k8s-certs
              mountPath: /var/lib/k0s/pki
              readOnly: true
    storage:
      create_default_storage_class: false
      type: external_storage
  storage:
    type: kine
  telemetry:
    enabled: false

The upgrades were done using k0sctl and all the upgrades seemed to have worked until we got to 1.31.2. The upgrade hung and eventually errored that two pods in kube-system were not ready.

So, one of the pods at the time was CoreDNS — but before someone jumps on "it's a DNS problem", it did not seem to be.

We had other pods in namespaces failing, one common thing was that they are all using the Kubernetes API (via the kubernetes (service) that creates the virtual https://10.96.0.0.1). And all other failures were actually DNS because CoreDNS was not running.

The fun thing is, this IP is working from the node itself, but would not work from within a pod. Other service IPs did work (anything that was not this service basically), but of course DNS was also broken because CoreDNS was still in a weird crash loop because it couldn't access the the Kubernetes API using the 10.96.0.0.1 host.

I think I read almost anything one can find on Google, the fact that the service is called kubernetes makes it of course extra hard to Google.

Basically the k8s api would work (from pod and host):

From the host: https://10.96.0.1:443

From a pod: https://10.96.0.1:443 👎

I also verified that other service IPs worked — anything but the kubernetes service was working on an IP level.

I also looked through Contrack, and see a ton of connections in waiting state. So these then/maybe/probably reflect the timeouts about API calls in the pod logs.


A couple things that we tried (that did not help):

  • tried to tcpdump (e.g. tcpdump -i eth0 dst 10.96.0.0.1) on the host — nothing, it seems like traffic to the API does not leave the pod, I've also tried to fetch anything from specific pods, and I can generally see traffic, but nothing for the API service)
  • tried to create a route for the service (some blog posts etc. suggested that, but to no avail)
  • cleared iptables and prayed that a restart of kube-router/-proxy would recreate everything (it does recreate rules, but not "enough" to make the kubernetes service work)
  • manually disabled kube-proxy and let kube-router also advertise services
  • upgraded flatcar to the latest stable, etc.

The only thing that sort of helped — not really, but kinda — was patching all deployments and overriding the environment variables that do service discovery. Really ugly hack, but that made CoreDNS run at least. ;)

Anyway, I was hoping anyone else had any insights into this. I still have the node/cluster around to test and prod.

@till
Copy link
Contributor Author

till commented Nov 23, 2024

Also, I feel I need to mention this: it does not seem to be a general problem — we upgraded another cluster this week (similar versions) and it worked nicely.

The difference in configuration is that the other cluster is a multi-node setup that uses etcd for storage/state and Calico for networking. Otherwise, they are identical as in they run on OpenStack, Flatcar Linux, etc..

@twz123 twz123 added the question Further information is requested label Nov 25, 2024
@twz123
Copy link
Member

twz123 commented Nov 25, 2024

Here's what I understand is the gist of the issue:

  • Cluster upgrade from 1.27 to 1.31, minor release by minor release
  • Something™ is wrong with the CoreDNS pod after that
  • Other pods are failing, too, but CoreDNS seems to be the root cause

Is that correct?

To rule out the obvious things: I assume k0s sysinfo is fine on the node? Does the kubelet report the node to be ready?

To figure out what's up with the CoreDNS pods, could you maybe try to provide the output of the following:

  • kubectl get node -owide
  • kubectl --namespace kube-system get po -owide
  • kubectl --namespace kube-system describe deployments coredns
  • kubectl --namespace kube-system get events
  • The kubectl describe output of the CoreDNS pods
  • The log output of the failing CoreDNS pods.

Also, can you check if you're referencing custom images in your k0s configuration? Please have a look at /etc/k0s/k0s.yaml directly on the node.

@till
Copy link
Contributor Author

till commented Nov 25, 2024

Not exactly — I'll try to explain: the reason why CoreDNS does not work, is that it cannot access the k8s API.

But it's not just CoreDNS, basically any pod that needs the k8s API (e.g. CoreDNS, grafana-agent, haproxy-ingress, metrics-server etc.) has the same problem and crashes on start or eventually (depending on how they handle it).

The error is always similar to this:

Error while initializing connection to Kubernetes apiserver.
This most likely means that the cluster is misconfigured
(e.g., it has invalid apiserver certificates or service
accounts configuration).

Reason: Get "https://10.96.0.1:443/version": dial tcp 10.96.0.1:443: i/o timeout

The error message is different from service to service, but ultimately they always fail with an I/o timeout.

k0s sysinfo

(ipv6 is turned off)

Total memory: 7.8 GiB (pass)
File system of /var/lib/k0s: ext4 (pass)
Disk space available for /var/lib/k0s: 130.5 GiB (pass)
Relative disk space available for /var/lib/k0s: 92% (pass)
Name resolution: localhost: [::1 127.0.0.1] (pass)
Operating system: Linux (pass)
  Linux kernel release: 6.6.60-flatcar (pass)
  Max. file descriptors per process: current: 524288 / max: 524288 (pass)
  AppArmor: unavailable (pass)
  Executable in PATH: modprobe: /usr/sbin/modprobe (pass)
  Executable in PATH: mount: /usr/bin/mount (pass)
  Executable in PATH: umount: /usr/bin/umount (pass)
  /proc file system: mounted (0x9fa0) (pass)
  Control Groups: version 1 (pass)
    cgroup controller "cpu": available (pass)
    cgroup controller "cpuacct": available (pass)
    cgroup controller "cpuset": available (pass)
    cgroup controller "memory": available (pass)
    cgroup controller "devices": available (pass)
    cgroup controller "freezer": available (pass)
    cgroup controller "pids": available (pass)
    cgroup controller "hugetlb": available (pass)
    cgroup controller "blkio": available (pass)
  CONFIG_CGROUPS: Control Group support: built-in (pass)
    CONFIG_CGROUP_FREEZER: Freezer cgroup subsystem: built-in (pass)
    CONFIG_CGROUP_PIDS: PIDs cgroup subsystem: built-in (pass)
    CONFIG_CGROUP_DEVICE: Device controller for cgroups: built-in (pass)
    CONFIG_CPUSETS: Cpuset support: built-in (pass)
    CONFIG_CGROUP_CPUACCT: Simple CPU accounting cgroup subsystem: built-in (pass)
    CONFIG_MEMCG: Memory Resource Controller for Control Groups: built-in (pass)
    CONFIG_CGROUP_HUGETLB: HugeTLB Resource Controller for Control Groups: built-in (pass)
    CONFIG_CGROUP_SCHED: Group CPU scheduler: built-in (pass)
      CONFIG_FAIR_GROUP_SCHED: Group scheduling for SCHED_OTHER: built-in (pass)
        CONFIG_CFS_BANDWIDTH: CPU bandwidth provisioning for FAIR_GROUP_SCHED: built-in (pass)
    CONFIG_BLK_CGROUP: Block IO controller: built-in (pass)
  CONFIG_NAMESPACES: Namespaces support: built-in (pass)
    CONFIG_UTS_NS: UTS namespace: built-in (pass)
    CONFIG_IPC_NS: IPC namespace: built-in (pass)
    CONFIG_PID_NS: PID namespace: built-in (pass)
    CONFIG_NET_NS: Network namespace: built-in (pass)
  CONFIG_NET: Networking support: built-in (pass)
    CONFIG_INET: TCP/IP networking: built-in (pass)
      CONFIG_IPV6: The IPv6 protocol: built-in (pass)
    CONFIG_NETFILTER: Network packet filtering framework (Netfilter): built-in (pass)
      CONFIG_NETFILTER_ADVANCED: Advanced netfilter configuration: built-in (pass)
      CONFIG_NF_CONNTRACK: Netfilter connection tracking support: module (pass)
      CONFIG_NETFILTER_XTABLES: Netfilter Xtables support: built-in (pass)
        CONFIG_NETFILTER_XT_TARGET_REDIRECT: REDIRECT target support: module (pass)
        CONFIG_NETFILTER_XT_MATCH_COMMENT: "comment" match support: module (pass)
        CONFIG_NETFILTER_XT_MARK: nfmark target and match support: module (pass)
        CONFIG_NETFILTER_XT_SET: set target and match support: module (pass)
        CONFIG_NETFILTER_XT_TARGET_MASQUERADE: MASQUERADE target support: module (pass)
        CONFIG_NETFILTER_XT_NAT: "SNAT and DNAT" targets support: module (pass)
        CONFIG_NETFILTER_XT_MATCH_ADDRTYPE: "addrtype" address type match support: module (pass)
        CONFIG_NETFILTER_XT_MATCH_CONNTRACK: "conntrack" connection tracking match support: module (pass)
        CONFIG_NETFILTER_XT_MATCH_MULTIPORT: "multiport" Multiple port match support: module (pass)
        CONFIG_NETFILTER_XT_MATCH_RECENT: "recent" match support: module (pass)
        CONFIG_NETFILTER_XT_MATCH_STATISTIC: "statistic" match support: module (pass)
      CONFIG_NETFILTER_NETLINK: module (pass)
      CONFIG_NF_NAT: module (pass)
      CONFIG_IP_SET: IP set support: module (pass)
        CONFIG_IP_SET_HASH_IP: hash:ip set support: module (pass)
        CONFIG_IP_SET_HASH_NET: hash:net set support: module (pass)
      CONFIG_IP_VS: IP virtual server support: module (pass)
        CONFIG_IP_VS_NFCT: Netfilter connection tracking: built-in (pass)
        CONFIG_IP_VS_SH: Source hashing scheduling: module (pass)
        CONFIG_IP_VS_RR: Round-robin scheduling: module (pass)
        CONFIG_IP_VS_WRR: Weighted round-robin scheduling: module (pass)
      CONFIG_NF_CONNTRACK_IPV4: IPv4 connetion tracking support (required for NAT): unknown (warning)
      CONFIG_NF_REJECT_IPV4: IPv4 packet rejection: module (pass)
      CONFIG_NF_NAT_IPV4: IPv4 NAT: unknown (warning)
      CONFIG_IP_NF_IPTABLES: IP tables support: built-in (pass)
        CONFIG_IP_NF_FILTER: Packet filtering: module (pass)
          CONFIG_IP_NF_TARGET_REJECT: REJECT target support: module (pass)
        CONFIG_IP_NF_NAT: iptables NAT support: module (pass)
        CONFIG_IP_NF_MANGLE: Packet mangling: module (pass)
      CONFIG_NF_DEFRAG_IPV4: module (pass)
      CONFIG_NF_CONNTRACK_IPV6: IPv6 connetion tracking support (required for NAT): unknown (warning)
      CONFIG_NF_NAT_IPV6: IPv6 NAT: unknown (warning)
      CONFIG_IP6_NF_IPTABLES: IP6 tables support: module (pass)
        CONFIG_IP6_NF_FILTER: Packet filtering: module (pass)
        CONFIG_IP6_NF_MANGLE: Packet mangling: module (pass)
        CONFIG_IP6_NF_NAT: ip6tables NAT support: module (pass)
      CONFIG_NF_DEFRAG_IPV6: module (pass)
    CONFIG_BRIDGE: 802.1d Ethernet Bridging: module (pass)
      CONFIG_LLC: module (pass)
      CONFIG_STP: module (pass)
  CONFIG_EXT4_FS: The Extended 4 (ext4) filesystem: module (pass)
  CONFIG_PROC_FS: /proc file system support: built-in (pass)

kubectl get node

NAME               STATUS   ROLES           AGE    VERSION       INTERNAL-IP      EXTERNAL-IP   OS-IMAGE                                             KERNEL-VERSION   CONTAINER-RUNTIME
node-001.support   Ready    control-plane   391d   v1.31.2+k0s   10.108.110.145   IP.HERE   Flatcar Container Linux by Kinvolk 4081.2.0 (Oklo)   6.6.60-flatcar   containerd://1.7.22

others

... for the others, we tried to hack the service discovery by supplying KUBERNETES_ environment variables. Which kinda of works in some cases.

See this as an example:

Name:                   coredns
Namespace:              kube-system
CreationTimestamp:      Tue, 31 Oct 2023 14:38:14 +0000
Labels:                 k0s.k0sproject.io/stack=coredns
                        k8s-app=kube-dns
                        k8slens-edit-resource-version=v1
                        kubernetes.io/name=CoreDNS
Annotations:            deployment.kubernetes.io/revision: 14
                        k0s.k0sproject.io/last-applied-configuration:
                          {"apiVersion":"apps/v1","kind":"Deployment","metadata":{"labels":{"k8s-app":"kube-dns","kubernetes.io/name":"CoreDNS"},"name":"coredns","n...
                        k0s.k0sproject.io/stack-checksum: 09279c44a5e9f6a2e04b3aa27a72a402
Selector:               k8s-app=kube-dns
Replicas:               1 desired | 1 updated | 1 total | 1 available | 0 unavailable
StrategyType:           RollingUpdate
MinReadySeconds:        0
RollingUpdateStrategy:  25% max unavailable, 25% max surge
Pod Template:
  Labels:           k8s-app=kube-dns
  Annotations:      kubectl.kubernetes.io/restartedAt: 2024-11-22T19:08:16Z
                    prometheus.io/port: 9153
                    prometheus.io/scrape: true
  Service Account:  coredns
  Containers:
   coredns:
    Image:       quay.io/k0sproject/coredns:1.11.4
    Ports:       53/UDP, 53/TCP, 9153/TCP
    Host Ports:  0/UDP, 0/TCP, 0/TCP
    Args:
      -conf
      /etc/coredns/Corefile
    Limits:
      memory:  170Mi
    Requests:
      cpu:      100m
      memory:   70Mi
    Liveness:   http-get http://:8080/health delay=60s timeout=1s period=10s #success=1 #failure=3
    Readiness:  http-get http://:8181/ready delay=30s timeout=1s period=2s #success=1 #failure=3
    Environment:
      KUBERNETES_SERVICE_HOST:  10.108.110.145
      KUBERNETES_SERVICE_PORT:  6443
      KUBERNETES_PORT:          tcp://10.108.110.145:6443
    Mounts:
      /etc/coredns from config-volume (ro)
  Volumes:
   config-volume:
    Type:          ConfigMap (a volume populated by a ConfigMap)
    Name:          coredns
    Optional:      false
  Node-Selectors:  kubernetes.io/os=linux
  Tolerations:     CriticalAddonsOnly op=Exists
                   node-role.kubernetes.io/master:NoSchedule op=Exists
Conditions:
  Type           Status  Reason
  ----           ------  ------
  Available      True    MinimumReplicasAvailable
  Progressing    True    NewReplicaSetAvailable
OldReplicaSets:  coredns-844d4cb9fc (0/0 replicas created), coredns-89dcbdccb (0/0 replicas created), coredns-87b4975cd (0/0 replicas created), coredns-747cf669bf (0/0 replicas created), coredns-85ff44746b (0/0 replicas created), coredns-6d84fd48c9 (0/0 replicas created), coredns-599c9c8bb8 (0/0 replicas created), coredns-6f4cdf5bc4 (0/0 replicas created), coredns-5ff89486 (0/0 replicas created), coredns-84886868fb (0/0 replicas created)
NewReplicaSet:   coredns-857c6f89fb (1/1 replicas created)
Events:          <none>

But I can revert it.

events (kube-system)

We did not try to patch the metrics server, so it keeps restarting currently:

LAST SEEN   TYPE      REASON      OBJECT                               MESSAGE
8m34s       Warning   Unhealthy   pod/metrics-server-7f9ccb4c8-d4tqd   Liveness probe failed: Get "https://10.244.0.187:10250/livez": net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)
38m         Warning   Unhealthy   pod/metrics-server-7f9ccb4c8-d4tqd   Readiness probe failed: Get "https://10.244.0.187:10250/readyz": net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers)
3m25s       Warning   BackOff     pod/metrics-server-7f9ccb4c8-d4tqd   Back-off restarting failed container metrics-server in pod metrics-server-7f9ccb4c8-d4tqd_kube-system(c98ca056-47b7-40a2-8609-63f44b86bede)

get pods (kube-system)

NAME                                                     READY   STATUS             RESTARTS           AGE     IP               NODE               NOMINATED NODE   READINESS GATES
coredns-857c6f89fb-g7lkl                                 1/1     Running            0                  2d21h   10.244.0.224     node-001.support   <none>           <none>
kube-router-8fqnq                                        1/1     Running            0                  2d21h   10.108.110.145   node-001.support   <none>           <none>
metrics-server-7f9ccb4c8-d4tqd                           0/1     CrashLoopBackOff   1501 (3m42s ago)   3d3h    10.244.0.187     node-001.support   <none>           <none>
openstack-cinder-csi-controllerplugin-6f8d6dcf99-xsnhk   6/6     Running            142 (2d21h ago)    391d    10.244.0.198     node-001.support   <none>           <none>
openstack-cinder-csi-nodeplugin-l2mm9                    3/3     Running            12 (3d1h ago)      391d    10.108.110.145   node-001.support   <none>           <none>
openstack-cloud-controller-manager-9l9zk                 1/1     Running            2 (2d22h ago)      3d1h    10.108.110.145   node-001.support   <none>           <none>

Again, we tried to patch pods that needed the k8s api and that we needed. But we didn't patch metrics-server and it's still failing (since Friday).

logs metrics-server (kube-system)

As an addition, here are logs from the (unpatched) metrics-server:

panic: unable to load configmap based request-header-client-ca-file: Get "https://10.96.0.1:443/api/v1/namespaces/kube-system/configmaps/extension-apiserver-authentication": dial tcp 10.96.0.1:443: i/o timeout

goroutine 1 [running]:
main.main()
	sigs.k8s.io/metrics-server/cmd/metrics-server/metrics-server.go:37 +0x8b

Just keeps repeating and restarting.

@till
Copy link
Contributor Author

till commented Nov 25, 2024

Also, can you check if you're referencing custom images in your k0s configuration? Please have a look at /etc/k0s/k0s.yaml directly on the node.

I have checked — no custom images.

@till
Copy link
Contributor Author

till commented Nov 26, 2024

From what I gathered the kubernetes service is a virtual IP.

I can see it defined, it has one endpoint (the externalAddress). The ports look correct 6433 to 443).

That service IP is used in the SD environment variables in the pod, but the connection does not work - i/o timeout.

The same service IP works from the host OS though.

I see no requests to it with a tcpdump when the request comes from within a pod (e.g. metrics-server). It's like traffic never leaves the pod?

@till
Copy link
Contributor Author

till commented Nov 27, 2024

@twz123 anything else I can look into? Or any idea what could be the culprit?

@twz123
Copy link
Member

twz123 commented Nov 29, 2024

As this smells a lot like networking, I'd love to know if @juanluisvaladas has some idea what to try next?

@jnummelin
Copy link
Member

hmm, since it's the kubernetes svc IP that has troubles, I'd also look how kube-proxy is doing: pod status, logs etc. kube-proxy is the one responsible for "implementing" that svc IP.

@till
Copy link
Contributor Author

till commented Nov 29, 2024

We disabled kube-proxy and run kube-router to advertise the services, but it did not help. Do you want me to try to rollback that change?

I wonder if I can force install again to do that?

@till
Copy link
Contributor Author

till commented Nov 29, 2024

I still find it weird that the virtual IP for the kubernetes service works from the host, but not from within pods.

@juanluisvaladas
Copy link
Contributor

juanluisvaladas commented Dec 2, 2024

I think this must be either be a problem with problem with kube-router.

I'd like to see:
1- kubectl -n default get ep kubernetes -o yaml (and verify if both the addresses and ports are correct are correct (they have to be, because it works from the host, but anyway).
2- Try to reach each one of the endpoints directly from one of the pods that can't reach it.
3- From one of the affected nodes gather the output of /var/lib/k0s/bin/iptables-save
4- From one of the affected nodes gather the output of sysctl -a

Also, would it be possible for you to create a new node from scratch and check if the new node works?

@till
Copy link
Contributor Author

till commented Dec 2, 2024

@juanluisvaladas — thanks for taking the time.

1

So this is a single node. There's only one endpoint. I had a public IP in "externalAddress". And this is what shows up there.

kubectl -n default get ep kubernetes -o yaml
apiVersion: v1
kind: Endpoints
metadata:
  creationTimestamp: "2022-04-22T15:31:49Z"
  name: kubernetes
  namespace: default
  resourceVersion: "221"
  uid: 4b2f70a6-3968-457e-8b84-eb1f031cac46
subsets:
- addresses:
  - ip: PUBLIC-IP-REDACTED
  ports:
  - name: https
    port: 6443
    protocol: TCP

2

Trying from a pod:

/ # curl -k https://PUBLIC-IP-REDACTED:6443
curl: (28) Failed to connect to PUBLIC-IP-REDACTED port 6443 after 134273 ms: Could not connect to server

3 (iptables-save)

# Generated by iptables-save v1.8.9 (nf_tables) on Mon Dec  2 11:07:08 2024
*mangle
:PREROUTING ACCEPT [0:0]
:INPUT ACCEPT [0:0]
:FORWARD ACCEPT [0:0]
:OUTPUT ACCEPT [0:0]
:POSTROUTING ACCEPT [0:0]
:KUBE-IPTABLES-HINT - [0:0]
:KUBE-KUBELET-CANARY - [0:0]
:KUBE-PROXY-CANARY - [0:0]
COMMIT
# Completed on Mon Dec  2 11:07:08 2024
# Generated by iptables-save v1.8.9 (nf_tables) on Mon Dec  2 11:07:08 2024
*filter
:INPUT ACCEPT [38999664:11351635906]
:FORWARD ACCEPT [2536041:152167307]
:OUTPUT ACCEPT [40021695:15335892930]
:KUBE-EXTERNAL-SERVICES - [0:0]
:KUBE-FIREWALL - [0:0]
:KUBE-FORWARD - [0:0]
:KUBE-KUBELET-CANARY - [0:0]
:KUBE-NODEPORTS - [0:0]
:KUBE-PROXY-CANARY - [0:0]
:KUBE-PROXY-FIREWALL - [0:0]
:KUBE-SERVICES - [0:0]
-A INPUT -j KUBE-FIREWALL
-A INPUT -m conntrack --ctstate NEW -m comment --comment "kubernetes load balancer firewall" -j KUBE-PROXY-FIREWALL
-A INPUT -m comment --comment "kubernetes health check service ports" -j KUBE-NODEPORTS
-A INPUT -m conntrack --ctstate NEW -m comment --comment "kubernetes externally-visible service portals" -j KUBE-EXTERNAL-SERVICES
-A FORWARD -m conntrack --ctstate NEW -m comment --comment "kubernetes load balancer firewall" -j KUBE-PROXY-FIREWALL
-A FORWARD -m comment --comment "kubernetes forwarding rules" -j KUBE-FORWARD
-A FORWARD -m conntrack --ctstate NEW -m comment --comment "kubernetes service portals" -j KUBE-SERVICES
-A FORWARD -m conntrack --ctstate NEW -m comment --comment "kubernetes externally-visible service portals" -j KUBE-EXTERNAL-SERVICES
-A OUTPUT -j KUBE-FIREWALL
-A OUTPUT -m conntrack --ctstate NEW -m comment --comment "kubernetes load balancer firewall" -j KUBE-PROXY-FIREWALL
-A OUTPUT -m conntrack --ctstate NEW -m comment --comment "kubernetes service portals" -j KUBE-SERVICES
-A KUBE-EXTERNAL-SERVICES -p tcp -m comment --comment "haproxy-ingress/haproxy-ingress:http-80 has no endpoints" -m addrtype --dst-type LOCAL -m tcp --dport 31746 -j REJECT --reject-with icmp-port-unreachable
-A KUBE-EXTERNAL-SERVICES -p tcp -m comment --comment "haproxy-ingress/haproxy-ingress:https-443 has no endpoints" -m addrtype --dst-type LOCAL -m tcp --dport 30343 -j REJECT --reject-with icmp-port-unreachable
-A KUBE-FIREWALL ! -s 127.0.0.0/8 -d 127.0.0.0/8 -m comment --comment "block incoming localnet connections" -m conntrack ! --ctstate RELATED,ESTABLISHED,DNAT -j DROP
-A KUBE-FORWARD -m conntrack --ctstate INVALID -m nfacct --nfacct-name  ct_state_invalid_dropped_pkts -j DROP
-A KUBE-FORWARD -m comment --comment "kubernetes forwarding rules" -m mark --mark 0x4000/0x4000 -j ACCEPT
-A KUBE-FORWARD -m comment --comment "kubernetes forwarding conntrack rule" -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
-A KUBE-NODEPORTS -p tcp -m comment --comment "haproxy-ingress/haproxy-ingress:http-80 health check node port" -m tcp --dport 31943 -j ACCEPT
-A KUBE-NODEPORTS -p tcp -m comment --comment "haproxy-ingress/haproxy-ingress:https-443 health check node port" -m tcp --dport 31943 -j ACCEPT
-A KUBE-SERVICES -d 10.104.143.5/32 -p tcp -m comment --comment "haproxy-ingress/haproxy-ingress:http-80 has no endpoints" -m tcp --dport 80 -j REJECT --reject-with icmp-port-unreachable
-A KUBE-SERVICES -d 10.105.99.95/32 -p tcp -m comment --comment "haproxy-ingress/haproxy-ingress-metrics:ctrl-metrics has no endpoints" -m tcp --dport 10254 -j REJECT --reject-with icmp-port-unreachable
-A KUBE-SERVICES -d 10.104.143.5/32 -p tcp -m comment --comment "haproxy-ingress/haproxy-ingress:https-443 has no endpoints" -m tcp --dport 443 -j REJECT --reject-with icmp-port-unreachable
-A KUBE-SERVICES -d 10.101.152.238/32 -p tcp -m comment --comment "kube-system/metrics-server:https has no endpoints" -m tcp --dport 443 -j REJECT --reject-with icmp-port-unreachable
-A KUBE-SERVICES -d 10.107.173.245/32 -p tcp -m comment --comment "cert-manager/cert-manager-webhook-autodns:https has no endpoints" -m tcp --dport 443 -j REJECT --reject-with icmp-port-unreachable
-A KUBE-SERVICES -d 10.105.99.95/32 -p tcp -m comment --comment "haproxy-ingress/haproxy-ingress-metrics:metrics has no endpoints" -m tcp --dport 9101 -j REJECT --reject-with icmp-port-unreachable
-A KUBE-SERVICES -d 10.96.0.10/32 -p tcp -m comment --comment "kube-system/kube-dns:dns-tcp has no endpoints" -m tcp --dport 53 -j REJECT --reject-with icmp-port-unreachable
-A KUBE-SERVICES -d 10.96.0.10/32 -p udp -m comment --comment "kube-system/kube-dns:dns has no endpoints" -m udp --dport 53 -j REJECT --reject-with icmp-port-unreachable
-A KUBE-SERVICES -d 10.96.0.10/32 -p tcp -m comment --comment "kube-system/kube-dns:metrics has no endpoints" -m tcp --dport 9153 -j REJECT --reject-with icmp-port-unreachable
-A KUBE-SERVICES -d 10.105.102.78/32 -p tcp -m comment --comment "cert-manager/cert-manager-webhook:https has no endpoints" -m tcp --dport 443 -j REJECT --reject-with icmp-port-unreachable
COMMIT
# Completed on Mon Dec  2 11:07:08 2024
# Generated by iptables-save v1.8.9 (nf_tables) on Mon Dec  2 11:07:08 2024
*nat
:PREROUTING ACCEPT [1911468:114217956]
:INPUT ACCEPT [0:0]
:OUTPUT ACCEPT [1486488:89539085]
:POSTROUTING ACCEPT [3221098:193721288]
:KUBE-EXT-I53NGAWF6MIO7LFQ - [0:0]
:KUBE-KUBELET-CANARY - [0:0]
:KUBE-MARK-MASQ - [0:0]
:KUBE-NODEPORTS - [0:0]
:KUBE-POSTROUTING - [0:0]
:KUBE-PROXY-CANARY - [0:0]
:KUBE-SEP-2SGI5Y5RHBUTOHIH - [0:0]
:KUBE-SEP-3R7KMSV7VZ5XMJY7 - [0:0]
:KUBE-SEP-4GI34QDKO55XKYHE - [0:0]
:KUBE-SEP-D46F5V7VQPD7O4D3 - [0:0]
:KUBE-SEP-SWNUIHTBSF2PUVO5 - [0:0]
:KUBE-SEP-UZOA2X7IXOGCGAKQ - [0:0]
:KUBE-SEP-YDOJPDPNTO3FY4JJ - [0:0]
:KUBE-SERVICES - [0:0]
:KUBE-SVC-AICUUH2ZPE6LLUNO - [0:0]
:KUBE-SVC-I53NGAWF6MIO7LFQ - [0:0]
:KUBE-SVC-NPX46M4PTMTKRN6Y - [0:0]
:KUBE-SVC-OQS2NRAWO43TTM4S - [0:0]
:KUBE-SVC-OTJVES4BGRVY7AQH - [0:0]
-A PREROUTING -m comment --comment "kubernetes service portals" -j KUBE-SERVICES
-A OUTPUT -m comment --comment "kubernetes service portals" -j KUBE-SERVICES
-A POSTROUTING -m comment --comment "kubernetes postrouting rules" -j KUBE-POSTROUTING
-A KUBE-EXT-I53NGAWF6MIO7LFQ -m comment --comment "masquerade traffic for prod-kine/prod-kine-postgresql:tcp-postgresql external destinations" -j KUBE-MARK-MASQ
-A KUBE-EXT-I53NGAWF6MIO7LFQ -j KUBE-SVC-I53NGAWF6MIO7LFQ
-A KUBE-MARK-MASQ -j MARK --set-xmark 0x4000/0x4000
-A KUBE-NODEPORTS -d 127.0.0.0/8 -p tcp -m comment --comment "prod-kine/prod-kine-postgresql:tcp-postgresql" -m tcp --dport 30570 -m nfacct --nfacct-name  localhost_nps_accepted_pkts -j KUBE-EXT-I53NGAWF6MIO7LFQ
-A KUBE-NODEPORTS -p tcp -m comment --comment "prod-kine/prod-kine-postgresql:tcp-postgresql" -m tcp --dport 30570 -j KUBE-EXT-I53NGAWF6MIO7LFQ
-A KUBE-POSTROUTING -m mark ! --mark 0x4000/0x4000 -j RETURN
-A KUBE-POSTROUTING -j MARK --set-xmark 0x4000/0x0
-A KUBE-POSTROUTING -m comment --comment "kubernetes service traffic requiring SNAT" -j MASQUERADE --random-fully
-A KUBE-SEP-2SGI5Y5RHBUTOHIH -s PUBLIC-IP-REDACTED/32 -m comment --comment "default/kubernetes:https" -j KUBE-MARK-MASQ
-A KUBE-SEP-2SGI5Y5RHBUTOHIH -p tcp -m comment --comment "default/kubernetes:https" -m tcp -j DNAT --to-destination PUBLIC-IP-REDACTED:6443
-A KUBE-SEP-3R7KMSV7VZ5XMJY7 -s 10.244.0.217/32 -m comment --comment "kratos/ory-kratos-admin:http" -j KUBE-MARK-MASQ
-A KUBE-SEP-3R7KMSV7VZ5XMJY7 -p tcp -m comment --comment "kratos/ory-kratos-admin:http" -m tcp -j DNAT --to-destination 10.244.0.217:4434
-A KUBE-SEP-4GI34QDKO55XKYHE -s 10.244.0.199/32 -m comment --comment "kratos-db/kratos-db-postgresql:tcp-postgresql" -j KUBE-MARK-MASQ
-A KUBE-SEP-4GI34QDKO55XKYHE -p tcp -m comment --comment "kratos-db/kratos-db-postgresql:tcp-postgresql" -m tcp -j DNAT --to-destination 10.244.0.199:5432
-A KUBE-SEP-D46F5V7VQPD7O4D3 -s 10.244.0.218/32 -m comment --comment "kratos/ory-kratos-public:http" -j KUBE-MARK-MASQ
-A KUBE-SEP-D46F5V7VQPD7O4D3 -p tcp -m comment --comment "kratos/ory-kratos-public:http" -m tcp -j DNAT --to-destination 10.244.0.218:4433
-A KUBE-SEP-SWNUIHTBSF2PUVO5 -s 10.244.0.200/32 -m comment --comment "prod-kine/prod-kine-postgresql:tcp-postgresql" -j KUBE-MARK-MASQ
-A KUBE-SEP-SWNUIHTBSF2PUVO5 -p tcp -m comment --comment "prod-kine/prod-kine-postgresql:tcp-postgresql" -m tcp -j DNAT --to-destination 10.244.0.200:5432
-A KUBE-SEP-UZOA2X7IXOGCGAKQ -s 10.244.0.218/32 -m comment --comment "kratos/ory-kratos-admin:http" -j KUBE-MARK-MASQ
-A KUBE-SEP-UZOA2X7IXOGCGAKQ -p tcp -m comment --comment "kratos/ory-kratos-admin:http" -m tcp -j DNAT --to-destination 10.244.0.218:4434
-A KUBE-SEP-YDOJPDPNTO3FY4JJ -s 10.244.0.217/32 -m comment --comment "kratos/ory-kratos-public:http" -j KUBE-MARK-MASQ
-A KUBE-SEP-YDOJPDPNTO3FY4JJ -p tcp -m comment --comment "kratos/ory-kratos-public:http" -m tcp -j DNAT --to-destination 10.244.0.217:4433
-A KUBE-SERVICES -d 10.104.217.75/32 -p tcp -m comment --comment "kratos/ory-kratos-public:http cluster IP" -m tcp --dport 80 -j KUBE-SVC-AICUUH2ZPE6LLUNO
-A KUBE-SERVICES -d 10.102.239.191/32 -p tcp -m comment --comment "kratos/ory-kratos-admin:http cluster IP" -m tcp --dport 80 -j KUBE-SVC-OQS2NRAWO43TTM4S
-A KUBE-SERVICES -d 10.100.150.98/32 -p tcp -m comment --comment "kratos-db/kratos-db-postgresql:tcp-postgresql cluster IP" -m tcp --dport 5432 -j KUBE-SVC-OTJVES4BGRVY7AQH
-A KUBE-SERVICES -d 10.107.34.108/32 -p tcp -m comment --comment "prod-kine/prod-kine-postgresql:tcp-postgresql cluster IP" -m tcp --dport 5432 -j KUBE-SVC-I53NGAWF6MIO7LFQ
-A KUBE-SERVICES -d 10.96.0.1/32 -p tcp -m comment --comment "default/kubernetes:https cluster IP" -m tcp --dport 443 -j KUBE-SVC-NPX46M4PTMTKRN6Y
-A KUBE-SERVICES -m comment --comment "kubernetes service nodeports; NOTE: this must be the last rule in this chain" -m addrtype --dst-type LOCAL -j KUBE-NODEPORTS
-A KUBE-SVC-AICUUH2ZPE6LLUNO ! -s 10.244.0.0/16 -d 10.104.217.75/32 -p tcp -m comment --comment "kratos/ory-kratos-public:http cluster IP" -m tcp --dport 80 -j KUBE-MARK-MASQ
-A KUBE-SVC-AICUUH2ZPE6LLUNO -m comment --comment "kratos/ory-kratos-public:http -> 10.244.0.217:4433" -m statistic --mode random --probability 0.50000000000 -j KUBE-SEP-YDOJPDPNTO3FY4JJ
-A KUBE-SVC-AICUUH2ZPE6LLUNO -m comment --comment "kratos/ory-kratos-public:http -> 10.244.0.218:4433" -j KUBE-SEP-D46F5V7VQPD7O4D3
-A KUBE-SVC-I53NGAWF6MIO7LFQ ! -s 10.244.0.0/16 -d 10.107.34.108/32 -p tcp -m comment --comment "prod-kine/prod-kine-postgresql:tcp-postgresql cluster IP" -m tcp --dport 5432 -j KUBE-MARK-MASQ
-A KUBE-SVC-I53NGAWF6MIO7LFQ -m comment --comment "prod-kine/prod-kine-postgresql:tcp-postgresql -> 10.244.0.200:5432" -j KUBE-SEP-SWNUIHTBSF2PUVO5
-A KUBE-SVC-NPX46M4PTMTKRN6Y ! -s 10.244.0.0/16 -d 10.96.0.1/32 -p tcp -m comment --comment "default/kubernetes:https cluster IP" -m tcp --dport 443 -j KUBE-MARK-MASQ
-A KUBE-SVC-NPX46M4PTMTKRN6Y -m comment --comment "default/kubernetes:https -> PUBLIC-IP-REDACTED:6443" -j KUBE-SEP-2SGI5Y5RHBUTOHIH
-A KUBE-SVC-OQS2NRAWO43TTM4S ! -s 10.244.0.0/16 -d 10.102.239.191/32 -p tcp -m comment --comment "kratos/ory-kratos-admin:http cluster IP" -m tcp --dport 80 -j KUBE-MARK-MASQ
-A KUBE-SVC-OQS2NRAWO43TTM4S -m comment --comment "kratos/ory-kratos-admin:http -> 10.244.0.217:4434" -m statistic --mode random --probability 0.50000000000 -j KUBE-SEP-3R7KMSV7VZ5XMJY7
-A KUBE-SVC-OQS2NRAWO43TTM4S -m comment --comment "kratos/ory-kratos-admin:http -> 10.244.0.218:4434" -j KUBE-SEP-UZOA2X7IXOGCGAKQ
-A KUBE-SVC-OTJVES4BGRVY7AQH ! -s 10.244.0.0/16 -d 10.100.150.98/32 -p tcp -m comment --comment "kratos-db/kratos-db-postgresql:tcp-postgresql cluster IP" -m tcp --dport 5432 -j KUBE-MARK-MASQ
-A KUBE-SVC-OTJVES4BGRVY7AQH -m comment --comment "kratos-db/kratos-db-postgresql:tcp-postgresql -> 10.244.0.199:5432" -j KUBE-SEP-4GI34QDKO55XKYHE
COMMIT
# Completed on Mon Dec  2 11:07:08 2024
# Warning: iptables-legacy tables present, use iptables-legacy-save to see them

4 (sysctl -a)

abi.vsyscall32 = 1
crypto.fips_enabled = 0
crypto.fips_name = Linux Kernel Cryptographic API
crypto.fips_version = 6.6.60-flatcar
debug.exception-trace = 1
debug.kprobes-optimization = 1
dev.cdrom.autoclose = 1
dev.cdrom.autoeject = 0
dev.cdrom.check_media = 0
dev.cdrom.debug = 0
dev.cdrom.info = CD-ROM information, Id: cdrom.c 3.20 2003/12/17
dev.cdrom.info = 
dev.cdrom.info = drive name:		sr0
dev.cdrom.info = drive speed:		4
dev.cdrom.info = drive # of slots:	1
dev.cdrom.info = Can close tray:		1
dev.cdrom.info = Can open tray:		1
dev.cdrom.info = Can lock tray:		1
dev.cdrom.info = Can change speed:	1
dev.cdrom.info = Can select disk:	0
dev.cdrom.info = Can read multisession:	1
dev.cdrom.info = Can read MCN:		1
dev.cdrom.info = Reports media changed:	1
dev.cdrom.info = Can play audio:		1
dev.cdrom.info = Can write CD-R:		0
dev.cdrom.info = Can write CD-RW:	0
dev.cdrom.info = Can read DVD:		1
dev.cdrom.info = Can write DVD-R:	0
dev.cdrom.info = Can write DVD-RAM:	0
dev.cdrom.info = Can read MRW:		1
dev.cdrom.info = Can write MRW:		1
dev.cdrom.info = Can write RAM:		1
dev.cdrom.info = 
dev.cdrom.info = 
dev.cdrom.lock = 1
dev.hpet.max-user-freq = 64
dev.scsi.logging_level = 0
dev.tty.ldisc_autoload = 1
dev.tty.legacy_tiocsti = 1
fs.aio-max-nr = 65536
fs.aio-nr = 0
fs.binfmt_misc.status = enabled
fs.dentry-state = 999943	983307	45	0	951213	0
fs.dir-notify-enable = 1
fs.epoll.max_user_watches = 1800592
fs.fanotify.max_queued_events = 16384
fs.fanotify.max_user_groups = 128
fs.fanotify.max_user_marks = 66366
fs.file-max = 9223372036854775807
fs.file-nr = 2112	0	9223372036854775807
fs.inode-nr = 48875	0
fs.inode-state = 48875	0	0	0	0	0	0
fs.inotify.max_queued_events = 16384
fs.inotify.max_user_instances = 128
fs.inotify.max_user_watches = 62368
fs.lease-break-time = 45
fs.leases-enable = 1
fs.mount-max = 100000
fs.mqueue.msg_default = 10
fs.mqueue.msg_max = 10
fs.mqueue.msgsize_default = 8192
fs.mqueue.msgsize_max = 8192
fs.mqueue.queues_max = 256
fs.nr_open = 1073741816
fs.overflowgid = 65534
fs.overflowuid = 65534
fs.pipe-max-size = 1048576
fs.pipe-user-pages-hard = 0
fs.pipe-user-pages-soft = 16384
fs.protected_fifos = 0
fs.protected_hardlinks = 1
fs.protected_regular = 0
fs.protected_symlinks = 1
fs.quota.allocated_dquots = 0
fs.quota.cache_hits = 0
fs.quota.drops = 0
fs.quota.free_dquots = 0
fs.quota.lookups = 0
fs.quota.reads = 0
fs.quota.syncs = 12180
fs.quota.writes = 0
fs.suid_dumpable = 2
kernel.acct = 4	2	30
kernel.acpi_video_flags = 0
kernel.arch = x86_64
kernel.auto_msgmni = 0
kernel.bootloader_type = 114
kernel.bootloader_version = 2
kernel.bpf_stats_enabled = 0
kernel.cad_pid = 1
kernel.cap_last_cap = 40
kernel.core_pattern = |/usr/lib/systemd/systemd-coredump %P %u %g %s %t %c %h
kernel.core_pipe_limit = 16
kernel.core_uses_pid = 1
kernel.ctrl-alt-del = 0
kernel.dmesg_restrict = 0
kernel.domainname = (none)
kernel.firmware_config.force_sysfs_fallback = 0
kernel.firmware_config.ignore_sysfs_fallback = 0
kernel.ftrace_dump_on_oops = 0
kernel.ftrace_enabled = 1
kernel.hardlockup_all_cpu_backtrace = 0
kernel.hardlockup_panic = 1
kernel.hostname = node-001.support
kernel.hung_task_all_cpu_backtrace = 0
kernel.hung_task_check_count = 4194304
kernel.hung_task_check_interval_secs = 0
kernel.hung_task_panic = 0
kernel.hung_task_timeout_secs = 120
kernel.hung_task_warnings = 10
kernel.io_delay_type = 0
kernel.io_uring_disabled = 0
kernel.io_uring_group = -1
kernel.kexec_load_disabled = 0
kernel.kexec_load_limit_panic = -1
kernel.kexec_load_limit_reboot = -1
kernel.keys.gc_delay = 300
kernel.keys.maxbytes = 20000
kernel.keys.maxkeys = 200
kernel.keys.root_maxbytes = 25000000
kernel.keys.root_maxkeys = 1000000
kernel.kptr_restrict = 1
kernel.latencytop = 0
kernel.max_lock_depth = 1024
kernel.max_rcu_stall_to_panic = 0
kernel.modprobe = /sbin/modprobe
kernel.modules_disabled = 0
kernel.msg_next_id = -1
kernel.msgmax = 8192
kernel.msgmnb = 16384
kernel.msgmni = 32000
kernel.ngroups_max = 65536
kernel.nmi_watchdog = 0
kernel.ns_last_pid = 2675647
kernel.numa_balancing = 0
kernel.numa_balancing_promote_rate_limit_MBps = 65536
kernel.oops_all_cpu_backtrace = 0
kernel.oops_limit = 10000
kernel.osrelease = 6.6.60-flatcar
kernel.ostype = Linux
kernel.overflowgid = 65534
kernel.overflowuid = 65534
kernel.panic = 10
kernel.panic_on_io_nmi = 0
kernel.panic_on_oops = 1
kernel.panic_on_rcu_stall = 0
kernel.panic_on_unrecovered_nmi = 0
kernel.panic_on_warn = 0
kernel.panic_print = 0
kernel.perf_cpu_time_max_percent = 25
kernel.perf_event_max_contexts_per_stack = 8
kernel.perf_event_max_sample_rate = 100000
kernel.perf_event_max_stack = 127
kernel.perf_event_mlock_kb = 516
kernel.perf_event_paranoid = 2
kernel.pid_max = 4194304
kernel.poweroff_cmd = /sbin/poweroff
kernel.print-fatal-signals = 0
kernel.printk = 7	4	1	7
kernel.printk_delay = 0
kernel.printk_devkmsg = on
kernel.printk_ratelimit = 5
kernel.printk_ratelimit_burst = 10
kernel.pty.max = 4096
kernel.pty.nr = 17
kernel.pty.reserve = 1024
kernel.random.boot_id = f161457f-b41c-4fc7-a43e-36e55a5155f6
kernel.random.entropy_avail = 256
kernel.random.poolsize = 256
kernel.random.urandom_min_reseed_secs = 60
kernel.random.uuid = ec3ccace-8c90-4421-a760-203abe0404fb
kernel.random.write_wakeup_threshold = 256
kernel.randomize_va_space = 2
kernel.real-root-dev = 0
kernel.sched_autogroup_enabled = 1
kernel.sched_cfs_bandwidth_slice_us = 5000
kernel.sched_child_runs_first = 0
kernel.sched_deadline_period_max_us = 4194304
kernel.sched_deadline_period_min_us = 100
kernel.sched_rr_timeslice_ms = 100
kernel.sched_rt_period_us = 1000000
kernel.sched_rt_runtime_us = 950000
kernel.sched_schedstats = 0
kernel.seccomp.actions_avail = kill_process kill_thread trap errno user_notif trace log allow
kernel.seccomp.actions_logged = kill_process kill_thread trap errno user_notif trace log
kernel.sem = 32000	1024000000	500	32000
kernel.sem_next_id = -1
kernel.shm_next_id = -1
kernel.shm_rmid_forced = 0
kernel.shmall = 18446744073692774399
kernel.shmmax = 18446744073692774399
kernel.shmmni = 4096
kernel.soft_watchdog = 1
kernel.softlockup_all_cpu_backtrace = 0
kernel.softlockup_panic = 1
kernel.split_lock_mitigate = 1
kernel.stack_tracer_enabled = 0
kernel.sysctl_writes_strict = 1
kernel.sysrq = 16
kernel.tainted = 0
kernel.threads-max = 63192
kernel.timer_migration = 1
kernel.traceoff_on_warning = 0
kernel.tracepoint_printk = 0
kernel.unknown_nmi_panic = 0
kernel.unprivileged_bpf_disabled = 2
kernel.usermodehelper.bset = 4294967295	511
kernel.usermodehelper.inheritable = 4294967295	511
kernel.version = #1 SMP PREEMPT_DYNAMIC Tue Nov 12 16:20:46 -00 2024
kernel.warn_limit = 0
kernel.watchdog = 1
kernel.watchdog_cpumask = 0-3
kernel.watchdog_thresh = 10
net.bridge.bridge-nf-call-arptables = 1
net.bridge.bridge-nf-call-ip6tables = 1
net.bridge.bridge-nf-call-iptables = 1
net.bridge.bridge-nf-filter-pppoe-tagged = 0
net.bridge.bridge-nf-filter-vlan-tagged = 0
net.bridge.bridge-nf-pass-vlan-input-dev = 0
net.core.bpf_jit_enable = 1
net.core.bpf_jit_harden = 0
net.core.bpf_jit_kallsyms = 1
net.core.bpf_jit_limit = 528482304
net.core.busy_poll = 0
net.core.busy_read = 0
net.core.default_qdisc = fq_codel
net.core.dev_weight = 64
net.core.dev_weight_rx_bias = 1
net.core.dev_weight_tx_bias = 1
net.core.devconf_inherit_init_net = 0
net.core.fb_tunnels_only_for_init_net = 0
net.core.flow_limit_cpu_bitmap = 0
net.core.flow_limit_table_len = 4096
net.core.gro_normal_batch = 8
net.core.high_order_alloc_disable = 0
net.core.max_skb_frags = 17
net.core.mem_pcpu_rsv = 256
net.core.message_burst = 10
net.core.message_cost = 5
net.core.netdev_budget = 300
net.core.netdev_budget_usecs = 2000
net.core.netdev_max_backlog = 1000
net.core.netdev_rss_key = 00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00:00
net.core.netdev_tstamp_prequeue = 1
net.core.netdev_unregister_timeout_secs = 10
net.core.optmem_max = 20480
net.core.rmem_default = 212992
net.core.rmem_max = 212992
net.core.rps_default_mask = 0
net.core.rps_sock_flow_entries = 0
net.core.skb_defer_max = 64
net.core.somaxconn = 4096
net.core.tstamp_allow_data = 1
net.core.txrehash = 1
net.core.warnings = 0
net.core.wmem_default = 212992
net.core.wmem_max = 212992
net.core.xfrm_acq_expires = 30
net.core.xfrm_aevent_etime = 10
net.core.xfrm_aevent_rseqth = 2
net.core.xfrm_larval_drop = 1
net.ipv4.conf.all.accept_local = 0
net.ipv4.conf.all.accept_redirects = 0
net.ipv4.conf.all.accept_source_route = 0
net.ipv4.conf.all.arp_accept = 0
net.ipv4.conf.all.arp_announce = 2
net.ipv4.conf.all.arp_evict_nocarrier = 1
net.ipv4.conf.all.arp_filter = 0
net.ipv4.conf.all.arp_ignore = 1
net.ipv4.conf.all.arp_notify = 0
net.ipv4.conf.all.bc_forwarding = 0
net.ipv4.conf.all.bootp_relay = 0
net.ipv4.conf.all.disable_policy = 0
net.ipv4.conf.all.disable_xfrm = 0
net.ipv4.conf.all.drop_gratuitous_arp = 0
net.ipv4.conf.all.drop_unicast_in_l2_multicast = 0
net.ipv4.conf.all.force_igmp_version = 0
net.ipv4.conf.all.forwarding = 1
net.ipv4.conf.all.igmpv2_unsolicited_report_interval = 10000
net.ipv4.conf.all.igmpv3_unsolicited_report_interval = 1000
net.ipv4.conf.all.ignore_routes_with_linkdown = 0
net.ipv4.conf.all.log_martians = 0
net.ipv4.conf.all.mc_forwarding = 0
net.ipv4.conf.all.medium_id = 0
net.ipv4.conf.all.promote_secondaries = 0
net.ipv4.conf.all.proxy_arp = 0
net.ipv4.conf.all.proxy_arp_pvlan = 0
net.ipv4.conf.all.route_localnet = 1
net.ipv4.conf.all.rp_filter = 2
net.ipv4.conf.all.secure_redirects = 1
net.ipv4.conf.all.send_redirects = 1
net.ipv4.conf.all.shared_media = 1
net.ipv4.conf.all.src_valid_mark = 0
net.ipv4.conf.all.tag = 0
net.ipv4.conf.default.accept_local = 0
net.ipv4.conf.default.accept_redirects = 1
net.ipv4.conf.default.accept_source_route = 0
net.ipv4.conf.default.arp_accept = 0
net.ipv4.conf.default.arp_announce = 0
net.ipv4.conf.default.arp_evict_nocarrier = 1
net.ipv4.conf.default.arp_filter = 0
net.ipv4.conf.default.arp_ignore = 0
net.ipv4.conf.default.arp_notify = 0
net.ipv4.conf.default.bc_forwarding = 0
net.ipv4.conf.default.bootp_relay = 0
net.ipv4.conf.default.disable_policy = 0
net.ipv4.conf.default.disable_xfrm = 0
net.ipv4.conf.default.drop_gratuitous_arp = 0
net.ipv4.conf.default.drop_unicast_in_l2_multicast = 0
net.ipv4.conf.default.force_igmp_version = 0
net.ipv4.conf.default.forwarding = 1
net.ipv4.conf.default.igmpv2_unsolicited_report_interval = 10000
net.ipv4.conf.default.igmpv3_unsolicited_report_interval = 1000
net.ipv4.conf.default.ignore_routes_with_linkdown = 0
net.ipv4.conf.default.log_martians = 0
net.ipv4.conf.default.mc_forwarding = 0
net.ipv4.conf.default.medium_id = 0
net.ipv4.conf.default.promote_secondaries = 1
net.ipv4.conf.default.proxy_arp = 0
net.ipv4.conf.default.proxy_arp_pvlan = 0
net.ipv4.conf.default.route_localnet = 0
net.ipv4.conf.default.rp_filter = 0
net.ipv4.conf.default.secure_redirects = 1
net.ipv4.conf.default.send_redirects = 1
net.ipv4.conf.default.shared_media = 1
net.ipv4.conf.default.src_valid_mark = 0
net.ipv4.conf.default.tag = 0
net.ipv4.conf.eth0.accept_local = 0
net.ipv4.conf.eth0.accept_redirects = 1
net.ipv4.conf.eth0.accept_source_route = 0
net.ipv4.conf.eth0.arp_accept = 0
net.ipv4.conf.eth0.arp_announce = 0
net.ipv4.conf.eth0.arp_evict_nocarrier = 1
net.ipv4.conf.eth0.arp_filter = 0
net.ipv4.conf.eth0.arp_ignore = 0
net.ipv4.conf.eth0.arp_notify = 0
net.ipv4.conf.eth0.bc_forwarding = 0
net.ipv4.conf.eth0.bootp_relay = 0
net.ipv4.conf.eth0.disable_policy = 0
net.ipv4.conf.eth0.disable_xfrm = 0
net.ipv4.conf.eth0.drop_gratuitous_arp = 0
net.ipv4.conf.eth0.drop_unicast_in_l2_multicast = 0
net.ipv4.conf.eth0.force_igmp_version = 0
net.ipv4.conf.eth0.forwarding = 1
net.ipv4.conf.eth0.igmpv2_unsolicited_report_interval = 10000
net.ipv4.conf.eth0.igmpv3_unsolicited_report_interval = 1000
net.ipv4.conf.eth0.ignore_routes_with_linkdown = 0
net.ipv4.conf.eth0.log_martians = 0
net.ipv4.conf.eth0.mc_forwarding = 0
net.ipv4.conf.eth0.medium_id = 0
net.ipv4.conf.eth0.promote_secondaries = 1
net.ipv4.conf.eth0.proxy_arp = 0
net.ipv4.conf.eth0.proxy_arp_pvlan = 0
net.ipv4.conf.eth0.route_localnet = 0
net.ipv4.conf.eth0.rp_filter = 0
net.ipv4.conf.eth0.secure_redirects = 1
net.ipv4.conf.eth0.send_redirects = 1
net.ipv4.conf.eth0.shared_media = 1
net.ipv4.conf.eth0.src_valid_mark = 0
net.ipv4.conf.eth0.tag = 0
net.ipv4.conf.eth1.accept_local = 0
net.ipv4.conf.eth1.accept_redirects = 1
net.ipv4.conf.eth1.accept_source_route = 0
net.ipv4.conf.eth1.arp_accept = 0
net.ipv4.conf.eth1.arp_announce = 0
net.ipv4.conf.eth1.arp_evict_nocarrier = 1
net.ipv4.conf.eth1.arp_filter = 0
net.ipv4.conf.eth1.arp_ignore = 0
net.ipv4.conf.eth1.arp_notify = 0
net.ipv4.conf.eth1.bc_forwarding = 0
net.ipv4.conf.eth1.bootp_relay = 0
net.ipv4.conf.eth1.disable_policy = 0
net.ipv4.conf.eth1.disable_xfrm = 0
net.ipv4.conf.eth1.drop_gratuitous_arp = 0
net.ipv4.conf.eth1.drop_unicast_in_l2_multicast = 0
net.ipv4.conf.eth1.force_igmp_version = 0
net.ipv4.conf.eth1.forwarding = 1
net.ipv4.conf.eth1.igmpv2_unsolicited_report_interval = 10000
net.ipv4.conf.eth1.igmpv3_unsolicited_report_interval = 1000
net.ipv4.conf.eth1.ignore_routes_with_linkdown = 0
net.ipv4.conf.eth1.log_martians = 0
net.ipv4.conf.eth1.mc_forwarding = 0
net.ipv4.conf.eth1.medium_id = 0
net.ipv4.conf.eth1.promote_secondaries = 1
net.ipv4.conf.eth1.proxy_arp = 0
net.ipv4.conf.eth1.proxy_arp_pvlan = 0
net.ipv4.conf.eth1.route_localnet = 0
net.ipv4.conf.eth1.rp_filter = 0
net.ipv4.conf.eth1.secure_redirects = 1
net.ipv4.conf.eth1.send_redirects = 1
net.ipv4.conf.eth1.shared_media = 1
net.ipv4.conf.eth1.src_valid_mark = 0
net.ipv4.conf.eth1.tag = 0
net.ipv4.conf.kube-bridge.accept_local = 0
net.ipv4.conf.kube-bridge.accept_redirects = 1
net.ipv4.conf.kube-bridge.accept_source_route = 0
net.ipv4.conf.kube-bridge.arp_accept = 0
net.ipv4.conf.kube-bridge.arp_announce = 0
net.ipv4.conf.kube-bridge.arp_evict_nocarrier = 1
net.ipv4.conf.kube-bridge.arp_filter = 0
net.ipv4.conf.kube-bridge.arp_ignore = 0
net.ipv4.conf.kube-bridge.arp_notify = 0
net.ipv4.conf.kube-bridge.bc_forwarding = 0
net.ipv4.conf.kube-bridge.bootp_relay = 0
net.ipv4.conf.kube-bridge.disable_policy = 0
net.ipv4.conf.kube-bridge.disable_xfrm = 0
net.ipv4.conf.kube-bridge.drop_gratuitous_arp = 0
net.ipv4.conf.kube-bridge.drop_unicast_in_l2_multicast = 0
net.ipv4.conf.kube-bridge.force_igmp_version = 0
net.ipv4.conf.kube-bridge.forwarding = 1
net.ipv4.conf.kube-bridge.igmpv2_unsolicited_report_interval = 10000
net.ipv4.conf.kube-bridge.igmpv3_unsolicited_report_interval = 1000
net.ipv4.conf.kube-bridge.ignore_routes_with_linkdown = 0
net.ipv4.conf.kube-bridge.log_martians = 0
net.ipv4.conf.kube-bridge.mc_forwarding = 0
net.ipv4.conf.kube-bridge.medium_id = 0
net.ipv4.conf.kube-bridge.promote_secondaries = 1
net.ipv4.conf.kube-bridge.proxy_arp = 0
net.ipv4.conf.kube-bridge.proxy_arp_pvlan = 0
net.ipv4.conf.kube-bridge.route_localnet = 0
net.ipv4.conf.kube-bridge.rp_filter = 0
net.ipv4.conf.kube-bridge.secure_redirects = 1
net.ipv4.conf.kube-bridge.send_redirects = 1
net.ipv4.conf.kube-bridge.shared_media = 1
net.ipv4.conf.kube-bridge.src_valid_mark = 0
net.ipv4.conf.kube-bridge.tag = 0
net.ipv4.conf.kube-dummy-if.accept_local = 0
net.ipv4.conf.kube-dummy-if.accept_redirects = 1
net.ipv4.conf.kube-dummy-if.accept_source_route = 0
net.ipv4.conf.kube-dummy-if.arp_accept = 0
net.ipv4.conf.kube-dummy-if.arp_announce = 0
net.ipv4.conf.kube-dummy-if.arp_evict_nocarrier = 1
net.ipv4.conf.kube-dummy-if.arp_filter = 0
net.ipv4.conf.kube-dummy-if.arp_ignore = 0
net.ipv4.conf.kube-dummy-if.arp_notify = 0
net.ipv4.conf.kube-dummy-if.bc_forwarding = 0
net.ipv4.conf.kube-dummy-if.bootp_relay = 0
net.ipv4.conf.kube-dummy-if.disable_policy = 0
net.ipv4.conf.kube-dummy-if.disable_xfrm = 0
net.ipv4.conf.kube-dummy-if.drop_gratuitous_arp = 0
net.ipv4.conf.kube-dummy-if.drop_unicast_in_l2_multicast = 0
net.ipv4.conf.kube-dummy-if.force_igmp_version = 0
net.ipv4.conf.kube-dummy-if.forwarding = 1
net.ipv4.conf.kube-dummy-if.igmpv2_unsolicited_report_interval = 10000
net.ipv4.conf.kube-dummy-if.igmpv3_unsolicited_report_interval = 1000
net.ipv4.conf.kube-dummy-if.ignore_routes_with_linkdown = 0
net.ipv4.conf.kube-dummy-if.log_martians = 0
net.ipv4.conf.kube-dummy-if.mc_forwarding = 0
net.ipv4.conf.kube-dummy-if.medium_id = 0
net.ipv4.conf.kube-dummy-if.promote_secondaries = 1
net.ipv4.conf.kube-dummy-if.proxy_arp = 0
net.ipv4.conf.kube-dummy-if.proxy_arp_pvlan = 0
net.ipv4.conf.kube-dummy-if.route_localnet = 0
net.ipv4.conf.kube-dummy-if.rp_filter = 0
net.ipv4.conf.kube-dummy-if.secure_redirects = 1
net.ipv4.conf.kube-dummy-if.send_redirects = 1
net.ipv4.conf.kube-dummy-if.shared_media = 1
net.ipv4.conf.kube-dummy-if.src_valid_mark = 0
net.ipv4.conf.kube-dummy-if.tag = 0
net.ipv4.conf.lo.accept_local = 0
net.ipv4.conf.lo.accept_redirects = 1
net.ipv4.conf.lo.accept_source_route = 0
net.ipv4.conf.lo.arp_accept = 0
net.ipv4.conf.lo.arp_announce = 0
net.ipv4.conf.lo.arp_evict_nocarrier = 1
net.ipv4.conf.lo.arp_filter = 0
net.ipv4.conf.lo.arp_ignore = 0
net.ipv4.conf.lo.arp_notify = 0
net.ipv4.conf.lo.bc_forwarding = 0
net.ipv4.conf.lo.bootp_relay = 0
net.ipv4.conf.lo.disable_policy = 1
net.ipv4.conf.lo.disable_xfrm = 1
net.ipv4.conf.lo.drop_gratuitous_arp = 0
net.ipv4.conf.lo.drop_unicast_in_l2_multicast = 0
net.ipv4.conf.lo.force_igmp_version = 0
net.ipv4.conf.lo.forwarding = 1
net.ipv4.conf.lo.igmpv2_unsolicited_report_interval = 10000
net.ipv4.conf.lo.igmpv3_unsolicited_report_interval = 1000
net.ipv4.conf.lo.ignore_routes_with_linkdown = 0
net.ipv4.conf.lo.log_martians = 0
net.ipv4.conf.lo.mc_forwarding = 0
net.ipv4.conf.lo.medium_id = 0
net.ipv4.conf.lo.promote_secondaries = 1
net.ipv4.conf.lo.proxy_arp = 0
net.ipv4.conf.lo.proxy_arp_pvlan = 0
net.ipv4.conf.lo.route_localnet = 0
net.ipv4.conf.lo.rp_filter = 0
net.ipv4.conf.lo.secure_redirects = 1
net.ipv4.conf.lo.send_redirects = 1
net.ipv4.conf.lo.shared_media = 1
net.ipv4.conf.lo.src_valid_mark = 0
net.ipv4.conf.lo.tag = 0
net.ipv4.conf.veth0fed950c.accept_local = 0
net.ipv4.conf.veth0fed950c.accept_redirects = 1
net.ipv4.conf.veth0fed950c.accept_source_route = 0
net.ipv4.conf.veth0fed950c.arp_accept = 0
net.ipv4.conf.veth0fed950c.arp_announce = 0
net.ipv4.conf.veth0fed950c.arp_evict_nocarrier = 1
net.ipv4.conf.veth0fed950c.arp_filter = 0
net.ipv4.conf.veth0fed950c.arp_ignore = 0
net.ipv4.conf.veth0fed950c.arp_notify = 0
net.ipv4.conf.veth0fed950c.bc_forwarding = 0
net.ipv4.conf.veth0fed950c.bootp_relay = 0
net.ipv4.conf.veth0fed950c.disable_policy = 0
net.ipv4.conf.veth0fed950c.disable_xfrm = 0
net.ipv4.conf.veth0fed950c.drop_gratuitous_arp = 0
net.ipv4.conf.veth0fed950c.drop_unicast_in_l2_multicast = 0
net.ipv4.conf.veth0fed950c.force_igmp_version = 0
net.ipv4.conf.veth0fed950c.forwarding = 1
net.ipv4.conf.veth0fed950c.igmpv2_unsolicited_report_interval = 10000
net.ipv4.conf.veth0fed950c.igmpv3_unsolicited_report_interval = 1000
net.ipv4.conf.veth0fed950c.ignore_routes_with_linkdown = 0
net.ipv4.conf.veth0fed950c.log_martians = 0
net.ipv4.conf.veth0fed950c.mc_forwarding = 0
net.ipv4.conf.veth0fed950c.medium_id = 0
net.ipv4.conf.veth0fed950c.promote_secondaries = 1
net.ipv4.conf.veth0fed950c.proxy_arp = 0
net.ipv4.conf.veth0fed950c.proxy_arp_pvlan = 0
net.ipv4.conf.veth0fed950c.route_localnet = 0
net.ipv4.conf.veth0fed950c.rp_filter = 0
net.ipv4.conf.veth0fed950c.secure_redirects = 1
net.ipv4.conf.veth0fed950c.send_redirects = 1
net.ipv4.conf.veth0fed950c.shared_media = 1
net.ipv4.conf.veth0fed950c.src_valid_mark = 0
net.ipv4.conf.veth0fed950c.tag = 0
net.ipv4.conf.veth1f48782e.accept_local = 0
net.ipv4.conf.veth1f48782e.accept_redirects = 1
net.ipv4.conf.veth1f48782e.accept_source_route = 0
net.ipv4.conf.veth1f48782e.arp_accept = 0
net.ipv4.conf.veth1f48782e.arp_announce = 0
net.ipv4.conf.veth1f48782e.arp_evict_nocarrier = 1
net.ipv4.conf.veth1f48782e.arp_filter = 0
net.ipv4.conf.veth1f48782e.arp_ignore = 0
net.ipv4.conf.veth1f48782e.arp_notify = 0
net.ipv4.conf.veth1f48782e.bc_forwarding = 0
net.ipv4.conf.veth1f48782e.bootp_relay = 0
net.ipv4.conf.veth1f48782e.disable_policy = 0
net.ipv4.conf.veth1f48782e.disable_xfrm = 0
net.ipv4.conf.veth1f48782e.drop_gratuitous_arp = 0
net.ipv4.conf.veth1f48782e.drop_unicast_in_l2_multicast = 0
net.ipv4.conf.veth1f48782e.force_igmp_version = 0
net.ipv4.conf.veth1f48782e.forwarding = 1
net.ipv4.conf.veth1f48782e.igmpv2_unsolicited_report_interval = 10000
net.ipv4.conf.veth1f48782e.igmpv3_unsolicited_report_interval = 1000
net.ipv4.conf.veth1f48782e.ignore_routes_with_linkdown = 0
net.ipv4.conf.veth1f48782e.log_martians = 0
net.ipv4.conf.veth1f48782e.mc_forwarding = 0
net.ipv4.conf.veth1f48782e.medium_id = 0
net.ipv4.conf.veth1f48782e.promote_secondaries = 1
net.ipv4.conf.veth1f48782e.proxy_arp = 0
net.ipv4.conf.veth1f48782e.proxy_arp_pvlan = 0
net.ipv4.conf.veth1f48782e.route_localnet = 0
net.ipv4.conf.veth1f48782e.rp_filter = 0
net.ipv4.conf.veth1f48782e.secure_redirects = 1
net.ipv4.conf.veth1f48782e.send_redirects = 1
net.ipv4.conf.veth1f48782e.shared_media = 1
net.ipv4.conf.veth1f48782e.src_valid_mark = 0
net.ipv4.conf.veth1f48782e.tag = 0
net.ipv4.conf.veth29a8d74e.accept_local = 0
net.ipv4.conf.veth29a8d74e.accept_redirects = 1
net.ipv4.conf.veth29a8d74e.accept_source_route = 0
net.ipv4.conf.veth29a8d74e.arp_accept = 0
net.ipv4.conf.veth29a8d74e.arp_announce = 0
net.ipv4.conf.veth29a8d74e.arp_evict_nocarrier = 1
net.ipv4.conf.veth29a8d74e.arp_filter = 0
net.ipv4.conf.veth29a8d74e.arp_ignore = 0
net.ipv4.conf.veth29a8d74e.arp_notify = 0
net.ipv4.conf.veth29a8d74e.bc_forwarding = 0
net.ipv4.conf.veth29a8d74e.bootp_relay = 0
net.ipv4.conf.veth29a8d74e.disable_policy = 0
net.ipv4.conf.veth29a8d74e.disable_xfrm = 0
net.ipv4.conf.veth29a8d74e.drop_gratuitous_arp = 0
net.ipv4.conf.veth29a8d74e.drop_unicast_in_l2_multicast = 0
net.ipv4.conf.veth29a8d74e.force_igmp_version = 0
net.ipv4.conf.veth29a8d74e.forwarding = 1
net.ipv4.conf.veth29a8d74e.igmpv2_unsolicited_report_interval = 10000
net.ipv4.conf.veth29a8d74e.igmpv3_unsolicited_report_interval = 1000
net.ipv4.conf.veth29a8d74e.ignore_routes_with_linkdown = 0
net.ipv4.conf.veth29a8d74e.log_martians = 0
net.ipv4.conf.veth29a8d74e.mc_forwarding = 0
net.ipv4.conf.veth29a8d74e.medium_id = 0
net.ipv4.conf.veth29a8d74e.promote_secondaries = 1
net.ipv4.conf.veth29a8d74e.proxy_arp = 0
net.ipv4.conf.veth29a8d74e.proxy_arp_pvlan = 0
net.ipv4.conf.veth29a8d74e.route_localnet = 0
net.ipv4.conf.veth29a8d74e.rp_filter = 0
net.ipv4.conf.veth29a8d74e.secure_redirects = 1
net.ipv4.conf.veth29a8d74e.send_redirects = 1
net.ipv4.conf.veth29a8d74e.shared_media = 1
net.ipv4.conf.veth29a8d74e.src_valid_mark = 0
net.ipv4.conf.veth29a8d74e.tag = 0
net.ipv4.conf.veth41e9493d.accept_local = 0
net.ipv4.conf.veth41e9493d.accept_redirects = 1
net.ipv4.conf.veth41e9493d.accept_source_route = 0
net.ipv4.conf.veth41e9493d.arp_accept = 0
net.ipv4.conf.veth41e9493d.arp_announce = 0
net.ipv4.conf.veth41e9493d.arp_evict_nocarrier = 1
net.ipv4.conf.veth41e9493d.arp_filter = 0
net.ipv4.conf.veth41e9493d.arp_ignore = 0
net.ipv4.conf.veth41e9493d.arp_notify = 0
net.ipv4.conf.veth41e9493d.bc_forwarding = 0
net.ipv4.conf.veth41e9493d.bootp_relay = 0
net.ipv4.conf.veth41e9493d.disable_policy = 0
net.ipv4.conf.veth41e9493d.disable_xfrm = 0
net.ipv4.conf.veth41e9493d.drop_gratuitous_arp = 0
net.ipv4.conf.veth41e9493d.drop_unicast_in_l2_multicast = 0
net.ipv4.conf.veth41e9493d.force_igmp_version = 0
net.ipv4.conf.veth41e9493d.forwarding = 1
net.ipv4.conf.veth41e9493d.igmpv2_unsolicited_report_interval = 10000
net.ipv4.conf.veth41e9493d.igmpv3_unsolicited_report_interval = 1000
net.ipv4.conf.veth41e9493d.ignore_routes_with_linkdown = 0
net.ipv4.conf.veth41e9493d.log_martians = 0
net.ipv4.conf.veth41e9493d.mc_forwarding = 0
net.ipv4.conf.veth41e9493d.medium_id = 0
net.ipv4.conf.veth41e9493d.promote_secondaries = 1
net.ipv4.conf.veth41e9493d.proxy_arp = 0
net.ipv4.conf.veth41e9493d.proxy_arp_pvlan = 0
net.ipv4.conf.veth41e9493d.route_localnet = 0
net.ipv4.conf.veth41e9493d.rp_filter = 0
net.ipv4.conf.veth41e9493d.secure_redirects = 1
net.ipv4.conf.veth41e9493d.send_redirects = 1
net.ipv4.conf.veth41e9493d.shared_media = 1
net.ipv4.conf.veth41e9493d.src_valid_mark = 0
net.ipv4.conf.veth41e9493d.tag = 0
net.ipv4.conf.veth4b6f88bf.accept_local = 0
net.ipv4.conf.veth4b6f88bf.accept_redirects = 1
net.ipv4.conf.veth4b6f88bf.accept_source_route = 0
net.ipv4.conf.veth4b6f88bf.arp_accept = 0
net.ipv4.conf.veth4b6f88bf.arp_announce = 0
net.ipv4.conf.veth4b6f88bf.arp_evict_nocarrier = 1
net.ipv4.conf.veth4b6f88bf.arp_filter = 0
net.ipv4.conf.veth4b6f88bf.arp_ignore = 0
net.ipv4.conf.veth4b6f88bf.arp_notify = 0
net.ipv4.conf.veth4b6f88bf.bc_forwarding = 0
net.ipv4.conf.veth4b6f88bf.bootp_relay = 0
net.ipv4.conf.veth4b6f88bf.disable_policy = 0
net.ipv4.conf.veth4b6f88bf.disable_xfrm = 0
net.ipv4.conf.veth4b6f88bf.drop_gratuitous_arp = 0
net.ipv4.conf.veth4b6f88bf.drop_unicast_in_l2_multicast = 0
net.ipv4.conf.veth4b6f88bf.force_igmp_version = 0
net.ipv4.conf.veth4b6f88bf.forwarding = 1
net.ipv4.conf.veth4b6f88bf.igmpv2_unsolicited_report_interval = 10000
net.ipv4.conf.veth4b6f88bf.igmpv3_unsolicited_report_interval = 1000
net.ipv4.conf.veth4b6f88bf.ignore_routes_with_linkdown = 0
net.ipv4.conf.veth4b6f88bf.log_martians = 0
net.ipv4.conf.veth4b6f88bf.mc_forwarding = 0
net.ipv4.conf.veth4b6f88bf.medium_id = 0
net.ipv4.conf.veth4b6f88bf.promote_secondaries = 1
net.ipv4.conf.veth4b6f88bf.proxy_arp = 0
net.ipv4.conf.veth4b6f88bf.proxy_arp_pvlan = 0
net.ipv4.conf.veth4b6f88bf.route_localnet = 0
net.ipv4.conf.veth4b6f88bf.rp_filter = 0
net.ipv4.conf.veth4b6f88bf.secure_redirects = 1
net.ipv4.conf.veth4b6f88bf.send_redirects = 1
net.ipv4.conf.veth4b6f88bf.shared_media = 1
net.ipv4.conf.veth4b6f88bf.src_valid_mark = 0
net.ipv4.conf.veth4b6f88bf.tag = 0
net.ipv4.conf.veth72217438.accept_local = 0
net.ipv4.conf.veth72217438.accept_redirects = 1
net.ipv4.conf.veth72217438.accept_source_route = 0
net.ipv4.conf.veth72217438.arp_accept = 0
net.ipv4.conf.veth72217438.arp_announce = 0
net.ipv4.conf.veth72217438.arp_evict_nocarrier = 1
net.ipv4.conf.veth72217438.arp_filter = 0
net.ipv4.conf.veth72217438.arp_ignore = 0
net.ipv4.conf.veth72217438.arp_notify = 0
net.ipv4.conf.veth72217438.bc_forwarding = 0
net.ipv4.conf.veth72217438.bootp_relay = 0
net.ipv4.conf.veth72217438.disable_policy = 0
net.ipv4.conf.veth72217438.disable_xfrm = 0
net.ipv4.conf.veth72217438.drop_gratuitous_arp = 0
net.ipv4.conf.veth72217438.drop_unicast_in_l2_multicast = 0
net.ipv4.conf.veth72217438.force_igmp_version = 0
net.ipv4.conf.veth72217438.forwarding = 1
net.ipv4.conf.veth72217438.igmpv2_unsolicited_report_interval = 10000
net.ipv4.conf.veth72217438.igmpv3_unsolicited_report_interval = 1000
net.ipv4.conf.veth72217438.ignore_routes_with_linkdown = 0
net.ipv4.conf.veth72217438.log_martians = 0
net.ipv4.conf.veth72217438.mc_forwarding = 0
net.ipv4.conf.veth72217438.medium_id = 0
net.ipv4.conf.veth72217438.promote_secondaries = 1
net.ipv4.conf.veth72217438.proxy_arp = 0
net.ipv4.conf.veth72217438.proxy_arp_pvlan = 0
net.ipv4.conf.veth72217438.route_localnet = 0
net.ipv4.conf.veth72217438.rp_filter = 0
net.ipv4.conf.veth72217438.secure_redirects = 1
net.ipv4.conf.veth72217438.send_redirects = 1
net.ipv4.conf.veth72217438.shared_media = 1
net.ipv4.conf.veth72217438.src_valid_mark = 0
net.ipv4.conf.veth72217438.tag = 0
net.ipv4.conf.veth83380718.accept_local = 0
net.ipv4.conf.veth83380718.accept_redirects = 1
net.ipv4.conf.veth83380718.accept_source_route = 0
net.ipv4.conf.veth83380718.arp_accept = 0
net.ipv4.conf.veth83380718.arp_announce = 0
net.ipv4.conf.veth83380718.arp_evict_nocarrier = 1
net.ipv4.conf.veth83380718.arp_filter = 0
net.ipv4.conf.veth83380718.arp_ignore = 0
net.ipv4.conf.veth83380718.arp_notify = 0
net.ipv4.conf.veth83380718.bc_forwarding = 0
net.ipv4.conf.veth83380718.bootp_relay = 0
net.ipv4.conf.veth83380718.disable_policy = 0
net.ipv4.conf.veth83380718.disable_xfrm = 0
net.ipv4.conf.veth83380718.drop_gratuitous_arp = 0
net.ipv4.conf.veth83380718.drop_unicast_in_l2_multicast = 0
net.ipv4.conf.veth83380718.force_igmp_version = 0
net.ipv4.conf.veth83380718.forwarding = 1
net.ipv4.conf.veth83380718.igmpv2_unsolicited_report_interval = 10000
net.ipv4.conf.veth83380718.igmpv3_unsolicited_report_interval = 1000
net.ipv4.conf.veth83380718.ignore_routes_with_linkdown = 0
net.ipv4.conf.veth83380718.log_martians = 0
net.ipv4.conf.veth83380718.mc_forwarding = 0
net.ipv4.conf.veth83380718.medium_id = 0
net.ipv4.conf.veth83380718.promote_secondaries = 1
net.ipv4.conf.veth83380718.proxy_arp = 0
net.ipv4.conf.veth83380718.proxy_arp_pvlan = 0
net.ipv4.conf.veth83380718.route_localnet = 0
net.ipv4.conf.veth83380718.rp_filter = 0
net.ipv4.conf.veth83380718.secure_redirects = 1
net.ipv4.conf.veth83380718.send_redirects = 1
net.ipv4.conf.veth83380718.shared_media = 1
net.ipv4.conf.veth83380718.src_valid_mark = 0
net.ipv4.conf.veth83380718.tag = 0
net.ipv4.conf.veth9ea2e917.accept_local = 0
net.ipv4.conf.veth9ea2e917.accept_redirects = 1
net.ipv4.conf.veth9ea2e917.accept_source_route = 0
net.ipv4.conf.veth9ea2e917.arp_accept = 0
net.ipv4.conf.veth9ea2e917.arp_announce = 0
net.ipv4.conf.veth9ea2e917.arp_evict_nocarrier = 1
net.ipv4.conf.veth9ea2e917.arp_filter = 0
net.ipv4.conf.veth9ea2e917.arp_ignore = 0
net.ipv4.conf.veth9ea2e917.arp_notify = 0
net.ipv4.conf.veth9ea2e917.bc_forwarding = 0
net.ipv4.conf.veth9ea2e917.bootp_relay = 0
net.ipv4.conf.veth9ea2e917.disable_policy = 0
net.ipv4.conf.veth9ea2e917.disable_xfrm = 0
net.ipv4.conf.veth9ea2e917.drop_gratuitous_arp = 0
net.ipv4.conf.veth9ea2e917.drop_unicast_in_l2_multicast = 0
net.ipv4.conf.veth9ea2e917.force_igmp_version = 0
net.ipv4.conf.veth9ea2e917.forwarding = 1
net.ipv4.conf.veth9ea2e917.igmpv2_unsolicited_report_interval = 10000
net.ipv4.conf.veth9ea2e917.igmpv3_unsolicited_report_interval = 1000
net.ipv4.conf.veth9ea2e917.ignore_routes_with_linkdown = 0
net.ipv4.conf.veth9ea2e917.log_martians = 0
net.ipv4.conf.veth9ea2e917.mc_forwarding = 0
net.ipv4.conf.veth9ea2e917.medium_id = 0
net.ipv4.conf.veth9ea2e917.promote_secondaries = 1
net.ipv4.conf.veth9ea2e917.proxy_arp = 0
net.ipv4.conf.veth9ea2e917.proxy_arp_pvlan = 0
net.ipv4.conf.veth9ea2e917.route_localnet = 0
net.ipv4.conf.veth9ea2e917.rp_filter = 0
net.ipv4.conf.veth9ea2e917.secure_redirects = 1
net.ipv4.conf.veth9ea2e917.send_redirects = 1
net.ipv4.conf.veth9ea2e917.shared_media = 1
net.ipv4.conf.veth9ea2e917.src_valid_mark = 0
net.ipv4.conf.veth9ea2e917.tag = 0
net.ipv4.conf.vethe4392229.accept_local = 0
net.ipv4.conf.vethe4392229.accept_redirects = 1
net.ipv4.conf.vethe4392229.accept_source_route = 0
net.ipv4.conf.vethe4392229.arp_accept = 0
net.ipv4.conf.vethe4392229.arp_announce = 0
net.ipv4.conf.vethe4392229.arp_evict_nocarrier = 1
net.ipv4.conf.vethe4392229.arp_filter = 0
net.ipv4.conf.vethe4392229.arp_ignore = 0
net.ipv4.conf.vethe4392229.arp_notify = 0
net.ipv4.conf.vethe4392229.bc_forwarding = 0
net.ipv4.conf.vethe4392229.bootp_relay = 0
net.ipv4.conf.vethe4392229.disable_policy = 0
net.ipv4.conf.vethe4392229.disable_xfrm = 0
net.ipv4.conf.vethe4392229.drop_gratuitous_arp = 0
net.ipv4.conf.vethe4392229.drop_unicast_in_l2_multicast = 0
net.ipv4.conf.vethe4392229.force_igmp_version = 0
net.ipv4.conf.vethe4392229.forwarding = 1
net.ipv4.conf.vethe4392229.igmpv2_unsolicited_report_interval = 10000
net.ipv4.conf.vethe4392229.igmpv3_unsolicited_report_interval = 1000
net.ipv4.conf.vethe4392229.ignore_routes_with_linkdown = 0
net.ipv4.conf.vethe4392229.log_martians = 0
net.ipv4.conf.vethe4392229.mc_forwarding = 0
net.ipv4.conf.vethe4392229.medium_id = 0
net.ipv4.conf.vethe4392229.promote_secondaries = 1
net.ipv4.conf.vethe4392229.proxy_arp = 0
net.ipv4.conf.vethe4392229.proxy_arp_pvlan = 0
net.ipv4.conf.vethe4392229.route_localnet = 0
net.ipv4.conf.vethe4392229.rp_filter = 0
net.ipv4.conf.vethe4392229.secure_redirects = 1
net.ipv4.conf.vethe4392229.send_redirects = 1
net.ipv4.conf.vethe4392229.shared_media = 1
net.ipv4.conf.vethe4392229.src_valid_mark = 0
net.ipv4.conf.vethe4392229.tag = 0
net.ipv4.conf.vetheddccc08.accept_local = 0
net.ipv4.conf.vetheddccc08.accept_redirects = 1
net.ipv4.conf.vetheddccc08.accept_source_route = 0
net.ipv4.conf.vetheddccc08.arp_accept = 0
net.ipv4.conf.vetheddccc08.arp_announce = 0
net.ipv4.conf.vetheddccc08.arp_evict_nocarrier = 1
net.ipv4.conf.vetheddccc08.arp_filter = 0
net.ipv4.conf.vetheddccc08.arp_ignore = 0
net.ipv4.conf.vetheddccc08.arp_notify = 0
net.ipv4.conf.vetheddccc08.bc_forwarding = 0
net.ipv4.conf.vetheddccc08.bootp_relay = 0
net.ipv4.conf.vetheddccc08.disable_policy = 0
net.ipv4.conf.vetheddccc08.disable_xfrm = 0
net.ipv4.conf.vetheddccc08.drop_gratuitous_arp = 0
net.ipv4.conf.vetheddccc08.drop_unicast_in_l2_multicast = 0
net.ipv4.conf.vetheddccc08.force_igmp_version = 0
net.ipv4.conf.vetheddccc08.forwarding = 1
net.ipv4.conf.vetheddccc08.igmpv2_unsolicited_report_interval = 10000
net.ipv4.conf.vetheddccc08.igmpv3_unsolicited_report_interval = 1000
net.ipv4.conf.vetheddccc08.ignore_routes_with_linkdown = 0
net.ipv4.conf.vetheddccc08.log_martians = 0
net.ipv4.conf.vetheddccc08.mc_forwarding = 0
net.ipv4.conf.vetheddccc08.medium_id = 0
net.ipv4.conf.vetheddccc08.promote_secondaries = 1
net.ipv4.conf.vetheddccc08.proxy_arp = 0
net.ipv4.conf.vetheddccc08.proxy_arp_pvlan = 0
net.ipv4.conf.vetheddccc08.route_localnet = 0
net.ipv4.conf.vetheddccc08.rp_filter = 0
net.ipv4.conf.vetheddccc08.secure_redirects = 1
net.ipv4.conf.vetheddccc08.send_redirects = 1
net.ipv4.conf.vetheddccc08.shared_media = 1
net.ipv4.conf.vetheddccc08.src_valid_mark = 0
net.ipv4.conf.vetheddccc08.tag = 0
net.ipv4.conf.vethfe15a069.accept_local = 0
net.ipv4.conf.vethfe15a069.accept_redirects = 1
net.ipv4.conf.vethfe15a069.accept_source_route = 0
net.ipv4.conf.vethfe15a069.arp_accept = 0
net.ipv4.conf.vethfe15a069.arp_announce = 0
net.ipv4.conf.vethfe15a069.arp_evict_nocarrier = 1
net.ipv4.conf.vethfe15a069.arp_filter = 0
net.ipv4.conf.vethfe15a069.arp_ignore = 0
net.ipv4.conf.vethfe15a069.arp_notify = 0
net.ipv4.conf.vethfe15a069.bc_forwarding = 0
net.ipv4.conf.vethfe15a069.bootp_relay = 0
net.ipv4.conf.vethfe15a069.disable_policy = 0
net.ipv4.conf.vethfe15a069.disable_xfrm = 0
net.ipv4.conf.vethfe15a069.drop_gratuitous_arp = 0
net.ipv4.conf.vethfe15a069.drop_unicast_in_l2_multicast = 0
net.ipv4.conf.vethfe15a069.force_igmp_version = 0
net.ipv4.conf.vethfe15a069.forwarding = 1
net.ipv4.conf.vethfe15a069.igmpv2_unsolicited_report_interval = 10000
net.ipv4.conf.vethfe15a069.igmpv3_unsolicited_report_interval = 1000
net.ipv4.conf.vethfe15a069.ignore_routes_with_linkdown = 0
net.ipv4.conf.vethfe15a069.log_martians = 0
net.ipv4.conf.vethfe15a069.mc_forwarding = 0
net.ipv4.conf.vethfe15a069.medium_id = 0
net.ipv4.conf.vethfe15a069.promote_secondaries = 1
net.ipv4.conf.vethfe15a069.proxy_arp = 0
net.ipv4.conf.vethfe15a069.proxy_arp_pvlan = 0
net.ipv4.conf.vethfe15a069.route_localnet = 0
net.ipv4.conf.vethfe15a069.rp_filter = 0
net.ipv4.conf.vethfe15a069.secure_redirects = 1
net.ipv4.conf.vethfe15a069.send_redirects = 1
net.ipv4.conf.vethfe15a069.shared_media = 1
net.ipv4.conf.vethfe15a069.src_valid_mark = 0
net.ipv4.conf.vethfe15a069.tag = 0
net.ipv4.fib_multipath_hash_fields = 7
net.ipv4.fib_multipath_hash_policy = 0
net.ipv4.fib_multipath_use_neigh = 0
net.ipv4.fib_notify_on_flag_change = 0
net.ipv4.fib_sync_mem = 524288
net.ipv4.fwmark_reflect = 0
net.ipv4.icmp_echo_enable_probe = 0
net.ipv4.icmp_echo_ignore_all = 0
net.ipv4.icmp_echo_ignore_broadcasts = 1
net.ipv4.icmp_errors_use_inbound_ifaddr = 0
net.ipv4.icmp_ignore_bogus_error_responses = 1
net.ipv4.icmp_msgs_burst = 50
net.ipv4.icmp_msgs_per_sec = 1000
net.ipv4.icmp_ratelimit = 1000
net.ipv4.icmp_ratemask = 6168
net.ipv4.igmp_link_local_mcast_reports = 1
net.ipv4.igmp_max_memberships = 20
net.ipv4.igmp_max_msf = 10
net.ipv4.igmp_qrv = 2
net.ipv4.inet_peer_maxttl = 600
net.ipv4.inet_peer_minttl = 120
net.ipv4.inet_peer_threshold = 65664
net.ipv4.ip_autobind_reuse = 0
net.ipv4.ip_default_ttl = 64
net.ipv4.ip_dynaddr = 0
net.ipv4.ip_early_demux = 1
net.ipv4.ip_forward = 1
net.ipv4.ip_forward_update_priority = 1
net.ipv4.ip_forward_use_pmtu = 0
net.ipv4.ip_local_port_range = 32768	60999
net.ipv4.ip_local_reserved_ports = 
net.ipv4.ip_no_pmtu_disc = 0
net.ipv4.ip_nonlocal_bind = 0
net.ipv4.ip_unprivileged_port_start = 1024
net.ipv4.ipfrag_high_thresh = 4194304
net.ipv4.ipfrag_low_thresh = 3145728
net.ipv4.ipfrag_max_dist = 64
net.ipv4.ipfrag_secret_interval = 0
net.ipv4.ipfrag_time = 30
net.ipv4.neigh.default.anycast_delay = 100
net.ipv4.neigh.default.app_solicit = 0
net.ipv4.neigh.default.base_reachable_time_ms = 30000
net.ipv4.neigh.default.delay_first_probe_time = 5
net.ipv4.neigh.default.gc_interval = 30
net.ipv4.neigh.default.gc_stale_time = 60
net.ipv4.neigh.default.gc_thresh1 = 128
net.ipv4.neigh.default.gc_thresh2 = 512
net.ipv4.neigh.default.gc_thresh3 = 1024
net.ipv4.neigh.default.interval_probe_time_ms = 5000
net.ipv4.neigh.default.locktime = 100
net.ipv4.neigh.default.mcast_resolicit = 0
net.ipv4.neigh.default.mcast_solicit = 3
net.ipv4.neigh.default.proxy_delay = 80
net.ipv4.neigh.default.proxy_qlen = 64
net.ipv4.neigh.default.retrans_time_ms = 1000
net.ipv4.neigh.default.ucast_solicit = 3
net.ipv4.neigh.default.unres_qlen = 101
net.ipv4.neigh.default.unres_qlen_bytes = 212992
net.ipv4.neigh.eth0.anycast_delay = 100
net.ipv4.neigh.eth0.app_solicit = 0
net.ipv4.neigh.eth0.base_reachable_time_ms = 30000
net.ipv4.neigh.eth0.delay_first_probe_time = 5
net.ipv4.neigh.eth0.gc_stale_time = 60
net.ipv4.neigh.eth0.interval_probe_time_ms = 5000
net.ipv4.neigh.eth0.locktime = 100
net.ipv4.neigh.eth0.mcast_resolicit = 0
net.ipv4.neigh.eth0.mcast_solicit = 3
net.ipv4.neigh.eth0.proxy_delay = 80
net.ipv4.neigh.eth0.proxy_qlen = 64
net.ipv4.neigh.eth0.retrans_time_ms = 1000
net.ipv4.neigh.eth0.ucast_solicit = 3
net.ipv4.neigh.eth0.unres_qlen = 101
net.ipv4.neigh.eth0.unres_qlen_bytes = 212992
net.ipv4.neigh.eth1.anycast_delay = 100
net.ipv4.neigh.eth1.app_solicit = 0
net.ipv4.neigh.eth1.base_reachable_time_ms = 30000
net.ipv4.neigh.eth1.delay_first_probe_time = 5
net.ipv4.neigh.eth1.gc_stale_time = 60
net.ipv4.neigh.eth1.interval_probe_time_ms = 5000
net.ipv4.neigh.eth1.locktime = 100
net.ipv4.neigh.eth1.mcast_resolicit = 0
net.ipv4.neigh.eth1.mcast_solicit = 3
net.ipv4.neigh.eth1.proxy_delay = 80
net.ipv4.neigh.eth1.proxy_qlen = 64
net.ipv4.neigh.eth1.retrans_time_ms = 1000
net.ipv4.neigh.eth1.ucast_solicit = 3
net.ipv4.neigh.eth1.unres_qlen = 101
net.ipv4.neigh.eth1.unres_qlen_bytes = 212992
net.ipv4.neigh.kube-bridge.anycast_delay = 100
net.ipv4.neigh.kube-bridge.app_solicit = 0
net.ipv4.neigh.kube-bridge.base_reachable_time_ms = 30000
net.ipv4.neigh.kube-bridge.delay_first_probe_time = 5
net.ipv4.neigh.kube-bridge.gc_stale_time = 60
net.ipv4.neigh.kube-bridge.interval_probe_time_ms = 5000
net.ipv4.neigh.kube-bridge.locktime = 100
net.ipv4.neigh.kube-bridge.mcast_resolicit = 0
net.ipv4.neigh.kube-bridge.mcast_solicit = 3
net.ipv4.neigh.kube-bridge.proxy_delay = 80
net.ipv4.neigh.kube-bridge.proxy_qlen = 64
net.ipv4.neigh.kube-bridge.retrans_time_ms = 1000
net.ipv4.neigh.kube-bridge.ucast_solicit = 3
net.ipv4.neigh.kube-bridge.unres_qlen = 101
net.ipv4.neigh.kube-bridge.unres_qlen_bytes = 212992
net.ipv4.neigh.kube-dummy-if.anycast_delay = 100
net.ipv4.neigh.kube-dummy-if.app_solicit = 0
net.ipv4.neigh.kube-dummy-if.base_reachable_time_ms = 30000
net.ipv4.neigh.kube-dummy-if.delay_first_probe_time = 5
net.ipv4.neigh.kube-dummy-if.gc_stale_time = 60
net.ipv4.neigh.kube-dummy-if.interval_probe_time_ms = 5000
net.ipv4.neigh.kube-dummy-if.locktime = 100
net.ipv4.neigh.kube-dummy-if.mcast_resolicit = 0
net.ipv4.neigh.kube-dummy-if.mcast_solicit = 3
net.ipv4.neigh.kube-dummy-if.proxy_delay = 80
net.ipv4.neigh.kube-dummy-if.proxy_qlen = 64
net.ipv4.neigh.kube-dummy-if.retrans_time_ms = 1000
net.ipv4.neigh.kube-dummy-if.ucast_solicit = 3
net.ipv4.neigh.kube-dummy-if.unres_qlen = 101
net.ipv4.neigh.kube-dummy-if.unres_qlen_bytes = 212992
net.ipv4.neigh.lo.anycast_delay = 100
net.ipv4.neigh.lo.app_solicit = 0
net.ipv4.neigh.lo.base_reachable_time_ms = 30000
net.ipv4.neigh.lo.delay_first_probe_time = 5
net.ipv4.neigh.lo.gc_stale_time = 60
net.ipv4.neigh.lo.interval_probe_time_ms = 5000
net.ipv4.neigh.lo.locktime = 100
net.ipv4.neigh.lo.mcast_resolicit = 0
net.ipv4.neigh.lo.mcast_solicit = 3
net.ipv4.neigh.lo.proxy_delay = 80
net.ipv4.neigh.lo.proxy_qlen = 64
net.ipv4.neigh.lo.retrans_time_ms = 1000
net.ipv4.neigh.lo.ucast_solicit = 3
net.ipv4.neigh.lo.unres_qlen = 101
net.ipv4.neigh.lo.unres_qlen_bytes = 212992
net.ipv4.neigh.veth0fed950c.anycast_delay = 100
net.ipv4.neigh.veth0fed950c.app_solicit = 0
net.ipv4.neigh.veth0fed950c.base_reachable_time_ms = 30000
net.ipv4.neigh.veth0fed950c.delay_first_probe_time = 5
net.ipv4.neigh.veth0fed950c.gc_stale_time = 60
net.ipv4.neigh.veth0fed950c.interval_probe_time_ms = 5000
net.ipv4.neigh.veth0fed950c.locktime = 100
net.ipv4.neigh.veth0fed950c.mcast_resolicit = 0
net.ipv4.neigh.veth0fed950c.mcast_solicit = 3
net.ipv4.neigh.veth0fed950c.proxy_delay = 80
net.ipv4.neigh.veth0fed950c.proxy_qlen = 64
net.ipv4.neigh.veth0fed950c.retrans_time_ms = 1000
net.ipv4.neigh.veth0fed950c.ucast_solicit = 3
net.ipv4.neigh.veth0fed950c.unres_qlen = 101
net.ipv4.neigh.veth0fed950c.unres_qlen_bytes = 212992
net.ipv4.neigh.veth1f48782e.anycast_delay = 100
net.ipv4.neigh.veth1f48782e.app_solicit = 0
net.ipv4.neigh.veth1f48782e.base_reachable_time_ms = 30000
net.ipv4.neigh.veth1f48782e.delay_first_probe_time = 5
net.ipv4.neigh.veth1f48782e.gc_stale_time = 60
net.ipv4.neigh.veth1f48782e.interval_probe_time_ms = 5000
net.ipv4.neigh.veth1f48782e.locktime = 100
net.ipv4.neigh.veth1f48782e.mcast_resolicit = 0
net.ipv4.neigh.veth1f48782e.mcast_solicit = 3
net.ipv4.neigh.veth1f48782e.proxy_delay = 80
net.ipv4.neigh.veth1f48782e.proxy_qlen = 64
net.ipv4.neigh.veth1f48782e.retrans_time_ms = 1000
net.ipv4.neigh.veth1f48782e.ucast_solicit = 3
net.ipv4.neigh.veth1f48782e.unres_qlen = 101
net.ipv4.neigh.veth1f48782e.unres_qlen_bytes = 212992
net.ipv4.neigh.veth29a8d74e.anycast_delay = 100
net.ipv4.neigh.veth29a8d74e.app_solicit = 0
net.ipv4.neigh.veth29a8d74e.base_reachable_time_ms = 30000
net.ipv4.neigh.veth29a8d74e.delay_first_probe_time = 5
net.ipv4.neigh.veth29a8d74e.gc_stale_time = 60
net.ipv4.neigh.veth29a8d74e.interval_probe_time_ms = 5000
net.ipv4.neigh.veth29a8d74e.locktime = 100
net.ipv4.neigh.veth29a8d74e.mcast_resolicit = 0
net.ipv4.neigh.veth29a8d74e.mcast_solicit = 3
net.ipv4.neigh.veth29a8d74e.proxy_delay = 80
net.ipv4.neigh.veth29a8d74e.proxy_qlen = 64
net.ipv4.neigh.veth29a8d74e.retrans_time_ms = 1000
net.ipv4.neigh.veth29a8d74e.ucast_solicit = 3
net.ipv4.neigh.veth29a8d74e.unres_qlen = 101
net.ipv4.neigh.veth29a8d74e.unres_qlen_bytes = 212992
net.ipv4.neigh.veth41e9493d.anycast_delay = 100
net.ipv4.neigh.veth41e9493d.app_solicit = 0
net.ipv4.neigh.veth41e9493d.base_reachable_time_ms = 30000
net.ipv4.neigh.veth41e9493d.delay_first_probe_time = 5
net.ipv4.neigh.veth41e9493d.gc_stale_time = 60
net.ipv4.neigh.veth41e9493d.interval_probe_time_ms = 5000
net.ipv4.neigh.veth41e9493d.locktime = 100
net.ipv4.neigh.veth41e9493d.mcast_resolicit = 0
net.ipv4.neigh.veth41e9493d.mcast_solicit = 3
net.ipv4.neigh.veth41e9493d.proxy_delay = 80
net.ipv4.neigh.veth41e9493d.proxy_qlen = 64
net.ipv4.neigh.veth41e9493d.retrans_time_ms = 1000
net.ipv4.neigh.veth41e9493d.ucast_solicit = 3
net.ipv4.neigh.veth41e9493d.unres_qlen = 101
net.ipv4.neigh.veth41e9493d.unres_qlen_bytes = 212992
net.ipv4.neigh.veth4b6f88bf.anycast_delay = 100
net.ipv4.neigh.veth4b6f88bf.app_solicit = 0
net.ipv4.neigh.veth4b6f88bf.base_reachable_time_ms = 30000
net.ipv4.neigh.veth4b6f88bf.delay_first_probe_time = 5
net.ipv4.neigh.veth4b6f88bf.gc_stale_time = 60
net.ipv4.neigh.veth4b6f88bf.interval_probe_time_ms = 5000
net.ipv4.neigh.veth4b6f88bf.locktime = 100
net.ipv4.neigh.veth4b6f88bf.mcast_resolicit = 0
net.ipv4.neigh.veth4b6f88bf.mcast_solicit = 3
net.ipv4.neigh.veth4b6f88bf.proxy_delay = 80
net.ipv4.neigh.veth4b6f88bf.proxy_qlen = 64
net.ipv4.neigh.veth4b6f88bf.retrans_time_ms = 1000
net.ipv4.neigh.veth4b6f88bf.ucast_solicit = 3
net.ipv4.neigh.veth4b6f88bf.unres_qlen = 101
net.ipv4.neigh.veth4b6f88bf.unres_qlen_bytes = 212992
net.ipv4.neigh.veth72217438.anycast_delay = 100
net.ipv4.neigh.veth72217438.app_solicit = 0
net.ipv4.neigh.veth72217438.base_reachable_time_ms = 30000
net.ipv4.neigh.veth72217438.delay_first_probe_time = 5
net.ipv4.neigh.veth72217438.gc_stale_time = 60
net.ipv4.neigh.veth72217438.interval_probe_time_ms = 5000
net.ipv4.neigh.veth72217438.locktime = 100
net.ipv4.neigh.veth72217438.mcast_resolicit = 0
net.ipv4.neigh.veth72217438.mcast_solicit = 3
net.ipv4.neigh.veth72217438.proxy_delay = 80
net.ipv4.neigh.veth72217438.proxy_qlen = 64
net.ipv4.neigh.veth72217438.retrans_time_ms = 1000
net.ipv4.neigh.veth72217438.ucast_solicit = 3
net.ipv4.neigh.veth72217438.unres_qlen = 101
net.ipv4.neigh.veth72217438.unres_qlen_bytes = 212992
net.ipv4.neigh.veth83380718.anycast_delay = 100
net.ipv4.neigh.veth83380718.app_solicit = 0
net.ipv4.neigh.veth83380718.base_reachable_time_ms = 30000
net.ipv4.neigh.veth83380718.delay_first_probe_time = 5
net.ipv4.neigh.veth83380718.gc_stale_time = 60
net.ipv4.neigh.veth83380718.interval_probe_time_ms = 5000
net.ipv4.neigh.veth83380718.locktime = 100
net.ipv4.neigh.veth83380718.mcast_resolicit = 0
net.ipv4.neigh.veth83380718.mcast_solicit = 3
net.ipv4.neigh.veth83380718.proxy_delay = 80
net.ipv4.neigh.veth83380718.proxy_qlen = 64
net.ipv4.neigh.veth83380718.retrans_time_ms = 1000
net.ipv4.neigh.veth83380718.ucast_solicit = 3
net.ipv4.neigh.veth83380718.unres_qlen = 101
net.ipv4.neigh.veth83380718.unres_qlen_bytes = 212992
net.ipv4.neigh.veth9ea2e917.anycast_delay = 100
net.ipv4.neigh.veth9ea2e917.app_solicit = 0
net.ipv4.neigh.veth9ea2e917.base_reachable_time_ms = 30000
net.ipv4.neigh.veth9ea2e917.delay_first_probe_time = 5
net.ipv4.neigh.veth9ea2e917.gc_stale_time = 60
net.ipv4.neigh.veth9ea2e917.interval_probe_time_ms = 5000
net.ipv4.neigh.veth9ea2e917.locktime = 100
net.ipv4.neigh.veth9ea2e917.mcast_resolicit = 0
net.ipv4.neigh.veth9ea2e917.mcast_solicit = 3
net.ipv4.neigh.veth9ea2e917.proxy_delay = 80
net.ipv4.neigh.veth9ea2e917.proxy_qlen = 64
net.ipv4.neigh.veth9ea2e917.retrans_time_ms = 1000
net.ipv4.neigh.veth9ea2e917.ucast_solicit = 3
net.ipv4.neigh.veth9ea2e917.unres_qlen = 101
net.ipv4.neigh.veth9ea2e917.unres_qlen_bytes = 212992
net.ipv4.neigh.vethe4392229.anycast_delay = 100
net.ipv4.neigh.vethe4392229.app_solicit = 0
net.ipv4.neigh.vethe4392229.base_reachable_time_ms = 30000
net.ipv4.neigh.vethe4392229.delay_first_probe_time = 5
net.ipv4.neigh.vethe4392229.gc_stale_time = 60
net.ipv4.neigh.vethe4392229.interval_probe_time_ms = 5000
net.ipv4.neigh.vethe4392229.locktime = 100
net.ipv4.neigh.vethe4392229.mcast_resolicit = 0
net.ipv4.neigh.vethe4392229.mcast_solicit = 3
net.ipv4.neigh.vethe4392229.proxy_delay = 80
net.ipv4.neigh.vethe4392229.proxy_qlen = 64
net.ipv4.neigh.vethe4392229.retrans_time_ms = 1000
net.ipv4.neigh.vethe4392229.ucast_solicit = 3
net.ipv4.neigh.vethe4392229.unres_qlen = 101
net.ipv4.neigh.vethe4392229.unres_qlen_bytes = 212992
net.ipv4.neigh.vetheddccc08.anycast_delay = 100
net.ipv4.neigh.vetheddccc08.app_solicit = 0
net.ipv4.neigh.vetheddccc08.base_reachable_time_ms = 30000
net.ipv4.neigh.vetheddccc08.delay_first_probe_time = 5
net.ipv4.neigh.vetheddccc08.gc_stale_time = 60
net.ipv4.neigh.vetheddccc08.interval_probe_time_ms = 5000
net.ipv4.neigh.vetheddccc08.locktime = 100
net.ipv4.neigh.vetheddccc08.mcast_resolicit = 0
net.ipv4.neigh.vetheddccc08.mcast_solicit = 3
net.ipv4.neigh.vetheddccc08.proxy_delay = 80
net.ipv4.neigh.vetheddccc08.proxy_qlen = 64
net.ipv4.neigh.vetheddccc08.retrans_time_ms = 1000
net.ipv4.neigh.vetheddccc08.ucast_solicit = 3
net.ipv4.neigh.vetheddccc08.unres_qlen = 101
net.ipv4.neigh.vetheddccc08.unres_qlen_bytes = 212992
net.ipv4.neigh.vethfe15a069.anycast_delay = 100
net.ipv4.neigh.vethfe15a069.app_solicit = 0
net.ipv4.neigh.vethfe15a069.base_reachable_time_ms = 30000
net.ipv4.neigh.vethfe15a069.delay_first_probe_time = 5
net.ipv4.neigh.vethfe15a069.gc_stale_time = 60
net.ipv4.neigh.vethfe15a069.interval_probe_time_ms = 5000
net.ipv4.neigh.vethfe15a069.locktime = 100
net.ipv4.neigh.vethfe15a069.mcast_resolicit = 0
net.ipv4.neigh.vethfe15a069.mcast_solicit = 3
net.ipv4.neigh.vethfe15a069.proxy_delay = 80
net.ipv4.neigh.vethfe15a069.proxy_qlen = 64
net.ipv4.neigh.vethfe15a069.retrans_time_ms = 1000
net.ipv4.neigh.vethfe15a069.ucast_solicit = 3
net.ipv4.neigh.vethfe15a069.unres_qlen = 101
net.ipv4.neigh.vethfe15a069.unres_qlen_bytes = 212992
net.ipv4.nexthop_compat_mode = 1
net.ipv4.ping_group_range = 0	2147483647
net.ipv4.raw_l3mdev_accept = 1
net.ipv4.route.error_burst = 5000
net.ipv4.route.error_cost = 1000
net.ipv4.route.gc_elasticity = 8
net.ipv4.route.gc_interval = 60
net.ipv4.route.gc_min_interval = 0
net.ipv4.route.gc_min_interval_ms = 500
net.ipv4.route.gc_thresh = -1
net.ipv4.route.gc_timeout = 300
net.ipv4.route.max_size = 2147483647
net.ipv4.route.min_adv_mss = 256
net.ipv4.route.min_pmtu = 552
net.ipv4.route.mtu_expires = 600
net.ipv4.route.redirect_load = 20
net.ipv4.route.redirect_number = 9
net.ipv4.route.redirect_silence = 20480
net.ipv4.tcp_abort_on_overflow = 0
net.ipv4.tcp_adv_win_scale = 1
net.ipv4.tcp_allowed_congestion_control = reno cubic
net.ipv4.tcp_app_win = 31
net.ipv4.tcp_autocorking = 1
net.ipv4.tcp_available_congestion_control = reno cubic
net.ipv4.tcp_available_ulp = 
net.ipv4.tcp_base_mss = 1024
net.ipv4.tcp_challenge_ack_limit = 2147483647
net.ipv4.tcp_child_ehash_entries = 0
net.ipv4.tcp_comp_sack_delay_ns = 1000000
net.ipv4.tcp_comp_sack_nr = 44
net.ipv4.tcp_comp_sack_slack_ns = 100000
net.ipv4.tcp_congestion_control = cubic
net.ipv4.tcp_dsack = 1
net.ipv4.tcp_early_demux = 1
net.ipv4.tcp_early_retrans = 3
net.ipv4.tcp_ecn = 2
net.ipv4.tcp_ecn_fallback = 1
net.ipv4.tcp_ehash_entries = 65536
net.ipv4.tcp_fack = 0
net.ipv4.tcp_fastopen = 1
net.ipv4.tcp_fastopen_blackhole_timeout_sec = 0
net.ipv4.tcp_fastopen_key = 11dfac9e-0dd0ae07-efecf5af-de47332c
net.ipv4.tcp_fin_timeout = 60
net.ipv4.tcp_frto = 2
net.ipv4.tcp_fwmark_accept = 0
net.ipv4.tcp_invalid_ratelimit = 500
net.ipv4.tcp_keepalive_intvl = 75
net.ipv4.tcp_keepalive_probes = 9
net.ipv4.tcp_keepalive_time = 7200
net.ipv4.tcp_l3mdev_accept = 0
net.ipv4.tcp_limit_output_bytes = 1048576
net.ipv4.tcp_low_latency = 0
net.ipv4.tcp_max_orphans = 32768
net.ipv4.tcp_max_reordering = 300
net.ipv4.tcp_max_syn_backlog = 512
net.ipv4.tcp_max_tw_buckets = 32768
net.ipv4.tcp_mem = 93600	124801	187200
net.ipv4.tcp_migrate_req = 0
net.ipv4.tcp_min_rtt_wlen = 300
net.ipv4.tcp_min_snd_mss = 48
net.ipv4.tcp_min_tso_segs = 2
net.ipv4.tcp_moderate_rcvbuf = 1
net.ipv4.tcp_mtu_probe_floor = 48
net.ipv4.tcp_mtu_probing = 0
net.ipv4.tcp_no_metrics_save = 0
net.ipv4.tcp_no_ssthresh_metrics_save = 1
net.ipv4.tcp_notsent_lowat = 4294967295
net.ipv4.tcp_orphan_retries = 0
net.ipv4.tcp_pacing_ca_ratio = 120
net.ipv4.tcp_pacing_ss_ratio = 200
net.ipv4.tcp_plb_cong_thresh = 128
net.ipv4.tcp_plb_enabled = 0
net.ipv4.tcp_plb_idle_rehash_rounds = 3
net.ipv4.tcp_plb_rehash_rounds = 12
net.ipv4.tcp_plb_suspend_rto_sec = 60
net.ipv4.tcp_probe_interval = 600
net.ipv4.tcp_probe_threshold = 8
net.ipv4.tcp_recovery = 1
net.ipv4.tcp_reflect_tos = 0
net.ipv4.tcp_reordering = 3
net.ipv4.tcp_retrans_collapse = 1
net.ipv4.tcp_retries1 = 3
net.ipv4.tcp_retries2 = 15
net.ipv4.tcp_rfc1337 = 0
net.ipv4.tcp_rmem = 4096	131072	6291456
net.ipv4.tcp_sack = 1
net.ipv4.tcp_shrink_window = 0
net.ipv4.tcp_slow_start_after_idle = 1
net.ipv4.tcp_stdurg = 0
net.ipv4.tcp_syn_linear_timeouts = 4
net.ipv4.tcp_syn_retries = 6
net.ipv4.tcp_synack_retries = 5
net.ipv4.tcp_syncookies = 1
net.ipv4.tcp_thin_linear_timeouts = 0
net.ipv4.tcp_timestamps = 1
net.ipv4.tcp_tso_rtt_log = 9
net.ipv4.tcp_tso_win_divisor = 3
net.ipv4.tcp_tw_reuse = 2
net.ipv4.tcp_window_scaling = 1
net.ipv4.tcp_wmem = 4096	16384	4194304
net.ipv4.tcp_workaround_signed_windows = 0
net.ipv4.udp_child_hash_entries = 0
net.ipv4.udp_early_demux = 1
net.ipv4.udp_hash_entries = 4096
net.ipv4.udp_l3mdev_accept = 0
net.ipv4.udp_mem = 187200	249602	374400
net.ipv4.udp_rmem_min = 4096
net.ipv4.udp_wmem_min = 4096
net.ipv4.vs.am_droprate = 10
net.ipv4.vs.amemthresh = 1024
net.ipv4.vs.backup_only = 0
net.ipv4.vs.cache_bypass = 0
net.ipv4.vs.conn_reuse_mode = 0
net.ipv4.vs.conntrack = 1
net.ipv4.vs.drop_entry = 0
net.ipv4.vs.drop_packet = 0
net.ipv4.vs.est_cpulist = 0-3
net.ipv4.vs.est_nice = 0
net.ipv4.vs.expire_nodest_conn = 1
net.ipv4.vs.expire_quiescent_template = 1
net.ipv4.vs.ignore_tunneled = 0
net.ipv4.vs.nat_icmp_send = 0
net.ipv4.vs.pmtu_disc = 1
net.ipv4.vs.run_estimation = 1
net.ipv4.vs.schedule_icmp = 0
net.ipv4.vs.secure_tcp = 0
net.ipv4.vs.sloppy_sctp = 0
net.ipv4.vs.sloppy_tcp = 0
net.ipv4.vs.snat_reroute = 1
net.ipv4.vs.sync_persist_mode = 0
net.ipv4.vs.sync_ports = 1
net.ipv4.vs.sync_qlen_max = 62749
net.ipv4.vs.sync_refresh_period = 0
net.ipv4.vs.sync_retries = 0
net.ipv4.vs.sync_sock_size = 0
net.ipv4.vs.sync_threshold = 3	50
net.ipv4.vs.sync_version = 1
net.ipv4.xfrm4_gc_thresh = 32768
net.ipv6.anycast_src_echo_reply = 0
net.ipv6.auto_flowlabels = 1
net.ipv6.bindv6only = 0
net.ipv6.conf.all.accept_dad = 0
net.ipv6.conf.all.accept_ra = 1
net.ipv6.conf.all.accept_ra_defrtr = 1
net.ipv6.conf.all.accept_ra_from_local = 0
net.ipv6.conf.all.accept_ra_min_hop_limit = 1
net.ipv6.conf.all.accept_ra_min_lft = 0
net.ipv6.conf.all.accept_ra_mtu = 1
net.ipv6.conf.all.accept_ra_pinfo = 1
net.ipv6.conf.all.accept_ra_rt_info_max_plen = 0
net.ipv6.conf.all.accept_ra_rt_info_min_plen = 0
net.ipv6.conf.all.accept_ra_rtr_pref = 1
net.ipv6.conf.all.accept_redirects = 1
net.ipv6.conf.all.accept_source_route = 0
net.ipv6.conf.all.accept_untracked_na = 0
net.ipv6.conf.all.addr_gen_mode = 0
net.ipv6.conf.all.autoconf = 1
net.ipv6.conf.all.dad_transmits = 1
net.ipv6.conf.all.disable_ipv6 = 0
net.ipv6.conf.all.disable_policy = 0
net.ipv6.conf.all.drop_unicast_in_l2_multicast = 0
net.ipv6.conf.all.drop_unsolicited_na = 0
net.ipv6.conf.all.enhanced_dad = 1
net.ipv6.conf.all.force_mld_version = 0
net.ipv6.conf.all.force_tllao = 0
net.ipv6.conf.all.forwarding = 1
net.ipv6.conf.all.hop_limit = 64
net.ipv6.conf.all.ignore_routes_with_linkdown = 0
net.ipv6.conf.all.ioam6_enabled = 0
net.ipv6.conf.all.ioam6_id = 65535
net.ipv6.conf.all.ioam6_id_wide = 4294967295
net.ipv6.conf.all.keep_addr_on_down = 0
net.ipv6.conf.all.max_addresses = 16
net.ipv6.conf.all.max_desync_factor = 600
net.ipv6.conf.all.mc_forwarding = 0
net.ipv6.conf.all.mldv1_unsolicited_report_interval = 10000
net.ipv6.conf.all.mldv2_unsolicited_report_interval = 1000
net.ipv6.conf.all.mtu = 1280
net.ipv6.conf.all.ndisc_evict_nocarrier = 1
net.ipv6.conf.all.ndisc_notify = 0
net.ipv6.conf.all.ndisc_tclass = 0
net.ipv6.conf.all.optimistic_dad = 0
net.ipv6.conf.all.proxy_ndp = 0
net.ipv6.conf.all.ra_defrtr_metric = 1024
net.ipv6.conf.all.regen_max_retry = 3
net.ipv6.conf.all.router_probe_interval = 60
net.ipv6.conf.all.router_solicitation_delay = 1
net.ipv6.conf.all.router_solicitation_interval = 4
net.ipv6.conf.all.router_solicitation_max_interval = 3600
net.ipv6.conf.all.router_solicitations = -1
net.ipv6.conf.all.rpl_seg_enabled = 0
net.ipv6.conf.all.seg6_enabled = 0
net.ipv6.conf.all.suppress_frag_ndisc = 1
net.ipv6.conf.all.temp_prefered_lft = 86400
net.ipv6.conf.all.temp_valid_lft = 604800
net.ipv6.conf.all.use_oif_addrs_only = 0
net.ipv6.conf.all.use_optimistic = 0
net.ipv6.conf.all.use_tempaddr = 0
net.ipv6.conf.default.accept_dad = 1
net.ipv6.conf.default.accept_ra = 1
net.ipv6.conf.default.accept_ra_defrtr = 1
net.ipv6.conf.default.accept_ra_from_local = 0
net.ipv6.conf.default.accept_ra_min_hop_limit = 1
net.ipv6.conf.default.accept_ra_min_lft = 0
net.ipv6.conf.default.accept_ra_mtu = 1
net.ipv6.conf.default.accept_ra_pinfo = 1
net.ipv6.conf.default.accept_ra_rt_info_max_plen = 0
net.ipv6.conf.default.accept_ra_rt_info_min_plen = 0
net.ipv6.conf.default.accept_ra_rtr_pref = 1
net.ipv6.conf.default.accept_redirects = 1
net.ipv6.conf.default.accept_source_route = 0
net.ipv6.conf.default.accept_untracked_na = 0
net.ipv6.conf.default.addr_gen_mode = 0
net.ipv6.conf.default.autoconf = 1
net.ipv6.conf.default.dad_transmits = 1
net.ipv6.conf.default.disable_ipv6 = 0
net.ipv6.conf.default.disable_policy = 0
net.ipv6.conf.default.drop_unicast_in_l2_multicast = 0
net.ipv6.conf.default.drop_unsolicited_na = 0
net.ipv6.conf.default.enhanced_dad = 1
net.ipv6.conf.default.force_mld_version = 0
net.ipv6.conf.default.force_tllao = 0
net.ipv6.conf.default.forwarding = 1
net.ipv6.conf.default.hop_limit = 64
net.ipv6.conf.default.ignore_routes_with_linkdown = 0
net.ipv6.conf.default.ioam6_enabled = 0
net.ipv6.conf.default.ioam6_id = 65535
net.ipv6.conf.default.ioam6_id_wide = 4294967295
net.ipv6.conf.default.keep_addr_on_down = 0
net.ipv6.conf.default.max_addresses = 16
net.ipv6.conf.default.max_desync_factor = 600
net.ipv6.conf.default.mc_forwarding = 0
net.ipv6.conf.default.mldv1_unsolicited_report_interval = 10000
net.ipv6.conf.default.mldv2_unsolicited_report_interval = 1000
net.ipv6.conf.default.mtu = 1280
net.ipv6.conf.default.ndisc_evict_nocarrier = 1
net.ipv6.conf.default.ndisc_notify = 0
net.ipv6.conf.default.ndisc_tclass = 0
net.ipv6.conf.default.optimistic_dad = 0
net.ipv6.conf.default.proxy_ndp = 0
net.ipv6.conf.default.ra_defrtr_metric = 1024
net.ipv6.conf.default.regen_max_retry = 3
net.ipv6.conf.default.router_probe_interval = 60
net.ipv6.conf.default.router_solicitation_delay = 1
net.ipv6.conf.default.router_solicitation_interval = 4
net.ipv6.conf.default.router_solicitation_max_interval = 3600
net.ipv6.conf.default.router_solicitations = -1
net.ipv6.conf.default.rpl_seg_enabled = 0
net.ipv6.conf.default.seg6_enabled = 0
net.ipv6.conf.default.suppress_frag_ndisc = 1
net.ipv6.conf.default.temp_prefered_lft = 86400
net.ipv6.conf.default.temp_valid_lft = 604800
net.ipv6.conf.default.use_oif_addrs_only = 0
net.ipv6.conf.default.use_optimistic = 0
net.ipv6.conf.default.use_tempaddr = 0
net.ipv6.conf.eth0.accept_dad = 1
net.ipv6.conf.eth0.accept_ra = 0
net.ipv6.conf.eth0.accept_ra_defrtr = 1
net.ipv6.conf.eth0.accept_ra_from_local = 0
net.ipv6.conf.eth0.accept_ra_min_hop_limit = 1
net.ipv6.conf.eth0.accept_ra_min_lft = 0
net.ipv6.conf.eth0.accept_ra_mtu = 1
net.ipv6.conf.eth0.accept_ra_pinfo = 1
net.ipv6.conf.eth0.accept_ra_rt_info_max_plen = 0
net.ipv6.conf.eth0.accept_ra_rt_info_min_plen = 0
net.ipv6.conf.eth0.accept_ra_rtr_pref = 1
net.ipv6.conf.eth0.accept_redirects = 1
net.ipv6.conf.eth0.accept_source_route = 0
net.ipv6.conf.eth0.accept_untracked_na = 0
net.ipv6.conf.eth0.addr_gen_mode = 0
net.ipv6.conf.eth0.autoconf = 1
net.ipv6.conf.eth0.dad_transmits = 1
net.ipv6.conf.eth0.disable_ipv6 = 0
net.ipv6.conf.eth0.disable_policy = 0
net.ipv6.conf.eth0.drop_unicast_in_l2_multicast = 0
net.ipv6.conf.eth0.drop_unsolicited_na = 0
net.ipv6.conf.eth0.enhanced_dad = 1
net.ipv6.conf.eth0.force_mld_version = 0
net.ipv6.conf.eth0.force_tllao = 0
net.ipv6.conf.eth0.forwarding = 1
net.ipv6.conf.eth0.hop_limit = 64
net.ipv6.conf.eth0.ignore_routes_with_linkdown = 0
net.ipv6.conf.eth0.ioam6_enabled = 0
net.ipv6.conf.eth0.ioam6_id = 65535
net.ipv6.conf.eth0.ioam6_id_wide = 4294967295
net.ipv6.conf.eth0.keep_addr_on_down = 0
net.ipv6.conf.eth0.max_addresses = 16
net.ipv6.conf.eth0.max_desync_factor = 600
net.ipv6.conf.eth0.mc_forwarding = 0
net.ipv6.conf.eth0.mldv1_unsolicited_report_interval = 10000
net.ipv6.conf.eth0.mldv2_unsolicited_report_interval = 1000
net.ipv6.conf.eth0.mtu = 8913
net.ipv6.conf.eth0.ndisc_evict_nocarrier = 1
net.ipv6.conf.eth0.ndisc_notify = 0
net.ipv6.conf.eth0.ndisc_tclass = 0
net.ipv6.conf.eth0.optimistic_dad = 0
net.ipv6.conf.eth0.proxy_ndp = 0
net.ipv6.conf.eth0.ra_defrtr_metric = 1024
net.ipv6.conf.eth0.regen_max_retry = 3
net.ipv6.conf.eth0.router_probe_interval = 60
net.ipv6.conf.eth0.router_solicitation_delay = 1
net.ipv6.conf.eth0.router_solicitation_interval = 4
net.ipv6.conf.eth0.router_solicitation_max_interval = 3600
net.ipv6.conf.eth0.router_solicitations = -1
net.ipv6.conf.eth0.rpl_seg_enabled = 0
net.ipv6.conf.eth0.seg6_enabled = 0
net.ipv6.conf.eth0.suppress_frag_ndisc = 1
net.ipv6.conf.eth0.temp_prefered_lft = 86400
net.ipv6.conf.eth0.temp_valid_lft = 604800
net.ipv6.conf.eth0.use_oif_addrs_only = 0
net.ipv6.conf.eth0.use_optimistic = 0
net.ipv6.conf.eth0.use_tempaddr = 0
net.ipv6.conf.eth1.accept_dad = 1
net.ipv6.conf.eth1.accept_ra = 0
net.ipv6.conf.eth1.accept_ra_defrtr = 1
net.ipv6.conf.eth1.accept_ra_from_local = 0
net.ipv6.conf.eth1.accept_ra_min_hop_limit = 1
net.ipv6.conf.eth1.accept_ra_min_lft = 0
net.ipv6.conf.eth1.accept_ra_mtu = 1
net.ipv6.conf.eth1.accept_ra_pinfo = 1
net.ipv6.conf.eth1.accept_ra_rt_info_max_plen = 0
net.ipv6.conf.eth1.accept_ra_rt_info_min_plen = 0
net.ipv6.conf.eth1.accept_ra_rtr_pref = 1
net.ipv6.conf.eth1.accept_redirects = 1
net.ipv6.conf.eth1.accept_source_route = 0
net.ipv6.conf.eth1.accept_untracked_na = 0
net.ipv6.conf.eth1.addr_gen_mode = 0
net.ipv6.conf.eth1.autoconf = 1
net.ipv6.conf.eth1.dad_transmits = 1
net.ipv6.conf.eth1.disable_ipv6 = 0
net.ipv6.conf.eth1.disable_policy = 0
net.ipv6.conf.eth1.drop_unicast_in_l2_multicast = 0
net.ipv6.conf.eth1.drop_unsolicited_na = 0
net.ipv6.conf.eth1.enhanced_dad = 1
net.ipv6.conf.eth1.force_mld_version = 0
net.ipv6.conf.eth1.force_tllao = 0
net.ipv6.conf.eth1.forwarding = 1
net.ipv6.conf.eth1.hop_limit = 64
net.ipv6.conf.eth1.ignore_routes_with_linkdown = 0
net.ipv6.conf.eth1.ioam6_enabled = 0
net.ipv6.conf.eth1.ioam6_id = 65535
net.ipv6.conf.eth1.ioam6_id_wide = 4294967295
net.ipv6.conf.eth1.keep_addr_on_down = 0
net.ipv6.conf.eth1.max_addresses = 16
net.ipv6.conf.eth1.max_desync_factor = 600
net.ipv6.conf.eth1.mc_forwarding = 0
net.ipv6.conf.eth1.mldv1_unsolicited_report_interval = 10000
net.ipv6.conf.eth1.mldv2_unsolicited_report_interval = 1000
net.ipv6.conf.eth1.mtu = 8950
net.ipv6.conf.eth1.ndisc_evict_nocarrier = 1
net.ipv6.conf.eth1.ndisc_notify = 0
net.ipv6.conf.eth1.ndisc_tclass = 0
net.ipv6.conf.eth1.optimistic_dad = 0
net.ipv6.conf.eth1.proxy_ndp = 0
net.ipv6.conf.eth1.ra_defrtr_metric = 1024
net.ipv6.conf.eth1.regen_max_retry = 3
net.ipv6.conf.eth1.router_probe_interval = 60
net.ipv6.conf.eth1.router_solicitation_delay = 1
net.ipv6.conf.eth1.router_solicitation_interval = 4
net.ipv6.conf.eth1.router_solicitation_max_interval = 3600
net.ipv6.conf.eth1.router_solicitations = -1
net.ipv6.conf.eth1.rpl_seg_enabled = 0
net.ipv6.conf.eth1.seg6_enabled = 0
net.ipv6.conf.eth1.suppress_frag_ndisc = 1
net.ipv6.conf.eth1.temp_prefered_lft = 86400
net.ipv6.conf.eth1.temp_valid_lft = 604800
net.ipv6.conf.eth1.use_oif_addrs_only = 0
net.ipv6.conf.eth1.use_optimistic = 0
net.ipv6.conf.eth1.use_tempaddr = 0
net.ipv6.conf.kube-bridge.accept_dad = 1
net.ipv6.conf.kube-bridge.accept_ra = 0
net.ipv6.conf.kube-bridge.accept_ra_defrtr = 1
net.ipv6.conf.kube-bridge.accept_ra_from_local = 0
net.ipv6.conf.kube-bridge.accept_ra_min_hop_limit = 1
net.ipv6.conf.kube-bridge.accept_ra_min_lft = 0
net.ipv6.conf.kube-bridge.accept_ra_mtu = 1
net.ipv6.conf.kube-bridge.accept_ra_pinfo = 1
net.ipv6.conf.kube-bridge.accept_ra_rt_info_max_plen = 0
net.ipv6.conf.kube-bridge.accept_ra_rt_info_min_plen = 0
net.ipv6.conf.kube-bridge.accept_ra_rtr_pref = 1
net.ipv6.conf.kube-bridge.accept_redirects = 1
net.ipv6.conf.kube-bridge.accept_source_route = 0
net.ipv6.conf.kube-bridge.accept_untracked_na = 0
net.ipv6.conf.kube-bridge.addr_gen_mode = 0
net.ipv6.conf.kube-bridge.autoconf = 1
net.ipv6.conf.kube-bridge.dad_transmits = 1
net.ipv6.conf.kube-bridge.disable_ipv6 = 0
net.ipv6.conf.kube-bridge.disable_policy = 0
net.ipv6.conf.kube-bridge.drop_unicast_in_l2_multicast = 0
net.ipv6.conf.kube-bridge.drop_unsolicited_na = 0
net.ipv6.conf.kube-bridge.enhanced_dad = 1
net.ipv6.conf.kube-bridge.force_mld_version = 0
net.ipv6.conf.kube-bridge.force_tllao = 0
net.ipv6.conf.kube-bridge.forwarding = 1
net.ipv6.conf.kube-bridge.hop_limit = 64
net.ipv6.conf.kube-bridge.ignore_routes_with_linkdown = 0
net.ipv6.conf.kube-bridge.ioam6_enabled = 0
net.ipv6.conf.kube-bridge.ioam6_id = 65535
net.ipv6.conf.kube-bridge.ioam6_id_wide = 4294967295
net.ipv6.conf.kube-bridge.keep_addr_on_down = 0
net.ipv6.conf.kube-bridge.max_addresses = 16
net.ipv6.conf.kube-bridge.max_desync_factor = 600
net.ipv6.conf.kube-bridge.mc_forwarding = 0
net.ipv6.conf.kube-bridge.mldv1_unsolicited_report_interval = 10000
net.ipv6.conf.kube-bridge.mldv2_unsolicited_report_interval = 1000
net.ipv6.conf.kube-bridge.mtu = 8913
net.ipv6.conf.kube-bridge.ndisc_evict_nocarrier = 1
net.ipv6.conf.kube-bridge.ndisc_notify = 0
net.ipv6.conf.kube-bridge.ndisc_tclass = 0
net.ipv6.conf.kube-bridge.optimistic_dad = 0
net.ipv6.conf.kube-bridge.proxy_ndp = 0
net.ipv6.conf.kube-bridge.ra_defrtr_metric = 1024
net.ipv6.conf.kube-bridge.regen_max_retry = 3
net.ipv6.conf.kube-bridge.router_probe_interval = 60
net.ipv6.conf.kube-bridge.router_solicitation_delay = 1
net.ipv6.conf.kube-bridge.router_solicitation_interval = 4
net.ipv6.conf.kube-bridge.router_solicitation_max_interval = 3600
net.ipv6.conf.kube-bridge.router_solicitations = -1
net.ipv6.conf.kube-bridge.rpl_seg_enabled = 0
net.ipv6.conf.kube-bridge.seg6_enabled = 0
net.ipv6.conf.kube-bridge.suppress_frag_ndisc = 1
net.ipv6.conf.kube-bridge.temp_prefered_lft = 86400
net.ipv6.conf.kube-bridge.temp_valid_lft = 604800
net.ipv6.conf.kube-bridge.use_oif_addrs_only = 0
net.ipv6.conf.kube-bridge.use_optimistic = 0
net.ipv6.conf.kube-bridge.use_tempaddr = 0
net.ipv6.conf.kube-dummy-if.accept_dad = -1
net.ipv6.conf.kube-dummy-if.accept_ra = 1
net.ipv6.conf.kube-dummy-if.accept_ra_defrtr = 1
net.ipv6.conf.kube-dummy-if.accept_ra_from_local = 0
net.ipv6.conf.kube-dummy-if.accept_ra_min_hop_limit = 1
net.ipv6.conf.kube-dummy-if.accept_ra_min_lft = 0
net.ipv6.conf.kube-dummy-if.accept_ra_mtu = 1
net.ipv6.conf.kube-dummy-if.accept_ra_pinfo = 1
net.ipv6.conf.kube-dummy-if.accept_ra_rt_info_max_plen = 0
net.ipv6.conf.kube-dummy-if.accept_ra_rt_info_min_plen = 0
net.ipv6.conf.kube-dummy-if.accept_ra_rtr_pref = 1
net.ipv6.conf.kube-dummy-if.accept_redirects = 1
net.ipv6.conf.kube-dummy-if.accept_source_route = 0
net.ipv6.conf.kube-dummy-if.accept_untracked_na = 0
net.ipv6.conf.kube-dummy-if.addr_gen_mode = 0
net.ipv6.conf.kube-dummy-if.autoconf = 1
net.ipv6.conf.kube-dummy-if.dad_transmits = 1
net.ipv6.conf.kube-dummy-if.disable_ipv6 = 0
net.ipv6.conf.kube-dummy-if.disable_policy = 0
net.ipv6.conf.kube-dummy-if.drop_unicast_in_l2_multicast = 0
net.ipv6.conf.kube-dummy-if.drop_unsolicited_na = 0
net.ipv6.conf.kube-dummy-if.enhanced_dad = 1
net.ipv6.conf.kube-dummy-if.force_mld_version = 0
net.ipv6.conf.kube-dummy-if.force_tllao = 0
net.ipv6.conf.kube-dummy-if.forwarding = 1
net.ipv6.conf.kube-dummy-if.hop_limit = 64
net.ipv6.conf.kube-dummy-if.ignore_routes_with_linkdown = 0
net.ipv6.conf.kube-dummy-if.ioam6_enabled = 0
net.ipv6.conf.kube-dummy-if.ioam6_id = 65535
net.ipv6.conf.kube-dummy-if.ioam6_id_wide = 4294967295
net.ipv6.conf.kube-dummy-if.keep_addr_on_down = 0
net.ipv6.conf.kube-dummy-if.max_addresses = 16
net.ipv6.conf.kube-dummy-if.max_desync_factor = 600
net.ipv6.conf.kube-dummy-if.mc_forwarding = 0
net.ipv6.conf.kube-dummy-if.mldv1_unsolicited_report_interval = 10000
net.ipv6.conf.kube-dummy-if.mldv2_unsolicited_report_interval = 1000
net.ipv6.conf.kube-dummy-if.mtu = 1500
net.ipv6.conf.kube-dummy-if.ndisc_evict_nocarrier = 1
net.ipv6.conf.kube-dummy-if.ndisc_notify = 0
net.ipv6.conf.kube-dummy-if.ndisc_tclass = 0
net.ipv6.conf.kube-dummy-if.optimistic_dad = 0
net.ipv6.conf.kube-dummy-if.proxy_ndp = 0
net.ipv6.conf.kube-dummy-if.ra_defrtr_metric = 1024
net.ipv6.conf.kube-dummy-if.regen_max_retry = 3
net.ipv6.conf.kube-dummy-if.router_probe_interval = 60
net.ipv6.conf.kube-dummy-if.router_solicitation_delay = 1
net.ipv6.conf.kube-dummy-if.router_solicitation_interval = 4
net.ipv6.conf.kube-dummy-if.router_solicitation_max_interval = 3600
net.ipv6.conf.kube-dummy-if.router_solicitations = -1
net.ipv6.conf.kube-dummy-if.rpl_seg_enabled = 0
net.ipv6.conf.kube-dummy-if.seg6_enabled = 0
net.ipv6.conf.kube-dummy-if.suppress_frag_ndisc = 1
net.ipv6.conf.kube-dummy-if.temp_prefered_lft = 86400
net.ipv6.conf.kube-dummy-if.temp_valid_lft = 604800
net.ipv6.conf.kube-dummy-if.use_oif_addrs_only = 0
net.ipv6.conf.kube-dummy-if.use_optimistic = 0
net.ipv6.conf.kube-dummy-if.use_tempaddr = 0
net.ipv6.conf.lo.accept_dad = -1
net.ipv6.conf.lo.accept_ra = 1
net.ipv6.conf.lo.accept_ra_defrtr = 1
net.ipv6.conf.lo.accept_ra_from_local = 0
net.ipv6.conf.lo.accept_ra_min_hop_limit = 1
net.ipv6.conf.lo.accept_ra_min_lft = 0
net.ipv6.conf.lo.accept_ra_mtu = 1
net.ipv6.conf.lo.accept_ra_pinfo = 1
net.ipv6.conf.lo.accept_ra_rt_info_max_plen = 0
net.ipv6.conf.lo.accept_ra_rt_info_min_plen = 0
net.ipv6.conf.lo.accept_ra_rtr_pref = 1
net.ipv6.conf.lo.accept_redirects = 1
net.ipv6.conf.lo.accept_source_route = 0
net.ipv6.conf.lo.accept_untracked_na = 0
net.ipv6.conf.lo.addr_gen_mode = 0
net.ipv6.conf.lo.autoconf = 1
net.ipv6.conf.lo.dad_transmits = 1
net.ipv6.conf.lo.disable_ipv6 = 0
net.ipv6.conf.lo.disable_policy = 0
net.ipv6.conf.lo.drop_unicast_in_l2_multicast = 0
net.ipv6.conf.lo.drop_unsolicited_na = 0
net.ipv6.conf.lo.enhanced_dad = 1
net.ipv6.conf.lo.force_mld_version = 0
net.ipv6.conf.lo.force_tllao = 0
net.ipv6.conf.lo.forwarding = 1
net.ipv6.conf.lo.hop_limit = 64
net.ipv6.conf.lo.ignore_routes_with_linkdown = 0
net.ipv6.conf.lo.ioam6_enabled = 0
net.ipv6.conf.lo.ioam6_id = 65535
net.ipv6.conf.lo.ioam6_id_wide = 4294967295
net.ipv6.conf.lo.keep_addr_on_down = 0
net.ipv6.conf.lo.max_addresses = 16
net.ipv6.conf.lo.max_desync_factor = 600
net.ipv6.conf.lo.mc_forwarding = 0
net.ipv6.conf.lo.mldv1_unsolicited_report_interval = 10000
net.ipv6.conf.lo.mldv2_unsolicited_report_interval = 1000
net.ipv6.conf.lo.mtu = 65536
net.ipv6.conf.lo.ndisc_evict_nocarrier = 1
net.ipv6.conf.lo.ndisc_notify = 0
net.ipv6.conf.lo.ndisc_tclass = 0
net.ipv6.conf.lo.optimistic_dad = 0
net.ipv6.conf.lo.proxy_ndp = 0
net.ipv6.conf.lo.ra_defrtr_metric = 1024
net.ipv6.conf.lo.regen_max_retry = 3
net.ipv6.conf.lo.router_probe_interval = 60
net.ipv6.conf.lo.router_solicitation_delay = 1
net.ipv6.conf.lo.router_solicitation_interval = 4
net.ipv6.conf.lo.router_solicitation_max_interval = 3600
net.ipv6.conf.lo.router_solicitations = -1
net.ipv6.conf.lo.rpl_seg_enabled = 0
net.ipv6.conf.lo.seg6_enabled = 0
net.ipv6.conf.lo.suppress_frag_ndisc = 1
net.ipv6.conf.lo.temp_prefered_lft = 86400
net.ipv6.conf.lo.temp_valid_lft = 604800
net.ipv6.conf.lo.use_oif_addrs_only = 0
net.ipv6.conf.lo.use_optimistic = 0
net.ipv6.conf.lo.use_tempaddr = -1
net.ipv6.conf.veth0fed950c.accept_dad = 1
net.ipv6.conf.veth0fed950c.accept_ra = 0
net.ipv6.conf.veth0fed950c.accept_ra_defrtr = 1
net.ipv6.conf.veth0fed950c.accept_ra_from_local = 0
net.ipv6.conf.veth0fed950c.accept_ra_min_hop_limit = 1
net.ipv6.conf.veth0fed950c.accept_ra_min_lft = 0
net.ipv6.conf.veth0fed950c.accept_ra_mtu = 1
net.ipv6.conf.veth0fed950c.accept_ra_pinfo = 1
net.ipv6.conf.veth0fed950c.accept_ra_rt_info_max_plen = 0
net.ipv6.conf.veth0fed950c.accept_ra_rt_info_min_plen = 0
net.ipv6.conf.veth0fed950c.accept_ra_rtr_pref = 1
net.ipv6.conf.veth0fed950c.accept_redirects = 1
net.ipv6.conf.veth0fed950c.accept_source_route = 0
net.ipv6.conf.veth0fed950c.accept_untracked_na = 0
net.ipv6.conf.veth0fed950c.addr_gen_mode = 0
net.ipv6.conf.veth0fed950c.autoconf = 1
net.ipv6.conf.veth0fed950c.dad_transmits = 1
net.ipv6.conf.veth0fed950c.disable_ipv6 = 0
net.ipv6.conf.veth0fed950c.disable_policy = 0
net.ipv6.conf.veth0fed950c.drop_unicast_in_l2_multicast = 0
net.ipv6.conf.veth0fed950c.drop_unsolicited_na = 0
net.ipv6.conf.veth0fed950c.enhanced_dad = 1
net.ipv6.conf.veth0fed950c.force_mld_version = 0
net.ipv6.conf.veth0fed950c.force_tllao = 0
net.ipv6.conf.veth0fed950c.forwarding = 1
net.ipv6.conf.veth0fed950c.hop_limit = 64
net.ipv6.conf.veth0fed950c.ignore_routes_with_linkdown = 0
net.ipv6.conf.veth0fed950c.ioam6_enabled = 0
net.ipv6.conf.veth0fed950c.ioam6_id = 65535
net.ipv6.conf.veth0fed950c.ioam6_id_wide = 4294967295
net.ipv6.conf.veth0fed950c.keep_addr_on_down = 0
net.ipv6.conf.veth0fed950c.max_addresses = 16
net.ipv6.conf.veth0fed950c.max_desync_factor = 600
net.ipv6.conf.veth0fed950c.mc_forwarding = 0
net.ipv6.conf.veth0fed950c.mldv1_unsolicited_report_interval = 10000
net.ipv6.conf.veth0fed950c.mldv2_unsolicited_report_interval = 1000
net.ipv6.conf.veth0fed950c.mtu = 8913
net.ipv6.conf.veth0fed950c.ndisc_evict_nocarrier = 1
net.ipv6.conf.veth0fed950c.ndisc_notify = 0
net.ipv6.conf.veth0fed950c.ndisc_tclass = 0
net.ipv6.conf.veth0fed950c.optimistic_dad = 0
net.ipv6.conf.veth0fed950c.proxy_ndp = 0
net.ipv6.conf.veth0fed950c.ra_defrtr_metric = 1024
net.ipv6.conf.veth0fed950c.regen_max_retry = 3
net.ipv6.conf.veth0fed950c.router_probe_interval = 60
net.ipv6.conf.veth0fed950c.router_solicitation_delay = 1
net.ipv6.conf.veth0fed950c.router_solicitation_interval = 4
net.ipv6.conf.veth0fed950c.router_solicitation_max_interval = 3600
net.ipv6.conf.veth0fed950c.router_solicitations = -1
net.ipv6.conf.veth0fed950c.rpl_seg_enabled = 0
net.ipv6.conf.veth0fed950c.seg6_enabled = 0
net.ipv6.conf.veth0fed950c.suppress_frag_ndisc = 1
net.ipv6.conf.veth0fed950c.temp_prefered_lft = 86400
net.ipv6.conf.veth0fed950c.temp_valid_lft = 604800
net.ipv6.conf.veth0fed950c.use_oif_addrs_only = 0
net.ipv6.conf.veth0fed950c.use_optimistic = 0
net.ipv6.conf.veth0fed950c.use_tempaddr = 0
net.ipv6.conf.veth1f48782e.accept_dad = 1
net.ipv6.conf.veth1f48782e.accept_ra = 0
net.ipv6.conf.veth1f48782e.accept_ra_defrtr = 1
net.ipv6.conf.veth1f48782e.accept_ra_from_local = 0
net.ipv6.conf.veth1f48782e.accept_ra_min_hop_limit = 1
net.ipv6.conf.veth1f48782e.accept_ra_min_lft = 0
net.ipv6.conf.veth1f48782e.accept_ra_mtu = 1
net.ipv6.conf.veth1f48782e.accept_ra_pinfo = 1
net.ipv6.conf.veth1f48782e.accept_ra_rt_info_max_plen = 0
net.ipv6.conf.veth1f48782e.accept_ra_rt_info_min_plen = 0
net.ipv6.conf.veth1f48782e.accept_ra_rtr_pref = 1
net.ipv6.conf.veth1f48782e.accept_redirects = 1
net.ipv6.conf.veth1f48782e.accept_source_route = 0
net.ipv6.conf.veth1f48782e.accept_untracked_na = 0
net.ipv6.conf.veth1f48782e.addr_gen_mode = 0
net.ipv6.conf.veth1f48782e.autoconf = 1
net.ipv6.conf.veth1f48782e.dad_transmits = 1
net.ipv6.conf.veth1f48782e.disable_ipv6 = 0
net.ipv6.conf.veth1f48782e.disable_policy = 0
net.ipv6.conf.veth1f48782e.drop_unicast_in_l2_multicast = 0
net.ipv6.conf.veth1f48782e.drop_unsolicited_na = 0
net.ipv6.conf.veth1f48782e.enhanced_dad = 1
net.ipv6.conf.veth1f48782e.force_mld_version = 0
net.ipv6.conf.veth1f48782e.force_tllao = 0
net.ipv6.conf.veth1f48782e.forwarding = 1
net.ipv6.conf.veth1f48782e.hop_limit = 64
net.ipv6.conf.veth1f48782e.ignore_routes_with_linkdown = 0
net.ipv6.conf.veth1f48782e.ioam6_enabled = 0
net.ipv6.conf.veth1f48782e.ioam6_id = 65535
net.ipv6.conf.veth1f48782e.ioam6_id_wide = 4294967295
net.ipv6.conf.veth1f48782e.keep_addr_on_down = 0
net.ipv6.conf.veth1f48782e.max_addresses = 16
net.ipv6.conf.veth1f48782e.max_desync_factor = 600
net.ipv6.conf.veth1f48782e.mc_forwarding = 0
net.ipv6.conf.veth1f48782e.mldv1_unsolicited_report_interval = 10000
net.ipv6.conf.veth1f48782e.mldv2_unsolicited_report_interval = 1000
net.ipv6.conf.veth1f48782e.mtu = 8913
net.ipv6.conf.veth1f48782e.ndisc_evict_nocarrier = 1
net.ipv6.conf.veth1f48782e.ndisc_notify = 0
net.ipv6.conf.veth1f48782e.ndisc_tclass = 0
net.ipv6.conf.veth1f48782e.optimistic_dad = 0
net.ipv6.conf.veth1f48782e.proxy_ndp = 0
net.ipv6.conf.veth1f48782e.ra_defrtr_metric = 1024
net.ipv6.conf.veth1f48782e.regen_max_retry = 3
net.ipv6.conf.veth1f48782e.router_probe_interval = 60
net.ipv6.conf.veth1f48782e.router_solicitation_delay = 1
net.ipv6.conf.veth1f48782e.router_solicitation_interval = 4
net.ipv6.conf.veth1f48782e.router_solicitation_max_interval = 3600
net.ipv6.conf.veth1f48782e.router_solicitations = -1
net.ipv6.conf.veth1f48782e.rpl_seg_enabled = 0
net.ipv6.conf.veth1f48782e.seg6_enabled = 0
net.ipv6.conf.veth1f48782e.suppress_frag_ndisc = 1
net.ipv6.conf.veth1f48782e.temp_prefered_lft = 86400
net.ipv6.conf.veth1f48782e.temp_valid_lft = 604800
net.ipv6.conf.veth1f48782e.use_oif_addrs_only = 0
net.ipv6.conf.veth1f48782e.use_optimistic = 0
net.ipv6.conf.veth1f48782e.use_tempaddr = 0
net.ipv6.conf.veth29a8d74e.accept_dad = 1
net.ipv6.conf.veth29a8d74e.accept_ra = 0
net.ipv6.conf.veth29a8d74e.accept_ra_defrtr = 1
net.ipv6.conf.veth29a8d74e.accept_ra_from_local = 0
net.ipv6.conf.veth29a8d74e.accept_ra_min_hop_limit = 1
net.ipv6.conf.veth29a8d74e.accept_ra_min_lft = 0
net.ipv6.conf.veth29a8d74e.accept_ra_mtu = 1
net.ipv6.conf.veth29a8d74e.accept_ra_pinfo = 1
net.ipv6.conf.veth29a8d74e.accept_ra_rt_info_max_plen = 0
net.ipv6.conf.veth29a8d74e.accept_ra_rt_info_min_plen = 0
net.ipv6.conf.veth29a8d74e.accept_ra_rtr_pref = 1
net.ipv6.conf.veth29a8d74e.accept_redirects = 1
net.ipv6.conf.veth29a8d74e.accept_source_route = 0
net.ipv6.conf.veth29a8d74e.accept_untracked_na = 0
net.ipv6.conf.veth29a8d74e.addr_gen_mode = 0
net.ipv6.conf.veth29a8d74e.autoconf = 1
net.ipv6.conf.veth29a8d74e.dad_transmits = 1
net.ipv6.conf.veth29a8d74e.disable_ipv6 = 0
net.ipv6.conf.veth29a8d74e.disable_policy = 0
net.ipv6.conf.veth29a8d74e.drop_unicast_in_l2_multicast = 0
net.ipv6.conf.veth29a8d74e.drop_unsolicited_na = 0
net.ipv6.conf.veth29a8d74e.enhanced_dad = 1
net.ipv6.conf.veth29a8d74e.force_mld_version = 0
net.ipv6.conf.veth29a8d74e.force_tllao = 0
net.ipv6.conf.veth29a8d74e.forwarding = 1
net.ipv6.conf.veth29a8d74e.hop_limit = 64
net.ipv6.conf.veth29a8d74e.ignore_routes_with_linkdown = 0
net.ipv6.conf.veth29a8d74e.ioam6_enabled = 0
net.ipv6.conf.veth29a8d74e.ioam6_id = 65535
net.ipv6.conf.veth29a8d74e.ioam6_id_wide = 4294967295
net.ipv6.conf.veth29a8d74e.keep_addr_on_down = 0
net.ipv6.conf.veth29a8d74e.max_addresses = 16
net.ipv6.conf.veth29a8d74e.max_desync_factor = 600
net.ipv6.conf.veth29a8d74e.mc_forwarding = 0
net.ipv6.conf.veth29a8d74e.mldv1_unsolicited_report_interval = 10000
net.ipv6.conf.veth29a8d74e.mldv2_unsolicited_report_interval = 1000
net.ipv6.conf.veth29a8d74e.mtu = 8913
net.ipv6.conf.veth29a8d74e.ndisc_evict_nocarrier = 1
net.ipv6.conf.veth29a8d74e.ndisc_notify = 0
net.ipv6.conf.veth29a8d74e.ndisc_tclass = 0
net.ipv6.conf.veth29a8d74e.optimistic_dad = 0
net.ipv6.conf.veth29a8d74e.proxy_ndp = 0
net.ipv6.conf.veth29a8d74e.ra_defrtr_metric = 1024
net.ipv6.conf.veth29a8d74e.regen_max_retry = 3
net.ipv6.conf.veth29a8d74e.router_probe_interval = 60
net.ipv6.conf.veth29a8d74e.router_solicitation_delay = 1
net.ipv6.conf.veth29a8d74e.router_solicitation_interval = 4
net.ipv6.conf.veth29a8d74e.router_solicitation_max_interval = 3600
net.ipv6.conf.veth29a8d74e.router_solicitations = -1
net.ipv6.conf.veth29a8d74e.rpl_seg_enabled = 0
net.ipv6.conf.veth29a8d74e.seg6_enabled = 0
net.ipv6.conf.veth29a8d74e.suppress_frag_ndisc = 1
net.ipv6.conf.veth29a8d74e.temp_prefered_lft = 86400
net.ipv6.conf.veth29a8d74e.temp_valid_lft = 604800
net.ipv6.conf.veth29a8d74e.use_oif_addrs_only = 0
net.ipv6.conf.veth29a8d74e.use_optimistic = 0
net.ipv6.conf.veth29a8d74e.use_tempaddr = 0
net.ipv6.conf.veth41e9493d.accept_dad = 1
net.ipv6.conf.veth41e9493d.accept_ra = 0
net.ipv6.conf.veth41e9493d.accept_ra_defrtr = 1
net.ipv6.conf.veth41e9493d.accept_ra_from_local = 0
net.ipv6.conf.veth41e9493d.accept_ra_min_hop_limit = 1
net.ipv6.conf.veth41e9493d.accept_ra_min_lft = 0
net.ipv6.conf.veth41e9493d.accept_ra_mtu = 1
net.ipv6.conf.veth41e9493d.accept_ra_pinfo = 1
net.ipv6.conf.veth41e9493d.accept_ra_rt_info_max_plen = 0
net.ipv6.conf.veth41e9493d.accept_ra_rt_info_min_plen = 0
net.ipv6.conf.veth41e9493d.accept_ra_rtr_pref = 1
net.ipv6.conf.veth41e9493d.accept_redirects = 1
net.ipv6.conf.veth41e9493d.accept_source_route = 0
net.ipv6.conf.veth41e9493d.accept_untracked_na = 0
net.ipv6.conf.veth41e9493d.addr_gen_mode = 0
net.ipv6.conf.veth41e9493d.autoconf = 1
net.ipv6.conf.veth41e9493d.dad_transmits = 1
net.ipv6.conf.veth41e9493d.disable_ipv6 = 0
net.ipv6.conf.veth41e9493d.disable_policy = 0
net.ipv6.conf.veth41e9493d.drop_unicast_in_l2_multicast = 0
net.ipv6.conf.veth41e9493d.drop_unsolicited_na = 0
net.ipv6.conf.veth41e9493d.enhanced_dad = 1
net.ipv6.conf.veth41e9493d.force_mld_version = 0
net.ipv6.conf.veth41e9493d.force_tllao = 0
net.ipv6.conf.veth41e9493d.forwarding = 1
net.ipv6.conf.veth41e9493d.hop_limit = 64
net.ipv6.conf.veth41e9493d.ignore_routes_with_linkdown = 0
net.ipv6.conf.veth41e9493d.ioam6_enabled = 0
net.ipv6.conf.veth41e9493d.ioam6_id = 65535
net.ipv6.conf.veth41e9493d.ioam6_id_wide = 4294967295
net.ipv6.conf.veth41e9493d.keep_addr_on_down = 0
net.ipv6.conf.veth41e9493d.max_addresses = 16
net.ipv6.conf.veth41e9493d.max_desync_factor = 600
net.ipv6.conf.veth41e9493d.mc_forwarding = 0
net.ipv6.conf.veth41e9493d.mldv1_unsolicited_report_interval = 10000
net.ipv6.conf.veth41e9493d.mldv2_unsolicited_report_interval = 1000
net.ipv6.conf.veth41e9493d.mtu = 8913
net.ipv6.conf.veth41e9493d.ndisc_evict_nocarrier = 1
net.ipv6.conf.veth41e9493d.ndisc_notify = 0
net.ipv6.conf.veth41e9493d.ndisc_tclass = 0
net.ipv6.conf.veth41e9493d.optimistic_dad = 0
net.ipv6.conf.veth41e9493d.proxy_ndp = 0
net.ipv6.conf.veth41e9493d.ra_defrtr_metric = 1024
net.ipv6.conf.veth41e9493d.regen_max_retry = 3
net.ipv6.conf.veth41e9493d.router_probe_interval = 60
net.ipv6.conf.veth41e9493d.router_solicitation_delay = 1
net.ipv6.conf.veth41e9493d.router_solicitation_interval = 4
net.ipv6.conf.veth41e9493d.router_solicitation_max_interval = 3600
net.ipv6.conf.veth41e9493d.router_solicitations = -1
net.ipv6.conf.veth41e9493d.rpl_seg_enabled = 0
net.ipv6.conf.veth41e9493d.seg6_enabled = 0
net.ipv6.conf.veth41e9493d.suppress_frag_ndisc = 1
net.ipv6.conf.veth41e9493d.temp_prefered_lft = 86400
net.ipv6.conf.veth41e9493d.temp_valid_lft = 604800
net.ipv6.conf.veth41e9493d.use_oif_addrs_only = 0
net.ipv6.conf.veth41e9493d.use_optimistic = 0
net.ipv6.conf.veth41e9493d.use_tempaddr = 0
net.ipv6.conf.veth4b6f88bf.accept_dad = 1
net.ipv6.conf.veth4b6f88bf.accept_ra = 0
net.ipv6.conf.veth4b6f88bf.accept_ra_defrtr = 1
net.ipv6.conf.veth4b6f88bf.accept_ra_from_local = 0
net.ipv6.conf.veth4b6f88bf.accept_ra_min_hop_limit = 1
net.ipv6.conf.veth4b6f88bf.accept_ra_min_lft = 0
net.ipv6.conf.veth4b6f88bf.accept_ra_mtu = 1
net.ipv6.conf.veth4b6f88bf.accept_ra_pinfo = 1
net.ipv6.conf.veth4b6f88bf.accept_ra_rt_info_max_plen = 0
net.ipv6.conf.veth4b6f88bf.accept_ra_rt_info_min_plen = 0
net.ipv6.conf.veth4b6f88bf.accept_ra_rtr_pref = 1
net.ipv6.conf.veth4b6f88bf.accept_redirects = 1
net.ipv6.conf.veth4b6f88bf.accept_source_route = 0
net.ipv6.conf.veth4b6f88bf.accept_untracked_na = 0
net.ipv6.conf.veth4b6f88bf.addr_gen_mode = 0
net.ipv6.conf.veth4b6f88bf.autoconf = 1
net.ipv6.conf.veth4b6f88bf.dad_transmits = 1
net.ipv6.conf.veth4b6f88bf.disable_ipv6 = 0
net.ipv6.conf.veth4b6f88bf.disable_policy = 0
net.ipv6.conf.veth4b6f88bf.drop_unicast_in_l2_multicast = 0
net.ipv6.conf.veth4b6f88bf.drop_unsolicited_na = 0
net.ipv6.conf.veth4b6f88bf.enhanced_dad = 1
net.ipv6.conf.veth4b6f88bf.force_mld_version = 0
net.ipv6.conf.veth4b6f88bf.force_tllao = 0
net.ipv6.conf.veth4b6f88bf.forwarding = 1
net.ipv6.conf.veth4b6f88bf.hop_limit = 64
net.ipv6.conf.veth4b6f88bf.ignore_routes_with_linkdown = 0
net.ipv6.conf.veth4b6f88bf.ioam6_enabled = 0
net.ipv6.conf.veth4b6f88bf.ioam6_id = 65535
net.ipv6.conf.veth4b6f88bf.ioam6_id_wide = 4294967295
net.ipv6.conf.veth4b6f88bf.keep_addr_on_down = 0
net.ipv6.conf.veth4b6f88bf.max_addresses = 16
net.ipv6.conf.veth4b6f88bf.max_desync_factor = 600
net.ipv6.conf.veth4b6f88bf.mc_forwarding = 0
net.ipv6.conf.veth4b6f88bf.mldv1_unsolicited_report_interval = 10000
net.ipv6.conf.veth4b6f88bf.mldv2_unsolicited_report_interval = 1000
net.ipv6.conf.veth4b6f88bf.mtu = 8913
net.ipv6.conf.veth4b6f88bf.ndisc_evict_nocarrier = 1
net.ipv6.conf.veth4b6f88bf.ndisc_notify = 0
net.ipv6.conf.veth4b6f88bf.ndisc_tclass = 0
net.ipv6.conf.veth4b6f88bf.optimistic_dad = 0
net.ipv6.conf.veth4b6f88bf.proxy_ndp = 0
net.ipv6.conf.veth4b6f88bf.ra_defrtr_metric = 1024
net.ipv6.conf.veth4b6f88bf.regen_max_retry = 3
net.ipv6.conf.veth4b6f88bf.router_probe_interval = 60
net.ipv6.conf.veth4b6f88bf.router_solicitation_delay = 1
net.ipv6.conf.veth4b6f88bf.router_solicitation_interval = 4
net.ipv6.conf.veth4b6f88bf.router_solicitation_max_interval = 3600
net.ipv6.conf.veth4b6f88bf.router_solicitations = -1
net.ipv6.conf.veth4b6f88bf.rpl_seg_enabled = 0
net.ipv6.conf.veth4b6f88bf.seg6_enabled = 0
net.ipv6.conf.veth4b6f88bf.suppress_frag_ndisc = 1
net.ipv6.conf.veth4b6f88bf.temp_prefered_lft = 86400
net.ipv6.conf.veth4b6f88bf.temp_valid_lft = 604800
net.ipv6.conf.veth4b6f88bf.use_oif_addrs_only = 0
net.ipv6.conf.veth4b6f88bf.use_optimistic = 0
net.ipv6.conf.veth4b6f88bf.use_tempaddr = 0
net.ipv6.conf.veth72217438.accept_dad = 1
net.ipv6.conf.veth72217438.accept_ra = 0
net.ipv6.conf.veth72217438.accept_ra_defrtr = 1
net.ipv6.conf.veth72217438.accept_ra_from_local = 0
net.ipv6.conf.veth72217438.accept_ra_min_hop_limit = 1
net.ipv6.conf.veth72217438.accept_ra_min_lft = 0
net.ipv6.conf.veth72217438.accept_ra_mtu = 1
net.ipv6.conf.veth72217438.accept_ra_pinfo = 1
net.ipv6.conf.veth72217438.accept_ra_rt_info_max_plen = 0
net.ipv6.conf.veth72217438.accept_ra_rt_info_min_plen = 0
net.ipv6.conf.veth72217438.accept_ra_rtr_pref = 1
net.ipv6.conf.veth72217438.accept_redirects = 1
net.ipv6.conf.veth72217438.accept_source_route = 0
net.ipv6.conf.veth72217438.accept_untracked_na = 0
net.ipv6.conf.veth72217438.addr_gen_mode = 0
net.ipv6.conf.veth72217438.autoconf = 1
net.ipv6.conf.veth72217438.dad_transmits = 1
net.ipv6.conf.veth72217438.disable_ipv6 = 0
net.ipv6.conf.veth72217438.disable_policy = 0
net.ipv6.conf.veth72217438.drop_unicast_in_l2_multicast = 0
net.ipv6.conf.veth72217438.drop_unsolicited_na = 0
net.ipv6.conf.veth72217438.enhanced_dad = 1
net.ipv6.conf.veth72217438.force_mld_version = 0
net.ipv6.conf.veth72217438.force_tllao = 0
net.ipv6.conf.veth72217438.forwarding = 1
net.ipv6.conf.veth72217438.hop_limit = 64
net.ipv6.conf.veth72217438.ignore_routes_with_linkdown = 0
net.ipv6.conf.veth72217438.ioam6_enabled = 0
net.ipv6.conf.veth72217438.ioam6_id = 65535
net.ipv6.conf.veth72217438.ioam6_id_wide = 4294967295
net.ipv6.conf.veth72217438.keep_addr_on_down = 0
net.ipv6.conf.veth72217438.max_addresses = 16
net.ipv6.conf.veth72217438.max_desync_factor = 600
net.ipv6.conf.veth72217438.mc_forwarding = 0
net.ipv6.conf.veth72217438.mldv1_unsolicited_report_interval = 10000
net.ipv6.conf.veth72217438.mldv2_unsolicited_report_interval = 1000
net.ipv6.conf.veth72217438.mtu = 8913
net.ipv6.conf.veth72217438.ndisc_evict_nocarrier = 1
net.ipv6.conf.veth72217438.ndisc_notify = 0
net.ipv6.conf.veth72217438.ndisc_tclass = 0
net.ipv6.conf.veth72217438.optimistic_dad = 0
net.ipv6.conf.veth72217438.proxy_ndp = 0
net.ipv6.conf.veth72217438.ra_defrtr_metric = 1024
net.ipv6.conf.veth72217438.regen_max_retry = 3
net.ipv6.conf.veth72217438.router_probe_interval = 60
net.ipv6.conf.veth72217438.router_solicitation_delay = 1
net.ipv6.conf.veth72217438.router_solicitation_interval = 4
net.ipv6.conf.veth72217438.router_solicitation_max_interval = 3600
net.ipv6.conf.veth72217438.router_solicitations = -1
net.ipv6.conf.veth72217438.rpl_seg_enabled = 0
net.ipv6.conf.veth72217438.seg6_enabled = 0
net.ipv6.conf.veth72217438.suppress_frag_ndisc = 1
net.ipv6.conf.veth72217438.temp_prefered_lft = 86400
net.ipv6.conf.veth72217438.temp_valid_lft = 604800
net.ipv6.conf.veth72217438.use_oif_addrs_only = 0
net.ipv6.conf.veth72217438.use_optimistic = 0
net.ipv6.conf.veth72217438.use_tempaddr = 0
net.ipv6.conf.veth83380718.accept_dad = 1
net.ipv6.conf.veth83380718.accept_ra = 0
net.ipv6.conf.veth83380718.accept_ra_defrtr = 1
net.ipv6.conf.veth83380718.accept_ra_from_local = 0
net.ipv6.conf.veth83380718.accept_ra_min_hop_limit = 1
net.ipv6.conf.veth83380718.accept_ra_min_lft = 0
net.ipv6.conf.veth83380718.accept_ra_mtu = 1
net.ipv6.conf.veth83380718.accept_ra_pinfo = 1
net.ipv6.conf.veth83380718.accept_ra_rt_info_max_plen = 0
net.ipv6.conf.veth83380718.accept_ra_rt_info_min_plen = 0
net.ipv6.conf.veth83380718.accept_ra_rtr_pref = 1
net.ipv6.conf.veth83380718.accept_redirects = 1
net.ipv6.conf.veth83380718.accept_source_route = 0
net.ipv6.conf.veth83380718.accept_untracked_na = 0
net.ipv6.conf.veth83380718.addr_gen_mode = 0
net.ipv6.conf.veth83380718.autoconf = 1
net.ipv6.conf.veth83380718.dad_transmits = 1
net.ipv6.conf.veth83380718.disable_ipv6 = 0
net.ipv6.conf.veth83380718.disable_policy = 0
net.ipv6.conf.veth83380718.drop_unicast_in_l2_multicast = 0
net.ipv6.conf.veth83380718.drop_unsolicited_na = 0
net.ipv6.conf.veth83380718.enhanced_dad = 1
net.ipv6.conf.veth83380718.force_mld_version = 0
net.ipv6.conf.veth83380718.force_tllao = 0
net.ipv6.conf.veth83380718.forwarding = 1
net.ipv6.conf.veth83380718.hop_limit = 64
net.ipv6.conf.veth83380718.ignore_routes_with_linkdown = 0
net.ipv6.conf.veth83380718.ioam6_enabled = 0
net.ipv6.conf.veth83380718.ioam6_id = 65535
net.ipv6.conf.veth83380718.ioam6_id_wide = 4294967295
net.ipv6.conf.veth83380718.keep_addr_on_down = 0
net.ipv6.conf.veth83380718.max_addresses = 16
net.ipv6.conf.veth83380718.max_desync_factor = 600
net.ipv6.conf.veth83380718.mc_forwarding = 0
net.ipv6.conf.veth83380718.mldv1_unsolicited_report_interval = 10000
net.ipv6.conf.veth83380718.mldv2_unsolicited_report_interval = 1000
net.ipv6.conf.veth83380718.mtu = 8913
net.ipv6.conf.veth83380718.ndisc_evict_nocarrier = 1
net.ipv6.conf.veth83380718.ndisc_notify = 0
net.ipv6.conf.veth83380718.ndisc_tclass = 0
net.ipv6.conf.veth83380718.optimistic_dad = 0
net.ipv6.conf.veth83380718.proxy_ndp = 0
net.ipv6.conf.veth83380718.ra_defrtr_metric = 1024
net.ipv6.conf.veth83380718.regen_max_retry = 3
net.ipv6.conf.veth83380718.router_probe_interval = 60
net.ipv6.conf.veth83380718.router_solicitation_delay = 1
net.ipv6.conf.veth83380718.router_solicitation_interval = 4
net.ipv6.conf.veth83380718.router_solicitation_max_interval = 3600
net.ipv6.conf.veth83380718.router_solicitations = -1
net.ipv6.conf.veth83380718.rpl_seg_enabled = 0
net.ipv6.conf.veth83380718.seg6_enabled = 0
net.ipv6.conf.veth83380718.suppress_frag_ndisc = 1
net.ipv6.conf.veth83380718.temp_prefered_lft = 86400
net.ipv6.conf.veth83380718.temp_valid_lft = 604800
net.ipv6.conf.veth83380718.use_oif_addrs_only = 0
net.ipv6.conf.veth83380718.use_optimistic = 0
net.ipv6.conf.veth83380718.use_tempaddr = 0
net.ipv6.conf.veth9ea2e917.accept_dad = 1
net.ipv6.conf.veth9ea2e917.accept_ra = 0
net.ipv6.conf.veth9ea2e917.accept_ra_defrtr = 1
net.ipv6.conf.veth9ea2e917.accept_ra_from_local = 0
net.ipv6.conf.veth9ea2e917.accept_ra_min_hop_limit = 1
net.ipv6.conf.veth9ea2e917.accept_ra_min_lft = 0
net.ipv6.conf.veth9ea2e917.accept_ra_mtu = 1
net.ipv6.conf.veth9ea2e917.accept_ra_pinfo = 1
net.ipv6.conf.veth9ea2e917.accept_ra_rt_info_max_plen = 0
net.ipv6.conf.veth9ea2e917.accept_ra_rt_info_min_plen = 0
net.ipv6.conf.veth9ea2e917.accept_ra_rtr_pref = 1
net.ipv6.conf.veth9ea2e917.accept_redirects = 1
net.ipv6.conf.veth9ea2e917.accept_source_route = 0
net.ipv6.conf.veth9ea2e917.accept_untracked_na = 0
net.ipv6.conf.veth9ea2e917.addr_gen_mode = 0
net.ipv6.conf.veth9ea2e917.autoconf = 1
net.ipv6.conf.veth9ea2e917.dad_transmits = 1
net.ipv6.conf.veth9ea2e917.disable_ipv6 = 0
net.ipv6.conf.veth9ea2e917.disable_policy = 0
net.ipv6.conf.veth9ea2e917.drop_unicast_in_l2_multicast = 0
net.ipv6.conf.veth9ea2e917.drop_unsolicited_na = 0
net.ipv6.conf.veth9ea2e917.enhanced_dad = 1
net.ipv6.conf.veth9ea2e917.force_mld_version = 0
net.ipv6.conf.veth9ea2e917.force_tllao = 0
net.ipv6.conf.veth9ea2e917.forwarding = 1
net.ipv6.conf.veth9ea2e917.hop_limit = 64
net.ipv6.conf.veth9ea2e917.ignore_routes_with_linkdown = 0
net.ipv6.conf.veth9ea2e917.ioam6_enabled = 0
net.ipv6.conf.veth9ea2e917.ioam6_id = 65535
net.ipv6.conf.veth9ea2e917.ioam6_id_wide = 4294967295
net.ipv6.conf.veth9ea2e917.keep_addr_on_down = 0
net.ipv6.conf.veth9ea2e917.max_addresses = 16
net.ipv6.conf.veth9ea2e917.max_desync_factor = 600
net.ipv6.conf.veth9ea2e917.mc_forwarding = 0
net.ipv6.conf.veth9ea2e917.mldv1_unsolicited_report_interval = 10000
net.ipv6.conf.veth9ea2e917.mldv2_unsolicited_report_interval = 1000
net.ipv6.conf.veth9ea2e917.mtu = 8913
net.ipv6.conf.veth9ea2e917.ndisc_evict_nocarrier = 1
net.ipv6.conf.veth9ea2e917.ndisc_notify = 0
net.ipv6.conf.veth9ea2e917.ndisc_tclass = 0
net.ipv6.conf.veth9ea2e917.optimistic_dad = 0
net.ipv6.conf.veth9ea2e917.proxy_ndp = 0
net.ipv6.conf.veth9ea2e917.ra_defrtr_metric = 1024
net.ipv6.conf.veth9ea2e917.regen_max_retry = 3
net.ipv6.conf.veth9ea2e917.router_probe_interval = 60
net.ipv6.conf.veth9ea2e917.router_solicitation_delay = 1
net.ipv6.conf.veth9ea2e917.router_solicitation_interval = 4
net.ipv6.conf.veth9ea2e917.router_solicitation_max_interval = 3600
net.ipv6.conf.veth9ea2e917.router_solicitations = -1
net.ipv6.conf.veth9ea2e917.rpl_seg_enabled = 0
net.ipv6.conf.veth9ea2e917.seg6_enabled = 0
net.ipv6.conf.veth9ea2e917.suppress_frag_ndisc = 1
net.ipv6.conf.veth9ea2e917.temp_prefered_lft = 86400
net.ipv6.conf.veth9ea2e917.temp_valid_lft = 604800
net.ipv6.conf.veth9ea2e917.use_oif_addrs_only = 0
net.ipv6.conf.veth9ea2e917.use_optimistic = 0
net.ipv6.conf.veth9ea2e917.use_tempaddr = 0
net.ipv6.conf.vethe4392229.accept_dad = 1
net.ipv6.conf.vethe4392229.accept_ra = 0
net.ipv6.conf.vethe4392229.accept_ra_defrtr = 1
net.ipv6.conf.vethe4392229.accept_ra_from_local = 0
net.ipv6.conf.vethe4392229.accept_ra_min_hop_limit = 1
net.ipv6.conf.vethe4392229.accept_ra_min_lft = 0
net.ipv6.conf.vethe4392229.accept_ra_mtu = 1
net.ipv6.conf.vethe4392229.accept_ra_pinfo = 1
net.ipv6.conf.vethe4392229.accept_ra_rt_info_max_plen = 0
net.ipv6.conf.vethe4392229.accept_ra_rt_info_min_plen = 0
net.ipv6.conf.vethe4392229.accept_ra_rtr_pref = 1
net.ipv6.conf.vethe4392229.accept_redirects = 1
net.ipv6.conf.vethe4392229.accept_source_route = 0
net.ipv6.conf.vethe4392229.accept_untracked_na = 0
net.ipv6.conf.vethe4392229.addr_gen_mode = 0
net.ipv6.conf.vethe4392229.autoconf = 1
net.ipv6.conf.vethe4392229.dad_transmits = 1
net.ipv6.conf.vethe4392229.disable_ipv6 = 0
net.ipv6.conf.vethe4392229.disable_policy = 0
net.ipv6.conf.vethe4392229.drop_unicast_in_l2_multicast = 0
net.ipv6.conf.vethe4392229.drop_unsolicited_na = 0
net.ipv6.conf.vethe4392229.enhanced_dad = 1
net.ipv6.conf.vethe4392229.force_mld_version = 0
net.ipv6.conf.vethe4392229.force_tllao = 0
net.ipv6.conf.vethe4392229.forwarding = 1
net.ipv6.conf.vethe4392229.hop_limit = 64
net.ipv6.conf.vethe4392229.ignore_routes_with_linkdown = 0
net.ipv6.conf.vethe4392229.ioam6_enabled = 0
net.ipv6.conf.vethe4392229.ioam6_id = 65535
net.ipv6.conf.vethe4392229.ioam6_id_wide = 4294967295
net.ipv6.conf.vethe4392229.keep_addr_on_down = 0
net.ipv6.conf.vethe4392229.max_addresses = 16
net.ipv6.conf.vethe4392229.max_desync_factor = 600
net.ipv6.conf.vethe4392229.mc_forwarding = 0
net.ipv6.conf.vethe4392229.mldv1_unsolicited_report_interval = 10000
net.ipv6.conf.vethe4392229.mldv2_unsolicited_report_interval = 1000
net.ipv6.conf.vethe4392229.mtu = 8913
net.ipv6.conf.vethe4392229.ndisc_evict_nocarrier = 1
net.ipv6.conf.vethe4392229.ndisc_notify = 0
net.ipv6.conf.vethe4392229.ndisc_tclass = 0
net.ipv6.conf.vethe4392229.optimistic_dad = 0
net.ipv6.conf.vethe4392229.proxy_ndp = 0
net.ipv6.conf.vethe4392229.ra_defrtr_metric = 1024
net.ipv6.conf.vethe4392229.regen_max_retry = 3
net.ipv6.conf.vethe4392229.router_probe_interval = 60
net.ipv6.conf.vethe4392229.router_solicitation_delay = 1
net.ipv6.conf.vethe4392229.router_solicitation_interval = 4
net.ipv6.conf.vethe4392229.router_solicitation_max_interval = 3600
net.ipv6.conf.vethe4392229.router_solicitations = -1
net.ipv6.conf.vethe4392229.rpl_seg_enabled = 0
net.ipv6.conf.vethe4392229.seg6_enabled = 0
net.ipv6.conf.vethe4392229.suppress_frag_ndisc = 1
net.ipv6.conf.vethe4392229.temp_prefered_lft = 86400
net.ipv6.conf.vethe4392229.temp_valid_lft = 604800
net.ipv6.conf.vethe4392229.use_oif_addrs_only = 0
net.ipv6.conf.vethe4392229.use_optimistic = 0
net.ipv6.conf.vethe4392229.use_tempaddr = 0
net.ipv6.conf.vetheddccc08.accept_dad = 1
net.ipv6.conf.vetheddccc08.accept_ra = 0
net.ipv6.conf.vetheddccc08.accept_ra_defrtr = 1
net.ipv6.conf.vetheddccc08.accept_ra_from_local = 0
net.ipv6.conf.vetheddccc08.accept_ra_min_hop_limit = 1
net.ipv6.conf.vetheddccc08.accept_ra_min_lft = 0
net.ipv6.conf.vetheddccc08.accept_ra_mtu = 1
net.ipv6.conf.vetheddccc08.accept_ra_pinfo = 1
net.ipv6.conf.vetheddccc08.accept_ra_rt_info_max_plen = 0
net.ipv6.conf.vetheddccc08.accept_ra_rt_info_min_plen = 0
net.ipv6.conf.vetheddccc08.accept_ra_rtr_pref = 1
net.ipv6.conf.vetheddccc08.accept_redirects = 1
net.ipv6.conf.vetheddccc08.accept_source_route = 0
net.ipv6.conf.vetheddccc08.accept_untracked_na = 0
net.ipv6.conf.vetheddccc08.addr_gen_mode = 0
net.ipv6.conf.vetheddccc08.autoconf = 1
net.ipv6.conf.vetheddccc08.dad_transmits = 1
net.ipv6.conf.vetheddccc08.disable_ipv6 = 0
net.ipv6.conf.vetheddccc08.disable_policy = 0
net.ipv6.conf.vetheddccc08.drop_unicast_in_l2_multicast = 0
net.ipv6.conf.vetheddccc08.drop_unsolicited_na = 0
net.ipv6.conf.vetheddccc08.enhanced_dad = 1
net.ipv6.conf.vetheddccc08.force_mld_version = 0
net.ipv6.conf.vetheddccc08.force_tllao = 0
net.ipv6.conf.vetheddccc08.forwarding = 1
net.ipv6.conf.vetheddccc08.hop_limit = 64
net.ipv6.conf.vetheddccc08.ignore_routes_with_linkdown = 0
net.ipv6.conf.vetheddccc08.ioam6_enabled = 0
net.ipv6.conf.vetheddccc08.ioam6_id = 65535
net.ipv6.conf.vetheddccc08.ioam6_id_wide = 4294967295
net.ipv6.conf.vetheddccc08.keep_addr_on_down = 0
net.ipv6.conf.vetheddccc08.max_addresses = 16
net.ipv6.conf.vetheddccc08.max_desync_factor = 600
net.ipv6.conf.vetheddccc08.mc_forwarding = 0
net.ipv6.conf.vetheddccc08.mldv1_unsolicited_report_interval = 10000
net.ipv6.conf.vetheddccc08.mldv2_unsolicited_report_interval = 1000
net.ipv6.conf.vetheddccc08.mtu = 8913
net.ipv6.conf.vetheddccc08.ndisc_evict_nocarrier = 1
net.ipv6.conf.vetheddccc08.ndisc_notify = 0
net.ipv6.conf.vetheddccc08.ndisc_tclass = 0
net.ipv6.conf.vetheddccc08.optimistic_dad = 0
net.ipv6.conf.vetheddccc08.proxy_ndp = 0
net.ipv6.conf.vetheddccc08.ra_defrtr_metric = 1024
net.ipv6.conf.vetheddccc08.regen_max_retry = 3
net.ipv6.conf.vetheddccc08.router_probe_interval = 60
net.ipv6.conf.vetheddccc08.router_solicitation_delay = 1
net.ipv6.conf.vetheddccc08.router_solicitation_interval = 4
net.ipv6.conf.vetheddccc08.router_solicitation_max_interval = 3600
net.ipv6.conf.vetheddccc08.router_solicitations = -1
net.ipv6.conf.vetheddccc08.rpl_seg_enabled = 0
net.ipv6.conf.vetheddccc08.seg6_enabled = 0
net.ipv6.conf.vetheddccc08.suppress_frag_ndisc = 1
net.ipv6.conf.vetheddccc08.temp_prefered_lft = 86400
net.ipv6.conf.vetheddccc08.temp_valid_lft = 604800
net.ipv6.conf.vetheddccc08.use_oif_addrs_only = 0
net.ipv6.conf.vetheddccc08.use_optimistic = 0
net.ipv6.conf.vetheddccc08.use_tempaddr = 0
net.ipv6.conf.vethfe15a069.accept_dad = 1
net.ipv6.conf.vethfe15a069.accept_ra = 0
net.ipv6.conf.vethfe15a069.accept_ra_defrtr = 1
net.ipv6.conf.vethfe15a069.accept_ra_from_local = 0
net.ipv6.conf.vethfe15a069.accept_ra_min_hop_limit = 1
net.ipv6.conf.vethfe15a069.accept_ra_min_lft = 0
net.ipv6.conf.vethfe15a069.accept_ra_mtu = 1
net.ipv6.conf.vethfe15a069.accept_ra_pinfo = 1
net.ipv6.conf.vethfe15a069.accept_ra_rt_info_max_plen = 0
net.ipv6.conf.vethfe15a069.accept_ra_rt_info_min_plen = 0
net.ipv6.conf.vethfe15a069.accept_ra_rtr_pref = 1
net.ipv6.conf.vethfe15a069.accept_redirects = 1
net.ipv6.conf.vethfe15a069.accept_source_route = 0
net.ipv6.conf.vethfe15a069.accept_untracked_na = 0
net.ipv6.conf.vethfe15a069.addr_gen_mode = 0
net.ipv6.conf.vethfe15a069.autoconf = 1
net.ipv6.conf.vethfe15a069.dad_transmits = 1
net.ipv6.conf.vethfe15a069.disable_ipv6 = 0
net.ipv6.conf.vethfe15a069.disable_policy = 0
net.ipv6.conf.vethfe15a069.drop_unicast_in_l2_multicast = 0
net.ipv6.conf.vethfe15a069.drop_unsolicited_na = 0
net.ipv6.conf.vethfe15a069.enhanced_dad = 1
net.ipv6.conf.vethfe15a069.force_mld_version = 0
net.ipv6.conf.vethfe15a069.force_tllao = 0
net.ipv6.conf.vethfe15a069.forwarding = 1
net.ipv6.conf.vethfe15a069.hop_limit = 64
net.ipv6.conf.vethfe15a069.ignore_routes_with_linkdown = 0
net.ipv6.conf.vethfe15a069.ioam6_enabled = 0
net.ipv6.conf.vethfe15a069.ioam6_id = 65535
net.ipv6.conf.vethfe15a069.ioam6_id_wide = 4294967295
net.ipv6.conf.vethfe15a069.keep_addr_on_down = 0
net.ipv6.conf.vethfe15a069.max_addresses = 16
net.ipv6.conf.vethfe15a069.max_desync_factor = 600
net.ipv6.conf.vethfe15a069.mc_forwarding = 0
net.ipv6.conf.vethfe15a069.mldv1_unsolicited_report_interval = 10000
net.ipv6.conf.vethfe15a069.mldv2_unsolicited_report_interval = 1000
net.ipv6.conf.vethfe15a069.mtu = 8913
net.ipv6.conf.vethfe15a069.ndisc_evict_nocarrier = 1
net.ipv6.conf.vethfe15a069.ndisc_notify = 0
net.ipv6.conf.vethfe15a069.ndisc_tclass = 0
net.ipv6.conf.vethfe15a069.optimistic_dad = 0
net.ipv6.conf.vethfe15a069.proxy_ndp = 0
net.ipv6.conf.vethfe15a069.ra_defrtr_metric = 1024
net.ipv6.conf.vethfe15a069.regen_max_retry = 3
net.ipv6.conf.vethfe15a069.router_probe_interval = 60
net.ipv6.conf.vethfe15a069.router_solicitation_delay = 1
net.ipv6.conf.vethfe15a069.router_solicitation_interval = 4
net.ipv6.conf.vethfe15a069.router_solicitation_max_interval = 3600
net.ipv6.conf.vethfe15a069.router_solicitations = -1
net.ipv6.conf.vethfe15a069.rpl_seg_enabled = 0
net.ipv6.conf.vethfe15a069.seg6_enabled = 0
net.ipv6.conf.vethfe15a069.suppress_frag_ndisc = 1
net.ipv6.conf.vethfe15a069.temp_prefered_lft = 86400
net.ipv6.conf.vethfe15a069.temp_valid_lft = 604800
net.ipv6.conf.vethfe15a069.use_oif_addrs_only = 0
net.ipv6.conf.vethfe15a069.use_optimistic = 0
net.ipv6.conf.vethfe15a069.use_tempaddr = 0
net.ipv6.fib_multipath_hash_fields = 7
net.ipv6.fib_multipath_hash_policy = 0
net.ipv6.fib_notify_on_flag_change = 0
net.ipv6.flowlabel_consistency = 1
net.ipv6.flowlabel_reflect = 0
net.ipv6.flowlabel_state_ranges = 0
net.ipv6.fwmark_reflect = 0
net.ipv6.icmp.echo_ignore_all = 0
net.ipv6.icmp.echo_ignore_anycast = 0
net.ipv6.icmp.echo_ignore_multicast = 0
net.ipv6.icmp.error_anycast_as_unicast = 0
net.ipv6.icmp.ratelimit = 1000
net.ipv6.icmp.ratemask = 0-1,3-127
net.ipv6.idgen_delay = 1
net.ipv6.idgen_retries = 3
net.ipv6.ioam6_id = 16777215
net.ipv6.ioam6_id_wide = 72057594037927935
net.ipv6.ip6frag_high_thresh = 4194304
net.ipv6.ip6frag_low_thresh = 3145728
net.ipv6.ip6frag_secret_interval = 0
net.ipv6.ip6frag_time = 60
net.ipv6.ip_nonlocal_bind = 0
net.ipv6.max_dst_opts_length = 2147483647
net.ipv6.max_dst_opts_number = 8
net.ipv6.max_hbh_length = 2147483647
net.ipv6.max_hbh_opts_number = 8
net.ipv6.mld_max_msf = 64
net.ipv6.mld_qrv = 2
net.ipv6.neigh.default.anycast_delay = 100
net.ipv6.neigh.default.app_solicit = 0
net.ipv6.neigh.default.base_reachable_time_ms = 30000
net.ipv6.neigh.default.delay_first_probe_time = 5
net.ipv6.neigh.default.gc_interval = 30
net.ipv6.neigh.default.gc_stale_time = 60
net.ipv6.neigh.default.gc_thresh1 = 128
net.ipv6.neigh.default.gc_thresh2 = 512
net.ipv6.neigh.default.gc_thresh3 = 1024
net.ipv6.neigh.default.interval_probe_time_ms = 5000
net.ipv6.neigh.default.locktime = 0
net.ipv6.neigh.default.mcast_resolicit = 0
net.ipv6.neigh.default.mcast_solicit = 3
net.ipv6.neigh.default.proxy_delay = 80
net.ipv6.neigh.default.proxy_qlen = 64
net.ipv6.neigh.default.retrans_time_ms = 1000
net.ipv6.neigh.default.ucast_solicit = 3
net.ipv6.neigh.default.unres_qlen = 101
net.ipv6.neigh.default.unres_qlen_bytes = 212992
net.ipv6.neigh.eth0.anycast_delay = 100
net.ipv6.neigh.eth0.app_solicit = 0
net.ipv6.neigh.eth0.base_reachable_time_ms = 30000
net.ipv6.neigh.eth0.delay_first_probe_time = 5
net.ipv6.neigh.eth0.gc_stale_time = 60
net.ipv6.neigh.eth0.interval_probe_time_ms = 5000
net.ipv6.neigh.eth0.locktime = 0
net.ipv6.neigh.eth0.mcast_resolicit = 0
net.ipv6.neigh.eth0.mcast_solicit = 3
net.ipv6.neigh.eth0.proxy_delay = 80
net.ipv6.neigh.eth0.proxy_qlen = 64
net.ipv6.neigh.eth0.retrans_time_ms = 1000
net.ipv6.neigh.eth0.ucast_solicit = 3
net.ipv6.neigh.eth0.unres_qlen = 101
net.ipv6.neigh.eth0.unres_qlen_bytes = 212992
net.ipv6.neigh.eth1.anycast_delay = 100
net.ipv6.neigh.eth1.app_solicit = 0
net.ipv6.neigh.eth1.base_reachable_time_ms = 30000
net.ipv6.neigh.eth1.delay_first_probe_time = 5
net.ipv6.neigh.eth1.gc_stale_time = 60
net.ipv6.neigh.eth1.interval_probe_time_ms = 5000
net.ipv6.neigh.eth1.locktime = 0
net.ipv6.neigh.eth1.mcast_resolicit = 0
net.ipv6.neigh.eth1.mcast_solicit = 3
net.ipv6.neigh.eth1.proxy_delay = 80
net.ipv6.neigh.eth1.proxy_qlen = 64
net.ipv6.neigh.eth1.retrans_time_ms = 1000
net.ipv6.neigh.eth1.ucast_solicit = 3
net.ipv6.neigh.eth1.unres_qlen = 101
net.ipv6.neigh.eth1.unres_qlen_bytes = 212992
net.ipv6.neigh.kube-bridge.anycast_delay = 100
net.ipv6.neigh.kube-bridge.app_solicit = 0
net.ipv6.neigh.kube-bridge.base_reachable_time_ms = 30000
net.ipv6.neigh.kube-bridge.delay_first_probe_time = 5
net.ipv6.neigh.kube-bridge.gc_stale_time = 60
net.ipv6.neigh.kube-bridge.interval_probe_time_ms = 5000
net.ipv6.neigh.kube-bridge.locktime = 0
net.ipv6.neigh.kube-bridge.mcast_resolicit = 0
net.ipv6.neigh.kube-bridge.mcast_solicit = 3
net.ipv6.neigh.kube-bridge.proxy_delay = 80
net.ipv6.neigh.kube-bridge.proxy_qlen = 64
net.ipv6.neigh.kube-bridge.retrans_time_ms = 1000
net.ipv6.neigh.kube-bridge.ucast_solicit = 3
net.ipv6.neigh.kube-bridge.unres_qlen = 101
net.ipv6.neigh.kube-bridge.unres_qlen_bytes = 212992
net.ipv6.neigh.kube-dummy-if.anycast_delay = 100
net.ipv6.neigh.kube-dummy-if.app_solicit = 0
net.ipv6.neigh.kube-dummy-if.base_reachable_time_ms = 30000
net.ipv6.neigh.kube-dummy-if.delay_first_probe_time = 5
net.ipv6.neigh.kube-dummy-if.gc_stale_time = 60
net.ipv6.neigh.kube-dummy-if.interval_probe_time_ms = 5000
net.ipv6.neigh.kube-dummy-if.locktime = 0
net.ipv6.neigh.kube-dummy-if.mcast_resolicit = 0
net.ipv6.neigh.kube-dummy-if.mcast_solicit = 3
net.ipv6.neigh.kube-dummy-if.proxy_delay = 80
net.ipv6.neigh.kube-dummy-if.proxy_qlen = 64
net.ipv6.neigh.kube-dummy-if.retrans_time_ms = 1000
net.ipv6.neigh.kube-dummy-if.ucast_solicit = 3
net.ipv6.neigh.kube-dummy-if.unres_qlen = 101
net.ipv6.neigh.kube-dummy-if.unres_qlen_bytes = 212992
net.ipv6.neigh.lo.anycast_delay = 100
net.ipv6.neigh.lo.app_solicit = 0
net.ipv6.neigh.lo.base_reachable_time_ms = 30000
net.ipv6.neigh.lo.delay_first_probe_time = 5
net.ipv6.neigh.lo.gc_stale_time = 60
net.ipv6.neigh.lo.interval_probe_time_ms = 5000
net.ipv6.neigh.lo.locktime = 0
net.ipv6.neigh.lo.mcast_resolicit = 0
net.ipv6.neigh.lo.mcast_solicit = 3
net.ipv6.neigh.lo.proxy_delay = 80
net.ipv6.neigh.lo.proxy_qlen = 64
net.ipv6.neigh.lo.retrans_time_ms = 1000
net.ipv6.neigh.lo.ucast_solicit = 3
net.ipv6.neigh.lo.unres_qlen = 101
net.ipv6.neigh.lo.unres_qlen_bytes = 212992
net.ipv6.neigh.veth0fed950c.anycast_delay = 100
net.ipv6.neigh.veth0fed950c.app_solicit = 0
net.ipv6.neigh.veth0fed950c.base_reachable_time_ms = 30000
net.ipv6.neigh.veth0fed950c.delay_first_probe_time = 5
net.ipv6.neigh.veth0fed950c.gc_stale_time = 60
net.ipv6.neigh.veth0fed950c.interval_probe_time_ms = 5000
net.ipv6.neigh.veth0fed950c.locktime = 0
net.ipv6.neigh.veth0fed950c.mcast_resolicit = 0
net.ipv6.neigh.veth0fed950c.mcast_solicit = 3
net.ipv6.neigh.veth0fed950c.proxy_delay = 80
net.ipv6.neigh.veth0fed950c.proxy_qlen = 64
net.ipv6.neigh.veth0fed950c.retrans_time_ms = 1000
net.ipv6.neigh.veth0fed950c.ucast_solicit = 3
net.ipv6.neigh.veth0fed950c.unres_qlen = 101
net.ipv6.neigh.veth0fed950c.unres_qlen_bytes = 212992
net.ipv6.neigh.veth1f48782e.anycast_delay = 100
net.ipv6.neigh.veth1f48782e.app_solicit = 0
net.ipv6.neigh.veth1f48782e.base_reachable_time_ms = 30000
net.ipv6.neigh.veth1f48782e.delay_first_probe_time = 5
net.ipv6.neigh.veth1f48782e.gc_stale_time = 60
net.ipv6.neigh.veth1f48782e.interval_probe_time_ms = 5000
net.ipv6.neigh.veth1f48782e.locktime = 0
net.ipv6.neigh.veth1f48782e.mcast_resolicit = 0
net.ipv6.neigh.veth1f48782e.mcast_solicit = 3
net.ipv6.neigh.veth1f48782e.proxy_delay = 80
net.ipv6.neigh.veth1f48782e.proxy_qlen = 64
net.ipv6.neigh.veth1f48782e.retrans_time_ms = 1000
net.ipv6.neigh.veth1f48782e.ucast_solicit = 3
net.ipv6.neigh.veth1f48782e.unres_qlen = 101
net.ipv6.neigh.veth1f48782e.unres_qlen_bytes = 212992
net.ipv6.neigh.veth29a8d74e.anycast_delay = 100
net.ipv6.neigh.veth29a8d74e.app_solicit = 0
net.ipv6.neigh.veth29a8d74e.base_reachable_time_ms = 30000
net.ipv6.neigh.veth29a8d74e.delay_first_probe_time = 5
net.ipv6.neigh.veth29a8d74e.gc_stale_time = 60
net.ipv6.neigh.veth29a8d74e.interval_probe_time_ms = 5000
net.ipv6.neigh.veth29a8d74e.locktime = 0
net.ipv6.neigh.veth29a8d74e.mcast_resolicit = 0
net.ipv6.neigh.veth29a8d74e.mcast_solicit = 3
net.ipv6.neigh.veth29a8d74e.proxy_delay = 80
net.ipv6.neigh.veth29a8d74e.proxy_qlen = 64
net.ipv6.neigh.veth29a8d74e.retrans_time_ms = 1000
net.ipv6.neigh.veth29a8d74e.ucast_solicit = 3
net.ipv6.neigh.veth29a8d74e.unres_qlen = 101
net.ipv6.neigh.veth29a8d74e.unres_qlen_bytes = 212992
net.ipv6.neigh.veth41e9493d.anycast_delay = 100
net.ipv6.neigh.veth41e9493d.app_solicit = 0
net.ipv6.neigh.veth41e9493d.base_reachable_time_ms = 30000
net.ipv6.neigh.veth41e9493d.delay_first_probe_time = 5
net.ipv6.neigh.veth41e9493d.gc_stale_time = 60
net.ipv6.neigh.veth41e9493d.interval_probe_time_ms = 5000
net.ipv6.neigh.veth41e9493d.locktime = 0
net.ipv6.neigh.veth41e9493d.mcast_resolicit = 0
net.ipv6.neigh.veth41e9493d.mcast_solicit = 3
net.ipv6.neigh.veth41e9493d.proxy_delay = 80
net.ipv6.neigh.veth41e9493d.proxy_qlen = 64
net.ipv6.neigh.veth41e9493d.retrans_time_ms = 1000
net.ipv6.neigh.veth41e9493d.ucast_solicit = 3
net.ipv6.neigh.veth41e9493d.unres_qlen = 101
net.ipv6.neigh.veth41e9493d.unres_qlen_bytes = 212992
net.ipv6.neigh.veth4b6f88bf.anycast_delay = 100
net.ipv6.neigh.veth4b6f88bf.app_solicit = 0
net.ipv6.neigh.veth4b6f88bf.base_reachable_time_ms = 30000
net.ipv6.neigh.veth4b6f88bf.delay_first_probe_time = 5
net.ipv6.neigh.veth4b6f88bf.gc_stale_time = 60
net.ipv6.neigh.veth4b6f88bf.interval_probe_time_ms = 5000
net.ipv6.neigh.veth4b6f88bf.locktime = 0
net.ipv6.neigh.veth4b6f88bf.mcast_resolicit = 0
net.ipv6.neigh.veth4b6f88bf.mcast_solicit = 3
net.ipv6.neigh.veth4b6f88bf.proxy_delay = 80
net.ipv6.neigh.veth4b6f88bf.proxy_qlen = 64
net.ipv6.neigh.veth4b6f88bf.retrans_time_ms = 1000
net.ipv6.neigh.veth4b6f88bf.ucast_solicit = 3
net.ipv6.neigh.veth4b6f88bf.unres_qlen = 101
net.ipv6.neigh.veth4b6f88bf.unres_qlen_bytes = 212992
net.ipv6.neigh.veth72217438.anycast_delay = 100
net.ipv6.neigh.veth72217438.app_solicit = 0
net.ipv6.neigh.veth72217438.base_reachable_time_ms = 30000
net.ipv6.neigh.veth72217438.delay_first_probe_time = 5
net.ipv6.neigh.veth72217438.gc_stale_time = 60
net.ipv6.neigh.veth72217438.interval_probe_time_ms = 5000
net.ipv6.neigh.veth72217438.locktime = 0
net.ipv6.neigh.veth72217438.mcast_resolicit = 0
net.ipv6.neigh.veth72217438.mcast_solicit = 3
net.ipv6.neigh.veth72217438.proxy_delay = 80
net.ipv6.neigh.veth72217438.proxy_qlen = 64
net.ipv6.neigh.veth72217438.retrans_time_ms = 1000
net.ipv6.neigh.veth72217438.ucast_solicit = 3
net.ipv6.neigh.veth72217438.unres_qlen = 101
net.ipv6.neigh.veth72217438.unres_qlen_bytes = 212992
net.ipv6.neigh.veth83380718.anycast_delay = 100
net.ipv6.neigh.veth83380718.app_solicit = 0
net.ipv6.neigh.veth83380718.base_reachable_time_ms = 30000
net.ipv6.neigh.veth83380718.delay_first_probe_time = 5
net.ipv6.neigh.veth83380718.gc_stale_time = 60
net.ipv6.neigh.veth83380718.interval_probe_time_ms = 5000
net.ipv6.neigh.veth83380718.locktime = 0
net.ipv6.neigh.veth83380718.mcast_resolicit = 0
net.ipv6.neigh.veth83380718.mcast_solicit = 3
net.ipv6.neigh.veth83380718.proxy_delay = 80
net.ipv6.neigh.veth83380718.proxy_qlen = 64
net.ipv6.neigh.veth83380718.retrans_time_ms = 1000
net.ipv6.neigh.veth83380718.ucast_solicit = 3
net.ipv6.neigh.veth83380718.unres_qlen = 101
net.ipv6.neigh.veth83380718.unres_qlen_bytes = 212992
net.ipv6.neigh.veth9ea2e917.anycast_delay = 100
net.ipv6.neigh.veth9ea2e917.app_solicit = 0
net.ipv6.neigh.veth9ea2e917.base_reachable_time_ms = 30000
net.ipv6.neigh.veth9ea2e917.delay_first_probe_time = 5
net.ipv6.neigh.veth9ea2e917.gc_stale_time = 60
net.ipv6.neigh.veth9ea2e917.interval_probe_time_ms = 5000
net.ipv6.neigh.veth9ea2e917.locktime = 0
net.ipv6.neigh.veth9ea2e917.mcast_resolicit = 0
net.ipv6.neigh.veth9ea2e917.mcast_solicit = 3
net.ipv6.neigh.veth9ea2e917.proxy_delay = 80
net.ipv6.neigh.veth9ea2e917.proxy_qlen = 64
net.ipv6.neigh.veth9ea2e917.retrans_time_ms = 1000
net.ipv6.neigh.veth9ea2e917.ucast_solicit = 3
net.ipv6.neigh.veth9ea2e917.unres_qlen = 101
net.ipv6.neigh.veth9ea2e917.unres_qlen_bytes = 212992
net.ipv6.neigh.vethe4392229.anycast_delay = 100
net.ipv6.neigh.vethe4392229.app_solicit = 0
net.ipv6.neigh.vethe4392229.base_reachable_time_ms = 30000
net.ipv6.neigh.vethe4392229.delay_first_probe_time = 5
net.ipv6.neigh.vethe4392229.gc_stale_time = 60
net.ipv6.neigh.vethe4392229.interval_probe_time_ms = 5000
net.ipv6.neigh.vethe4392229.locktime = 0
net.ipv6.neigh.vethe4392229.mcast_resolicit = 0
net.ipv6.neigh.vethe4392229.mcast_solicit = 3
net.ipv6.neigh.vethe4392229.proxy_delay = 80
net.ipv6.neigh.vethe4392229.proxy_qlen = 64
net.ipv6.neigh.vethe4392229.retrans_time_ms = 1000
net.ipv6.neigh.vethe4392229.ucast_solicit = 3
net.ipv6.neigh.vethe4392229.unres_qlen = 101
net.ipv6.neigh.vethe4392229.unres_qlen_bytes = 212992
net.ipv6.neigh.vetheddccc08.anycast_delay = 100
net.ipv6.neigh.vetheddccc08.app_solicit = 0
net.ipv6.neigh.vetheddccc08.base_reachable_time_ms = 30000
net.ipv6.neigh.vetheddccc08.delay_first_probe_time = 5
net.ipv6.neigh.vetheddccc08.gc_stale_time = 60
net.ipv6.neigh.vetheddccc08.interval_probe_time_ms = 5000
net.ipv6.neigh.vetheddccc08.locktime = 0
net.ipv6.neigh.vetheddccc08.mcast_resolicit = 0
net.ipv6.neigh.vetheddccc08.mcast_solicit = 3
net.ipv6.neigh.vetheddccc08.proxy_delay = 80
net.ipv6.neigh.vetheddccc08.proxy_qlen = 64
net.ipv6.neigh.vetheddccc08.retrans_time_ms = 1000
net.ipv6.neigh.vetheddccc08.ucast_solicit = 3
net.ipv6.neigh.vetheddccc08.unres_qlen = 101
net.ipv6.neigh.vetheddccc08.unres_qlen_bytes = 212992
net.ipv6.neigh.vethfe15a069.anycast_delay = 100
net.ipv6.neigh.vethfe15a069.app_solicit = 0
net.ipv6.neigh.vethfe15a069.base_reachable_time_ms = 30000
net.ipv6.neigh.vethfe15a069.delay_first_probe_time = 5
net.ipv6.neigh.vethfe15a069.gc_stale_time = 60
net.ipv6.neigh.vethfe15a069.interval_probe_time_ms = 5000
net.ipv6.neigh.vethfe15a069.locktime = 0
net.ipv6.neigh.vethfe15a069.mcast_resolicit = 0
net.ipv6.neigh.vethfe15a069.mcast_solicit = 3
net.ipv6.neigh.vethfe15a069.proxy_delay = 80
net.ipv6.neigh.vethfe15a069.proxy_qlen = 64
net.ipv6.neigh.vethfe15a069.retrans_time_ms = 1000
net.ipv6.neigh.vethfe15a069.ucast_solicit = 3
net.ipv6.neigh.vethfe15a069.unres_qlen = 101
net.ipv6.neigh.vethfe15a069.unres_qlen_bytes = 212992
net.ipv6.route.gc_elasticity = 9
net.ipv6.route.gc_interval = 30
net.ipv6.route.gc_min_interval = 0
net.ipv6.route.gc_min_interval_ms = 500
net.ipv6.route.gc_thresh = 1024
net.ipv6.route.gc_timeout = 60
net.ipv6.route.max_size = 2147483647
net.ipv6.route.min_adv_mss = 1220
net.ipv6.route.mtu_expires = 600
net.ipv6.route.skip_notify_on_dev_down = 0
net.ipv6.seg6_flowlabel = 0
net.ipv6.xfrm6_gc_thresh = 32768
net.netfilter.nf_conntrack_acct = 0
net.netfilter.nf_conntrack_buckets = 262144
net.netfilter.nf_conntrack_checksum = 1
net.netfilter.nf_conntrack_count = 335
net.netfilter.nf_conntrack_dccp_loose = 1
net.netfilter.nf_conntrack_dccp_timeout_closereq = 64
net.netfilter.nf_conntrack_dccp_timeout_closing = 64
net.netfilter.nf_conntrack_dccp_timeout_open = 43200
net.netfilter.nf_conntrack_dccp_timeout_partopen = 480
net.netfilter.nf_conntrack_dccp_timeout_request = 240
net.netfilter.nf_conntrack_dccp_timeout_respond = 480
net.netfilter.nf_conntrack_dccp_timeout_timewait = 240
net.netfilter.nf_conntrack_events = 2
net.netfilter.nf_conntrack_expect_max = 4096
net.netfilter.nf_conntrack_frag6_high_thresh = 4194304
net.netfilter.nf_conntrack_frag6_low_thresh = 3145728
net.netfilter.nf_conntrack_frag6_timeout = 60
net.netfilter.nf_conntrack_generic_timeout = 600
net.netfilter.nf_conntrack_gre_timeout = 30
net.netfilter.nf_conntrack_gre_timeout_stream = 180
net.netfilter.nf_conntrack_icmp_timeout = 30
net.netfilter.nf_conntrack_icmpv6_timeout = 30
net.netfilter.nf_conntrack_log_invalid = 0
net.netfilter.nf_conntrack_max = 262144
net.netfilter.nf_conntrack_sctp_timeout_closed = 10
net.netfilter.nf_conntrack_sctp_timeout_cookie_echoed = 3
net.netfilter.nf_conntrack_sctp_timeout_cookie_wait = 3
net.netfilter.nf_conntrack_sctp_timeout_established = 210
net.netfilter.nf_conntrack_sctp_timeout_heartbeat_sent = 30
net.netfilter.nf_conntrack_sctp_timeout_shutdown_ack_sent = 3
net.netfilter.nf_conntrack_sctp_timeout_shutdown_recd = 3
net.netfilter.nf_conntrack_sctp_timeout_shutdown_sent = 3
net.netfilter.nf_conntrack_tcp_be_liberal = 0
net.netfilter.nf_conntrack_tcp_ignore_invalid_rst = 0
net.netfilter.nf_conntrack_tcp_loose = 1
net.netfilter.nf_conntrack_tcp_max_retrans = 3
net.netfilter.nf_conntrack_tcp_timeout_close = 10
net.netfilter.nf_conntrack_tcp_timeout_close_wait = 3600
net.netfilter.nf_conntrack_tcp_timeout_established = 86400
net.netfilter.nf_conntrack_tcp_timeout_fin_wait = 120
net.netfilter.nf_conntrack_tcp_timeout_last_ack = 30
net.netfilter.nf_conntrack_tcp_timeout_max_retrans = 300
net.netfilter.nf_conntrack_tcp_timeout_syn_recv = 60
net.netfilter.nf_conntrack_tcp_timeout_syn_sent = 120
net.netfilter.nf_conntrack_tcp_timeout_time_wait = 120
net.netfilter.nf_conntrack_tcp_timeout_unacknowledged = 300
net.netfilter.nf_conntrack_timestamp = 0
net.netfilter.nf_conntrack_udp_timeout = 30
net.netfilter.nf_conntrack_udp_timeout_stream = 120
net.netfilter.nf_hooks_lwtunnel = 0
net.netfilter.nf_log.0 = NONE
net.netfilter.nf_log.1 = NONE
net.netfilter.nf_log.10 = NONE
net.netfilter.nf_log.2 = NONE
net.netfilter.nf_log.3 = NONE
net.netfilter.nf_log.4 = NONE
net.netfilter.nf_log.5 = NONE
net.netfilter.nf_log.6 = NONE
net.netfilter.nf_log.7 = NONE
net.netfilter.nf_log.8 = NONE
net.netfilter.nf_log.9 = NONE
net.netfilter.nf_log_all_netns = 0
net.nf_conntrack_max = 262144
net.unix.max_dgram_qlen = 512
net.vrf.strict_mode = 0
user.max_cgroup_namespaces = 31596
user.max_fanotify_groups = 128
user.max_fanotify_marks = 66366
user.max_inotify_instances = 128
user.max_inotify_watches = 62368
user.max_ipc_namespaces = 31596
user.max_mnt_namespaces = 31596
user.max_net_namespaces = 31596
user.max_pid_namespaces = 31596
user.max_time_namespaces = 31596
user.max_user_namespaces = 31596
user.max_uts_namespaces = 31596
vm.admin_reserve_kbytes = 8192
vm.compact_unevictable_allowed = 1
vm.compaction_proactiveness = 20
vm.dirty_background_bytes = 0
vm.dirty_background_ratio = 10
vm.dirty_bytes = 0
vm.dirty_expire_centisecs = 3000
vm.dirty_ratio = 20
vm.dirty_writeback_centisecs = 500
vm.dirtytime_expire_seconds = 43200
vm.extfrag_threshold = 500
vm.hugetlb_optimize_vmemmap = 0
vm.hugetlb_shm_group = 0
vm.laptop_mode = 0
vm.legacy_va_layout = 0
vm.lowmem_reserve_ratio = 256	256	32	0
vm.max_map_count = 65530
vm.memfd_noexec = 0
vm.memory_failure_early_kill = 0
vm.memory_failure_recovery = 1
vm.min_free_kbytes = 67584
vm.min_slab_ratio = 5
vm.min_unmapped_ratio = 1
vm.mmap_min_addr = 4096
vm.mmap_rnd_bits = 28
vm.mmap_rnd_compat_bits = 8
vm.nr_hugepages = 0
vm.nr_hugepages_mempolicy = 0
vm.nr_overcommit_hugepages = 0
vm.numa_stat = 1
vm.numa_zonelist_order = Node
vm.oom_dump_tasks = 1
vm.oom_kill_allocating_task = 0
vm.overcommit_kbytes = 0
vm.overcommit_memory = 1
vm.overcommit_ratio = 50
vm.page-cluster = 3
vm.page_lock_unfairness = 5
vm.panic_on_oom = 0
vm.percpu_pagelist_high_fraction = 0
vm.stat_interval = 1
vm.swappiness = 60
vm.user_reserve_kbytes = 131072
vm.vfs_cache_pressure = 100
vm.watermark_boost_factor = 15000
vm.watermark_scale_factor = 10
vm.zone_reclaim_mode = 0

Maybe in addition: when we create a node, it comes up with two interfaces when it comes up — we use eth0 for kubernetes etc. and essentially also public access and there's an eth1 for an internal management network. This part is always the same on all our setups.

So here's ip a (just in case):

1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
       valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host noprefixroute 
       valid_lft forever preferred_lft forever
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 8913 qdisc fq_codel state UP group default qlen 1000
    link/ether fa:16:3e:71:3d:c5 brd ff:ff:ff:ff:ff:ff
    altname enp0s4
    altname ens4
    inet 10.108.110.145/24 metric 1024 brd 10.108.110.255 scope global dynamic eth0
       valid_lft 72902sec preferred_lft 72902sec
    inet6 fe80::f816:3eff:fe71:3dc5/64 scope link proto kernel_ll 
       valid_lft forever preferred_lft forever
3: eth1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 8950 qdisc fq_codel state UP group default qlen 1000
    link/ether fa:16:3e:bb:ac:fa brd ff:ff:ff:ff:ff:ff
    altname enp0s5
    altname ens5
    inet 10.108.1.143/24 metric 1024 brd 10.108.1.255 scope global dynamic eth1
       valid_lft 71289sec preferred_lft 71289sec
    inet6 fe80::f816:3eff:febb:acfa/64 scope link proto kernel_ll 
       valid_lft forever preferred_lft forever
4: kube-bridge: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 8913 qdisc noqueue state UP group default qlen 1000
    link/ether f6:80:bb:0a:0e:47 brd ff:ff:ff:ff:ff:ff
    inet 10.244.0.1/24 brd 10.244.0.255 scope global kube-bridge
       valid_lft forever preferred_lft forever
    inet6 fe80::f480:bbff:fe0a:e47/64 scope link proto kernel_ll 
       valid_lft forever preferred_lft forever
(...)

Since eth0 is the node's public interface, it is the interface the public IP (which I redacted) points to. And while a request to the public IP does not work from within a pod, a request to the IP on eth0 works:

/ # curl -k https://10.108.110.145:6443
{
  "kind": "Status",
  "apiVersion": "v1",
  "metadata": {},
  "status": "Failure",
  "message": "Unauthorized",
  "reason": "Unauthorized",
  "code": 401
}

@till
Copy link
Contributor Author

till commented Dec 2, 2024

Also, would it be possible for you to create a new node from scratch and check if the new node works?

Do you mean, a new "single node cluster" with kube-router, etc. with version v1.31.2? I can do that, and I haven't tried it yet (the cluster we replaced this with now uses Calico).

@juanluisvaladas
Copy link
Contributor

juanluisvaladas commented Dec 5, 2024

Hi @till sorry for the delay,

The pod will send the egress traffic based on the routing information in ip route, so it's good that you verify that ip route and have in mind the gateway's mac addresses and all the information that you may need to properly analyze the tcpdump. SInce there is sensitive data here I'm not too sure how much help I can be analyzing the tcpdumps.

You'll need to find a pod which can reproduce the problem (preferably a create a pod without any workload) enter its net namespace of the pod in two terminals:

worker1:/# k0s ctr containers list | grep nginx # Obviously yours doesn't need to be nginx, it was just convinient for me
ceb2a5c6bca86a17b4a0e5a99d77c098da6e6937719b59b2a3c38ff9ba6a1414    docker.io/library/nginx:1.23.1-alpine                    io.containerd.runc.v2
worker1:/# k0s ctr containers info ceb2a5c6bca86a17b4a0e5a99d77c098da6e6937719b59b2a3c38ff9ba6a1414 | grep /proc/ | head -1
                    "path": "/proc/**1425**/ns/ipc"
worker1:/# nsenter -n -t **1425**
worker1:/# # we're in the pod net namespace now, but we maintain all the privileges and filesystem from the host. Verify it actually worked.
worker1:/# ip a
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN qlen 1000
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
       valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host
       valid_lft forever preferred_lft forever
2: eth0@if8: <BROADCAST,MULTICAST,UP,LOWER_UP,M-DOWN> mtu 1500 qdisc noqueue state UP
    link/ether 26:21:0b:44:46:56 brd ff:ff:ff:ff:ff:ff
    inet 10.244.1.4/24 brd 10.244.1.255 scope global eth0
       valid_lft forever preferred_lft forever
    inet6 fe80::2421:bff:fe44:4656/64 scope link
       valid_lft forever preferred_lft forever

At the same time:
1- In one of the terminals in the pod's net namespace ping the external address.
2- In one of the terminals in the pod's net namespace run tcpdump (I recommend using -w to save it to a pcap file so that you can. analyze it later with wireshark/tshark)
3- Acquire a tcpdump of the interface kube-bridge: tcpdump -i kube-bridge. Again I recommend using the -w flag to save it to a file.
4- Run a third tcpdump on the interface used to reach the external address.

Do NOT use -i any in any of the tcpdumps.

Here's an example of what it looks like (I use -nn and an icmp filter for simplicity, but I do recommend not using any filter and saving to a file):

worker1:/# ping 8.8.8.8
PING 8.8.8.8 (8.8.8.8): 56 data bytes
64 bytes from 8.8.8.8: seq=0 ttl=115 time=30.725 ms
64 bytes from 8.8.8.8: seq=1 ttl=115 time=30.867 ms
64 bytes from 8.8.8.8: seq=2 ttl=115 time=30.760 ms
64 bytes from 8.8.8.8: seq=3 ttl=115 time=30.678 ms
worker1:/# tcpdump -nn icmp
tcpdump: verbose output suppressed, use -v[v]... for full protocol decode
listening on eth0, link-type EN10MB (Ethernet), snapshot length 262144 bytes
12:19:50.466006 IP 10.244.1.4 > 8.8.8.8: ICMP echo request, id 2823, seq 1, length 64
12:19:50.496702 IP 8.8.8.8 > 10.244.1.4: ICMP echo reply, id 2823, seq 1, length 64
12:19:51.466289 IP 10.244.1.4 > 8.8.8.8: ICMP echo request, id 2823, seq 2, length 64
12:19:51.496877 IP 8.8.8.8 > 10.244.1.4: ICMP echo reply, id 2823, seq 2, length 64
12:19:52.466608 IP 10.244.1.4 > 8.8.8.8: ICMP echo request, id 2823, seq 3, length 64
12:19:52.497124 IP 8.8.8.8 > 10.244.1.4: ICMP echo reply, id 2823, seq 3, length 64
worker1:/# tcpdump -i kube-bridge -nn icmp
tcpdump: verbose output suppressed, use -v[v]... for full protocol decode
listening on kube-bridge, link-type EN10MB (Ethernet), snapshot length 262144 bytes
12:19:50.466015 IP 10.244.1.4 > 8.8.8.8: ICMP echo request, id 2823, seq 1, length 64
12:19:50.496696 IP 8.8.8.8 > 10.244.1.4: ICMP echo reply, id 2823, seq 1, length 64
12:19:51.466297 IP 10.244.1.4 > 8.8.8.8: ICMP echo request, id 2823, seq 2, length 64
12:19:51.496871 IP 8.8.8.8 > 10.244.1.4: ICMP echo reply, id 2823, seq 2, length 64
12:19:52.466616 IP 10.244.1.4 > 8.8.8.8: ICMP echo request, id 2823, seq 3, length 64
12:19:52.497111 IP 8.8.8.8 > 10.244.1.4: ICMP echo reply, id 2823, seq 3, length 64
worker1:/# tcpdump -i eth0 -nn icmp # keep in mind yours may not be eth0
tcpdump: verbose output suppressed, use -v[v]... for full protocol decode
listening on eth0, link-type EN10MB (Ethernet), snapshot length 262144 bytes
12:19:50.466081 IP 172.17.0.4 > 8.8.8.8: ICMP echo request, id 51131, seq 1, length 64
12:19:50.496651 IP 8.8.8.8 > 172.17.0.4: ICMP echo reply, id 51131, seq 1, length 64
12:19:51.466369 IP 172.17.0.4 > 8.8.8.8: ICMP echo request, id 51131, seq 2, length 64
12:19:51.496831 IP 8.8.8.8 > 172.17.0.4: ICMP echo reply, id 51131, seq 2, length 64
12:19:52.466677 IP 172.17.0.4 > 8.8.8.8: ICMP echo request, id 51131, seq 3, length 64
12:19:52.497076 IP 8.8.8.8 > 172.17.0.4: ICMP echo reply, id 51131, seq 3, length 64

This will tell us where the packet is lost. Another good thing is that tcpdump clones the ingress AF_PACKET before entering iptables and the egress ones right before leaving the egress qdisc. This means we can be fairly certain that what we see in the tcpdump is quite close to what the kernel gets.

Once we know between which interface gets lost we can probably have a better idea of what to look into.

@jnummelin
Copy link
Member

Could be related to #5328

@till Could you try the same workaround if that provides any help?

@till
Copy link
Contributor Author

till commented Dec 10, 2024

@jnummelin I'll try to, but I won't be able to this week I think.

We also spent a good amount of time trying to recreate the rules using the shipped xtable binaries (no idea if they are ip, nf or whatever). I have to admit, not entirely sure what exactly is the right one to use, but the other report sounds plausible. I had also thought there might be a problem since an iptables-save gave a warning about legacy rules.

On the original request:

I spend a few hours on the weekend trying to setup a single-node k0s with mostly standard settings (no special CNI) but could not get it to work.

There are a lot of weird timeouts happening once it's provisioned.

I also tried disabling our OpenStack cloud provider charts to fall back to the "k0s cloud provider" instead but could not get a cluster successfully finish initialising. The result was always that k0sctl apply finished but then I saw restarts/timeouts with various pods trying to start in the kube-system namespace. Or the cloud provider never finished initialising and then the nodes were tainted, etc..

It also kind of puzzles me that you can't reproduce this on your end?

@jnummelin
Copy link
Member

It also kind of puzzles me that you can't reproduce this on your end?

We haven't, unfortunately. Our best guess currently is that is has something to do with the networking setup and how iptables and related stuff is being setup on the images used. We do most of the testing using public cloud VMs and stock images.

@twz123
Copy link
Member

twz123 commented Dec 14, 2024

The new v1.31.3+k0s.0 ships the fixed kube-router image by default now. Please ping here if the problem persists.

@twz123 twz123 closed this as completed Dec 14, 2024
@till
Copy link
Contributor Author

till commented Dec 18, 2024

Just for the record, the latest update didn't fix anything for us.

CoreDNS is still stuck unable to contact the API. But I am giving up on this.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area/network question Further information is requested
Projects
None yet
Development

No branches or pull requests

4 participants