Skip to content

Instantly share code, notes, and snippets.

@bzub
Last active January 19, 2022 20:52
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save bzub/a6b14cbf012ccd6a1e4fdda8823e168b to your computer and use it in GitHub Desktop.
Save bzub/a6b14cbf012ccd6a1e4fdda8823e168b to your computer and use it in GitHub Desktop.
kubeadm kube-router troubleshooting
apiVersion: v1
kind: ConfigMap
metadata:
name: kube-router-cfg
namespace: kube-system
labels:
tier: node
k8s-app: kube-router
data:
cni-conf.json: |
{
"name":"kubernetes",
"type":"bridge",
"bridge":"kube-bridge",
"isDefaultGateway":true,
"ipam": {
"type":"host-local"
}
}
apiVersion: extensions/v1beta1
kind: DaemonSet
metadata:
labels:
k8s-app: kube-router
tier: node
name: kube-router
namespace: kube-system
spec:
template:
metadata:
labels:
k8s-app: kube-router
tier: node
annotations:
scheduler.alpha.kubernetes.io/critical-pod: ''
pod.beta.kubernetes.io/init-containers: '[
{
"name": "install-cni",
"image": "busybox",
"securityContext":
{
"privileged": true
},
"command": [ "/bin/sh", "-c", "set -e -x; if [ ! -f /etc/cni/net.d/10-kuberouter.conf ]; then TMP=/etc/cni/net.d/.tmp-kuberouter-cfg; cp /etc/kube-router/cni-conf.json ${TMP}; mv ${TMP} /etc/cni/net.d/10-kuberouter.conf; fi" ],
"volumeMounts": [
{
"name": "cni",
"mountPath": "/etc/cni/net.d"
},
{
"name": "kube-router-cfg",
"mountPath": "/etc/kube-router"
}
]
}
]'
spec:
containers:
- name: kube-router
image: cloudnativelabs/kube-router
imagePullPolicy: Always
args:
- --run-router=true
- --run-firewall=true
- --run-service-proxy=true
- --kubeconfig=/etc/kubernetes/kubeconfig
env:
- name: NODE_NAME
valueFrom:
fieldRef:
fieldPath: spec.nodeName
securityContext:
privileged: true
volumeMounts:
- name: lib-modules
mountPath: /lib/modules
readOnly: true
- name: cni
mountPath: /etc/cni/net.d
- name: kubeconfig
mountPath: /etc/kubernetes/kubeconfig
readOnly: true
hostNetwork: true
tolerations:
- key: CriticalAddonsOnly
operator: Exists
- effect: NoSchedule
key: node-role.kubernetes.io/master
operator: Exists
volumes:
- hostPath:
path: /lib/modules
name: lib-modules
- hostPath:
path: /etc/cni/net.d
name: cni
- name: kubeconfig
hostPath:
path: /etc/kubernetes/admin.conf
- name: kube-router-cfg
configMap:
name: kube-router-cfg
[core@vnode1-test ~]$ rpm -qa | sort
acl-2.2.51-12.el7.x86_64
aic94xx-firmware-30-6.el7.noarch
alsa-firmware-1.0.28-2.el7.noarch
alsa-lib-1.1.1-1.el7.x86_64
alsa-tools-firmware-1.1.0-1.el7.x86_64
audit-2.6.5-3.el7_3.1.x86_64
audit-libs-2.6.5-3.el7_3.1.x86_64
audit-libs-python-2.6.5-3.el7_3.1.x86_64
authconfig-6.2.8-14.el7.x86_64
basesystem-10.0-7.el7.centos.noarch
bash-4.2.46-21.el7_3.x86_64
bind-libs-lite-9.9.4-38.el7_3.3.x86_64
bind-license-9.9.4-38.el7_3.3.noarch
binutils-2.25.1-22.base.el7.x86_64
biosdevname-0.7.2-1.el7.x86_64
btrfs-progs-4.4.1-1.el7.x86_64
bzip2-1.0.6-13.el7.x86_64
bzip2-libs-1.0.6-13.el7.x86_64
ca-certificates-2017.2.14-70.1.el7_3.noarch
centos-logos-70.0.6-3.el7.centos.noarch
centos-release-7-3.1611.el7.centos.x86_64
checkpolicy-2.5-4.el7.x86_64
chkconfig-1.7.2-1.el7.x86_64
chrony-2.1.1-4.el7.centos.x86_64
container-selinux-2.12-2.gite7096ce.el7.noarch
coreutils-8.22-18.el7.x86_64
cpio-2.11-24.el7.x86_64
cracklib-2.9.0-11.el7.x86_64
cracklib-dicts-2.9.0-11.el7.x86_64
cronie-1.4.11-14.el7_2.1.x86_64
cronie-anacron-1.4.11-14.el7_2.1.x86_64
crontabs-1.11-6.20121102git.el7.noarch
cryptsetup-libs-1.7.2-1.el7.x86_64
curl-7.29.0-35.el7.centos.x86_64
cyrus-sasl-lib-2.1.26-20.el7_2.x86_64
dbus-1.6.12-17.el7.x86_64
dbus-glib-0.100-7.el7.x86_64
dbus-libs-1.6.12-17.el7.x86_64
dbus-python-1.1.1-9.el7.x86_64
device-mapper-1.02.135-1.el7_3.4.x86_64
device-mapper-event-1.02.135-1.el7_3.4.x86_64
device-mapper-event-libs-1.02.135-1.el7_3.4.x86_64
device-mapper-libs-1.02.135-1.el7_3.4.x86_64
device-mapper-persistent-data-0.6.3-1.el7.x86_64
dhclient-4.2.5-47.el7.centos.x86_64
dhcp-common-4.2.5-47.el7.centos.x86_64
dhcp-libs-4.2.5-47.el7.centos.x86_64
diffutils-3.3-4.el7.x86_64
dmidecode-3.0-2.1.el7_3.x86_64
dnsmasq-2.66-21.el7.x86_64
docker-1.12.6-28.git1398f24.el7.centos.x86_64
docker-client-1.12.6-28.git1398f24.el7.centos.x86_64
docker-common-1.12.6-28.git1398f24.el7.centos.x86_64
dracut-033-463.el7_3.1.x86_64
dracut-config-rescue-033-463.el7_3.1.x86_64
dracut-network-033-463.el7_3.1.x86_64
e2fsprogs-1.42.9-9.el7.x86_64
e2fsprogs-libs-1.42.9-9.el7.x86_64
ebtables-2.0.10-15.el7.x86_64
elfutils-libelf-0.166-2.el7.x86_64
elfutils-libs-0.166-2.el7.x86_64
ethtool-4.5-3.el7.x86_64
expat-2.1.0-10.el7_3.x86_64
file-5.11-33.el7.x86_64
file-libs-5.11-33.el7.x86_64
filesystem-3.2-21.el7.x86_64
findutils-4.5.11-5.el7.x86_64
fipscheck-1.4.1-5.el7.x86_64
fipscheck-lib-1.4.1-5.el7.x86_64
firewalld-0.4.3.2-8.1.el7_3.3.noarch
firewalld-filesystem-0.4.3.2-8.1.el7_3.3.noarch
freetype-2.4.11-12.el7.x86_64
fxload-2002_04_11-16.el7.x86_64
gawk-4.0.2-4.el7.x86_64
gdbm-1.10-8.el7.x86_64
GeoIP-1.5.0-11.el7.x86_64
gettext-0.18.2.1-4.el7.x86_64
gettext-libs-0.18.2.1-4.el7.x86_64
glib2-2.46.2-4.el7.x86_64
glibc-2.17-157.el7_3.4.x86_64
glibc-common-2.17-157.el7_3.4.x86_64
glib-networking-2.42.0-1.el7.x86_64
gmp-6.0.0-12.el7_1.x86_64
gnupg2-2.0.22-4.el7.x86_64
gnutls-3.3.24-1.el7.x86_64
gobject-introspection-1.42.0-1.el7.x86_64
gpgme-1.3.2-5.el7.x86_64
gpg-pubkey-3e1ba8d5-558ab6a8
gpg-pubkey-a7317b0f-551deab2
gpg-pubkey-f4a80eb5-53a7ff4b
grep-2.20-2.el7.x86_64
groff-base-1.22.2-8.el7.x86_64
grub2-2.02-0.44.el7.centos.x86_64
grub2-tools-2.02-0.44.el7.centos.x86_64
grubby-8.28-21.el7_3.x86_64
gsettings-desktop-schemas-3.14.2-1.el7.x86_64
gzip-1.5-8.el7.x86_64
hardlink-1.0-19.el7.x86_64
hostname-3.13-3.el7.x86_64
hwdata-0.252-8.4.el7.x86_64
info-5.1-4.el7.x86_64
initscripts-9.49.37-1.el7_3.1.x86_64
iproute-3.10.0-74.el7.x86_64
iprutils-2.4.13.1-1.el7.x86_64
ipset-6.19-6.el7.x86_64
ipset-libs-6.19-6.el7.x86_64
iptables-1.4.21-17.el7.x86_64
iputils-20160308-8.el7.x86_64
irqbalance-1.0.7-6.el7_3.1.x86_64
ivtv-firmware-20080701-26.el7.noarch
iwl1000-firmware-39.31.5.1-49.el7.noarch
iwl100-firmware-39.31.5.1-49.el7.noarch
iwl105-firmware-18.168.6.1-49.el7.noarch
iwl135-firmware-18.168.6.1-49.el7.noarch
iwl2000-firmware-18.168.6.1-49.el7.noarch
iwl2030-firmware-18.168.6.1-49.el7.noarch
iwl3160-firmware-22.0.7.0-49.el7.noarch
iwl3945-firmware-15.32.2.9-49.el7.noarch
iwl4965-firmware-228.61.2.24-49.el7.noarch
iwl5000-firmware-8.83.5.1_1-49.el7.noarch
iwl5150-firmware-8.24.2.2-49.el7.noarch
iwl6000-firmware-9.221.4.1-49.el7.noarch
iwl6000g2a-firmware-17.168.5.3-49.el7.noarch
iwl6000g2b-firmware-17.168.5.2-49.el7.noarch
iwl6050-firmware-41.28.5.1-49.el7.noarch
iwl7260-firmware-22.0.7.0-49.el7.noarch
iwl7265-firmware-22.0.7.0-49.el7.noarch
jansson-2.4-6.el7.x86_64
json-c-0.11-4.el7_0.x86_64
kbd-1.15.5-12.el7.x86_64
kbd-legacy-1.15.5-12.el7.noarch
kbd-misc-1.15.5-12.el7.noarch
kernel-3.10.0-514.21.2.el7.x86_64
kernel-3.10.0-514.el7.x86_64
kernel-tools-3.10.0-514.21.2.el7.x86_64
kernel-tools-libs-3.10.0-514.21.2.el7.x86_64
kexec-tools-2.0.7-50.el7.x86_64
keyutils-libs-1.5.8-3.el7.x86_64
kmod-20-9.el7.x86_64
kmod-libs-20-9.el7.x86_64
kpartx-0.4.9-99.el7_3.3.x86_64
krb5-libs-1.14.1-27.el7_3.x86_64
kubeadm-1.6.6-0.x86_64
kubectl-1.6.6-0.x86_64
kubelet-1.6.6-0.x86_64
kubernetes-cni-0.5.1-0.x86_64
less-458-9.el7.x86_64
libacl-2.2.51-12.el7.x86_64
libaio-0.3.109-13.el7.x86_64
libassuan-2.1.0-3.el7.x86_64
libattr-2.4.46-12.el7.x86_64
libblkid-2.23.2-33.el7_3.2.x86_64
libcap-2.22-8.el7.x86_64
libcap-ng-0.7.5-4.el7.x86_64
libcgroup-0.41-11.el7.x86_64
libcom_err-1.42.9-9.el7.x86_64
libcroco-0.6.8-5.el7.x86_64
libcurl-7.29.0-35.el7.centos.x86_64
libdaemon-0.14-7.el7.x86_64
libdb-5.3.21-19.el7.x86_64
libdb-utils-5.3.21-19.el7.x86_64
libdrm-2.4.67-3.el7.x86_64
libedit-3.0-12.20121213cvs.el7.x86_64
libestr-0.1.9-2.el7.x86_64
libffi-3.0.13-18.el7.x86_64
libgcc-4.8.5-11.el7.x86_64
libgcrypt-1.5.3-13.el7_3.1.x86_64
libgomp-4.8.5-11.el7.x86_64
libgpg-error-1.12-3.el7.x86_64
libgudev1-219-30.el7_3.9.x86_64
libidn-1.28-4.el7.x86_64
libmnl-1.0.3-7.el7.x86_64
libmodman-2.0.1-8.el7.x86_64
libmount-2.23.2-33.el7_3.2.x86_64
libndp-1.2-7.el7.x86_64
libnetfilter_conntrack-1.0.6-1.el7_3.x86_64
libnfnetlink-1.0.1-4.el7.x86_64
libnl3-3.2.28-3.el7_3.x86_64
libnl3-cli-3.2.28-3.el7_3.x86_64
libpcap-1.5.3-8.el7.x86_64
libpciaccess-0.13.4-3.el7_3.x86_64
libpipeline-1.2.3-3.el7.x86_64
libproxy-0.4.11-10.el7.x86_64
libpwquality-1.2.3-4.el7.x86_64
libseccomp-2.3.1-2.el7.x86_64
libselinux-2.5-6.el7.x86_64
libselinux-python-2.5-6.el7.x86_64
libselinux-utils-2.5-6.el7.x86_64
libsemanage-2.5-5.1.el7_3.x86_64
libsemanage-python-2.5-5.1.el7_3.x86_64
libsepol-2.5-6.el7.x86_64
libsoup-2.48.1-6.el7.x86_64
libss-1.42.9-9.el7.x86_64
libssh2-1.4.3-10.el7_2.1.x86_64
libstdc++-4.8.5-11.el7.x86_64
libsysfs-2.1.0-16.el7.x86_64
libtasn1-3.8-3.el7.x86_64
libteam-1.25-4.el7.x86_64
libunistring-0.9.3-9.el7.x86_64
libuser-0.60-7.el7_1.x86_64
libutempter-1.1.6-4.el7.x86_64
libuuid-2.23.2-33.el7_3.2.x86_64
libverto-0.2.5-4.el7.x86_64
libxml2-2.9.1-6.el7_2.3.x86_64
libxslt-1.1.28-5.el7.x86_64
linux-firmware-20160830-49.git7534e19.el7.noarch
logrotate-3.8.6-12.el7.x86_64
lsscsi-0.27-4.el7.x86_64
lua-5.1.4-15.el7.x86_64
lvm2-2.02.166-1.el7_3.4.x86_64
lvm2-libs-2.02.166-1.el7_3.4.x86_64
lzo-2.06-8.el7.x86_64
make-3.82-23.el7.x86_64
man-db-2.6.3-9.el7.x86_64
mariadb-libs-5.5.52-1.el7.x86_64
microcode_ctl-2.1-16.3.el7_3.x86_64
mozjs17-17.0.0-19.el7.x86_64
ncurses-5.9-13.20130511.el7.x86_64
ncurses-base-5.9-13.20130511.el7.noarch
ncurses-libs-5.9-13.20130511.el7.x86_64
nettle-2.7.1-8.el7.x86_64
NetworkManager-1.4.0-20.el7_3.x86_64
NetworkManager-libnm-1.4.0-20.el7_3.x86_64
NetworkManager-team-1.4.0-20.el7_3.x86_64
NetworkManager-tui-1.4.0-20.el7_3.x86_64
NetworkManager-wifi-1.4.0-20.el7_3.x86_64
newt-0.52.15-4.el7.x86_64
newt-python-0.52.15-4.el7.x86_64
nspr-4.13.1-1.0.el7_3.x86_64
nss-3.28.4-1.2.el7_3.x86_64
nss-softokn-3.16.2.3-14.4.el7.x86_64
nss-softokn-freebl-3.16.2.3-14.4.el7.x86_64
nss-sysinit-3.28.4-1.2.el7_3.x86_64
nss-tools-3.28.4-1.2.el7_3.x86_64
nss-util-3.28.4-1.0.el7_3.x86_64
numactl-libs-2.0.9-6.el7_2.x86_64
oci-register-machine-0-3.11.gitdd0daef.el7.x86_64
oci-systemd-hook-0.1.7-2.git2788078.el7.x86_64
openldap-2.4.40-13.el7.x86_64
openscap-1.2.10-3.el7_3.x86_64
openscap-scanner-1.2.10-3.el7_3.x86_64
openssh-6.6.1p1-35.el7_3.x86_64
openssh-clients-6.6.1p1-35.el7_3.x86_64
openssh-server-6.6.1p1-35.el7_3.x86_64
openssl-1.0.1e-60.el7_3.1.x86_64
openssl-libs-1.0.1e-60.el7_3.1.x86_64
os-prober-1.58-9.el7.x86_64
p11-kit-0.20.7-3.el7.x86_64
p11-kit-trust-0.20.7-3.el7.x86_64
pam-1.1.8-18.el7.x86_64
parted-3.1-28.el7.x86_64
passwd-0.79-4.el7.x86_64
pciutils-3.5.1-1.el7.x86_64
pciutils-libs-3.5.1-1.el7.x86_64
pcre-8.32-15.el7_2.1.x86_64
pinentry-0.8.1-17.el7.x86_64
pkgconfig-0.27.1-4.el7.x86_64
plymouth-0.8.9-0.26.20140113.el7.centos.x86_64
plymouth-core-libs-0.8.9-0.26.20140113.el7.centos.x86_64
plymouth-scripts-0.8.9-0.26.20140113.el7.centos.x86_64
policycoreutils-2.5-11.el7_3.x86_64
policycoreutils-python-2.5-11.el7_3.x86_64
polkit-0.112-12.el7_3.x86_64
polkit-pkla-compat-0.1-4.el7.x86_64
popt-1.13-16.el7.x86_64
postfix-2.10.1-6.el7.x86_64
ppp-2.4.5-33.el7.x86_64
procps-ng-3.3.10-10.el7.x86_64
pth-2.0.7-23.el7.x86_64
pygobject3-base-3.14.0-3.el7.x86_64
pygpgme-0.3-9.el7.x86_64
pyliblzma-0.5.3-11.el7.x86_64
python-2.7.5-48.el7.x86_64
python-configobj-4.7.2-7.el7.noarch
python-decorator-3.4.0-3.el7.noarch
python-firewall-0.4.3.2-8.1.el7_3.3.noarch
python-iniparse-0.4-9.el7.noarch
python-IPy-0.75-6.el7.noarch
python-libs-2.7.5-48.el7.x86_64
python-perf-3.10.0-514.21.2.el7.x86_64
python-pycurl-7.19.0-19.el7.x86_64
python-pyudev-0.15-7.el7_2.1.noarch
python-slip-0.4.0-2.el7.noarch
python-slip-dbus-0.4.0-2.el7.noarch
python-urlgrabber-3.10-8.el7.noarch
pyxattr-0.5.1-5.el7.x86_64
qrencode-libs-3.4.1-3.el7.x86_64
rdma-7.3_4.7_rc2-6.el7_3.noarch
readline-6.2-9.el7.x86_64
rootfiles-8.1-11.el7.noarch
rpm-4.11.3-21.el7.x86_64
rpm-build-libs-4.11.3-21.el7.x86_64
rpm-libs-4.11.3-21.el7.x86_64
rpm-python-4.11.3-21.el7.x86_64
rsyslog-7.4.7-16.el7.x86_64
scap-security-guide-0.1.30-5.el7.centos.noarch
sed-4.2.2-5.el7.x86_64
selinux-policy-3.13.1-102.el7_3.16.noarch
selinux-policy-targeted-3.13.1-102.el7_3.16.noarch
setools-libs-3.3.8-1.1.el7.x86_64
setup-2.8.71-7.el7.noarch
shadow-utils-4.1.5.1-24.el7.x86_64
shared-mime-info-1.1-9.el7.x86_64
skopeo-containers-0.1.19-1.el7.x86_64
slang-2.2.4-11.el7.x86_64
snappy-1.1.0-3.el7.x86_64
socat-1.7.2.2-5.el7.x86_64
sqlite-3.7.17-8.el7.x86_64
sudo-1.8.6p7-23.el7_3.x86_64
systemd-219-30.el7_3.9.x86_64
systemd-libs-219-30.el7_3.9.x86_64
systemd-sysv-219-30.el7_3.9.x86_64
sysvinit-tools-2.88-14.dsf.el7.x86_64
tar-1.26-31.el7.x86_64
tcp_wrappers-libs-7.6-77.el7.x86_64
teamd-1.25-4.el7.x86_64
trousers-0.3.13-1.el7.x86_64
tuned-2.7.1-3.el7_3.2.noarch
tzdata-2017b-1.el7.noarch
ustr-1.0.4-16.el7.x86_64
util-linux-2.23.2-33.el7_3.2.x86_64
vim-minimal-7.4.160-1.el7_3.1.x86_64
virt-what-1.13-8.el7.x86_64
which-2.20-7.el7.x86_64
wpa_supplicant-2.0-21.el7_3.x86_64
xfsprogs-4.5.0-9.el7_3.x86_64
xml-common-0.6.3-39.el7.noarch
xz-5.2.2-1.el7.x86_64
xz-libs-5.2.2-1.el7.x86_64
yajl-2.0.4-4.el7.x86_64
yum-3.4.3-150.el7.centos.noarch
yum-metadata-parser-1.1.4-10.el7.x86_64
yum-plugin-fastestmirror-1.1.31-40.el7.noarch
zlib-1.2.7-17.el7.x86_64
# sysctl -a|grep -E '^net'
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 = 0
net.core.busy_poll = 0
net.core.busy_read = 0
net.core.default_qdisc = pfifo_fast
net.core.dev_weight = 64
net.core.message_burst = 10
net.core.message_cost = 5
net.core.netdev_budget = 300
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.optmem_max = 20480
net.core.rmem_default = 212992
net.core.rmem_max = 212992
net.core.rps_sock_flow_entries = 0
net.core.somaxconn = 128
net.core.warnings = 1
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.cipso_cache_bucket_size = 10
net.ipv4.cipso_cache_enable = 1
net.ipv4.cipso_rbm_optfmt = 0
net.ipv4.cipso_rbm_strictvalid = 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 = 0
net.ipv4.conf.all.arp_filter = 0
net.ipv4.conf.all.arp_ignore = 0
net.ipv4.conf.all.arp_notify = 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.force_igmp_version = 0
net.ipv4.conf.all.forwarding = 1
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 = 1
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 = 1
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_filter = 0
net.ipv4.conf.default.arp_ignore = 0
net.ipv4.conf.default.arp_notify = 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.force_igmp_version = 0
net.ipv4.conf.default.forwarding = 1
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 = 1
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.docker0.accept_local = 0
net.ipv4.conf.docker0.accept_redirects = 1
net.ipv4.conf.docker0.accept_source_route = 0
net.ipv4.conf.docker0.arp_accept = 0
net.ipv4.conf.docker0.arp_announce = 0
net.ipv4.conf.docker0.arp_filter = 0
net.ipv4.conf.docker0.arp_ignore = 0
net.ipv4.conf.docker0.arp_notify = 0
net.ipv4.conf.docker0.bootp_relay = 0
net.ipv4.conf.docker0.disable_policy = 0
net.ipv4.conf.docker0.disable_xfrm = 0
net.ipv4.conf.docker0.force_igmp_version = 0
net.ipv4.conf.docker0.forwarding = 1
net.ipv4.conf.docker0.log_martians = 0
net.ipv4.conf.docker0.mc_forwarding = 0
net.ipv4.conf.docker0.medium_id = 0
net.ipv4.conf.docker0.promote_secondaries = 1
net.ipv4.conf.docker0.proxy_arp = 0
net.ipv4.conf.docker0.proxy_arp_pvlan = 0
net.ipv4.conf.docker0.route_localnet = 0
net.ipv4.conf.docker0.rp_filter = 1
net.ipv4.conf.docker0.secure_redirects = 1
net.ipv4.conf.docker0.send_redirects = 1
net.ipv4.conf.docker0.shared_media = 1
net.ipv4.conf.docker0.src_valid_mark = 0
net.ipv4.conf.docker0.tag = 0
net.ipv4.conf.dummy0.accept_local = 0
net.ipv4.conf.dummy0.accept_redirects = 1
net.ipv4.conf.dummy0.accept_source_route = 0
net.ipv4.conf.dummy0.arp_accept = 0
net.ipv4.conf.dummy0.arp_announce = 0
net.ipv4.conf.dummy0.arp_filter = 0
net.ipv4.conf.dummy0.arp_ignore = 0
net.ipv4.conf.dummy0.arp_notify = 0
net.ipv4.conf.dummy0.bootp_relay = 0
net.ipv4.conf.dummy0.disable_policy = 0
net.ipv4.conf.dummy0.disable_xfrm = 0
net.ipv4.conf.dummy0.force_igmp_version = 0
net.ipv4.conf.dummy0.forwarding = 1
net.ipv4.conf.dummy0.log_martians = 0
net.ipv4.conf.dummy0.mc_forwarding = 0
net.ipv4.conf.dummy0.medium_id = 0
net.ipv4.conf.dummy0.promote_secondaries = 1
net.ipv4.conf.dummy0.proxy_arp = 0
net.ipv4.conf.dummy0.proxy_arp_pvlan = 0
net.ipv4.conf.dummy0.route_localnet = 0
net.ipv4.conf.dummy0.rp_filter = 1
net.ipv4.conf.dummy0.secure_redirects = 1
net.ipv4.conf.dummy0.send_redirects = 1
net.ipv4.conf.dummy0.shared_media = 1
net.ipv4.conf.dummy0.src_valid_mark = 0
net.ipv4.conf.dummy0.tag = 0
net.ipv4.conf.enp0s3.accept_local = 0
net.ipv4.conf.enp0s3.accept_redirects = 1
net.ipv4.conf.enp0s3.accept_source_route = 0
net.ipv4.conf.enp0s3.arp_accept = 0
net.ipv4.conf.enp0s3.arp_announce = 0
net.ipv4.conf.enp0s3.arp_filter = 0
net.ipv4.conf.enp0s3.arp_ignore = 0
net.ipv4.conf.enp0s3.arp_notify = 0
net.ipv4.conf.enp0s3.bootp_relay = 0
net.ipv4.conf.enp0s3.disable_policy = 0
net.ipv4.conf.enp0s3.disable_xfrm = 0
net.ipv4.conf.enp0s3.force_igmp_version = 0
net.ipv4.conf.enp0s3.forwarding = 1
net.ipv4.conf.enp0s3.log_martians = 0
net.ipv4.conf.enp0s3.mc_forwarding = 0
net.ipv4.conf.enp0s3.medium_id = 0
net.ipv4.conf.enp0s3.promote_secondaries = 1
net.ipv4.conf.enp0s3.proxy_arp = 0
net.ipv4.conf.enp0s3.proxy_arp_pvlan = 0
net.ipv4.conf.enp0s3.route_localnet = 0
net.ipv4.conf.enp0s3.rp_filter = 1
net.ipv4.conf.enp0s3.secure_redirects = 1
net.ipv4.conf.enp0s3.send_redirects = 1
net.ipv4.conf.enp0s3.shared_media = 1
net.ipv4.conf.enp0s3.src_valid_mark = 0
net.ipv4.conf.enp0s3.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_filter = 0
net.ipv4.conf.kube-bridge.arp_ignore = 0
net.ipv4.conf.kube-bridge.arp_notify = 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.force_igmp_version = 0
net.ipv4.conf.kube-bridge.forwarding = 1
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 = 1
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_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.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.force_igmp_version = 0
net.ipv4.conf.kube-dummy-if.forwarding = 1
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 = 1
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 = 1
net.ipv4.conf.lo.arp_accept = 0
net.ipv4.conf.lo.arp_announce = 0
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.bootp_relay = 0
net.ipv4.conf.lo.disable_policy = 1
net.ipv4.conf.lo.disable_xfrm = 1
net.ipv4.conf.lo.force_igmp_version = 0
net.ipv4.conf.lo.forwarding = 1
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 = 0
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.veth0ef1e7a5.accept_local = 0
net.ipv4.conf.veth0ef1e7a5.accept_redirects = 1
net.ipv4.conf.veth0ef1e7a5.accept_source_route = 0
net.ipv4.conf.veth0ef1e7a5.arp_accept = 0
net.ipv4.conf.veth0ef1e7a5.arp_announce = 0
net.ipv4.conf.veth0ef1e7a5.arp_filter = 0
net.ipv4.conf.veth0ef1e7a5.arp_ignore = 0
net.ipv4.conf.veth0ef1e7a5.arp_notify = 0
net.ipv4.conf.veth0ef1e7a5.bootp_relay = 0
net.ipv4.conf.veth0ef1e7a5.disable_policy = 0
net.ipv4.conf.veth0ef1e7a5.disable_xfrm = 0
net.ipv4.conf.veth0ef1e7a5.force_igmp_version = 0
net.ipv4.conf.veth0ef1e7a5.forwarding = 1
net.ipv4.conf.veth0ef1e7a5.log_martians = 0
net.ipv4.conf.veth0ef1e7a5.mc_forwarding = 0
net.ipv4.conf.veth0ef1e7a5.medium_id = 0
net.ipv4.conf.veth0ef1e7a5.promote_secondaries = 1
net.ipv4.conf.veth0ef1e7a5.proxy_arp = 0
net.ipv4.conf.veth0ef1e7a5.proxy_arp_pvlan = 0
net.ipv4.conf.veth0ef1e7a5.route_localnet = 0
net.ipv4.conf.veth0ef1e7a5.rp_filter = 1
net.ipv4.conf.veth0ef1e7a5.secure_redirects = 1
net.ipv4.conf.veth0ef1e7a5.send_redirects = 1
net.ipv4.conf.veth0ef1e7a5.shared_media = 1
net.ipv4.conf.veth0ef1e7a5.src_valid_mark = 0
net.ipv4.conf.veth0ef1e7a5.tag = 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_ratelimit = 1000
net.ipv4.icmp_ratemask = 6168
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_default_ttl = 64
net.ipv4.ip_dynaddr = 0
net.ipv4.ip_early_demux = 1
net.ipv4.ip_forward = 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.ipfrag_high_thresh = 4194304
net.ipv4.ipfrag_low_thresh = 3145728
net.ipv4.ipfrag_max_dist = 64
net.ipv4.ipfrag_secret_interval = 600
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.locktime = 100
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 = 31
net.ipv4.neigh.default.unres_qlen_bytes = 65536
net.ipv4.neigh.docker0.anycast_delay = 100
net.ipv4.neigh.docker0.app_solicit = 0
net.ipv4.neigh.docker0.base_reachable_time_ms = 30000
net.ipv4.neigh.docker0.delay_first_probe_time = 5
net.ipv4.neigh.docker0.gc_stale_time = 60
net.ipv4.neigh.docker0.locktime = 100
net.ipv4.neigh.docker0.mcast_solicit = 3
net.ipv4.neigh.docker0.proxy_delay = 80
net.ipv4.neigh.docker0.proxy_qlen = 64
net.ipv4.neigh.docker0.retrans_time_ms = 1000
net.ipv4.neigh.docker0.ucast_solicit = 3
net.ipv4.neigh.docker0.unres_qlen = 31
net.ipv4.neigh.docker0.unres_qlen_bytes = 65536
net.ipv4.neigh.dummy0.anycast_delay = 100
net.ipv4.neigh.dummy0.app_solicit = 0
net.ipv4.neigh.dummy0.base_reachable_time_ms = 30000
net.ipv4.neigh.dummy0.delay_first_probe_time = 5
net.ipv4.neigh.dummy0.gc_stale_time = 60
net.ipv4.neigh.dummy0.locktime = 100
net.ipv4.neigh.dummy0.mcast_solicit = 3
net.ipv4.neigh.dummy0.proxy_delay = 80
net.ipv4.neigh.dummy0.proxy_qlen = 64
net.ipv4.neigh.dummy0.retrans_time_ms = 1000
net.ipv4.neigh.dummy0.ucast_solicit = 3
net.ipv4.neigh.dummy0.unres_qlen = 31
net.ipv4.neigh.dummy0.unres_qlen_bytes = 65536
net.ipv4.neigh.enp0s3.anycast_delay = 100
net.ipv4.neigh.enp0s3.app_solicit = 0
net.ipv4.neigh.enp0s3.base_reachable_time_ms = 30000
net.ipv4.neigh.enp0s3.delay_first_probe_time = 5
net.ipv4.neigh.enp0s3.gc_stale_time = 60
net.ipv4.neigh.enp0s3.locktime = 100
net.ipv4.neigh.enp0s3.mcast_solicit = 3
net.ipv4.neigh.enp0s3.proxy_delay = 80
net.ipv4.neigh.enp0s3.proxy_qlen = 64
net.ipv4.neigh.enp0s3.retrans_time_ms = 1000
net.ipv4.neigh.enp0s3.ucast_solicit = 3
net.ipv4.neigh.enp0s3.unres_qlen = 31
net.ipv4.neigh.enp0s3.unres_qlen_bytes = 65536
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.locktime = 100
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 = 31
net.ipv4.neigh.kube-bridge.unres_qlen_bytes = 65536
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.locktime = 100
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 = 31
net.ipv4.neigh.kube-dummy-if.unres_qlen_bytes = 65536
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.locktime = 100
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 = 31
net.ipv4.neigh.lo.unres_qlen_bytes = 65536
net.ipv4.neigh.veth0ef1e7a5.anycast_delay = 100
net.ipv4.neigh.veth0ef1e7a5.app_solicit = 0
net.ipv4.neigh.veth0ef1e7a5.base_reachable_time_ms = 30000
net.ipv4.neigh.veth0ef1e7a5.delay_first_probe_time = 5
net.ipv4.neigh.veth0ef1e7a5.gc_stale_time = 60
net.ipv4.neigh.veth0ef1e7a5.locktime = 100
net.ipv4.neigh.veth0ef1e7a5.mcast_solicit = 3
net.ipv4.neigh.veth0ef1e7a5.proxy_delay = 80
net.ipv4.neigh.veth0ef1e7a5.proxy_qlen = 64
net.ipv4.neigh.veth0ef1e7a5.retrans_time_ms = 1000
net.ipv4.neigh.veth0ef1e7a5.ucast_solicit = 3
net.ipv4.neigh.veth0ef1e7a5.unres_qlen = 31
net.ipv4.neigh.veth0ef1e7a5.unres_qlen_bytes = 65536
net.ipv4.ping_group_range = 1 0
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 = cubic reno
net.ipv4.tcp_app_win = 31
net.ipv4.tcp_autocorking = 1
net.ipv4.tcp_available_congestion_control = cubic reno
net.ipv4.tcp_base_mss = 512
net.ipv4.tcp_challenge_ack_limit = 1000
net.ipv4.tcp_congestion_control = cubic
net.ipv4.tcp_dsack = 1
net.ipv4.tcp_early_retrans = 3
net.ipv4.tcp_ecn = 2
net.ipv4.tcp_fack = 1
net.ipv4.tcp_fastopen = 0
net.ipv4.tcp_fastopen_key = 00000000-00000000-00000000-00000000
net.ipv4.tcp_fin_timeout = 60
net.ipv4.tcp_frto = 2
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_limit_output_bytes = 262144
net.ipv4.tcp_low_latency = 0
net.ipv4.tcp_max_orphans = 8192
net.ipv4.tcp_max_ssthresh = 0
net.ipv4.tcp_max_syn_backlog = 128
net.ipv4.tcp_max_tw_buckets = 8192
net.ipv4.tcp_mem = 42525 56700 85050
net.ipv4.tcp_min_tso_segs = 2
net.ipv4.tcp_moderate_rcvbuf = 1
net.ipv4.tcp_mtu_probing = 0
net.ipv4.tcp_no_metrics_save = 0
net.ipv4.tcp_notsent_lowat = -1
net.ipv4.tcp_orphan_retries = 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 87380 6291456
net.ipv4.tcp_sack = 1
net.ipv4.tcp_slow_start_after_idle = 1
net.ipv4.tcp_stdurg = 0
net.ipv4.tcp_syn_retries = 6
net.ipv4.tcp_synack_retries = 5
net.ipv4.tcp_syncookies = 1
net.ipv4.tcp_thin_dupack = 0
net.ipv4.tcp_thin_linear_timeouts = 0
net.ipv4.tcp_timestamps = 1
net.ipv4.tcp_tso_win_divisor = 3
net.ipv4.tcp_tw_recycle = 0
net.ipv4.tcp_tw_reuse = 0
net.ipv4.tcp_window_scaling = 1
net.ipv4.tcp_wmem = 4096 16384 4194304
net.ipv4.tcp_workaround_signed_windows = 0
net.ipv4.udp_mem = 43656 58208 87312
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 = 1
net.ipv4.vs.conntrack = 1
net.ipv4.vs.drop_entry = 0
net.ipv4.vs.drop_packet = 0
net.ipv4.vs.expire_nodest_conn = 0
net.ipv4.vs.expire_quiescent_template = 0
net.ipv4.vs.nat_icmp_send = 0
net.ipv4.vs.pmtu_disc = 1
net.ipv4.vs.secure_tcp = 0
net.ipv4.vs.snat_reroute = 1
net.ipv4.vs.sync_ports = 1
net.ipv4.vs.sync_qlen_max = 14188
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.bindv6only = 0
net.ipv6.conf.all.accept_dad = 1
net.ipv6.conf.all.accept_ra = 1
net.ipv6.conf.all.accept_ra_defrtr = 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_rtr_pref = 1
net.ipv6.conf.all.accept_redirects = 1
net.ipv6.conf.all.accept_source_route = 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.force_mld_version = 0
net.ipv6.conf.all.force_tllao = 0
net.ipv6.conf.all.forwarding = 0
net.ipv6.conf.all.hop_limit = 64
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_notify = 0
net.ipv6.conf.all.optimistic_dad = 0
net.ipv6.conf.all.proxy_ndp = 0
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_solicitations = 3
net.ipv6.conf.all.temp_prefered_lft = 86400
net.ipv6.conf.all.temp_valid_lft = 604800
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_pinfo = 1
net.ipv6.conf.default.accept_ra_rt_info_max_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.autoconf = 1
net.ipv6.conf.default.dad_transmits = 1
net.ipv6.conf.default.disable_ipv6 = 0
net.ipv6.conf.default.force_mld_version = 0
net.ipv6.conf.default.force_tllao = 0
net.ipv6.conf.default.forwarding = 0
net.ipv6.conf.default.hop_limit = 64
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_notify = 0
net.ipv6.conf.default.optimistic_dad = 0
net.ipv6.conf.default.proxy_ndp = 0
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_solicitations = 3
net.ipv6.conf.default.temp_prefered_lft = 86400
net.ipv6.conf.default.temp_valid_lft = 604800
net.ipv6.conf.default.use_tempaddr = 0
net.ipv6.conf.docker0.accept_dad = 1
net.ipv6.conf.docker0.accept_ra = 1
net.ipv6.conf.docker0.accept_ra_defrtr = 1
net.ipv6.conf.docker0.accept_ra_pinfo = 1
net.ipv6.conf.docker0.accept_ra_rt_info_max_plen = 0
net.ipv6.conf.docker0.accept_ra_rtr_pref = 1
net.ipv6.conf.docker0.accept_redirects = 1
net.ipv6.conf.docker0.accept_source_route = 0
net.ipv6.conf.docker0.autoconf = 1
net.ipv6.conf.docker0.dad_transmits = 1
net.ipv6.conf.docker0.disable_ipv6 = 0
net.ipv6.conf.docker0.force_mld_version = 0
net.ipv6.conf.docker0.force_tllao = 0
net.ipv6.conf.docker0.forwarding = 0
net.ipv6.conf.docker0.hop_limit = 64
net.ipv6.conf.docker0.max_addresses = 16
net.ipv6.conf.docker0.max_desync_factor = 600
net.ipv6.conf.docker0.mc_forwarding = 0
net.ipv6.conf.docker0.mldv1_unsolicited_report_interval = 10000
net.ipv6.conf.docker0.mldv2_unsolicited_report_interval = 1000
net.ipv6.conf.docker0.mtu = 1500
net.ipv6.conf.docker0.ndisc_notify = 0
net.ipv6.conf.docker0.optimistic_dad = 0
net.ipv6.conf.docker0.proxy_ndp = 0
net.ipv6.conf.docker0.regen_max_retry = 3
net.ipv6.conf.docker0.router_probe_interval = 60
net.ipv6.conf.docker0.router_solicitation_delay = 1
net.ipv6.conf.docker0.router_solicitation_interval = 4
net.ipv6.conf.docker0.router_solicitations = 3
net.ipv6.conf.docker0.temp_prefered_lft = 86400
net.ipv6.conf.docker0.temp_valid_lft = 604800
net.ipv6.conf.docker0.use_tempaddr = 0
net.ipv6.conf.dummy0.accept_dad = -1
net.ipv6.conf.dummy0.accept_ra = 1
net.ipv6.conf.dummy0.accept_ra_defrtr = 1
net.ipv6.conf.dummy0.accept_ra_pinfo = 1
net.ipv6.conf.dummy0.accept_ra_rt_info_max_plen = 0
net.ipv6.conf.dummy0.accept_ra_rtr_pref = 1
net.ipv6.conf.dummy0.accept_redirects = 1
net.ipv6.conf.dummy0.accept_source_route = 0
net.ipv6.conf.dummy0.autoconf = 1
net.ipv6.conf.dummy0.dad_transmits = 1
net.ipv6.conf.dummy0.disable_ipv6 = 0
net.ipv6.conf.dummy0.force_mld_version = 0
net.ipv6.conf.dummy0.force_tllao = 0
net.ipv6.conf.dummy0.forwarding = 0
net.ipv6.conf.dummy0.hop_limit = 64
net.ipv6.conf.dummy0.max_addresses = 16
net.ipv6.conf.dummy0.max_desync_factor = 600
net.ipv6.conf.dummy0.mc_forwarding = 0
net.ipv6.conf.dummy0.mldv1_unsolicited_report_interval = 10000
net.ipv6.conf.dummy0.mldv2_unsolicited_report_interval = 1000
net.ipv6.conf.dummy0.mtu = 1500
net.ipv6.conf.dummy0.ndisc_notify = 0
net.ipv6.conf.dummy0.optimistic_dad = 0
net.ipv6.conf.dummy0.proxy_ndp = 0
net.ipv6.conf.dummy0.regen_max_retry = 3
net.ipv6.conf.dummy0.router_probe_interval = 60
net.ipv6.conf.dummy0.router_solicitation_delay = 1
net.ipv6.conf.dummy0.router_solicitation_interval = 4
net.ipv6.conf.dummy0.router_solicitations = 3
net.ipv6.conf.dummy0.temp_prefered_lft = 86400
net.ipv6.conf.dummy0.temp_valid_lft = 604800
net.ipv6.conf.dummy0.use_tempaddr = 0
net.ipv6.conf.enp0s3.accept_dad = 1
net.ipv6.conf.enp0s3.accept_ra = 1
net.ipv6.conf.enp0s3.accept_ra_defrtr = 0
net.ipv6.conf.enp0s3.accept_ra_pinfo = 0
net.ipv6.conf.enp0s3.accept_ra_rt_info_max_plen = 0
net.ipv6.conf.enp0s3.accept_ra_rtr_pref = 0
net.ipv6.conf.enp0s3.accept_redirects = 1
net.ipv6.conf.enp0s3.accept_source_route = 0
net.ipv6.conf.enp0s3.autoconf = 1
net.ipv6.conf.enp0s3.dad_transmits = 1
net.ipv6.conf.enp0s3.disable_ipv6 = 0
net.ipv6.conf.enp0s3.force_mld_version = 0
net.ipv6.conf.enp0s3.force_tllao = 0
net.ipv6.conf.enp0s3.forwarding = 0
net.ipv6.conf.enp0s3.hop_limit = 64
net.ipv6.conf.enp0s3.max_addresses = 16
net.ipv6.conf.enp0s3.max_desync_factor = 600
net.ipv6.conf.enp0s3.mc_forwarding = 0
net.ipv6.conf.enp0s3.mldv1_unsolicited_report_interval = 10000
net.ipv6.conf.enp0s3.mldv2_unsolicited_report_interval = 1000
net.ipv6.conf.enp0s3.mtu = 1500
net.ipv6.conf.enp0s3.ndisc_notify = 0
net.ipv6.conf.enp0s3.optimistic_dad = 0
net.ipv6.conf.enp0s3.proxy_ndp = 0
net.ipv6.conf.enp0s3.regen_max_retry = 3
net.ipv6.conf.enp0s3.router_probe_interval = 60
net.ipv6.conf.enp0s3.router_solicitation_delay = 1
net.ipv6.conf.enp0s3.router_solicitation_interval = 4
net.ipv6.conf.enp0s3.router_solicitations = 3
net.ipv6.conf.enp0s3.temp_prefered_lft = 86400
net.ipv6.conf.enp0s3.temp_valid_lft = 604800
net.ipv6.conf.enp0s3.use_tempaddr = 0
net.ipv6.conf.kube-bridge.accept_dad = 1
net.ipv6.conf.kube-bridge.accept_ra = 1
net.ipv6.conf.kube-bridge.accept_ra_defrtr = 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_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.autoconf = 1
net.ipv6.conf.kube-bridge.dad_transmits = 1
net.ipv6.conf.kube-bridge.disable_ipv6 = 0
net.ipv6.conf.kube-bridge.force_mld_version = 0
net.ipv6.conf.kube-bridge.force_tllao = 0
net.ipv6.conf.kube-bridge.forwarding = 0
net.ipv6.conf.kube-bridge.hop_limit = 64
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 = 1500
net.ipv6.conf.kube-bridge.ndisc_notify = 0
net.ipv6.conf.kube-bridge.optimistic_dad = 0
net.ipv6.conf.kube-bridge.proxy_ndp = 0
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_solicitations = 3
net.ipv6.conf.kube-bridge.temp_prefered_lft = 86400
net.ipv6.conf.kube-bridge.temp_valid_lft = 604800
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_pinfo = 1
net.ipv6.conf.kube-dummy-if.accept_ra_rt_info_max_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.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.force_mld_version = 0
net.ipv6.conf.kube-dummy-if.force_tllao = 0
net.ipv6.conf.kube-dummy-if.forwarding = 0
net.ipv6.conf.kube-dummy-if.hop_limit = 64
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_notify = 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.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_solicitations = 3
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_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_pinfo = 1
net.ipv6.conf.lo.accept_ra_rt_info_max_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.autoconf = 1
net.ipv6.conf.lo.dad_transmits = 1
net.ipv6.conf.lo.disable_ipv6 = 0
net.ipv6.conf.lo.force_mld_version = 0
net.ipv6.conf.lo.force_tllao = 0
net.ipv6.conf.lo.forwarding = 0
net.ipv6.conf.lo.hop_limit = 64
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_notify = 0
net.ipv6.conf.lo.optimistic_dad = 0
net.ipv6.conf.lo.proxy_ndp = 0
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_solicitations = 3
net.ipv6.conf.lo.temp_prefered_lft = 86400
net.ipv6.conf.lo.temp_valid_lft = 604800
net.ipv6.conf.lo.use_tempaddr = -1
net.ipv6.conf.veth0ef1e7a5.accept_dad = 1
net.ipv6.conf.veth0ef1e7a5.accept_ra = 1
net.ipv6.conf.veth0ef1e7a5.accept_ra_defrtr = 1
net.ipv6.conf.veth0ef1e7a5.accept_ra_pinfo = 1
net.ipv6.conf.veth0ef1e7a5.accept_ra_rt_info_max_plen = 0
net.ipv6.conf.veth0ef1e7a5.accept_ra_rtr_pref = 1
net.ipv6.conf.veth0ef1e7a5.accept_redirects = 1
net.ipv6.conf.veth0ef1e7a5.accept_source_route = 0
net.ipv6.conf.veth0ef1e7a5.autoconf = 1
net.ipv6.conf.veth0ef1e7a5.dad_transmits = 1
net.ipv6.conf.veth0ef1e7a5.disable_ipv6 = 0
net.ipv6.conf.veth0ef1e7a5.force_mld_version = 0
net.ipv6.conf.veth0ef1e7a5.force_tllao = 0
net.ipv6.conf.veth0ef1e7a5.forwarding = 0
net.ipv6.conf.veth0ef1e7a5.hop_limit = 64
net.ipv6.conf.veth0ef1e7a5.max_addresses = 16
net.ipv6.conf.veth0ef1e7a5.max_desync_factor = 600
net.ipv6.conf.veth0ef1e7a5.mc_forwarding = 0
net.ipv6.conf.veth0ef1e7a5.mldv1_unsolicited_report_interval = 10000
net.ipv6.conf.veth0ef1e7a5.mldv2_unsolicited_report_interval = 1000
net.ipv6.conf.veth0ef1e7a5.mtu = 1500
net.ipv6.conf.veth0ef1e7a5.ndisc_notify = 0
net.ipv6.conf.veth0ef1e7a5.optimistic_dad = 0
net.ipv6.conf.veth0ef1e7a5.proxy_ndp = 0
net.ipv6.conf.veth0ef1e7a5.regen_max_retry = 3
net.ipv6.conf.veth0ef1e7a5.router_probe_interval = 60
net.ipv6.conf.veth0ef1e7a5.router_solicitation_delay = 1
net.ipv6.conf.veth0ef1e7a5.router_solicitation_interval = 4
net.ipv6.conf.veth0ef1e7a5.router_solicitations = 3
net.ipv6.conf.veth0ef1e7a5.temp_prefered_lft = 86400
net.ipv6.conf.veth0ef1e7a5.temp_valid_lft = 604800
net.ipv6.conf.veth0ef1e7a5.use_tempaddr = 0
net.ipv6.icmp.ratelimit = 1000
net.ipv6.ip6frag_high_thresh = 4194304
net.ipv6.ip6frag_low_thresh = 3145728
net.ipv6.ip6frag_secret_interval = 600
net.ipv6.ip6frag_time = 60
net.ipv6.ip_nonlocal_bind = 0
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.locktime = 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 = 31
net.ipv6.neigh.default.unres_qlen_bytes = 65536
net.ipv6.neigh.docker0.anycast_delay = 100
net.ipv6.neigh.docker0.app_solicit = 0
net.ipv6.neigh.docker0.base_reachable_time_ms = 30000
net.ipv6.neigh.docker0.delay_first_probe_time = 5
net.ipv6.neigh.docker0.gc_stale_time = 60
net.ipv6.neigh.docker0.locktime = 0
net.ipv6.neigh.docker0.mcast_solicit = 3
net.ipv6.neigh.docker0.proxy_delay = 80
net.ipv6.neigh.docker0.proxy_qlen = 64
net.ipv6.neigh.docker0.retrans_time_ms = 1000
net.ipv6.neigh.docker0.ucast_solicit = 3
net.ipv6.neigh.docker0.unres_qlen = 31
net.ipv6.neigh.docker0.unres_qlen_bytes = 65536
net.ipv6.neigh.dummy0.anycast_delay = 100
net.ipv6.neigh.dummy0.app_solicit = 0
net.ipv6.neigh.dummy0.base_reachable_time_ms = 30000
net.ipv6.neigh.dummy0.delay_first_probe_time = 5
net.ipv6.neigh.dummy0.gc_stale_time = 60
net.ipv6.neigh.dummy0.locktime = 0
net.ipv6.neigh.dummy0.mcast_solicit = 3
net.ipv6.neigh.dummy0.proxy_delay = 80
net.ipv6.neigh.dummy0.proxy_qlen = 64
net.ipv6.neigh.dummy0.retrans_time_ms = 1000
net.ipv6.neigh.dummy0.ucast_solicit = 3
net.ipv6.neigh.dummy0.unres_qlen = 31
net.ipv6.neigh.dummy0.unres_qlen_bytes = 65536
net.ipv6.neigh.enp0s3.anycast_delay = 100
net.ipv6.neigh.enp0s3.app_solicit = 0
net.ipv6.neigh.enp0s3.base_reachable_time_ms = 30000
net.ipv6.neigh.enp0s3.delay_first_probe_time = 5
net.ipv6.neigh.enp0s3.gc_stale_time = 60
net.ipv6.neigh.enp0s3.locktime = 0
net.ipv6.neigh.enp0s3.mcast_solicit = 3
net.ipv6.neigh.enp0s3.proxy_delay = 80
net.ipv6.neigh.enp0s3.proxy_qlen = 64
net.ipv6.neigh.enp0s3.retrans_time_ms = 1000
net.ipv6.neigh.enp0s3.ucast_solicit = 3
net.ipv6.neigh.enp0s3.unres_qlen = 31
net.ipv6.neigh.enp0s3.unres_qlen_bytes = 65536
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.locktime = 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 = 31
net.ipv6.neigh.kube-bridge.unres_qlen_bytes = 65536
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.locktime = 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 = 31
net.ipv6.neigh.kube-dummy-if.unres_qlen_bytes = 65536
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.locktime = 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 = 31
net.ipv6.neigh.lo.unres_qlen_bytes = 65536
net.ipv6.neigh.veth0ef1e7a5.anycast_delay = 100
net.ipv6.neigh.veth0ef1e7a5.app_solicit = 0
net.ipv6.neigh.veth0ef1e7a5.base_reachable_time_ms = 30000
net.ipv6.neigh.veth0ef1e7a5.delay_first_probe_time = 5
net.ipv6.neigh.veth0ef1e7a5.gc_stale_time = 60
net.ipv6.neigh.veth0ef1e7a5.locktime = 0
net.ipv6.neigh.veth0ef1e7a5.mcast_solicit = 3
net.ipv6.neigh.veth0ef1e7a5.proxy_delay = 80
net.ipv6.neigh.veth0ef1e7a5.proxy_qlen = 64
net.ipv6.neigh.veth0ef1e7a5.retrans_time_ms = 1000
net.ipv6.neigh.veth0ef1e7a5.ucast_solicit = 3
net.ipv6.neigh.veth0ef1e7a5.unres_qlen = 31
net.ipv6.neigh.veth0ef1e7a5.unres_qlen_bytes = 65536
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 = 16384
net.ipv6.route.min_adv_mss = 1220
net.ipv6.route.mtu_expires = 600
net.ipv6.xfrm6_gc_thresh = 32768
net.netfilter.nf_conntrack_acct = 0
net.netfilter.nf_conntrack_buckets = 32768
net.netfilter.nf_conntrack_checksum = 1
net.netfilter.nf_conntrack_count = 113
net.netfilter.nf_conntrack_events = 1
net.netfilter.nf_conntrack_events_retry_timeout = 15
net.netfilter.nf_conntrack_expect_max = 256
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_helper = 1
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 = 131072
net.netfilter.nf_conntrack_tcp_be_liberal = 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 = 180
net.netfilter.nf_log.0 = NONE
net.netfilter.nf_log.1 = NONE
net.netfilter.nf_log.10 = NONE
net.netfilter.nf_log.11 = NONE
net.netfilter.nf_log.12 = 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.nf_conntrack_max = 131072
net.unix.max_dgram_qlen = 512
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment