diff --git a/bin/pt-stalk b/bin/pt-stalk index 9264889b..f9deeeae 100755 --- a/bin/pt-stalk +++ b/bin/pt-stalk @@ -1036,6 +1036,10 @@ collect_system_data_loop() { (echo $ts; df -k) >> "$d/$p-df" & (echo $ts; netstat -antp) >> "$d/$p-netstat" & (echo $ts; netstat -s) >> "$d/$p-netstat_s" & + (echo $ts; + for node in `ls -d /sys/devices/system/node/node*`; do + echo `basename $node`; cat "$node/numastat" + done) >> "$d/$p-numastat" & } collect_mysql_data_two() { diff --git a/bin/pt-summary b/bin/pt-summary index 3af09d3c..22a7a6cd 100755 --- a/bin/pt-summary +++ b/bin/pt-summary @@ -16,10 +16,10 @@ export POSIXLY_CORRECT # ########################################################################### # log_warn_die package # This package is a copy without comments from the original. The original -# with comments and its test file can be found in the Bazaar repository at, +# with comments and its test file can be found in the GitHub repository at, # lib/bash/log_warn_die.sh # t/lib/bash/log_warn_die.sh -# See https://launchpad.net/percona-toolkit for more information. +# See https://github.com/percona/percona-toolkit for more information. # ########################################################################### @@ -64,10 +64,10 @@ _d () { # ########################################################################### # parse_options package # This package is a copy without comments from the original. The original -# with comments and its test file can be found in the Bazaar repository at, +# with comments and its test file can be found in the GitHub repository at, # lib/bash/parse_options.sh # t/lib/bash/parse_options.sh -# See https://launchpad.net/percona-toolkit for more information. +# See https://github.com/percona/percona-toolkit for more information. # ########################################################################### @@ -289,7 +289,7 @@ _eval_po() { *) echo "Invalid attribute in $opt_spec: $line" >&2 exit 1 - esac + esac done < "$opt_spec" if [ -z "$opt" ]; then @@ -413,7 +413,6 @@ _parse_command_line() { else spec=$(grep "^short form:-$opt\$" "$PT_TMPDIR"/po/* | cut -d ':' -f 1) if [ -z "$spec" ]; then - option_error "Unknown option: $real_opt" continue fi fi @@ -429,7 +428,7 @@ _parse_command_line() { if [ "$val" ]; then option_error "Option $real_opt does not take a value" continue - fi + fi if [ "$opt_is_negated" ]; then val="" else @@ -472,10 +471,10 @@ size_to_bytes() { # ########################################################################### # tmpdir package # This package is a copy without comments from the original. The original -# with comments and its test file can be found in the Bazaar repository at, +# with comments and its test file can be found in the GitHub repository at, # lib/bash/tmpdir.sh # t/lib/bash/tmpdir.sh -# See https://launchpad.net/percona-toolkit for more information. +# See https://github.com/percona/percona-toolkit for more information. # ########################################################################### @@ -513,10 +512,10 @@ rm_tmpdir() { # ########################################################################### # alt_cmds package # This package is a copy without comments from the original. The original -# with comments and its test file can be found in the Bazaar repository at, +# with comments and its test file can be found in the GitHub repository at, # lib/bash/alt_cmds.sh # t/lib/bash/alt_cmds.sh -# See https://launchpad.net/percona-toolkit for more information. +# See https://github.com/percona/percona-toolkit for more information. # ########################################################################### @@ -560,10 +559,10 @@ _which() { # ########################################################################### # summary_common package # This package is a copy without comments from the original. The original -# with comments and its test file can be found in the Bazaar repository at, +# with comments and its test file can be found in the GitHub repository at, # lib/bash/summary_common.sh # t/lib/bash/summary_common.sh -# See https://launchpad.net/percona-toolkit for more information. +# See https://github.com/percona/percona-toolkit for more information. # ########################################################################### @@ -690,10 +689,10 @@ get_var () { # ########################################################################### # report_formatting package # This package is a copy without comments from the original. The original -# with comments and its test file can be found in the Bazaar repository at, +# with comments and its test file can be found in the GitHub repository at, # lib/bash/report_formatting.sh # t/lib/bash/report_formatting.sh -# See https://launchpad.net/percona-toolkit for more information. +# See https://github.com/percona/percona-toolkit for more information. # ########################################################################### @@ -782,10 +781,10 @@ group_concat () { # ########################################################################### # collect_system_info package # This package is a copy without comments from the original. The original -# with comments and its test file can be found in the Bazaar repository at, +# with comments and its test file can be found in the GitHub repository at, # lib/bash/collect_system_info.sh # t/lib/bash/collect_system_info.sh -# See https://launchpad.net/percona-toolkit for more information. +# See https://github.com/percona/percona-toolkit for more information. # ########################################################################### @@ -860,6 +859,7 @@ collect_system_data () { local PTFUNCNAME=collect_system_data; [ "$CMD_DMIDECODE" ] && $CMD_DMIDECODE > "$data_dir/dmidecode" 2>/dev/null find_memory_stats "$platform" > "$data_dir/memory" + find_numa_stats > "$data_dir/numactl" [ "$OPT_SUMMARIZE_MOUNTS" ] && mounted_fs_info "$platform" > "$data_dir/mounted_fs" raid_controller "$data_dir/dmesg_file" "$data_dir/lspci_file" >> "$data_dir/summary" @@ -888,7 +888,7 @@ collect_system_data () { local PTFUNCNAME=collect_system_data; fi fio_status_minus_a "$data_dir/fusion-io_card" - + for file in $data_dir/*; do [ "$file" = "vmstat" ] && continue [ ! -s "$file" ] && rm "$file" @@ -925,7 +925,7 @@ fio_status_minus_a () { print "${adapter}_general $adapter_general"; print "${adapter}_modules @connected_modules"; - + for my $module (@connected_modules) { my ($rest, $attached, $general, $firmware, $temperature, $media_status) = /( ^ \s* $module \s+ (Attached[^\n]+) \n @@ -946,7 +946,7 @@ fio_status_minus_a () { } while <>; print "adapters @adapters\n"; - + exit; EOP @@ -976,6 +976,12 @@ linux_exclusive_collection () { local PTFUNCNAME=linux_exclusive_collection; echo "dirtystatus $(awk '/vm.dirty_bytes/{print $3}' "$data_dir/sysctl"), $(awk '/vm.dirty_background_bytes/{print $3}' "$data_dir/sysctl")" >> "$data_dir/summary" fi fi + + if [ -e "$data_dir/numactl" ]; then + echo "numa-available $(awk '/available/{print $2}' "$data_dir/numactl")" >> "$data_dir/summary" + echo "numa-policy $(awk '/policy/{print $2}' "$data_dir/numactl")" >> "$data_dir/summary" + echo "numa-preferred-node $(awk '/preferred node/{print $3}' "$data_dir/numactl")" >> "$data_dir/summary" + fi schedulers_and_queue_size "$data_dir/summary" > "$data_dir/partitioning" @@ -1174,13 +1180,20 @@ find_memory_stats () { local PTFUNCNAME=find_memory_stats; local platform="$1" if [ "${platform}" = "Linux" ]; then - free -bw + free -b cat /proc/meminfo elif [ "${platform}" = "SunOS" ]; then $CMD_PRTCONF | awk -F: '/Memory/{print $2}' fi } +find_numa_stats () { local PTFUNCNAME=find_numa_stats; + if command -v numactl >/dev/null; then + numactl --hardware + numactl --show + fi +} + mounted_fs_info () { local PTFUNCNAME=mounted_fs_info; local platform="$1" @@ -1278,7 +1291,7 @@ top_processes () { local PTFUNCNAME=top_processes; notable_processes_info () { local PTFUNCNAME=notable_processes_info; local format="%5s %+2d %s\n" - local sshd_pid=$(ps -eo pid,args | awk '$0 ~ /\/usr\/sbin\/sshd/ { print $1; exit }') + local sshd_pid=$(ps -eo pid,args | awk '$2 ~ /\/usr\/sbin\/sshd/ { print $1; exit }') echo " PID OOM COMMAND" @@ -1304,7 +1317,7 @@ processor_info () { local PTFUNCNAME=processor_info; cat /proc/cpuinfo > "$data_dir/proc_cpuinfo_copy" 2>/dev/null elif [ "${platform}" = "SunOS" ]; then $CMD_PSRINFO -v > "$data_dir/psrinfo_minus_v" - fi + fi } propietary_raid_controller () { local PTFUNCNAME=propietary_raid_controller; @@ -1327,7 +1340,7 @@ propietary_raid_controller () { local PTFUNCNAME=propietary_raid_controller; echo "internal::raid_opt 2" >> "$variable_file" fi elif [ "${controller}" = "LSI Logic MegaRAID SAS" ]; then - if [ -z "$CMD_MEGACLI64" ]; then + if [ -z "$CMD_MEGACLI64" ]; then notfound="your package repository or the manufacturer's website" else echo "internal::raid_opt 3" >> "$variable_file" @@ -1351,16 +1364,16 @@ propietary_raid_controller () { local PTFUNCNAME=propietary_raid_controller; # ########################################################################### # report_system_info package # This package is a copy without comments from the original. The original -# with comments and its test file can be found in the Bazaar repository at, +# with comments and its test file can be found in the GitHub repository at, # lib/bash/report_system_info.sh # t/lib/bash/report_system_info.sh -# See https://launchpad.net/percona-toolkit for more information. +# See https://github.com/percona/percona-toolkit for more information. # ########################################################################### set -u - + parse_proc_cpuinfo () { local PTFUNCNAME=parse_proc_cpuinfo; local file="$1" local virtual="$(grep -c ^processor "${file}")"; @@ -1521,6 +1534,27 @@ parse_dmidecode_mem_devices () { local PTFUNCNAME=parse_dmidecode_mem_devices; | awk -F'|' '{printf(" %-9s %-8s %-17s %-13s %-13s %-8s\n", $4, $2, $7, $3, $5, $6);}' } +parse_numactl () { local PTFUNCNAME=parse_numactl; + local file="$1" + + [ -e "$file" ] || return + + echo " Node Size Free CPUs" + echo " ==== ==== ==== ====" + + sed -n -e 's/node /node/g' \ + -e '/node[[:digit:]]/p' \ + "${file}" \ + | sort -r \ + | awk '$1 == cnode { + if (NF > 4) { for(i=3;i<=NF;i++){printf("%s ", $i)} printf "\n" } + else { printf("%-12s", $3" "$4); } + } + $1 != cnode { cnode = $1; printf(" %-8s", $1); printf("%-12s", $3" "$4); }' + + echo +} + parse_ip_s_link () { local PTFUNCNAME=parse_ip_s_link; local file="$1" @@ -2045,6 +2079,9 @@ section_Memory () { local platform="$1" local data_dir="$2" + local name_val_len_orig=$NAME_VAL_LEN; + local NAME_VAL_LEN=14 + section "Memory" if [ "${platform}" = "Linux" ]; then parse_free_minus_b "$data_dir/memory" @@ -2070,6 +2107,16 @@ section_Memory () { fi fi + if [ -s "$data_dir/numactl" ]; then + name_val "Numa Nodes" "$(get_var "numa-available" "$data_dir/summary")" + name_val "Numa Policy" "$(get_var "numa-policy" "$data_dir/summary")" + name_val "Preferred Node" "$(get_var "numa-preferred-node" "$data_dir/summary")" + + parse_numactl "$data_dir/numactl" + fi + + local NAME_VAL_LEN=$name_val_len_orig; + if [ -s "$data_dir/dmidecode" ]; then parse_dmidecode_mem_devices "$data_dir/dmidecode" fi @@ -2091,7 +2138,7 @@ report_fio_minus_a () { local file="$1" name_val "fio Driver" "$(get_var driver_version "$file")" - + local adapters="$( get_var "adapters" "$file" )" for adapter in $( echo $adapters | awk '{for (i=1; i<=NF; i++) print $i;}' ); do local adapter_for_output="$(echo "$adapter" | sed 's/::[0-9]*$//' | tr ':' ' ')" @@ -2161,7 +2208,7 @@ report_system_summary () { local PTFUNCNAME=report_system_summary; section "Fusion-io Card" report_fio_minus_a "$data_dir/fusion-io_card" fi - + if [ -s "$data_dir/mounted_fs" ]; then section "Mounted Filesystems" parse_filesystems "$data_dir/mounted_fs" "${platform}" @@ -2253,23 +2300,17 @@ report_system_summary () { local PTFUNCNAME=report_system_summary; section "Memory management" report_transparent_huge_pages + section "The End" } report_transparent_huge_pages () { - STATUS_THP_SYSTEM="" if [ -f /sys/kernel/mm/transparent_hugepage/enabled ]; then - CONTENT_TRANSHP=$(cat /sys/kernel/mm/transparent_hugepage/enabled) - STATUS_THP_SYSTEM=$(echo $CONTENT_TRANSHP | grep -cv '\[never\]') - elif [ -f /sys/kernel/mm/redhat_transparent_hugepage/enabled ]; then - CONTENT_TRANSHP=$(> "$d/$p-df" & (echo $ts; netstat -antp) >> "$d/$p-netstat" & (echo $ts; netstat -s) >> "$d/$p-netstat_s" & + (echo $ts; + for node in `ls -d /sys/devices/system/node/node*`; do + echo `basename $node`; cat "$node/numastat" + done) >> "$d/$p-numastat" & } collect_mysql_data_two() { diff --git a/lib/bash/collect_system_info.sh b/lib/bash/collect_system_info.sh index ecf4a75f..64dd537b 100644 --- a/lib/bash/collect_system_info.sh +++ b/lib/bash/collect_system_info.sh @@ -101,6 +101,7 @@ collect_system_data () { local PTFUNCNAME=collect_system_data; [ "$CMD_DMIDECODE" ] && $CMD_DMIDECODE > "$data_dir/dmidecode" 2>/dev/null find_memory_stats "$platform" > "$data_dir/memory" + find_numa_stats > "$data_dir/numactl" [ "$OPT_SUMMARIZE_MOUNTS" ] && mounted_fs_info "$platform" > "$data_dir/mounted_fs" raid_controller "$data_dir/dmesg_file" "$data_dir/lspci_file" >> "$data_dir/summary" @@ -225,6 +226,12 @@ linux_exclusive_collection () { local PTFUNCNAME=linux_exclusive_collection; echo "dirtystatus $(awk '/vm.dirty_bytes/{print $3}' "$data_dir/sysctl"), $(awk '/vm.dirty_background_bytes/{print $3}' "$data_dir/sysctl")" >> "$data_dir/summary" fi fi + + if [ -e "$data_dir/numactl" ]; then + echo "numa-available $(awk '/available/{print $2}' "$data_dir/numactl")" >> "$data_dir/summary" + echo "numa-policy $(awk '/policy/{print $2}' "$data_dir/numactl")" >> "$data_dir/summary" + echo "numa-preferred-node $(awk '/preferred node/{print $3}' "$data_dir/numactl")" >> "$data_dir/summary" + fi schedulers_and_queue_size "$data_dir/summary" > "$data_dir/partitioning" @@ -449,6 +456,13 @@ find_memory_stats () { local PTFUNCNAME=find_memory_stats; fi } +find_numa_stats () { local PTFUNCNAME=find_numa_stats; + if command -v numactl >/dev/null; then + numactl --hardware + numactl --show + fi +} + mounted_fs_info () { local PTFUNCNAME=mounted_fs_info; local platform="$1" diff --git a/lib/bash/report_system_info.sh b/lib/bash/report_system_info.sh index 7a1fa08a..fe1cea32 100644 --- a/lib/bash/report_system_info.sh +++ b/lib/bash/report_system_info.sh @@ -141,6 +141,7 @@ parse_free_minus_b () { local PTFUNCNAME=parse_free_minus_b; name_val "Total" $(shorten $(awk '/Mem:/{print $2}' "${file}") 1) name_val "Free" $(shorten $(awk '/Mem:/{print $4}' "${file}") 1) name_val "Used" "physical = $(shorten ${physical} 1), swap allocated = $(shorten ${swap_alloc} 1), swap used = $(shorten ${swap_used} 1), virtual = ${virtual}" + name_val "Shared" $(shorten $(awk '/Mem:/{print $5}' "${file}") 1) name_val "Buffers" $(shorten $(awk '/Mem:/{print $6}' "${file}") 1) name_val "Caches" $(shorten $(awk '/Mem:/{print $7}' "${file}") 1) name_val "Dirty" "$(awk '/Dirty:/ {print $2, $3}' "${file}")" @@ -230,12 +231,38 @@ parse_dmidecode_mem_devices () { local PTFUNCNAME=parse_dmidecode_mem_devices; -e 's/>/}/g' \ -e 's/[ \t]*\n/\n/g' \ "${file}" \ - | awk -F: '/Size|Type|Form.Factor|Type.Detail|^[\t ]+Locator/{printf("|%s", $2)}/^[\t ]+Speed/{print "|" $2}' \ + | awk -F: '/Size|Type|Form.Factor|Type.Detail|^[\t ]+Locator|^[\t ]+Speed/{printf("|%s", $2)}/^$/{print}' \ + | sed '/^$/d' \ | sed -e 's/No Module Installed/{EMPTY}/' \ | sort \ | awk -F'|' '{printf(" %-9s %-8s %-17s %-13s %-13s %-8s\n", $4, $2, $7, $3, $5, $6);}' } +# ############################################################################## +# Parse the output of 'numactl'. +# ############################################################################## +parse_numactl () { local PTFUNCNAME=parse_numactl; + local file="$1" + + [ -e "$file" ] || return + + # Print info about NUMA nodes + echo " Node Size Free CPUs" + echo " ==== ==== ==== ====" + + sed -n -e 's/node /node/g' \ + -e '/node[[:digit:]]/p' \ + "${file}" \ + | sort -r \ + | awk '$1 == cnode { + if (NF > 4) { for(i=3;i<=NF;i++){printf("%s ", $i)} printf "\n" } + else { printf("%-12s", $3" "$4); } + } + $1 != cnode { cnode = $1; printf(" %-8s", $1); printf("%-12s", $3" "$4); }' + + echo +} + # ############################################################################## # Parse the output of 'ip -s link' # ############################################################################## @@ -842,6 +869,9 @@ section_Memory () { local platform="$1" local data_dir="$2" + local name_val_len_orig=$NAME_VAL_LEN; + local NAME_VAL_LEN=14 + section "Memory" if [ "${platform}" = "Linux" ]; then parse_free_minus_b "$data_dir/memory" @@ -867,6 +897,16 @@ section_Memory () { fi fi + if [ -s "$data_dir/numactl" ]; then + name_val "Numa Nodes" "$(get_var "numa-available" "$data_dir/summary")" + name_val "Numa Policy" "$(get_var "numa-policy" "$data_dir/summary")" + name_val "Preferred Node" "$(get_var "numa-preferred-node" "$data_dir/summary")" + + parse_numactl "$data_dir/numactl" + fi + + local NAME_VAL_LEN=$name_val_len_orig; + if [ -s "$data_dir/dmidecode" ]; then parse_dmidecode_mem_devices "$data_dir/dmidecode" fi @@ -1071,12 +1111,29 @@ report_system_summary () { local PTFUNCNAME=report_system_summary; "$data_dir/vmstat" \ "$platform" + section "Memory management" + report_transparent_huge_pages + # ######################################################################## # All done. Signal the end so it's explicit. # ######################################################################## section "The End" } +report_transparent_huge_pages () { + + if [ -f /sys/kernel/mm/transparent_hugepage/enabled ]; then + CONTENT_TRANSHP=$($log_file 2>&1"); + +PerconaTest::wait_until(sub { !-f $pid_file }); + +$output = `ls $dest`; + +like( + $output, + qr/numastat/, + "numastat data collected" +); + +$output = `cat $dest/*-numastat`; + +like( + $output, + qr/(numa_)/, + "numastat collection has data" +); + # ############################################################################# # Done. # ############################################################################# diff --git a/t/pt-summary/pt-summary.t b/t/pt-summary/pt-summary.t index ee276699..fdb4c544 100644 --- a/t/pt-summary/pt-summary.t +++ b/t/pt-summary/pt-summary.t @@ -14,12 +14,12 @@ use PerconaTest; my ($tool) = $PROGRAM_NAME =~ m/([\w-]+)\.t$/; -use Test::More tests => 3; +use Test::More tests => 5; -for my $i (2..3,5) { +for my $i (2..3,5..7) { ok( no_diff( - sub { print `$trunk/bin/pt-summary --read-samples "$trunk/t/pt-summary/samples/Linux/00$i/" | tail -n+3` }, + sub { print `LC_NUMERIC=POSIX $trunk/bin/pt-summary --read-samples "$trunk/t/pt-summary/samples/Linux/00$i/" | tail -n+3` }, "t/pt-summary/samples/Linux/output_00$i.txt"), "--read-samples samples/Linux/00$i works", ); diff --git a/t/pt-summary/samples/Linux/006/collect.err b/t/pt-summary/samples/Linux/006/collect.err new file mode 100644 index 00000000..cc4b852b --- /dev/null +++ b/t/pt-summary/samples/Linux/006/collect.err @@ -0,0 +1,2 @@ +join: -:4: is not sorted: cgroup on /sys/fs/cgroup/blkio type cgroup (rw,nosuid,nodev,noexec,relatime,blkio) +join: /tmp/pt-summary.2397616.XMBMxL/mounted_fs_info.tmp:11: is not sorted: /dev/loop1 9,0M 9,0M 0 100% /snap/canonical-livepatch/146 diff --git a/t/pt-summary/samples/Linux/006/dmesg_file b/t/pt-summary/samples/Linux/006/dmesg_file new file mode 100644 index 00000000..e6b46c7d --- /dev/null +++ b/t/pt-summary/samples/Linux/006/dmesg_file @@ -0,0 +1,1210 @@ +[ 0.000000] kernel: microcode: microcode updated early to revision 0xb0, date = 2022-03-09 +[ 0.000000] kernel: Linux version 5.15.0-41-generic (buildd@lcy02-amd64-105) (gcc (Ubuntu 9.4.0-1ubuntu1~20.04.1) 9.4.0, GNU ld (GNU Binutils for Ubuntu) 2.34) #44~20.04.1-Ubuntu SMP Fri Jun 24 13:27:29 UTC 2022 (Ubuntu 5.15.0-41.44~20.04.1-generic 5.15.39) +[ 0.000000] kernel: Command line: BOOT_IMAGE=/vmlinuz-5.15.0-41-generic root=/dev/mapper/vgubuntu-root ro quiet splash mem_sleep_default=deep vt.handoff=7 +[ 0.000000] kernel: KERNEL supported cpus: +[ 0.000000] kernel: Intel GenuineIntel +[ 0.000000] kernel: AMD AuthenticAMD +[ 0.000000] kernel: Hygon HygonGenuine +[ 0.000000] kernel: Centaur CentaurHauls +[ 0.000000] kernel: zhaoxin Shanghai +[ 0.000000] kernel: x86/split lock detection: #AC: crashing the kernel on kernel split_locks and warning on user-space split_locks +[ 0.000000] kernel: x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers' +[ 0.000000] kernel: x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers' +[ 0.000000] kernel: x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers' +[ 0.000000] kernel: x86/fpu: Supporting XSAVE feature 0x020: 'AVX-512 opmask' +[ 0.000000] kernel: x86/fpu: Supporting XSAVE feature 0x040: 'AVX-512 Hi256' +[ 0.000000] kernel: x86/fpu: Supporting XSAVE feature 0x080: 'AVX-512 ZMM_Hi256' +[ 0.000000] kernel: x86/fpu: Supporting XSAVE feature 0x200: 'Protection Keys User registers' +[ 0.000000] kernel: x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256 +[ 0.000000] kernel: x86/fpu: xstate_offset[5]: 832, xstate_sizes[5]: 64 +[ 0.000000] kernel: x86/fpu: xstate_offset[6]: 896, xstate_sizes[6]: 512 +[ 0.000000] kernel: x86/fpu: xstate_offset[7]: 1408, xstate_sizes[7]: 1024 +[ 0.000000] kernel: x86/fpu: xstate_offset[9]: 2432, xstate_sizes[9]: 8 +[ 0.000000] kernel: x86/fpu: Enabled xstate features 0x2e7, context size is 2440 bytes, using 'compacted' format. +[ 0.000000] kernel: signal: max sigframe size: 3632 +[ 0.000000] kernel: BIOS-provided physical RAM map: +[ 0.000000] kernel: BIOS-e820: [mem 0x0000000000000000-0x000000000009dfff] usable +[ 0.000000] kernel: BIOS-e820: [mem 0x000000000009e000-0x00000000000fffff] reserved +[ 0.000000] kernel: BIOS-e820: [mem 0x0000000000100000-0x0000000042ca8fff] usable +[ 0.000000] kernel: BIOS-e820: [mem 0x0000000042ca9000-0x0000000042ca9fff] ACPI NVS +[ 0.000000] kernel: BIOS-e820: [mem 0x0000000042caa000-0x0000000042caafff] reserved +[ 0.000000] kernel: BIOS-e820: [mem 0x0000000042cab000-0x00000000621a4fff] usable +[ 0.000000] kernel: BIOS-e820: [mem 0x00000000621a5000-0x000000006379bfff] reserved +[ 0.000000] kernel: BIOS-e820: [mem 0x000000006379c000-0x0000000063f5ffff] ACPI NVS +[ 0.000000] kernel: BIOS-e820: [mem 0x0000000063f60000-0x0000000063ffefff] ACPI data +[ 0.000000] kernel: BIOS-e820: [mem 0x0000000063fff000-0x0000000063ffffff] usable +[ 0.000000] kernel: BIOS-e820: [mem 0x0000000064000000-0x0000000067ffffff] reserved +[ 0.000000] kernel: BIOS-e820: [mem 0x0000000068600000-0x00000000687fffff] reserved +[ 0.000000] kernel: BIOS-e820: [mem 0x0000000069000000-0x00000000707fffff] reserved +[ 0.000000] kernel: BIOS-e820: [mem 0x00000000fed20000-0x00000000fed7ffff] reserved +[ 0.000000] kernel: BIOS-e820: [mem 0x00000000ff050000-0x00000000ffffffff] reserved +[ 0.000000] kernel: BIOS-e820: [mem 0x0000000100000000-0x000000088f7fffff] usable +[ 0.000000] kernel: NX (Execute Disable) protection: active +[ 0.000000] kernel: efi: EFI v2.70 by Dell +[ 0.000000] kernel: efi: SMBIOS=0x62865000 TPMFinalLog=0x63f57000 ACPI=0x63ffe000 ACPI 2.0=0x63ffe014 ESRT=0x6279e698 MEMATTR=0x5f5c0018 PROP=0x412da170 MOKvar=0x5f5c8000 RNG=0x62701598 TPMEventLog=0x61ec0018 +[ 0.000000] kernel: efi: seeding entropy pool +[ 0.000000] kernel: random: fast init done +[ 0.000000] kernel: secureboot: Secure boot enabled +[ 0.000000] kernel: Kernel is locked down from EFI Secure Boot mode; see man kernel_lockdown.7 +[ 0.000000] kernel: SMBIOS 3.1 present. +[ 0.000000] kernel: DMI: Dell Inc. XPS 13 7390 2-in-1/06CDVY, BIOS 1.14.0 02/11/2022 +[ 0.000000] kernel: tsc: Detected 1500.000 MHz processor +[ 0.000000] kernel: tsc: Detected 1497.600 MHz TSC +[ 0.001362] kernel: e820: update [mem 0x00000000-0x00000fff] usable ==> reserved +[ 0.001365] kernel: e820: remove [mem 0x000a0000-0x000fffff] usable +[ 0.001369] kernel: last_pfn = 0x88f800 max_arch_pfn = 0x400000000 +[ 0.001590] kernel: x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT +[ 0.002841] kernel: last_pfn = 0x64000 max_arch_pfn = 0x400000000 +[ 0.014419] kernel: esrt: Reserving ESRT space from 0x000000006279e698 to 0x000000006279e6d0. +[ 0.014425] kernel: e820: update [mem 0x5f5c8000-0x5f5c9fff] usable ==> reserved +[ 0.014437] kernel: Using GB pages for direct mapping +[ 0.014753] kernel: secureboot: Secure boot enabled +[ 0.014754] kernel: RAMDISK: [mem 0x389f4000-0x3fffdfff] +[ 0.014759] kernel: ACPI: Early table checksum verification disabled +[ 0.014762] kernel: ACPI: RSDP 0x0000000063FFE014 000024 (v02 DELL ) +[ 0.014765] kernel: ACPI: XSDT 0x0000000063F9B188 0000FC (v01 DELL Dell Inc 20170001 ??LL 20160422) +[ 0.014770] kernel: ACPI: FACP 0x0000000063FF5000 000114 (v06 DELL Dell Inc 20170001 ??LL 20160422) +[ 0.014774] kernel: ACPI: DSDT 0x0000000063FB2000 03FBC8 (v02 DELL Dell Inc 20170001 ??LL 20160422) +[ 0.014777] kernel: ACPI: FACS 0x0000000063EFF000 000040 +[ 0.014779] kernel: ACPI: SSDT 0x0000000063FFB000 001B61 (v02 CpuRef CpuSsdt 00003000 INTL 20180927) +[ 0.014781] kernel: ACPI: SSDT 0x0000000063FF6000 004041 (v02 INTEL DptfTabl 00001000 INTL 20180927) +[ 0.014784] kernel: ACPI: HPET 0x0000000063FF4000 000038 (v01 DELL Dell Inc 20170001 ??LL 20160422) +[ 0.014786] kernel: ACPI: APIC 0x0000000063FF3000 00012C (v03 DELL Dell Inc 20170001 ??LL 20160422) +[ 0.014788] kernel: ACPI: MCFG 0x0000000063FF2000 00003C (v01 DELL Dell Inc 20170001 ??LL 20160422) +[ 0.014791] kernel: ACPI: SSDT 0x0000000063FB1000 0008D9 (v02 DELL DellRtd3 00001000 INTL 20180927) +[ 0.014793] kernel: ACPI: NHLT 0x0000000063FB0000 00002D (v00 DELL Dell Inc 20170001 ??LL 20160422) +[ 0.014795] kernel: ACPI: SSDT 0x0000000063FAF000 000CAF (v02 DELL UsbCTabl 00001000 INTL 20180927) +[ 0.014798] kernel: ACPI: SSDT 0x0000000063FAE000 000612 (v02 DELL Tpm2Tabl 00001000 INTL 20180927) +[ 0.014800] kernel: ACPI: TPM2 0x0000000063FAD000 000034 (v04 DELL Dell Inc 20170001 ??LL 20160422) +[ 0.014802] kernel: ACPI: LPIT 0x0000000063FAC000 000094 (v01 DELL Dell Inc 20170001 ??LL 20160422) +[ 0.014805] kernel: ACPI: SSDT 0x0000000063FAB000 000B75 (v02 DELL PtidDevc 00001000 INTL 20180927) +[ 0.014807] kernel: ACPI: SSDT 0x0000000063FAA000 000FBB (v02 DELL TbtTypeC 00000000 INTL 20180927) +[ 0.014809] kernel: ACPI: DBGP 0x0000000063FA9000 000034 (v01 DELL Dell Inc 20170001 ??LL 20160422) +[ 0.014812] kernel: ACPI: DBG2 0x0000000063FA8000 000054 (v00 DELL Dell Inc 20170001 ??LL 20160422) +[ 0.014814] kernel: ACPI: SLIC 0x0000000063FA7000 000176 (v03 DELL CBX3 06222004 MSFT 00010013) +[ 0.014816] kernel: ACPI: BOOT 0x0000000063FA6000 000028 (v01 DELL CBX3 20170001 ??LL 20160422) +[ 0.014819] kernel: ACPI: MSDM 0x0000000063FA5000 000055 (v03 DELL CBX3 06222004 AMI 00010013) +[ 0.014821] kernel: ACPI: SSDT 0x0000000063FA3000 001554 (v02 SaSsdt SaSsdt 00003000 INTL 20180927) +[ 0.014823] kernel: ACPI: SSDT 0x0000000063F9C000 0066EF (v02 INTEL TcssSsdt 00001000 INTL 20180927) +[ 0.014826] kernel: ACPI: DMAR 0x0000000063FFD000 0000C0 (v01 INTEL Dell Inc 00000002 01000013) +[ 0.014828] kernel: ACPI: BERT 0x0000000063F9A000 000030 (v01 INTEL EDK2 00000001 INTL 00000001) +[ 0.014830] kernel: ACPI: SSDT 0x0000000063F99000 000B70 (v02 DELL xh_Dell_ 00000000 INTL 20180927) +[ 0.014833] kernel: ACPI: SSDT 0x0000000063F98000 000156 (v02 Dell ADebTabl 00001000 INTL 20180927) +[ 0.014835] kernel: ACPI: BGRT 0x0000000063F97000 000038 (v01 DELL Dell Inc 20170001 ??LL 20160422) +[ 0.014837] kernel: ACPI: FPDT 0x0000000063F96000 000034 (v01 DELL Dell Inc 20170001 ??LL 20160422) +[ 0.014839] kernel: ACPI: Reserving FACP table memory at [mem 0x63ff5000-0x63ff5113] +[ 0.014840] kernel: ACPI: Reserving DSDT table memory at [mem 0x63fb2000-0x63ff1bc7] +[ 0.014841] kernel: ACPI: Reserving FACS table memory at [mem 0x63eff000-0x63eff03f] +[ 0.014842] kernel: ACPI: Reserving SSDT table memory at [mem 0x63ffb000-0x63ffcb60] +[ 0.014842] kernel: ACPI: Reserving SSDT table memory at [mem 0x63ff6000-0x63ffa040] +[ 0.014843] kernel: ACPI: Reserving HPET table memory at [mem 0x63ff4000-0x63ff4037] +[ 0.014844] kernel: ACPI: Reserving APIC table memory at [mem 0x63ff3000-0x63ff312b] +[ 0.014844] kernel: ACPI: Reserving MCFG table memory at [mem 0x63ff2000-0x63ff203b] +[ 0.014845] kernel: ACPI: Reserving SSDT table memory at [mem 0x63fb1000-0x63fb18d8] +[ 0.014846] kernel: ACPI: Reserving NHLT table memory at [mem 0x63fb0000-0x63fb002c] +[ 0.014846] kernel: ACPI: Reserving SSDT table memory at [mem 0x63faf000-0x63fafcae] +[ 0.014847] kernel: ACPI: Reserving SSDT table memory at [mem 0x63fae000-0x63fae611] +[ 0.014848] kernel: ACPI: Reserving TPM2 table memory at [mem 0x63fad000-0x63fad033] +[ 0.014848] kernel: ACPI: Reserving LPIT table memory at [mem 0x63fac000-0x63fac093] +[ 0.014849] kernel: ACPI: Reserving SSDT table memory at [mem 0x63fab000-0x63fabb74] +[ 0.014850] kernel: ACPI: Reserving SSDT table memory at [mem 0x63faa000-0x63faafba] +[ 0.014850] kernel: ACPI: Reserving DBGP table memory at [mem 0x63fa9000-0x63fa9033] +[ 0.014851] kernel: ACPI: Reserving DBG2 table memory at [mem 0x63fa8000-0x63fa8053] +[ 0.014852] kernel: ACPI: Reserving SLIC table memory at [mem 0x63fa7000-0x63fa7175] +[ 0.014852] kernel: ACPI: Reserving BOOT table memory at [mem 0x63fa6000-0x63fa6027] +[ 0.014853] kernel: ACPI: Reserving MSDM table memory at [mem 0x63fa5000-0x63fa5054] +[ 0.014854] kernel: ACPI: Reserving SSDT table memory at [mem 0x63fa3000-0x63fa4553] +[ 0.014854] kernel: ACPI: Reserving SSDT table memory at [mem 0x63f9c000-0x63fa26ee] +[ 0.014855] kernel: ACPI: Reserving DMAR table memory at [mem 0x63ffd000-0x63ffd0bf] +[ 0.014856] kernel: ACPI: Reserving BERT table memory at [mem 0x63f9a000-0x63f9a02f] +[ 0.014856] kernel: ACPI: Reserving SSDT table memory at [mem 0x63f99000-0x63f99b6f] +[ 0.014857] kernel: ACPI: Reserving SSDT table memory at [mem 0x63f98000-0x63f98155] +[ 0.014858] kernel: ACPI: Reserving BGRT table memory at [mem 0x63f97000-0x63f97037] +[ 0.014859] kernel: ACPI: Reserving FPDT table memory at [mem 0x63f96000-0x63f96033] +[ 0.015065] kernel: No NUMA configuration found +[ 0.015066] kernel: Faking a node at [mem 0x0000000000000000-0x000000088f7fffff] +[ 0.015072] kernel: NODE_DATA(0) allocated [mem 0x88f7d6000-0x88f7fffff] +[ 0.015293] kernel: Zone ranges: +[ 0.015294] kernel: DMA [mem 0x0000000000001000-0x0000000000ffffff] +[ 0.015295] kernel: DMA32 [mem 0x0000000001000000-0x00000000ffffffff] +[ 0.015296] kernel: Normal [mem 0x0000000100000000-0x000000088f7fffff] +[ 0.015298] kernel: Device empty +[ 0.015299] kernel: Movable zone start for each node +[ 0.015301] kernel: Early memory node ranges +[ 0.015302] kernel: node 0: [mem 0x0000000000001000-0x000000000009dfff] +[ 0.015303] kernel: node 0: [mem 0x0000000000100000-0x0000000042ca8fff] +[ 0.015304] kernel: node 0: [mem 0x0000000042cab000-0x00000000621a4fff] +[ 0.015304] kernel: node 0: [mem 0x0000000063fff000-0x0000000063ffffff] +[ 0.015305] kernel: node 0: [mem 0x0000000100000000-0x000000088f7fffff] +[ 0.015307] kernel: Initmem setup node 0 [mem 0x0000000000001000-0x000000088f7fffff] +[ 0.015311] kernel: On node 0, zone DMA: 1 pages in unavailable ranges +[ 0.015329] kernel: On node 0, zone DMA: 98 pages in unavailable ranges +[ 0.017616] kernel: On node 0, zone DMA32: 2 pages in unavailable ranges +[ 0.017669] kernel: On node 0, zone DMA32: 7770 pages in unavailable ranges +[ 0.064668] kernel: On node 0, zone Normal: 16384 pages in unavailable ranges +[ 0.064689] kernel: On node 0, zone Normal: 2048 pages in unavailable ranges +[ 0.064710] kernel: Reserving Intel graphics memory at [mem 0x6c800000-0x707fffff] +[ 0.065021] kernel: ACPI: PM-Timer IO Port: 0x1808 +[ 0.065026] kernel: ACPI: LAPIC_NMI (acpi_id[0x01] high edge lint[0x1]) +[ 0.065028] kernel: ACPI: LAPIC_NMI (acpi_id[0x02] high edge lint[0x1]) +[ 0.065029] kernel: ACPI: LAPIC_NMI (acpi_id[0x03] high edge lint[0x1]) +[ 0.065029] kernel: ACPI: LAPIC_NMI (acpi_id[0x04] high edge lint[0x1]) +[ 0.065030] kernel: ACPI: LAPIC_NMI (acpi_id[0x05] high edge lint[0x1]) +[ 0.065030] kernel: ACPI: LAPIC_NMI (acpi_id[0x06] high edge lint[0x1]) +[ 0.065031] kernel: ACPI: LAPIC_NMI (acpi_id[0x07] high edge lint[0x1]) +[ 0.065031] kernel: ACPI: LAPIC_NMI (acpi_id[0x08] high edge lint[0x1]) +[ 0.065032] kernel: ACPI: LAPIC_NMI (acpi_id[0x09] high edge lint[0x1]) +[ 0.065032] kernel: ACPI: LAPIC_NMI (acpi_id[0x0a] high edge lint[0x1]) +[ 0.065033] kernel: ACPI: LAPIC_NMI (acpi_id[0x0b] high edge lint[0x1]) +[ 0.065033] kernel: ACPI: LAPIC_NMI (acpi_id[0x0c] high edge lint[0x1]) +[ 0.065034] kernel: ACPI: LAPIC_NMI (acpi_id[0x0d] high edge lint[0x1]) +[ 0.065035] kernel: ACPI: LAPIC_NMI (acpi_id[0x0e] high edge lint[0x1]) +[ 0.065035] kernel: ACPI: LAPIC_NMI (acpi_id[0x0f] high edge lint[0x1]) +[ 0.065036] kernel: ACPI: LAPIC_NMI (acpi_id[0x10] high edge lint[0x1]) +[ 0.065069] kernel: IOAPIC[0]: apic_id 2, version 32, address 0xfec00000, GSI 0-119 +[ 0.065072] kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) +[ 0.065074] kernel: ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) +[ 0.065076] kernel: ACPI: Using ACPI (MADT) for SMP configuration information +[ 0.065077] kernel: ACPI: HPET id: 0x8086a201 base: 0xfed00000 +[ 0.065084] kernel: e820: update [mem 0x5f5d1000-0x5f647fff] usable ==> reserved +[ 0.065090] kernel: TSC deadline timer available +[ 0.065091] kernel: smpboot: Allowing 8 CPUs, 0 hotplug CPUs +[ 0.065103] kernel: PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff] +[ 0.065105] kernel: PM: hibernation: Registered nosave memory: [mem 0x0009e000-0x000fffff] +[ 0.065106] kernel: PM: hibernation: Registered nosave memory: [mem 0x42ca9000-0x42ca9fff] +[ 0.065107] kernel: PM: hibernation: Registered nosave memory: [mem 0x42caa000-0x42caafff] +[ 0.065108] kernel: PM: hibernation: Registered nosave memory: [mem 0x5f5c8000-0x5f5c9fff] +[ 0.065109] kernel: PM: hibernation: Registered nosave memory: [mem 0x5f5d1000-0x5f647fff] +[ 0.065110] kernel: PM: hibernation: Registered nosave memory: [mem 0x621a5000-0x6379bfff] +[ 0.065111] kernel: PM: hibernation: Registered nosave memory: [mem 0x6379c000-0x63f5ffff] +[ 0.065111] kernel: PM: hibernation: Registered nosave memory: [mem 0x63f60000-0x63ffefff] +[ 0.065113] kernel: PM: hibernation: Registered nosave memory: [mem 0x64000000-0x67ffffff] +[ 0.065113] kernel: PM: hibernation: Registered nosave memory: [mem 0x68000000-0x685fffff] +[ 0.065114] kernel: PM: hibernation: Registered nosave memory: [mem 0x68600000-0x687fffff] +[ 0.065114] kernel: PM: hibernation: Registered nosave memory: [mem 0x68800000-0x68ffffff] +[ 0.065115] kernel: PM: hibernation: Registered nosave memory: [mem 0x69000000-0x707fffff] +[ 0.065115] kernel: PM: hibernation: Registered nosave memory: [mem 0x70800000-0xfed1ffff] +[ 0.065116] kernel: PM: hibernation: Registered nosave memory: [mem 0xfed20000-0xfed7ffff] +[ 0.065116] kernel: PM: hibernation: Registered nosave memory: [mem 0xfed80000-0xff04ffff] +[ 0.065117] kernel: PM: hibernation: Registered nosave memory: [mem 0xff050000-0xffffffff] +[ 0.065118] kernel: [mem 0x70800000-0xfed1ffff] available for PCI devices +[ 0.065119] kernel: Booting paravirtualized kernel on bare hardware +[ 0.065121] kernel: clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645519600211568 ns +[ 0.065126] kernel: setup_percpu: NR_CPUS:8192 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1 +[ 0.065314] kernel: percpu: Embedded 60 pages/cpu s208896 r8192 d28672 u262144 +[ 0.065319] kernel: pcpu-alloc: s208896 r8192 d28672 u262144 alloc=1*2097152 +[ 0.065321] kernel: pcpu-alloc: [0] 0 1 2 3 4 5 6 7 +[ 0.065345] kernel: Built 1 zonelists, mobility grouping on. Total pages: 8199229 +[ 0.065346] kernel: Policy zone: Normal +[ 0.065347] kernel: Kernel command line: BOOT_IMAGE=/vmlinuz-5.15.0-41-generic root=/dev/mapper/vgubuntu-root ro quiet splash mem_sleep_default=deep vt.handoff=7 +[ 0.065424] kernel: Unknown kernel command line parameters "splash BOOT_IMAGE=/vmlinuz-5.15.0-41-generic", will be passed to user space. +[ 0.067138] kernel: Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear) +[ 0.067987] kernel: Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear) +[ 0.068046] kernel: mem auto-init: stack:off, heap alloc:on, heap free:off +[ 0.140005] kernel: Memory: 32430848K/33318148K available (16393K kernel code, 4376K rwdata, 10772K rodata, 2912K init, 4844K bss, 887040K reserved, 0K cma-reserved) +[ 0.140011] kernel: random: get_random_u64 called from __kmem_cache_create+0x2f/0x480 with crng_init=1 +[ 0.140136] kernel: SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1 +[ 0.140150] kernel: ftrace: allocating 49962 entries in 196 pages +[ 0.152742] kernel: ftrace: allocated 196 pages with 3 groups +[ 0.152836] kernel: rcu: Hierarchical RCU implementation. +[ 0.152838] kernel: rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=8. +[ 0.152839] kernel: Rude variant of Tasks RCU enabled. +[ 0.152840] kernel: Tracing variant of Tasks RCU enabled. +[ 0.152840] kernel: rcu: RCU calculated value of scheduler-enlistment delay is 25 jiffies. +[ 0.152841] kernel: rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8 +[ 0.155694] kernel: NR_IRQS: 524544, nr_irqs: 2048, preallocated irqs: 16 +[ 0.156298] kernel: random: crng done (trusting CPU's manufacturer) +[ 0.156327] kernel: Console: colour dummy device 80x25 +[ 0.156338] kernel: printk: console [tty0] enabled +[ 0.156356] kernel: ACPI: Core revision 20210730 +[ 0.156553] kernel: hpet: HPET dysfunctional in PC10. Force disabled. +[ 0.156555] kernel: APIC: Switch to symmetric I/O mode setup +[ 0.156557] kernel: DMAR: Host address width 39 +[ 0.156558] kernel: DMAR: DRHD base: 0x000000fed90000 flags: 0x0 +[ 0.156562] kernel: DMAR: dmar0: reg_base_addr fed90000 ver 4:0 cap 1c0000c40660462 ecap 49e2ff0505e +[ 0.156564] kernel: DMAR: DRHD base: 0x000000fed92000 flags: 0x0 +[ 0.156567] kernel: DMAR: dmar1: reg_base_addr fed92000 ver 1:0 cap d2008c40660462 ecap f050da +[ 0.156568] kernel: DMAR: DRHD base: 0x000000fed91000 flags: 0x1 +[ 0.156570] kernel: DMAR: dmar2: reg_base_addr fed91000 ver 1:0 cap d2008c40660462 ecap f050da +[ 0.156575] kernel: DMAR: RMRR base: 0x0000006333c000 end: 0x0000006335bfff +[ 0.156577] kernel: DMAR: RMRR base: 0x0000006c000000 end: 0x000000707fffff +[ 0.156578] kernel: DMAR-IR: IOAPIC id 2 under DRHD base 0xfed91000 IOMMU 2 +[ 0.156579] kernel: DMAR-IR: HPET id 0 under DRHD base 0xfed91000 +[ 0.156580] kernel: DMAR-IR: x2apic is disabled because BIOS sets x2apic opt out bit. +[ 0.156581] kernel: DMAR-IR: Use 'intremap=no_x2apic_optout' to override the BIOS setting. +[ 0.158506] kernel: DMAR-IR: Enabled IRQ remapping in xapic mode +[ 0.158507] kernel: x2apic: IRQ remapping doesn't support X2APIC mode +[ 0.162864] kernel: clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x159647815e3, max_idle_ns: 440795269835 ns +[ 0.162872] kernel: Calibrating delay loop (skipped), value calculated using timer frequency.. 2995.20 BogoMIPS (lpj=5990400) +[ 0.162874] kernel: pid_max: default: 32768 minimum: 301 +[ 0.164616] kernel: LSM: Security Framework initializing +[ 0.164625] kernel: landlock: Up and running. +[ 0.164625] kernel: Yama: becoming mindful. +[ 0.164645] kernel: AppArmor: AppArmor initialized +[ 0.164732] kernel: Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear) +[ 0.164776] kernel: Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear) +[ 0.165000] kernel: x86/cpu: SGX disabled by BIOS. +[ 0.165011] kernel: CPU0: Thermal monitoring enabled (TM1) +[ 0.165012] kernel: x86/cpu: User Mode Instruction Prevention (UMIP) activated +[ 0.165113] kernel: process: using mwait in idle threads +[ 0.165115] kernel: Last level iTLB entries: 4KB 0, 2MB 0, 4MB 0 +[ 0.165116] kernel: Last level dTLB entries: 4KB 0, 2MB 0, 4MB 0, 1GB 0 +[ 0.165120] kernel: Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization +[ 0.165121] kernel: Spectre V2 : Mitigation: Enhanced IBRS +[ 0.165122] kernel: Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch +[ 0.165123] kernel: Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier +[ 0.165125] kernel: Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl and seccomp +[ 0.165128] kernel: MMIO Stale Data: Mitigation: Clear CPU buffers +[ 0.165130] kernel: SRBDS: Mitigation: Microcode +[ 0.166868] kernel: Freeing SMP alternatives memory: 40K +[ 0.166868] kernel: smpboot: Estimated ratio of average max frequency by base frequency (times 1024): 2389 +[ 0.166868] kernel: smpboot: CPU0: Intel(R) Core(TM) i7-1065G7 CPU @ 1.30GHz (family: 0x6, model: 0x7e, stepping: 0x5) +[ 0.166868] kernel: Performance Events: PEBS fmt4+-baseline, AnyThread deprecated, Icelake events, 32-deep LBR, full-width counters, Intel PMU driver. +[ 0.166868] kernel: ... version: 5 +[ 0.166868] kernel: ... bit width: 48 +[ 0.166868] kernel: ... generic registers: 8 +[ 0.166868] kernel: ... value mask: 0000ffffffffffff +[ 0.166868] kernel: ... max period: 00007fffffffffff +[ 0.166868] kernel: ... fixed-purpose events: 4 +[ 0.166868] kernel: ... event mask: 0001000f000000ff +[ 0.166868] kernel: rcu: Hierarchical SRCU implementation. +[ 0.166868] kernel: NMI watchdog: Enabled. Permanently consumes one hw-PMU counter. +[ 0.166868] kernel: smp: Bringing up secondary CPUs ... +[ 0.166868] kernel: x86: Booting SMP configuration: +[ 0.166868] kernel: .... node #0, CPUs: #1 #2 #3 #4 +[ 0.171495] kernel: MMIO Stale Data CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/processor_mmio_stale_data.html for more details. +[ 0.171495] kernel: #5 #6 #7 +[ 0.171720] kernel: smp: Brought up 1 node, 8 CPUs +[ 0.171720] kernel: smpboot: Max logical packages: 1 +[ 0.171720] kernel: smpboot: Total of 8 processors activated (23961.60 BogoMIPS) +[ 0.176161] kernel: devtmpfs: initialized +[ 0.176161] kernel: x86/mm: Memory block size: 128MB +[ 0.176175] kernel: ACPI: PM: Registering ACPI NVS region [mem 0x42ca9000-0x42ca9fff] (4096 bytes) +[ 0.176175] kernel: ACPI: PM: Registering ACPI NVS region [mem 0x6379c000-0x63f5ffff] (8142848 bytes) +[ 0.176175] kernel: clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 7645041785100000 ns +[ 0.176175] kernel: futex hash table entries: 2048 (order: 5, 131072 bytes, linear) +[ 0.176175] kernel: pinctrl core: initialized pinctrl subsystem +[ 0.176175] kernel: PM: RTC time: 11:52:18, date: 2022-08-01 +[ 0.176175] kernel: NET: Registered PF_NETLINK/PF_ROUTE protocol family +[ 0.176175] kernel: DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations +[ 0.176175] kernel: DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations +[ 0.179135] kernel: DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations +[ 0.179142] kernel: audit: initializing netlink subsys (disabled) +[ 0.179147] kernel: audit: type=2000 audit(1659354738.016:1): state=initialized audit_enabled=0 res=1 +[ 0.179147] kernel: thermal_sys: Registered thermal governor 'fair_share' +[ 0.179147] kernel: thermal_sys: Registered thermal governor 'bang_bang' +[ 0.179147] kernel: thermal_sys: Registered thermal governor 'step_wise' +[ 0.179147] kernel: thermal_sys: Registered thermal governor 'user_space' +[ 0.179147] kernel: thermal_sys: Registered thermal governor 'power_allocator' +[ 0.179147] kernel: EISA bus registered +[ 0.179147] kernel: cpuidle: using governor ladder +[ 0.179147] kernel: cpuidle: using governor menu +[ 0.179147] kernel: Simple Boot Flag at 0x47 set to 0x80 +[ 0.179147] kernel: ACPI: bus type PCI registered +[ 0.179147] kernel: acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 +[ 0.179147] kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xc0000000-0xcfffffff] (base 0xc0000000) +[ 0.179147] kernel: PCI: not using MMCONFIG +[ 0.179147] kernel: PCI: Using configuration type 1 for base access +[ 0.179503] kernel: ENERGY_PERF_BIAS: Set to 'normal', was 'performance' +[ 0.179710] kernel: Kprobes globally optimized +[ 0.179713] kernel: HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages +[ 0.179713] kernel: HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages +[ 0.179713] kernel: fbcon: Taking over console +[ 0.179713] kernel: ACPI: Added _OSI(Module Device) +[ 0.179713] kernel: ACPI: Added _OSI(Processor Device) +[ 0.179713] kernel: ACPI: Added _OSI(3.0 _SCP Extensions) +[ 0.179713] kernel: ACPI: Added _OSI(Processor Aggregator Device) +[ 0.179713] kernel: ACPI: Added _OSI(Linux-Dell-Video) +[ 0.179713] kernel: ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio) +[ 0.179713] kernel: ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics) +[ 0.223521] kernel: ACPI: 12 ACPI AML tables successfully acquired and loaded +[ 0.235759] kernel: ACPI: Dynamic OEM Table Load: +[ 0.235767] kernel: ACPI: SSDT 0xFFFF8CB040205800 0000F4 (v02 PmRef Cpu0Psd 00003000 INTL 20180927) +[ 0.236492] kernel: ACPI: \_SB_.PR00: _OSC native thermal LVT Acked +[ 0.238123] kernel: ACPI: Dynamic OEM Table Load: +[ 0.238128] kernel: ACPI: SSDT 0xFFFF8CB0415F0400 000394 (v02 PmRef Cpu0Cst 00003001 INTL 20180927) +[ 0.238927] kernel: ACPI: Dynamic OEM Table Load: +[ 0.238932] kernel: ACPI: SSDT 0xFFFF8CB041606800 000437 (v02 PmRef Cpu0Ist 00003000 INTL 20180927) +[ 0.239772] kernel: ACPI: Dynamic OEM Table Load: +[ 0.239776] kernel: ACPI: SSDT 0xFFFF8CB0402B3A00 00012C (v02 PmRef Cpu0Hwp 00003000 INTL 20180927) +[ 0.240495] kernel: ACPI: Dynamic OEM Table Load: +[ 0.240500] kernel: ACPI: SSDT 0xFFFF8CB041605000 000724 (v02 PmRef HwpLvt 00003000 INTL 20180927) +[ 0.241435] kernel: ACPI: Dynamic OEM Table Load: +[ 0.241440] kernel: ACPI: SSDT 0xFFFF8CB041602000 0005FC (v02 PmRef ApIst 00003000 INTL 20180927) +[ 0.242304] kernel: ACPI: Dynamic OEM Table Load: +[ 0.242308] kernel: ACPI: SSDT 0xFFFF8CB0415F6000 000317 (v02 PmRef ApHwp 00003000 INTL 20180927) +[ 0.243181] kernel: ACPI: Dynamic OEM Table Load: +[ 0.243186] kernel: ACPI: SSDT 0xFFFF8CB04007A000 000AB0 (v02 PmRef ApPsd 00003000 INTL 20180927) +[ 0.244480] kernel: ACPI: Dynamic OEM Table Load: +[ 0.244484] kernel: ACPI: SSDT 0xFFFF8CB0415F2C00 00030A (v02 PmRef ApCst 00003000 INTL 20180927) +[ 0.248439] kernel: ACPI: EC: EC started +[ 0.248441] kernel: ACPI: EC: interrupt blocked +[ 0.254176] kernel: ACPI: EC: EC_CMD/EC_SC=0x934, EC_DATA=0x930 +[ 0.254179] kernel: ACPI: \_SB_.PCI0.LPCB.ECDV: Boot DSDT EC used to handle transactions +[ 0.254180] kernel: ACPI: Interpreter enabled +[ 0.254222] kernel: ACPI: PM: (supports S0 S3 S4 S5) +[ 0.254222] kernel: ACPI: Using IOAPIC for interrupt routing +[ 0.254258] kernel: PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xc0000000-0xcfffffff] (base 0xc0000000) +[ 0.256016] kernel: PCI: MMCONFIG at [mem 0xc0000000-0xcfffffff] reserved in ACPI motherboard resources +[ 0.256026] kernel: PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug +[ 0.257295] kernel: ACPI: Enabled 8 GPEs in block 00 to 7F +[ 0.269431] kernel: ACPI: PM: Power Resource [V0PR] +[ 0.269592] kernel: ACPI: PM: Power Resource [V1PR] +[ 0.269762] kernel: ACPI: PM: Power Resource [V2PR] +[ 0.272929] kernel: ACPI: PM: Power Resource [WRST] +[ 0.274379] kernel: ACPI: PM: Power Resource [TBT0] +[ 0.274391] kernel: ACPI: PM: Power Resource [TBT1] +[ 0.274401] kernel: ACPI: PM: Power Resource [D3C] +[ 0.519304] kernel: ACPI: PM: Power Resource [PIN] +[ 0.519689] kernel: ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe]) +[ 0.519695] kernel: acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI HPX-Type3] +[ 0.521258] kernel: acpi PNP0A08:00: _OSC: platform does not support [AER] +[ 0.524266] kernel: acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME PCIeCapability LTR] +[ 0.527006] kernel: PCI host bridge to bus 0000:00 +[ 0.527009] kernel: pci_bus 0000:00: root bus resource [bus 00-fe] +[ 0.527010] kernel: pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window] +[ 0.527012] kernel: pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window] +[ 0.527013] kernel: pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000fffff window] +[ 0.527014] kernel: pci_bus 0000:00: root bus resource [mem 0x70800000-0xbfffffff window] +[ 0.527015] kernel: pci_bus 0000:00: root bus resource [mem 0x4000000000-0x7fffffffff window] +[ 0.528073] kernel: pci 0000:00:00.0: [8086:8a12] type 00 class 0x060000 +[ 0.530879] kernel: pci 0000:00:02.0: [8086:8a52] type 00 class 0x030000 +[ 0.530888] kernel: pci 0000:00:02.0: reg 0x10: [mem 0x603d000000-0x603dffffff 64bit] +[ 0.530894] kernel: pci 0000:00:02.0: reg 0x18: [mem 0x4000000000-0x400fffffff 64bit pref] +[ 0.530899] kernel: pci 0000:00:02.0: reg 0x20: [io 0x4000-0x403f] +[ 0.530914] kernel: pci 0000:00:02.0: BAR 2: assigned to efifb +[ 0.530915] kernel: pci 0000:00:02.0: DMAR: Skip IOMMU disabling for graphics +[ 0.530918] kernel: pci 0000:00:02.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff] +[ 0.532892] kernel: pci 0000:00:04.0: [8086:8a03] type 00 class 0x118000 +[ 0.532911] kernel: pci 0000:00:04.0: reg 0x10: [mem 0x603eba0000-0x603ebaffff 64bit] +[ 0.534879] kernel: pci 0000:00:05.0: [8086:8a19] type 00 class 0x048000 +[ 0.534887] kernel: pci 0000:00:05.0: reg 0x10: [mem 0x603c000000-0x603cffffff 64bit] +[ 0.536835] kernel: pci 0000:00:07.0: [8086:8a1d] type 01 class 0x060400 +[ 0.536896] kernel: pci 0000:00:07.0: PME# supported from D0 D3hot D3cold +[ 0.536915] kernel: pci 0000:00:07.0: DPC: RP PIO log size 0 is invalid +[ 0.539105] kernel: pci 0000:00:07.2: [8086:8a21] type 01 class 0x060400 +[ 0.539197] kernel: pci 0000:00:07.2: PME# supported from D0 D3hot D3cold +[ 0.539216] kernel: pci 0000:00:07.2: DPC: RP PIO log size 0 is invalid +[ 0.541485] kernel: pci 0000:00:0d.0: [8086:8a13] type 00 class 0x0c0330 +[ 0.541497] kernel: pci 0000:00:0d.0: reg 0x10: [mem 0x603eb90000-0x603eb9ffff 64bit] +[ 0.541547] kernel: pci 0000:00:0d.0: PME# supported from D3hot D3cold +[ 0.543583] kernel: pci 0000:00:0d.2: [8086:8a17] type 00 class 0x088000 +[ 0.543594] kernel: pci 0000:00:0d.2: reg 0x10: [mem 0x603eb40000-0x603eb7ffff 64bit] +[ 0.543601] kernel: pci 0000:00:0d.2: reg 0x18: [mem 0x603ebc3000-0x603ebc3fff 64bit] +[ 0.543634] kernel: pci 0000:00:0d.2: supports D1 D2 +[ 0.543635] kernel: pci 0000:00:0d.2: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.545476] kernel: pci 0000:00:0d.3: [8086:8a0d] type 00 class 0x088000 +[ 0.545487] kernel: pci 0000:00:0d.3: reg 0x10: [mem 0x603eb00000-0x603eb3ffff 64bit] +[ 0.545493] kernel: pci 0000:00:0d.3: reg 0x18: [mem 0x603ebc2000-0x603ebc2fff 64bit] +[ 0.545526] kernel: pci 0000:00:0d.3: supports D1 D2 +[ 0.545527] kernel: pci 0000:00:0d.3: PME# supported from D0 D1 D2 D3hot D3cold +[ 0.547445] kernel: pci 0000:00:12.0: [8086:34fc] type 00 class 0x070000 +[ 0.547469] kernel: pci 0000:00:12.0: reg 0x10: [mem 0x603ebba000-0x603ebbbfff 64bit] +[ 0.547552] kernel: pci 0000:00:12.0: PME# supported from D0 D3hot +[ 0.549668] kernel: pci 0000:00:14.0: [8086:34ed] type 00 class 0x0c0330 +[ 0.549688] kernel: pci 0000:00:14.0: reg 0x10: [mem 0x603eb80000-0x603eb8ffff 64bit] +[ 0.549766] kernel: pci 0000:00:14.0: PME# supported from D3hot D3cold +[ 0.550874] kernel: pci 0000:00:14.2: [8086:34ef] type 00 class 0x050000 +[ 0.550897] kernel: pci 0000:00:14.2: reg 0x10: [mem 0x603ebb8000-0x603ebb9fff 64bit] +[ 0.550911] kernel: pci 0000:00:14.2: reg 0x18: [mem 0x603ebc1000-0x603ebc1fff 64bit] +[ 0.553755] kernel: pci 0000:00:14.3: [8086:34f0] type 00 class 0x028000 +[ 0.553793] kernel: pci 0000:00:14.3: reg 0x10: [mem 0x603ebb4000-0x603ebb7fff 64bit] +[ 0.553915] kernel: pci 0000:00:14.3: PME# supported from D0 D3hot D3cold +[ 0.555934] kernel: pci 0000:00:15.0: [8086:34e8] type 00 class 0x0c8000 +[ 0.555993] kernel: pci 0000:00:15.0: reg 0x10: [mem 0x00000000-0x00000fff 64bit] +[ 0.558114] kernel: pci 0000:00:15.1: [8086:34e9] type 00 class 0x0c8000 +[ 0.558173] kernel: pci 0000:00:15.1: reg 0x10: [mem 0x00000000-0x00000fff 64bit] +[ 0.560397] kernel: pci 0000:00:15.3: [8086:34eb] type 00 class 0x0c8000 +[ 0.560456] kernel: pci 0000:00:15.3: reg 0x10: [mem 0x00000000-0x00000fff 64bit] +[ 0.562530] kernel: pci 0000:00:16.0: [8086:34e0] type 00 class 0x078000 +[ 0.562555] kernel: pci 0000:00:16.0: reg 0x10: [mem 0x603ebbd000-0x603ebbdfff 64bit] +[ 0.562649] kernel: pci 0000:00:16.0: PME# supported from D3hot +[ 0.564840] kernel: pci 0000:00:1d.0: [8086:34b0] type 01 class 0x060400 +[ 0.564939] kernel: pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold +[ 0.567103] kernel: pci 0000:00:1d.7: [8086:34b7] type 01 class 0x060400 +[ 0.567196] kernel: pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold +[ 0.569432] kernel: pci 0000:00:1f.0: [8086:3482] type 00 class 0x060100 +[ 0.571531] kernel: pci 0000:00:1f.3: [8086:34c8] type 00 class 0x040380 +[ 0.571571] kernel: pci 0000:00:1f.3: reg 0x10: [mem 0x603ebb0000-0x603ebb3fff 64bit] +[ 0.571625] kernel: pci 0000:00:1f.3: reg 0x20: [mem 0x603ea00000-0x603eafffff 64bit] +[ 0.571748] kernel: pci 0000:00:1f.3: PME# supported from D3hot D3cold +[ 0.573959] kernel: pci 0000:00:1f.4: [8086:34a3] type 00 class 0x0c0500 +[ 0.573990] kernel: pci 0000:00:1f.4: reg 0x10: [mem 0x603ebbc000-0x603ebbc0ff 64bit] +[ 0.574022] kernel: pci 0000:00:1f.4: reg 0x20: [io 0xefa0-0xefbf] +[ 0.575085] kernel: pci 0000:00:1f.5: [8086:34a4] type 00 class 0x0c8000 +[ 0.575137] kernel: pci 0000:00:1f.5: reg 0x10: [mem 0xfe010000-0xfe010fff] +[ 0.576216] kernel: pci 0000:00:07.0: PCI bridge to [bus 01-2b] +[ 0.576220] kernel: pci 0000:00:07.0: bridge window [mem 0x80000000-0x8c1fffff] +[ 0.576223] kernel: pci 0000:00:07.0: bridge window [mem 0x6000000000-0x601bffffff 64bit pref] +[ 0.576253] kernel: pci 0000:00:07.2: PCI bridge to [bus 2c-56] +[ 0.576256] kernel: pci 0000:00:07.2: bridge window [mem 0x72000000-0x7e1fffff] +[ 0.576259] kernel: pci 0000:00:07.2: bridge window [mem 0x6020000000-0x603bffffff 64bit pref] +[ 0.576374] kernel: pci 0000:57:00.0: [1e0f:0001] type 00 class 0x010802 +[ 0.576423] kernel: pci 0000:57:00.0: reg 0x10: [mem 0x8cc00000-0x8cc03fff 64bit] +[ 0.576702] kernel: pci 0000:57:00.0: PME# supported from D0 D3hot +[ 0.576924] kernel: pci 0000:00:1d.0: PCI bridge to [bus 57] +[ 0.576929] kernel: pci 0000:00:1d.0: bridge window [mem 0x8cc00000-0x8ccfffff] +[ 0.577009] kernel: pci 0000:58:00.0: [10ec:525a] type 00 class 0xff0000 +[ 0.577048] kernel: pci 0000:58:00.0: reg 0x14: [mem 0x8c200000-0x8c200fff] +[ 0.577205] kernel: pci 0000:58:00.0: supports D1 D2 +[ 0.577206] kernel: pci 0000:58:00.0: PME# supported from D1 D2 D3hot D3cold +[ 0.577362] kernel: pci 0000:00:1d.7: PCI bridge to [bus 58] +[ 0.577365] kernel: pci 0000:00:1d.7: bridge window [io 0x3000-0x3fff] +[ 0.577368] kernel: pci 0000:00:1d.7: bridge window [mem 0x8c200000-0x8cbfffff] +[ 0.577372] kernel: pci 0000:00:1d.7: bridge window [mem 0x603e000000-0x603e9fffff 64bit pref] +[ 0.596119] kernel: ACPI: EC: interrupt unblocked +[ 0.596120] kernel: ACPI: EC: event unblocked +[ 0.596131] kernel: ACPI: EC: EC_CMD/EC_SC=0x934, EC_DATA=0x930 +[ 0.596132] kernel: ACPI: EC: GPE=0x6e +[ 0.596133] kernel: ACPI: \_SB_.PCI0.LPCB.ECDV: Boot DSDT EC initialization complete +[ 0.596135] kernel: ACPI: \_SB_.PCI0.LPCB.ECDV: EC: Used to handle transactions and events +[ 0.596211] kernel: iommu: Default domain type: Translated +[ 0.596211] kernel: iommu: DMA domain TLB invalidation policy: lazy mode +[ 0.596211] kernel: SCSI subsystem initialized +[ 0.596211] kernel: libata version 3.00 loaded. +[ 0.596211] kernel: pci 0000:00:02.0: vgaarb: setting as boot VGA device +[ 0.596211] kernel: pci 0000:00:02.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none +[ 0.596211] kernel: pci 0000:00:02.0: vgaarb: bridge control possible +[ 0.596211] kernel: vgaarb: loaded +[ 0.596211] kernel: ACPI: bus type USB registered +[ 0.596211] kernel: usbcore: registered new interface driver usbfs +[ 0.596211] kernel: usbcore: registered new interface driver hub +[ 0.596211] kernel: usbcore: registered new device driver usb +[ 0.596211] kernel: pps_core: LinuxPPS API ver. 1 registered +[ 0.596211] kernel: pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti +[ 0.596211] kernel: PTP clock support registered +[ 0.596211] kernel: EDAC MC: Ver: 3.0.0 +[ 0.596211] kernel: Registered efivars operations +[ 0.596211] kernel: NetLabel: Initializing +[ 0.596211] kernel: NetLabel: domain hash size = 128 +[ 0.596211] kernel: NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO +[ 0.596211] kernel: NetLabel: unlabeled traffic allowed by default +[ 0.596211] kernel: PCI: Using ACPI for IRQ routing +[ 0.613813] kernel: PCI: pci_cache_line_size set to 64 bytes +[ 0.613922] kernel: pci 0000:00:1f.5: can't claim BAR 0 [mem 0xfe010000-0xfe010fff]: no compatible bridge window +[ 0.614019] kernel: e820: reserve RAM buffer [mem 0x0009e000-0x0009ffff] +[ 0.614020] kernel: e820: reserve RAM buffer [mem 0x42ca9000-0x43ffffff] +[ 0.614021] kernel: e820: reserve RAM buffer [mem 0x5f5c8000-0x5fffffff] +[ 0.614022] kernel: e820: reserve RAM buffer [mem 0x5f5d1000-0x5fffffff] +[ 0.614023] kernel: e820: reserve RAM buffer [mem 0x621a5000-0x63ffffff] +[ 0.614024] kernel: e820: reserve RAM buffer [mem 0x88f800000-0x88fffffff] +[ 0.614963] kernel: clocksource: Switched to clocksource tsc-early +[ 0.621999] kernel: VFS: Disk quotas dquot_6.6.0 +[ 0.622010] kernel: VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) +[ 0.622096] kernel: AppArmor: AppArmor Filesystem Enabled +[ 0.622120] kernel: pnp: PnP ACPI init +[ 0.622334] kernel: system 00:00: [io 0x0680-0x069f] has been reserved +[ 0.622337] kernel: system 00:00: [io 0x164e-0x164f] has been reserved +[ 0.622434] kernel: system 00:02: [io 0x1854-0x1857] has been reserved +[ 0.623467] kernel: system 00:05: [mem 0xfed10000-0xfed17fff] has been reserved +[ 0.623469] kernel: system 00:05: [mem 0xfeda0000-0xfeda0fff] has been reserved +[ 0.623470] kernel: system 00:05: [mem 0xfeda1000-0xfeda1fff] has been reserved +[ 0.623471] kernel: system 00:05: [mem 0xc0000000-0xcfffffff] has been reserved +[ 0.623473] kernel: system 00:05: [mem 0xfed20000-0xfed7ffff] could not be reserved +[ 0.623474] kernel: system 00:05: [mem 0xfed90000-0xfed93fff] could not be reserved +[ 0.623475] kernel: system 00:05: [mem 0xfee00000-0xfeefffff] has been reserved +[ 0.623969] kernel: system 00:06: [io 0x1800-0x18fe] could not be reserved +[ 0.623970] kernel: system 00:06: [mem 0xfd000000-0xfd68ffff] has been reserved +[ 0.623971] kernel: system 00:06: [mem 0xfd6b0000-0xfd6cffff] has been reserved +[ 0.623972] kernel: system 00:06: [mem 0xfd6f0000-0xfdffffff] has been reserved +[ 0.623973] kernel: system 00:06: [mem 0xfe000000-0xfe01ffff] has been reserved +[ 0.623974] kernel: system 00:06: [mem 0xfe200000-0xfe7fffff] has been reserved +[ 0.623975] kernel: system 00:06: [mem 0xff000000-0xffffffff] could not be reserved +[ 0.624193] kernel: system 00:07: [io 0x2000-0x20fe] has been reserved +[ 0.624351] kernel: system 00:08: [mem 0xfe038000-0xfe038fff] has been reserved +[ 0.627770] kernel: pnp: PnP ACPI: found 9 devices +[ 0.633003] kernel: clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns +[ 0.633045] kernel: NET: Registered PF_INET protocol family +[ 0.633220] kernel: IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear) +[ 0.634599] kernel: tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear) +[ 0.634754] kernel: TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear) +[ 0.635027] kernel: TCP bind hash table entries: 65536 (order: 8, 1048576 bytes, linear) +[ 0.635105] kernel: TCP: Hash tables configured (established 262144 bind 65536) +[ 0.635230] kernel: MPTCP token hash table entries: 32768 (order: 7, 786432 bytes, linear) +[ 0.635328] kernel: UDP hash table entries: 16384 (order: 7, 524288 bytes, linear) +[ 0.635389] kernel: UDP-Lite hash table entries: 16384 (order: 7, 524288 bytes, linear) +[ 0.635474] kernel: NET: Registered PF_UNIX/PF_LOCAL protocol family +[ 0.635478] kernel: NET: Registered PF_XDP protocol family +[ 0.635484] kernel: pci 0000:00:07.0: bridge window [io 0x1000-0x0fff] to [bus 01-2b] add_size 1000 +[ 0.635487] kernel: pci 0000:00:07.2: bridge window [io 0x1000-0x0fff] to [bus 2c-56] add_size 1000 +[ 0.635493] kernel: pci 0000:00:07.0: BAR 13: assigned [io 0x5000-0x5fff] +[ 0.635495] kernel: pci 0000:00:07.2: BAR 13: assigned [io 0x6000-0x6fff] +[ 0.635497] kernel: pci 0000:00:15.0: BAR 0: assigned [mem 0x4010000000-0x4010000fff 64bit] +[ 0.635546] kernel: pci 0000:00:15.1: BAR 0: assigned [mem 0x4010001000-0x4010001fff 64bit] +[ 0.635593] kernel: pci 0000:00:15.3: BAR 0: assigned [mem 0x4010002000-0x4010002fff 64bit] +[ 0.635641] kernel: pci 0000:00:1f.5: BAR 0: assigned [mem 0x70800000-0x70800fff] +[ 0.635651] kernel: pci 0000:00:07.0: PCI bridge to [bus 01-2b] +[ 0.635653] kernel: pci 0000:00:07.0: bridge window [io 0x5000-0x5fff] +[ 0.635655] kernel: pci 0000:00:07.0: bridge window [mem 0x80000000-0x8c1fffff] +[ 0.635658] kernel: pci 0000:00:07.0: bridge window [mem 0x6000000000-0x601bffffff 64bit pref] +[ 0.635661] kernel: pci 0000:00:07.2: PCI bridge to [bus 2c-56] +[ 0.635663] kernel: pci 0000:00:07.2: bridge window [io 0x6000-0x6fff] +[ 0.635665] kernel: pci 0000:00:07.2: bridge window [mem 0x72000000-0x7e1fffff] +[ 0.635667] kernel: pci 0000:00:07.2: bridge window [mem 0x6020000000-0x603bffffff 64bit pref] +[ 0.635671] kernel: pci 0000:00:1d.0: PCI bridge to [bus 57] +[ 0.635676] kernel: pci 0000:00:1d.0: bridge window [mem 0x8cc00000-0x8ccfffff] +[ 0.635683] kernel: pci 0000:00:1d.7: PCI bridge to [bus 58] +[ 0.635685] kernel: pci 0000:00:1d.7: bridge window [io 0x3000-0x3fff] +[ 0.635689] kernel: pci 0000:00:1d.7: bridge window [mem 0x8c200000-0x8cbfffff] +[ 0.635692] kernel: pci 0000:00:1d.7: bridge window [mem 0x603e000000-0x603e9fffff 64bit pref] +[ 0.635697] kernel: pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window] +[ 0.635698] kernel: pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window] +[ 0.635699] kernel: pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000fffff window] +[ 0.635700] kernel: pci_bus 0000:00: resource 7 [mem 0x70800000-0xbfffffff window] +[ 0.635701] kernel: pci_bus 0000:00: resource 8 [mem 0x4000000000-0x7fffffffff window] +[ 0.635702] kernel: pci_bus 0000:01: resource 0 [io 0x5000-0x5fff] +[ 0.635703] kernel: pci_bus 0000:01: resource 1 [mem 0x80000000-0x8c1fffff] +[ 0.635704] kernel: pci_bus 0000:01: resource 2 [mem 0x6000000000-0x601bffffff 64bit pref] +[ 0.635705] kernel: pci_bus 0000:2c: resource 0 [io 0x6000-0x6fff] +[ 0.635705] kernel: pci_bus 0000:2c: resource 1 [mem 0x72000000-0x7e1fffff] +[ 0.635706] kernel: pci_bus 0000:2c: resource 2 [mem 0x6020000000-0x603bffffff 64bit pref] +[ 0.635707] kernel: pci_bus 0000:57: resource 1 [mem 0x8cc00000-0x8ccfffff] +[ 0.635708] kernel: pci_bus 0000:58: resource 0 [io 0x3000-0x3fff] +[ 0.635709] kernel: pci_bus 0000:58: resource 1 [mem 0x8c200000-0x8cbfffff] +[ 0.635710] kernel: pci_bus 0000:58: resource 2 [mem 0x603e000000-0x603e9fffff 64bit pref] +[ 0.636195] kernel: PCI: CLS 0 bytes, default 64 +[ 0.636202] kernel: DMAR: Intel-IOMMU force enabled due to platform opt in +[ 0.636213] kernel: DMAR: No ATSR found +[ 0.636214] kernel: DMAR: No SATC found +[ 0.636215] kernel: DMAR: IOMMU feature fl1gp_support inconsistent +[ 0.636216] kernel: DMAR: IOMMU feature pgsel_inv inconsistent +[ 0.636216] kernel: DMAR: IOMMU feature nwfs inconsistent +[ 0.636217] kernel: DMAR: IOMMU feature pds inconsistent +[ 0.636217] kernel: DMAR: IOMMU feature eafs inconsistent +[ 0.636218] kernel: DMAR: IOMMU feature prs inconsistent +[ 0.636218] kernel: DMAR: IOMMU feature nest inconsistent +[ 0.636219] kernel: DMAR: IOMMU feature mts inconsistent +[ 0.636219] kernel: DMAR: IOMMU feature sc_support inconsistent +[ 0.636219] kernel: DMAR: IOMMU feature dev_iotlb_support inconsistent +[ 0.636220] kernel: DMAR: dmar1: Using Queued invalidation +[ 0.636223] kernel: DMAR: dmar0: Using Queued invalidation +[ 0.636224] kernel: DMAR: dmar2: Using Queued invalidation +[ 0.636305] kernel: Trying to unpack rootfs image as initramfs... +[ 0.636407] kernel: pci 0000:00:00.0: Adding to iommu group 0 +[ 0.636415] kernel: pci 0000:00:02.0: Adding to iommu group 1 +[ 0.636422] kernel: pci 0000:00:04.0: Adding to iommu group 2 +[ 0.636427] kernel: pci 0000:00:05.0: Adding to iommu group 3 +[ 0.636436] kernel: pci 0000:00:07.0: Adding to iommu group 4 +[ 0.636444] kernel: pci 0000:00:07.2: Adding to iommu group 5 +[ 0.636458] kernel: pci 0000:00:0d.0: Adding to iommu group 6 +[ 0.636464] kernel: pci 0000:00:0d.2: Adding to iommu group 6 +[ 0.636470] kernel: pci 0000:00:0d.3: Adding to iommu group 6 +[ 0.636478] kernel: pci 0000:00:12.0: Adding to iommu group 7 +[ 0.636498] kernel: pci 0000:00:14.0: Adding to iommu group 8 +[ 0.636507] kernel: pci 0000:00:14.2: Adding to iommu group 8 +[ 0.636513] kernel: pci 0000:00:14.3: Adding to iommu group 9 +[ 0.636525] kernel: pci 0000:00:15.0: Adding to iommu group 10 +[ 0.636531] kernel: pci 0000:00:15.1: Adding to iommu group 10 +[ 0.636537] kernel: pci 0000:00:15.3: Adding to iommu group 10 +[ 0.636545] kernel: pci 0000:00:16.0: Adding to iommu group 11 +[ 0.636556] kernel: pci 0000:00:1d.0: Adding to iommu group 12 +[ 0.636563] kernel: pci 0000:00:1d.7: Adding to iommu group 12 +[ 0.636577] kernel: pci 0000:00:1f.0: Adding to iommu group 13 +[ 0.636584] kernel: pci 0000:00:1f.3: Adding to iommu group 13 +[ 0.636591] kernel: pci 0000:00:1f.4: Adding to iommu group 13 +[ 0.636598] kernel: pci 0000:00:1f.5: Adding to iommu group 13 +[ 0.636602] kernel: pci 0000:57:00.0: Adding to iommu group 12 +[ 0.636606] kernel: pci 0000:58:00.0: Adding to iommu group 12 +[ 0.636665] kernel: DMAR: Intel(R) Virtualization Technology for Directed I/O +[ 0.636666] kernel: PCI-DMA: Using software bounce buffering for IO (SWIOTLB) +[ 0.636667] kernel: software IO TLB: mapped [mem 0x000000005b5c0000-0x000000005f5c0000] (64MB) +[ 0.636891] kernel: clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x159647815e3, max_idle_ns: 440795269835 ns +[ 0.636920] kernel: clocksource: Switched to clocksource tsc +[ 0.637336] kernel: Initialise system trusted keyrings +[ 0.637353] kernel: Key type blacklist registered +[ 0.637406] kernel: workingset: timestamp_bits=36 max_order=23 bucket_order=0 +[ 0.638402] kernel: zbud: loaded +[ 0.638589] kernel: squashfs: version 4.0 (2009/01/31) Phillip Lougher +[ 0.638707] kernel: fuse: init (API version 7.34) +[ 0.638835] kernel: integrity: Platform Keyring initialized +[ 0.646954] kernel: Key type asymmetric registered +[ 0.646956] kernel: Asymmetric key parser 'x509' registered +[ 0.646973] kernel: Block layer SCSI generic (bsg) driver version 0.4 loaded (major 243) +[ 0.647017] kernel: io scheduler mq-deadline registered +[ 0.647471] kernel: pcieport 0000:00:07.0: PME: Signaling with IRQ 123 +[ 0.647492] kernel: pcieport 0000:00:07.0: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ +[ 0.647793] kernel: pcieport 0000:00:07.2: PME: Signaling with IRQ 124 +[ 0.647807] kernel: pcieport 0000:00:07.2: pciehp: Slot #0 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ +[ 0.648076] kernel: pcieport 0000:00:1d.0: PME: Signaling with IRQ 125 +[ 0.648269] kernel: pcieport 0000:00:1d.7: PME: Signaling with IRQ 126 +[ 0.648290] kernel: pcieport 0000:00:1d.7: pciehp: Slot #15 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+ +[ 0.648435] kernel: shpchp: Standard Hot Plug PCI Controller Driver version: 0.4 +[ 0.648709] kernel: Monitor-Mwait will be used to enter C-1 state +[ 0.648712] kernel: Monitor-Mwait will be used to enter C-2 state +[ 0.648714] kernel: Monitor-Mwait will be used to enter C-3 state +[ 0.648715] kernel: ACPI: \_SB_.PR00: Found 3 idle states +[ 0.653078] kernel: ACPI: AC: AC Adapter [AC] (off-line) +[ 0.653136] kernel: input: Lid Switch as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0D:00/input/input0 +[ 0.653161] kernel: ACPI: button: Lid Switch [LID0] +[ 0.653176] kernel: input: Power Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0C:00/input/input1 +[ 0.653193] kernel: ACPI: button: Power Button [PBTN] +[ 0.653207] kernel: input: Sleep Button as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0C0E:00/input/input2 +[ 0.653215] kernel: ACPI: button: Sleep Button [SBTN] +[ 0.653338] kernel: smpboot: Estimated ratio of average max frequency by base frequency (times 1024): 2389 +[ 0.657141] kernel: Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled +[ 0.658132] kernel: serial 0000:00:12.0: enabling device (0000 -> 0002) +[ 0.659538] kernel: hpet_acpi_add: no address or irqs in _CRS +[ 0.659584] kernel: Linux agpgart interface v0.103 +[ 0.661281] kernel: tpm_tis STM7408:00: 2.0 TPM (device-id 0x0, rev-id 78) +[ 0.676902] kernel: loop: module loaded +[ 0.677409] kernel: tun: Universal TUN/TAP device driver, 1.6 +[ 0.677554] kernel: PPP generic driver version 2.4.2 +[ 0.677597] kernel: VFIO - User Level meta-driver version: 0.3 +[ 0.677766] kernel: ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver +[ 0.677768] kernel: ehci-pci: EHCI PCI platform driver +[ 0.677779] kernel: ehci-platform: EHCI generic platform driver +[ 0.677784] kernel: ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver +[ 0.677786] kernel: ohci-pci: OHCI PCI platform driver +[ 0.677790] kernel: ohci-platform: OHCI generic platform driver +[ 0.677795] kernel: uhci_hcd: USB Universal Host Controller Interface driver +[ 0.677858] kernel: i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12 +[ 0.678319] kernel: i8042: Warning: Keylock active +[ 0.681571] kernel: serio: i8042 KBD port at 0x60,0x64 irq 1 +[ 0.681577] kernel: serio: i8042 AUX port at 0x60,0x64 irq 12 +[ 0.681664] kernel: mousedev: PS/2 mouse device common for all mice +[ 0.681799] kernel: rtc_cmos 00:01: RTC can wake from S4 +[ 0.683372] kernel: rtc_cmos 00:01: registered as rtc0 +[ 0.683565] kernel: rtc_cmos 00:01: setting system clock to 2022-08-01T11:52:19 UTC (1659354739) +[ 0.683583] kernel: rtc_cmos 00:01: alarms up to one month, y3k, 242 bytes nvram +[ 0.683593] kernel: i2c_dev: i2c /dev entries driver +[ 0.683859] kernel: device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log. +[ 0.683891] kernel: input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input3 +[ 0.683902] kernel: device-mapper: uevent: version 1.0.3 +[ 0.683987] kernel: device-mapper: ioctl: 4.45.0-ioctl (2021-03-22) initialised: dm-devel@redhat.com +[ 0.684005] kernel: platform eisa.0: Probing EISA bus 0 +[ 0.684007] kernel: platform eisa.0: EISA: Cannot allocate resource for mainboard +[ 0.684008] kernel: platform eisa.0: Cannot allocate resource for EISA slot 1 +[ 0.684009] kernel: platform eisa.0: Cannot allocate resource for EISA slot 2 +[ 0.684010] kernel: platform eisa.0: Cannot allocate resource for EISA slot 3 +[ 0.684011] kernel: platform eisa.0: Cannot allocate resource for EISA slot 4 +[ 0.684011] kernel: platform eisa.0: Cannot allocate resource for EISA slot 5 +[ 0.684012] kernel: platform eisa.0: Cannot allocate resource for EISA slot 6 +[ 0.684013] kernel: platform eisa.0: Cannot allocate resource for EISA slot 7 +[ 0.684013] kernel: platform eisa.0: Cannot allocate resource for EISA slot 8 +[ 0.684014] kernel: platform eisa.0: EISA: Detected 0 cards +[ 0.684018] kernel: intel_pstate: Intel P-state driver initializing +[ 0.685986] kernel: intel_pstate: HWP enabled +[ 0.686884] kernel: ledtrig-cpu: registered to indicate activity on CPUs +[ 0.686902] kernel: efifb: probing for efifb +[ 0.686924] kernel: efifb: showing boot graphics +[ 0.700330] kernel: ACPI: battery: Slot [BAT0] (battery present) +[ 0.701819] kernel: efifb: framebuffer at 0x4000000000, using 36000k, total 36000k +[ 0.701820] kernel: efifb: mode is 3840x2400x32, linelength=15360, pages=1 +[ 0.701821] kernel: efifb: scrolling: redraw +[ 0.701822] kernel: efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0 +[ 0.702045] kernel: Console: switching to colour frame buffer device 240x75 +[ 0.719953] kernel: fb0: EFI VGA frame buffer device +[ 0.719967] kernel: EFI Variables Facility v0.08 2004-May-17 +[ 0.752433] kernel: intel_pmc_core INT33A1:00: initialized +[ 0.752543] kernel: drop_monitor: Initializing network drop monitor service +[ 0.752673] kernel: NET: Registered PF_INET6 protocol family +[ 0.859478] kernel: Freeing initrd memory: 120872K +[ 0.864756] kernel: Segment Routing with IPv6 +[ 0.864771] kernel: In-situ OAM (IOAM) with IPv6 +[ 0.864803] kernel: NET: Registered PF_PACKET protocol family +[ 0.864859] kernel: Key type dns_resolver registered +[ 0.865745] kernel: microcode: sig=0x706e5, pf=0x80, revision=0xb0 +[ 0.865811] kernel: microcode: Microcode Update Driver: v2.2. +[ 0.865817] kernel: IPI shorthand broadcast: enabled +[ 0.865827] kernel: sched_clock: Marking stable (858936774, 6871877)->(882715611, -16906960) +[ 0.866053] kernel: registered taskstats version 1 +[ 0.866117] kernel: Loading compiled-in X.509 certificates +[ 0.866686] kernel: Loaded X.509 cert 'Build time autogenerated kernel key: 7ce47e71951e841b70fb7b266d04f824c828eec8' +[ 0.867160] kernel: Loaded X.509 cert 'Canonical Ltd. Live Patch Signing: 14df34d1a87cf37625abec039ef2bf521249b969' +[ 0.867631] kernel: Loaded X.509 cert 'Canonical Ltd. Kernel Module Signing: 88f752e560a1e0737e31163a466ad7b70a850c19' +[ 0.867632] kernel: blacklist: Loading compiled-in revocation X.509 certificates +[ 0.867649] kernel: Loaded X.509 cert 'Canonical Ltd. Secure Boot Signing: 61482aa2830d0ab2ad5af10b7250da9033ddcef0' +[ 0.867859] kernel: zswap: loaded using pool lzo/zbud +[ 0.868348] kernel: Key type ._fscrypt registered +[ 0.868349] kernel: Key type .fscrypt registered +[ 0.868350] kernel: Key type fscrypt-provisioning registered +[ 0.868575] kernel: Key type trusted registered +[ 0.870514] kernel: Key type encrypted registered +[ 0.870516] kernel: AppArmor: AppArmor sha1 policy hashing enabled +[ 0.871112] kernel: integrity: Loading X.509 certificate: UEFI:db +[ 0.871131] kernel: integrity: Loaded X.509 cert 'Dell Inc.: Dell Bios DB Key: 637fa7a9f74471b406de0511557071fd41dd5487' +[ 0.871132] kernel: integrity: Loading X.509 certificate: UEFI:db +[ 0.871147] kernel: integrity: Loaded X.509 cert 'Dell Inc.: Dell Bios FW Aux Authority 2018: dd4df7c3f5ce7e5a77847915abc37b031f6b10bd' +[ 0.871148] kernel: integrity: Loading X.509 certificate: UEFI:db +[ 0.871164] kernel: integrity: Loaded X.509 cert 'Microsoft Windows Production PCA 2011: a92902398e16c49778cd90f99e4f9ae17c55af53' +[ 0.871165] kernel: integrity: Loading X.509 certificate: UEFI:db +[ 0.871183] kernel: integrity: Loaded X.509 cert 'Microsoft Corporation UEFI CA 2011: 13adbf4309bd82709c8cd54f316ed522988a1bd4' +[ 0.871564] kernel: integrity: Revoking X.509 certificate: UEFI:dbx +[ 0.871583] kernel: blacklist: Revoked X.509 cert 'Microsoft Windows PCA 2010: d14fa98a0708cef4241898e500fff3d6791d37bc' +[ 0.872139] kernel: integrity: Revoking X.509 certificate: UEFI:dbx +[ 0.872155] kernel: blacklist: Revoked X.509 cert 'Canonical Ltd. Secure Boot Signing: 61482aa2830d0ab2ad5af10b7250da9033ddcef0' +[ 0.872156] kernel: integrity: Revoking X.509 certificate: UEFI:dbx +[ 0.872176] kernel: blacklist: Revoked X.509 cert 'Debian Secure Boot Signer: 00a7468def' +[ 0.873367] kernel: integrity: Loading X.509 certificate: UEFI:MokListRT (MOKvar table) +[ 0.873626] kernel: integrity: Loaded X.509 cert 'Canonical Ltd. Master Certificate Authority: ad91990bc22ab1f517048c23b6655a268e345a63' +[ 0.873627] kernel: integrity: Loading X.509 certificate: UEFI:MokListRT (MOKvar table) +[ 0.873763] kernel: integrity: Loaded X.509 cert 'ubuntu Secure Boot Module Signature key: 96d5441d6875bbe2ba4e9c390ad4c55331088cd8' +[ 0.873764] kernel: integrity: Loading X.509 certificate: UEFI:MokListRT (MOKvar table) +[ 0.873901] kernel: integrity: Loaded X.509 cert 'ubuntu Secure Boot Module Signature key: 30e27a595f986493571176b67b4f348cd34f8c76' +[ 0.873901] kernel: integrity: Loading X.509 certificate: UEFI:MokListRT (MOKvar table) +[ 0.874043] kernel: integrity: Loaded X.509 cert 'ubuntu Secure Boot Module Signature key: ba0c0cf21b1fc9de6eff072e83c5ea0805ca5c76' +[ 0.874049] kernel: Loading compiled-in module X.509 certificates +[ 0.874499] kernel: Loaded X.509 cert 'Build time autogenerated kernel key: 7ce47e71951e841b70fb7b266d04f824c828eec8' +[ 0.874500] kernel: ima: Allocated hash algorithm: sha1 +[ 0.890362] kernel: ima: No architecture policies found +[ 0.890395] kernel: evm: Initialising EVM extended attributes: +[ 0.890397] kernel: evm: security.selinux +[ 0.890399] kernel: evm: security.SMACK64 +[ 0.890400] kernel: evm: security.SMACK64EXEC +[ 0.890401] kernel: evm: security.SMACK64TRANSMUTE +[ 0.890402] kernel: evm: security.SMACK64MMAP +[ 0.890402] kernel: evm: security.apparmor +[ 0.890403] kernel: evm: security.ima +[ 0.890404] kernel: evm: security.capability +[ 0.890405] kernel: evm: HMAC attrs: 0x1 +[ 0.890823] kernel: BERT: Error records from previous boot: +[ 0.890825] kernel: BERT: Max print length exceeded, table data is available at: + /sys/firmware/acpi/tables/data/BERT +[ 0.890976] kernel: PM: Magic number: 2:591:882 +[ 0.891360] kernel: RAS: Correctable Errors collector initialized. +[ 0.891368] kernel: Lockdown: swapper/0: hibernation is restricted; see man kernel_lockdown.7 +[ 0.904196] kernel: Freeing unused decrypted memory: 2036K +[ 0.904812] kernel: Freeing unused kernel image (initmem) memory: 2912K +[ 0.959035] kernel: Write protecting the kernel read-only data: 30720k +[ 0.959818] kernel: Freeing unused kernel image (text/rodata gap) memory: 2036K +[ 0.960211] kernel: Freeing unused kernel image (rodata/data gap) memory: 1516K +[ 0.979430] kernel: x86/mm: Checked W+X mappings: passed, no W+X pages found. +[ 0.979435] kernel: Run /init as init process +[ 0.979437] kernel: with arguments: +[ 0.979438] kernel: /init +[ 0.979439] kernel: splash +[ 0.979439] kernel: with environment: +[ 0.979440] kernel: HOME=/ +[ 0.979441] kernel: TERM=linux +[ 0.979441] kernel: BOOT_IMAGE=/vmlinuz-5.15.0-41-generic +[ 1.064065] kernel: hid: raw HID events driver (C) Jiri Kosina +[ 1.064334] kernel: acpi PNP0C14:02: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:01) +[ 1.064394] kernel: wmi_bus wmi_bus-PNP0C14:03: WQBC data block query control method not found +[ 1.064396] kernel: acpi PNP0C14:03: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:01) +[ 1.072132] kernel: xhci_hcd 0000:00:0d.0: xHCI Host Controller +[ 1.072141] kernel: xhci_hcd 0000:00:0d.0: new USB bus registered, assigned bus number 1 +[ 1.073238] kernel: xhci_hcd 0000:00:0d.0: hcc params 0x20007fc1 hci version 0x110 quirks 0x0000000200009810 +[ 1.073440] kernel: usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 +[ 1.073444] kernel: usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 +[ 1.073446] kernel: usb usb1: Product: xHCI Host Controller +[ 1.073448] kernel: usb usb1: Manufacturer: Linux 5.15.0-41-generic xhci-hcd +[ 1.073449] kernel: usb usb1: SerialNumber: 0000:00:0d.0 +[ 1.075335] kernel: ACPI: bus type thunderbolt registered +[ 1.078123] kernel: rtsx_pci 0000:58:00.0: enabling device (0000 -> 0002) +[ 1.078717] kernel: hub 1-0:1.0: USB hub found +[ 1.078737] kernel: hub 1-0:1.0: 1 port detected +[ 1.080388] kernel: nvme nvme0: pci function 0000:57:00.0 +[ 1.083339] kernel: xhci_hcd 0000:00:0d.0: xHCI Host Controller +[ 1.083345] kernel: xhci_hcd 0000:00:0d.0: new USB bus registered, assigned bus number 2 +[ 1.083350] kernel: xhci_hcd 0000:00:0d.0: Host supports USB 3.1 Enhanced SuperSpeed +[ 1.084995] kernel: acpi PNP0C14:04: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:01) +[ 1.085144] kernel: acpi PNP0C14:05: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:01) +[ 1.085200] kernel: wmi: Failed to parse WDG method +[ 1.085340] kernel: acpi PNP0C14:07: duplicate WMI GUID 05901221-D566-11D1-B2F0-00A0C9062910 (first instance was on PNP0C14:01) +[ 1.085410] kernel: usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.15 +[ 1.085412] kernel: usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 +[ 1.085413] kernel: usb usb2: Product: xHCI Host Controller +[ 1.085414] kernel: usb usb2: Manufacturer: Linux 5.15.0-41-generic xhci-hcd +[ 1.085417] kernel: usb usb2: SerialNumber: 0000:00:0d.0 +[ 1.085546] kernel: hub 2-0:1.0: USB hub found +[ 1.085555] kernel: hub 2-0:1.0: 4 ports detected +[ 1.086386] kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller +[ 1.086390] kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 3 +[ 1.087571] kernel: xhci_hcd 0000:00:14.0: hcc params 0x20007fc1 hci version 0x110 quirks 0x0000000000009810 +[ 1.087793] kernel: usb usb3: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.15 +[ 1.087795] kernel: usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1 +[ 1.087796] kernel: usb usb3: Product: xHCI Host Controller +[ 1.087797] kernel: usb usb3: Manufacturer: Linux 5.15.0-41-generic xhci-hcd +[ 1.087798] kernel: usb usb3: SerialNumber: 0000:00:14.0 +[ 1.087888] kernel: hub 3-0:1.0: USB hub found +[ 1.087902] kernel: hub 3-0:1.0: 12 ports detected +[ 1.089473] kernel: xhci_hcd 0000:00:14.0: xHCI Host Controller +[ 1.089476] kernel: xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 4 +[ 1.089478] kernel: xhci_hcd 0000:00:14.0: Host supports USB 3.1 Enhanced SuperSpeed +[ 1.089504] kernel: usb usb4: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 5.15 +[ 1.089506] kernel: usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1 +[ 1.089507] kernel: usb usb4: Product: xHCI Host Controller +[ 1.089508] kernel: usb usb4: Manufacturer: Linux 5.15.0-41-generic xhci-hcd +[ 1.089509] kernel: usb usb4: SerialNumber: 0000:00:14.0 +[ 1.089592] kernel: hub 4-0:1.0: USB hub found +[ 1.089604] kernel: hub 4-0:1.0: 6 ports detected +[ 1.089803] kernel: usb: port power management may be unreliable +[ 1.094935] kernel: intel-lpss 0000:00:15.0: enabling device (0000 -> 0002) +[ 1.095441] kernel: idma64 idma64.0: Found Intel integrated DMA 64-bit +[ 1.097066] kernel: nvme nvme0: allocated 61 MiB host memory buffer. +[ 1.100689] kernel: cryptd: max_cpu_qlen set to 1000 +[ 1.130877] kernel: intel-lpss 0000:00:15.1: enabling device (0000 -> 0002) +[ 1.131202] kernel: idma64 idma64.1: Found Intel integrated DMA 64-bit +[ 1.147698] kernel: AVX2 version of gcm_enc/dec engaged. +[ 1.147749] kernel: AES CTR mode by8 optimization enabled +[ 1.170888] kernel: intel-lpss 0000:00:15.3: enabling device (0000 -> 0002) +[ 1.171323] kernel: idma64 idma64.2: Found Intel integrated DMA 64-bit +[ 1.248218] kernel: nvme nvme0: 8/0/0 default/read/poll queues +[ 1.251433] kernel: nvme0n1: p1 p2 p3 +[ 1.338260] kernel: thunderbolt 0000:00:0d.2: 0: uid crc8 mismatch (expected: 0x80, got: 0x27) +[ 1.426944] kernel: usb 3-10: new full-speed USB device number 2 using xhci_hcd +[ 1.545100] kernel: i801_smbus 0000:00:1f.4: enabling device (0000 -> 0003) +[ 1.545993] kernel: i801_smbus 0000:00:1f.4: SPD Write Disable is set +[ 1.546069] kernel: i801_smbus 0000:00:1f.4: SMBus using PCI interrupt +[ 1.563244] kernel: input: WCOM48EE:00 056A:48EE Touchscreen as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-WCOM48EE:00/0018:056A:48EE.0001/input/input6 +[ 1.563387] kernel: input: WCOM48EE:00 056A:48EE as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-WCOM48EE:00/0018:056A:48EE.0001/input/input7 +[ 1.563459] kernel: input: WCOM48EE:00 056A:48EE as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-WCOM48EE:00/0018:056A:48EE.0001/input/input8 +[ 1.563781] kernel: input: WCOM48EE:00 056A:48EE as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-WCOM48EE:00/0018:056A:48EE.0001/input/input9 +[ 1.563873] kernel: input: WCOM48EE:00 056A:48EE Mouse as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-WCOM48EE:00/0018:056A:48EE.0001/input/input10 +[ 1.563967] kernel: hid-generic 0018:056A:48EE.0001: input,hidraw0: I2C HID v1.00 Mouse [WCOM48EE:00 056A:48EE] on i2c-WCOM48EE:00 +[ 1.564268] kernel: input: DLL08B0:01 06CB:CD7A Mouse as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-DLL08B0:01/0018:06CB:CD7A.0002/input/input11 +[ 1.564377] kernel: input: DLL08B0:01 06CB:CD7A Touchpad as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-DLL08B0:01/0018:06CB:CD7A.0002/input/input12 +[ 1.564478] kernel: hid-generic 0018:06CB:CD7A.0002: input,hidraw1: I2C HID v1.00 Mouse [DLL08B0:01 06CB:CD7A] on i2c-DLL08B0:01 +[ 1.566786] kernel: usbcore: registered new interface driver usbhid +[ 1.566788] kernel: usbhid: USB HID core driver +[ 1.569722] kernel: i2c i2c-2: 2/2 memory slots populated (from DMI) +[ 1.584218] kernel: usb 3-10: New USB device found, idVendor=8087, idProduct=0026, bcdDevice= 0.02 +[ 1.584222] kernel: usb 3-10: New USB device strings: Mfr=0, Product=0, SerialNumber=0 +[ 1.596604] kernel: i915 0000:00:02.0: [drm] VT-d active for gfx access +[ 1.596608] kernel: checking generic (4000000000 2328000) vs hw (603d000000 1000000) +[ 1.596610] kernel: checking generic (4000000000 2328000) vs hw (4000000000 10000000) +[ 1.596611] kernel: fb0: switching to i915 from EFI VGA +[ 1.596701] kernel: Console: switching to colour dummy device 80x25 +[ 1.596745] kernel: i915 0000:00:02.0: vgaarb: deactivate vga console +[ 1.598987] kernel: i915 0000:00:02.0: vgaarb: changed VGA decodes: olddecodes=io+mem,decodes=io+mem:owns=io+mem +[ 1.599375] kernel: i915 0000:00:02.0: [drm] Finished loading DMC firmware i915/icl_dmc_ver1_09.bin (v1.9) +[ 1.772285] kernel: [drm] Initialized i915 1.6.0 20201103 for 0000:00:02.0 on minor 0 +[ 1.774757] kernel: ACPI: video: Video Device [GFX0] (multi-head: yes rom: no post: no) +[ 1.775463] kernel: input: Video Bus as /devices/LNXSYSTM:00/LNXSYBUS:00/PNP0A08:00/LNXVIDEO:00/input/input14 +[ 1.782131] kernel: ish-hid {33AECD58-B679-4E54-9BD9-A04D34F0C226}: [hid-ish]: enum_devices_done OK, num_hid_devices=5 +[ 1.790584] kernel: hid-generic 001F:8087:0AC2.0003: hidraw2: HID v2.00 Device [hid-ishtp 8087:0AC2] on +[ 1.796194] kernel: hid-generic 001F:8087:0AC2.0004: hidraw3: HID v2.00 Device [hid-ishtp 8087:0AC2] on +[ 1.801943] kernel: hid-generic 001F:8087:0AC2.0005: hidraw4: HID v2.00 Device [hid-ishtp 8087:0AC2] on +[ 1.803648] kernel: hid-generic 001F:8087:0AC2.0006: hidraw5: HID v2.00 Device [hid-ishtp 8087:0AC2] on +[ 1.811041] kernel: hid-generic 001F:8087:0AC3.0007: hidraw6: HID v2.00 Device [hid-ishtp 8087:0AC3] on +[ 1.853978] kernel: fbcon: i915drmfb (fb0) is primary device +[ 1.870142] kernel: Console: switching to colour frame buffer device 240x75 +[ 1.908338] kernel: i915 0000:00:02.0: [drm] fb0: i915drmfb frame buffer device +[ 1.939298] kernel: thunderbolt 0000:00:0d.3: 0: uid crc8 mismatch (expected: 0x0, got: 0x15) +[ 1.992330] kernel: input: Wacom HID 48EE Pen as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-WCOM48EE:00/0018:056A:48EE.0001/input/input15 +[ 1.992457] kernel: input: Wacom HID 48EE Finger as /devices/pci0000:00/0000:00:15.0/i2c_designware.0/i2c-0/i2c-WCOM48EE:00/0018:056A:48EE.0001/input/input16 +[ 1.992585] kernel: wacom 0018:056A:48EE.0001: hidraw0: I2C HID v1.00 Mouse [WCOM48EE:00 056A:48EE] on i2c-WCOM48EE:00 +[ 2.146959] kernel: raid6: avx512x4 gen() 55359 MB/s +[ 2.214961] kernel: raid6: avx512x4 xor() 20211 MB/s +[ 2.282959] kernel: raid6: avx512x2 gen() 59801 MB/s +[ 2.350958] kernel: raid6: avx512x2 xor() 35170 MB/s +[ 2.418956] kernel: raid6: avx512x1 gen() 53489 MB/s +[ 2.486957] kernel: raid6: avx512x1 xor() 32119 MB/s +[ 2.554962] kernel: raid6: avx2x4 gen() 44141 MB/s +[ 2.560383] kernel: mmc0: cannot verify signal voltage switch +[ 2.622960] kernel: raid6: avx2x4 xor() 18171 MB/s +[ 2.678730] kernel: mmc0: new ultra high speed SDR104 SDXC card at address 0001 +[ 2.680693] kernel: mmcblk0: mmc0:0001 EE8QT 239 GiB +[ 2.681782] kernel: mmcblk0: p1 +[ 2.690874] kernel: raid6: avx2x2 gen() 42350 MB/s +[ 2.758870] kernel: raid6: avx2x2 xor() 23080 MB/s +[ 2.826954] kernel: raid6: avx2x1 gen() 37921 MB/s +[ 2.894960] kernel: raid6: avx2x1 xor() 20088 MB/s +[ 2.962960] kernel: raid6: sse2x4 gen() 12495 MB/s +[ 3.030959] kernel: raid6: sse2x4 xor() 6028 MB/s +[ 3.098957] kernel: raid6: sse2x2 gen() 12511 MB/s +[ 3.166956] kernel: raid6: sse2x2 xor() 8078 MB/s +[ 3.234959] kernel: raid6: sse2x1 gen() 11840 MB/s +[ 3.302959] kernel: raid6: sse2x1 xor() 6345 MB/s +[ 3.302960] kernel: raid6: using algorithm avx512x2 gen() 59801 MB/s +[ 3.302960] kernel: raid6: .... xor() 35170 MB/s, rmw enabled +[ 3.302961] kernel: raid6: using avx512x2 recovery algorithm +[ 3.304322] kernel: xor: automatically using best checksumming function avx +[ 3.305222] kernel: async_tx: api initialized (async) +[ 10.643327] kernel: Btrfs loaded, crc32c=crc32c-intel, zoned=yes, fsverity=yes +[ 11.451014] kernel: mmc0: cannot verify signal voltage switch +[ 13.903425] kernel: EXT4-fs (dm-1): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none. +[ 14.139827] systemd[1]: Inserted module 'autofs4' +[ 14.228092] systemd[1]: systemd 245.4-4ubuntu3.17 running in system mode. (+PAM +AUDIT +SELINUX +IMA +APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 +SECCOMP +BLKID +ELFUTILS +KMOD +IDN2 -IDN +PCRE2 default-hierarchy=hybrid) +[ 14.251218] systemd[1]: Detected architecture x86-64. +[ 14.276886] systemd[1]: Set hostname to . +[ 14.277601] kernel: Lockdown: systemd: /dev/mem,kmem,port is restricted; see man kernel_lockdown.7 +[ 14.367420] systemd-sysv-generator[699]: [/etc/init.d/cprocsp:4] PID file not absolute. Ignoring. +[ 14.451508] systemd[1]: Configuration file /lib/systemd/system/sentinelone.service is marked world-inaccessible. This has no effect as configuration data is accessible via APIs without restrictions. Proceeding anyway. +[ 14.468676] systemd[1]: /lib/systemd/system/grafana-server.service:43: Unknown key name 'ProtectProc' in section 'Service', ignoring. +[ 14.500464] systemd[1]: Unnecessary job for /sys/devices/virtual/misc/vmbus!hv_fcopy was removed. +[ 14.500468] systemd[1]: Unnecessary job for /sys/devices/virtual/misc/vmbus!hv_vss was removed. +[ 14.501361] systemd[1]: Created slice system-modprobe.slice. +[ 14.501609] systemd[1]: Created slice system-postfix.slice. +[ 14.501771] systemd[1]: Created slice system-postgresql.slice. +[ 14.501992] systemd[1]: Created slice Cryptsetup Units Slice. +[ 14.502175] systemd[1]: Created slice system-systemd\x2dfsck.slice. +[ 14.502325] systemd[1]: Created slice User and Session Slice. +[ 14.502367] systemd[1]: Started Forward Password Requests to Wall Directory Watch. +[ 14.502461] systemd[1]: Set up automount Arbitrary Executable File Formats File System Automount Point. +[ 14.502495] systemd[1]: Reached target User and Group Name Lookups. +[ 14.502508] systemd[1]: Reached target Slices. +[ 14.502553] systemd[1]: Listening on Device-mapper event daemon FIFOs. +[ 14.502601] systemd[1]: Listening on LVM2 poll daemon socket. +[ 14.505593] systemd[1]: Listening on RPCbind Server Activation Socket. +[ 14.505676] systemd[1]: Listening on Syslog Socket. +[ 14.505738] systemd[1]: Listening on fsck to fsckd communication Socket. +[ 14.505772] systemd[1]: Listening on initctl Compatibility Named Pipe. +[ 14.505885] systemd[1]: Listening on Journal Audit Socket. +[ 14.505929] systemd[1]: Listening on Journal Socket (/dev/log). +[ 14.505991] systemd[1]: Listening on Journal Socket. +[ 14.506054] systemd[1]: Listening on udev Control Socket. +[ 14.506096] systemd[1]: Listening on udev Kernel Socket. +[ 14.506641] systemd[1]: Mounting Huge Pages File System... +[ 14.507239] systemd[1]: Mounting POSIX Message Queue File System... +[ 14.507945] systemd[1]: Mounting NFSD configuration filesystem... +[ 14.508610] systemd[1]: Mounting RPC Pipe File System... +[ 14.509458] systemd[1]: Mounting Kernel Debug File System... +[ 14.510420] systemd[1]: Mounting Kernel Trace File System... +[ 14.512062] systemd[1]: Starting Journal Service... +[ 14.512186] systemd[1]: Condition check resulted in Kernel Module supporting RPCSEC_GSS being skipped. +[ 14.513219] systemd[1]: Starting Availability of block devices... +[ 14.514174] systemd[1]: Starting Set the console keyboard layout... +[ 14.515165] systemd[1]: Starting Create list of static device nodes for the current kernel... +[ 14.516179] systemd[1]: Starting Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling... +[ 14.516219] systemd[1]: Condition check resulted in Load Kernel Module drm being skipped. +[ 14.516792] systemd[1]: Condition check resulted in Set Up Additional Binary Formats being skipped. +[ 14.516831] systemd[1]: Condition check resulted in File System Check on Root Device being skipped. +[ 14.518631] systemd[1]: Starting Load Kernel Modules... +[ 14.519503] systemd[1]: Starting Remount Root and Kernel File Systems... +[ 14.520442] systemd[1]: Starting udev Coldplug all Devices... +[ 14.521493] systemd[1]: Starting Uncomplicated firewall... +[ 14.524431] systemd[1]: Mounted Huge Pages File System. +[ 14.524595] systemd[1]: Mounted POSIX Message Queue File System. +[ 14.525017] systemd[1]: Mounted Kernel Debug File System. +[ 14.525319] systemd[1]: Mounted Kernel Trace File System. +[ 14.526080] systemd[1]: Finished Availability of block devices. +[ 14.526889] systemd[1]: Finished Create list of static device nodes for the current kernel. +[ 14.527742] systemd[1]: Finished Uncomplicated firewall. +[ 14.529473] kernel: EXT4-fs (dm-1): re-mounted. Opts: errors=remount-ro. Quota mode: none. +[ 14.531859] systemd[1]: Finished Remount Root and Kernel File Systems. +[ 14.532330] systemd[1]: Condition check resulted in Rebuild Hardware Database being skipped. +[ 14.532377] systemd[1]: Condition check resulted in Platform Persistent Storage Archival being skipped. +[ 14.533708] systemd[1]: Starting Load/Save Random Seed... +[ 14.534973] systemd[1]: Starting Create System Users... +[ 14.536548] kernel: RPC: Registered named UNIX socket transport module. +[ 14.536551] kernel: RPC: Registered udp transport module. +[ 14.536552] kernel: RPC: Registered tcp transport module. +[ 14.536552] kernel: RPC: Registered tcp NFSv4.1 backchannel transport module. +[ 14.537182] kernel: lp: driver loaded but no devices found +[ 14.537699] systemd[1]: Mounted RPC Pipe File System. +[ 14.538704] systemd[1]: Starting pNFS block layout mapping daemon... +[ 14.543003] kernel: ppdev: user-space parallel port driver +[ 14.551574] systemd[1]: Started pNFS block layout mapping daemon. +[ 14.553147] systemd[1]: Finished Create System Users. +[ 14.553698] systemd[1]: Finished Load/Save Random Seed. +[ 14.554699] systemd[1]: Starting Create Static Device Nodes in /dev... +[ 14.560133] kernel: IPMI message handler: version 39.2 +[ 14.561412] kernel: ipmi device interface +[ 14.562768] systemd[1]: Finished Load Kernel Modules. +[ 14.564099] systemd[1]: Mounting FUSE Control File System... +[ 14.565169] systemd[1]: Mounting Kernel Configuration File System... +[ 14.566283] systemd[1]: Starting Apply Kernel Variables... +[ 14.568130] systemd[1]: Mounted FUSE Control File System. +[ 14.568295] systemd[1]: Mounted Kernel Configuration File System. +[ 14.572153] systemd[1]: Finished Create Static Device Nodes in /dev. +[ 14.572383] kernel: Installing knfsd (copyright (C) 1996 okir@monad.swb.de). +[ 14.573434] systemd[1]: Starting udev Kernel Device Manager... +[ 14.574318] systemd[1]: Mounted NFSD configuration filesystem. +[ 14.578719] systemd[1]: Finished Apply Kernel Variables. +[ 14.586437] systemd[1]: Finished Set the console keyboard layout. +[ 14.597887] systemd[1]: Started Journal Service. +[ 14.644685] kernel: loop0: detected capacity change from 0 to 8 +[ 14.679373] kernel: loop1: detected capacity change from 0 to 18352 +[ 14.683391] kernel: loop2: detected capacity change from 0 to 18392 +[ 14.704455] kernel: loop3: detected capacity change from 0 to 273000 +[ 14.723399] kernel: loop4: detected capacity change from 0 to 233240 +[ 14.725122] kernel: loop5: detected capacity change from 0 to 113792 +[ 14.747341] kernel: loop6: detected capacity change from 0 to 126888 +[ 14.758658] kernel: loop7: detected capacity change from 0 to 113736 +[ 14.795719] kernel: loop9: detected capacity change from 0 to 233448 +[ 14.799876] kernel: loop10: detected capacity change from 0 to 126896 +[ 14.808326] kernel: loop8: detected capacity change from 0 to 273008 +[ 14.836830] kernel: loop11: detected capacity change from 0 to 333552 +[ 14.879007] kernel: input: Intel HID events as /devices/platform/INT33D5:00/input/input18 +[ 14.884703] kernel: loop12: detected capacity change from 0 to 337424 +[ 14.895872] kernel: loop13: detected capacity change from 0 to 448512 +[ 14.908793] kernel: loop15: detected capacity change from 0 to 820832 +[ 14.909186] kernel: loop16: detected capacity change from 0 to 166424 +[ 14.912209] kernel: loop14: detected capacity change from 0 to 520384 +[ 14.932033] kernel: loop17: detected capacity change from 0 to 448512 +[ 14.948358] kernel: loop18: detected capacity change from 0 to 187776 +[ 14.995487] kernel: loop19: detected capacity change from 0 to 595096 +[ 15.026910] kernel: psmouse serio1: Failed to deactivate mouse on isa0060/serio1: -5 +[ 15.042463] kernel: loop21: detected capacity change from 0 to 288952 +[ 15.059739] kernel: loop20: detected capacity change from 0 to 288776 +[ 15.098040] kernel: loop22: detected capacity change from 0 to 104360 +[ 15.098301] kernel: loop23: detected capacity change from 0 to 111080 +[ 15.120068] kernel: loop24: detected capacity change from 0 to 96160 +[ 15.198242] kernel: loop26: detected capacity change from 0 to 317920 +[ 15.200701] kernel: loop25: detected capacity change from 0 to 96176 +[ 15.231913] kernel: loop27: detected capacity change from 0 to 296840 +[ 15.244926] kernel: cfg80211: Loading compiled-in X.509 certificates for regulatory database +[ 15.245136] kernel: cfg80211: Loaded X.509 cert 'sforshee: 00b28ddf47aef9cea7' +[ 15.277264] kernel: Intel(R) Wireless WiFi driver for Linux +[ 15.277841] kernel: iwlwifi 0000:00:14.3: enabling device (0000 -> 0002) +[ 15.361605] kernel: proc_thermal 0000:00:04.0: enabling device (0000 -> 0002) +[ 15.375626] kernel: iwlwifi 0000:00:14.3: api flags index 2 larger than supported by driver +[ 15.375639] kernel: iwlwifi 0000:00:14.3: TLV_FW_FSEQ_VERSION: FSEQ Version: 89.3.35.37 +[ 15.375856] kernel: iwlwifi 0000:00:14.3: loaded firmware version 66.f1c864e0.0 Qu-c0-hr-b0-66.ucode op_mode iwlmvm +[ 15.431697] kernel: intel_rapl_common: Found RAPL domain package +[ 15.464122] kernel: iwlwifi 0000:00:14.3: Detected Intel(R) Wi-Fi 6 AX203, REV=0x338 +[ 15.485310] kernel: thermal thermal_zone7: failed to read out thermal zone (-61) +[ 15.507428] kernel: psmouse serio1: Failed to enable mouse on isa0060/serio1 +[ 15.520655] kernel: mei_me 0000:00:16.0: enabling device (0000 -> 0002) +[ 15.595887] kernel: iwlwifi 0000:00:14.3: Detected RF HR B3, rfid=0x10a100 +[ 15.631161] kernel: pstore: Using crash dump compression: deflate +[ 15.631176] kernel: pstore: Registered efi as persistent store backend +[ 15.669478] kernel: iwlwifi 0000:00:14.3: base HW address: 98:af:65:26:69:57 +[ 15.669504] kernel: ------------[ cut here ]------------ +[ 15.669505] kernel: WARNING: CPU: 4 PID: 963 at drivers/net/wireless/intel/iwlwifi/iwl-nvm-parse.c:697 iwl_init_he_hw_capab+0x2f2/0x310 [iwlwifi] +[ 15.669521] kernel: Modules linked in: input_leds(+) snd_rawmidi(+) dell_wmi_sysman(+) dcdbas(+) intel_wmi_thunderbolt wmi_bmof firmware_attributes_class snd_seq joydev(+) serio_raw dell_wmi_descriptor snd_seq_device efi_pstore snd_timer hid_multitouch(+) hid_sensor_custom_intel_hinge snd mei_me soundcore mei hid_sensor_als hid_sensor_gyro_3d hid_sensor_accel_3d hid_sensor_incl_3d hid_sensor_magn_3d hid_sensor_rotation hid_sensor_trigger industrialio_triggered_buffer kfifo_buf iwlmvm(+) hid_sensor_iio_common mac80211 industrialio libarc4 processor_thermal_device_pci_legacy processor_thermal_device processor_thermal_rfim cros_ec_ishtp iwlwifi processor_thermal_mbox cros_ec processor_thermal_rapl cfg80211 intel_rapl_common intel_soc_dts_iosf int3403_thermal soc_button_array int340x_thermal_zone ucsi_acpi mac_hid typec_ucsi typec intel_hid int3400_thermal sparse_keymap acpi_thermal_rel acpi_pad acpi_tad sch_fq_codel nfsd ipmi_devintf ipmi_msghandler msr auth_rpcgss parport_pc nfs_acl lockd ppdev +[ 15.669566] kernel: grace lp parport sunrpc ip_tables x_tables autofs4 btrfs blake2b_generic zstd_compress dm_crypt raid10 raid456 async_raid6_recov async_memcpy async_pq async_xor async_tx xor mmc_block raid6_pq libcrc32c raid1 raid0 multipath linear hid_sensor_custom hid_sensor_hub intel_ishtp_loader intel_ishtp_hid i915 wacom usbhid hid_generic i2c_algo_bit ttm drm_kms_helper syscopyarea sysfillrect sysimgblt i2c_i801 rtsx_pci_sdmmc fb_sys_fops crct10dif_pclmul crc32_pclmul ghash_clmulni_intel aesni_intel crypto_simd cryptd psmouse cec i2c_smbus rc_core nvme rtsx_pci nvme_core drm intel_lpss_pci thunderbolt intel_ish_ipc intel_lpss xhci_pci intel_ishtp idma64 xhci_pci_renesas i2c_hid_acpi i2c_hid wmi hid pinctrl_icelake video +[ 15.669601] kernel: CPU: 4 PID: 963 Comm: modprobe Not tainted 5.15.0-41-generic #44~20.04.1-Ubuntu +[ 15.669604] kernel: Hardware name: Dell Inc. XPS 13 7390 2-in-1/06CDVY, BIOS 1.14.0 02/11/2022 +[ 15.669605] kernel: RIP: 0010:iwl_init_he_hw_capab+0x2f2/0x310 [iwlwifi] +[ 15.669615] kernel: Code: 44 89 28 0f b7 4b 5c 83 c2 01 48 83 c0 50 39 ca 7c ed e9 74 fd ff ff 48 8d 86 38 02 00 00 e9 91 fd ff ff 0f 0b e9 61 fd ff ff <0f> 0b e9 20 ff ff ff 0f 0b e9 47 ff ff ff e8 1b 27 08 e5 66 66 2e +[ 15.669617] kernel: RSP: 0018:ffffa5a2c077f890 EFLAGS: 00010246 +[ 15.669619] kernel: RAX: 0000000000000000 RBX: ffff8cb050ad8168 RCX: 0000000000000001 +[ 15.669620] kernel: RDX: ffffa5a2c077f8aa RSI: ffff8cb050ad8000 RDI: 0000000000000003 +[ 15.669621] kernel: RBP: ffffa5a2c077f8f0 R08: 0000000000000002 R09: 0000000000000003 +[ 15.669621] kernel: R10: 0000000000000003 R11: 0000000000000002 R12: ffff8cb049018028 +[ 15.669622] kernel: R13: ffff8cb050ad8000 R14: 0000000000000003 R15: 0000000000000003 +[ 15.669623] kernel: FS: 00007ff9ffe46740(0000) GS:ffff8cb7af700000(0000) knlGS:0000000000000000 +[ 15.669624] kernel: CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 +[ 15.669625] kernel: CR2: 00007ffc20cf3240 CR3: 000000015a576003 CR4: 0000000000770ee0 +[ 15.669626] kernel: PKRU: 55555554 +[ 15.669627] kernel: Call Trace: +[ 15.669629] kernel: +[ 15.669632] kernel: iwl_init_sbands+0x75d/0x7e0 [iwlwifi] +[ 15.669641] kernel: iwl_get_nvm+0x24b/0x2d0 [iwlwifi] +[ 15.669650] kernel: iwl_run_unified_mvm_ucode+0x1fc/0x240 [iwlmvm] +[ 15.669665] kernel: ? iwl_run_unified_mvm_ucode+0x1fc/0x240 [iwlmvm] +[ 15.669674] kernel: ? 0xffffffffc1066000 +[ 15.669675] kernel: ? thermal_zone_device_enable+0x13/0x20 +[ 15.669679] kernel: iwl_run_init_mvm_ucode+0x23/0x30 [iwlmvm] +[ 15.669688] kernel: iwl_op_mode_mvm_start+0x798/0xb90 [iwlmvm] +[ 15.669700] kernel: _iwl_op_mode_start.isra.0+0x74/0xd0 [iwlwifi] +[ 15.669709] kernel: iwl_opmode_register+0x72/0xe0 [iwlwifi] +[ 15.669717] kernel: ? 0xffffffffc0e4d000 +[ 15.669718] kernel: iwl_mvm_init+0x3a/0x1000 [iwlmvm] +[ 15.669727] kernel: ? 0xffffffffc0e4d000 +[ 15.669728] kernel: do_one_initcall+0x46/0x1d0 +[ 15.669732] kernel: ? __cond_resched+0x19/0x30 +[ 15.669735] kernel: ? kmem_cache_alloc_trace+0x15a/0x420 +[ 15.669739] kernel: do_init_module+0x52/0x230 +[ 15.669742] kernel: load_module+0x1372/0x1600 +[ 15.669746] kernel: __do_sys_finit_module+0xbf/0x120 +[ 15.669749] kernel: ? __do_sys_finit_module+0xbf/0x120 +[ 15.669752] kernel: __x64_sys_finit_module+0x1a/0x20 +[ 15.669755] kernel: do_syscall_64+0x59/0xc0 +[ 15.669758] kernel: ? syscall_exit_to_user_mode+0x27/0x50 +[ 15.669760] kernel: ? __x64_sys_mmap+0x33/0x40 +[ 15.669763] kernel: ? do_syscall_64+0x69/0xc0 +[ 15.669765] kernel: ? syscall_exit_to_user_mode+0x27/0x50 +[ 15.669767] kernel: ? __x64_sys_newstat+0x16/0x20 +[ 15.669771] kernel: ? do_syscall_64+0x69/0xc0 +[ 15.669772] kernel: ? syscall_exit_to_user_mode+0x27/0x50 +[ 15.669775] kernel: ? __x64_sys_openat+0x20/0x30 +[ 15.669779] kernel: ? do_syscall_64+0x69/0xc0 +[ 15.669781] kernel: ? do_syscall_64+0x69/0xc0 +[ 15.669783] kernel: ? do_syscall_64+0x69/0xc0 +[ 15.669784] kernel: ? asm_exc_page_fault+0x8/0x30 +[ 15.669788] kernel: entry_SYSCALL_64_after_hwframe+0x44/0xae +[ 15.669791] kernel: RIP: 0033:0x7ff9fff8c73d +[ 15.669794] kernel: Code: 00 c3 66 2e 0f 1f 84 00 00 00 00 00 90 f3 0f 1e fa 48 89 f8 48 89 f7 48 89 d6 48 89 ca 4d 89 c2 4d 89 c8 4c 8b 4c 24 08 0f 05 <48> 3d 01 f0 ff ff 73 01 c3 48 8b 0d 23 37 0d 00 f7 d8 64 89 01 48 +[ 15.669796] kernel: RSP: 002b:00007ffc149d6338 EFLAGS: 00000246 ORIG_RAX: 0000000000000139 +[ 15.669798] kernel: RAX: ffffffffffffffda RBX: 000056181bcf9120 RCX: 00007ff9fff8c73d +[ 15.669800] kernel: RDX: 0000000000000000 RSI: 000056181b962358 RDI: 0000000000000002 +[ 15.669801] kernel: RBP: 0000000000040000 R08: 0000000000000000 R09: 0000000000000000 +[ 15.669802] kernel: R10: 0000000000000002 R11: 0000000000000246 R12: 000056181b962358 +[ 15.669803] kernel: R13: 0000000000000000 R14: 000056181bcf9250 R15: 000056181bcf9120 +[ 15.669806] kernel: +[ 15.669807] kernel: ---[ end trace 4bfc6b926e77995e ]--- +[ 15.676423] kernel: dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.4) +[ 15.685381] kernel: iwlwifi 0000:00:14.3: iwlmvm doesn't allow to disable BT Coex, check bt_coex_active module parameter +[ 15.701209] kernel: input: Dell WMI hotkeys as /devices/platform/PNP0C14:03/wmi_bus/wmi_bus-PNP0C14:03/9DBB5994-A997-11DA-B012-B622A1EF5492/input/input19 +[ 15.708244] kernel: RAPL PMU: API unit is 2^-32 Joules, 4 fixed counters, 655360 ms ovfl timer +[ 15.708248] kernel: RAPL PMU: hw unit of domain pp0-core 2^-14 Joules +[ 15.708250] kernel: RAPL PMU: hw unit of domain package 2^-14 Joules +[ 15.708251] kernel: RAPL PMU: hw unit of domain pp1-gpu 2^-14 Joules +[ 15.708252] kernel: RAPL PMU: hw unit of domain psys 2^-14 Joules +[ 15.752411] kernel: input: DLL08B0:01 06CB:CD7A Mouse as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-DLL08B0:01/0018:06CB:CD7A.0002/input/input20 +[ 15.758739] kernel: input: DLL08B0:01 06CB:CD7A Touchpad as /devices/pci0000:00/0000:00:15.1/i2c_designware.1/i2c-1/i2c-DLL08B0:01/0018:06CB:CD7A.0002/input/input21 +[ 15.758786] kernel: snd_hda_intel 0000:00:1f.3: DSP detected with PCI class/subclass/prog-if info 0x040380 +[ 15.758992] kernel: hid-multitouch 0018:06CB:CD7A.0002: input,hidraw1: I2C HID v1.00 Mouse [DLL08B0:01 06CB:CD7A] on i2c-DLL08B0:01 +[ 15.761028] kernel: snd_hda_intel 0000:00:1f.3: enabling device (0000 -> 0002) +[ 15.762281] kernel: snd_hda_intel 0000:00:1f.3: bound 0000:00:02.0 (ops i915_audio_component_bind_ops [i915]) +[ 15.780567] kernel: intel_tcc_cooling: Programmable TCC Offset detected +[ 16.134521] kernel: snd_hda_codec_realtek hdaudioC0D0: autoconfig for ALC289: line_outs=1 (0x14/0x0/0x0/0x0/0x0) type:speaker +[ 16.134529] kernel: snd_hda_codec_realtek hdaudioC0D0: speaker_outs=0 (0x0/0x0/0x0/0x0/0x0) +[ 16.134531] kernel: snd_hda_codec_realtek hdaudioC0D0: hp_outs=1 (0x21/0x0/0x0/0x0/0x0) +[ 16.134534] kernel: snd_hda_codec_realtek hdaudioC0D0: mono: mono_out=0x0 +[ 16.134535] kernel: snd_hda_codec_realtek hdaudioC0D0: inputs: +[ 16.134537] kernel: snd_hda_codec_realtek hdaudioC0D0: Headset Mic=0x19 +[ 16.134540] kernel: snd_hda_codec_realtek hdaudioC0D0: Headphone Mic=0x1b +[ 16.134542] kernel: snd_hda_codec_realtek hdaudioC0D0: Internal Mic=0x12 +[ 16.377599] kernel: intel_rapl_common: Found RAPL domain package +[ 16.377604] kernel: intel_rapl_common: Found RAPL domain core +[ 16.377606] kernel: intel_rapl_common: Found RAPL domain uncore +[ 16.377608] kernel: intel_rapl_common: Found RAPL domain psys +[ 16.547981] kernel: mei_hdcp 0000:00:16.0-b638ab7e-94e2-4ea2-a552-d1c54b627f04: bound 0000:00:02.0 (ops i915_hdcp_component_ops [i915]) +[ 16.597966] kernel: iwlwifi 0000:00:14.3 wlp0s20f3: renamed from wlan0 +[ 16.764442] kernel: Bluetooth: Core ver 2.22 +[ 16.764473] kernel: NET: Registered PF_BLUETOOTH protocol family +[ 16.764474] kernel: Bluetooth: HCI device and connection manager initialized +[ 16.764479] kernel: Bluetooth: HCI socket layer initialized +[ 16.764481] kernel: Bluetooth: L2CAP socket layer initialized +[ 16.764484] kernel: Bluetooth: SCO socket layer initialized +[ 16.772380] kernel: usbcore: registered new interface driver btusb +[ 16.773542] kernel: Bluetooth: hci0: Bootloader revision 0.4 build 0 week 11 2017 +[ 16.774538] kernel: Bluetooth: hci0: Device revision is 2 +[ 16.774541] kernel: Bluetooth: hci0: Secure boot is enabled +[ 16.774542] kernel: Bluetooth: hci0: OTP lock is enabled +[ 16.774543] kernel: Bluetooth: hci0: API lock is enabled +[ 16.774544] kernel: Bluetooth: hci0: Debug lock is disabled +[ 16.774545] kernel: Bluetooth: hci0: Minimum firmware build 1 week 10 2014 +[ 16.777344] kernel: Bluetooth: hci0: Found device firmware: intel/ibt-19-32-4.sfi +[ 16.940648] kernel: input: HDA Intel PCH Headphone Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input23 +[ 16.940765] kernel: input: HDA Intel PCH HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input24 +[ 16.940860] kernel: input: HDA Intel PCH HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input25 +[ 16.940925] kernel: input: HDA Intel PCH HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input26 +[ 16.940998] kernel: input: HDA Intel PCH HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input27 +[ 16.941069] kernel: input: HDA Intel PCH HDMI/DP,pcm=10 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input28 +[ 16.941131] kernel: input: HDA Intel PCH HDMI/DP,pcm=11 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input29 +[ 16.941191] kernel: input: HDA Intel PCH HDMI/DP,pcm=12 as /devices/pci0000:00/0000:00:1f.3/sound/card0/input30 +[ 18.495711] kernel: Bluetooth: hci0: Waiting for firmware download to complete +[ 18.496573] kernel: Bluetooth: hci0: Firmware loaded in 1678931 usecs +[ 18.496645] kernel: Bluetooth: hci0: Waiting for device to boot +[ 18.511635] kernel: Bluetooth: hci0: Device booted in 14675 usecs +[ 18.512942] kernel: Bluetooth: hci0: Found Intel DDC parameters: intel/ibt-19-32-4.ddc +[ 18.514605] kernel: Bluetooth: hci0: Applying Intel DDC parameters completed +[ 18.517651] kernel: Bluetooth: hci0: Firmware revision 0.0 build 121 week 36 2020 +[ 18.577666] kernel: Bluetooth: hci0: MSFT filter_enable is already on +[ 19.826974] kernel: input: PS/2 Generic Mouse as /devices/platform/i8042/serio1/input/input5 +[ 20.034895] kernel: psmouse serio1: Failed to enable mouse on isa0060/serio1 +[ 23.210028] kernel: Adding 999420k swap on /dev/mapper/vgubuntu-swap_1. Priority:-2 extents:1 across:999420k SSFS +[ 23.318945] kernel: EXT4-fs (nvme0n1p2): mounted filesystem with ordered data mode. Opts: (null). Quota mode: none. +[ 23.395430] kernel: audit: type=1400 audit(1659354762.207:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/bin/man" pid=1558 comm="apparmor_parser" +[ 23.395444] kernel: audit: type=1400 audit(1659354762.207:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_filter" pid=1558 comm="apparmor_parser" +[ 23.395449] kernel: audit: type=1400 audit(1659354762.207:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="man_groff" pid=1558 comm="apparmor_parser" +[ 23.397662] kernel: audit: type=1400 audit(1659354762.207:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/cups-browsed" pid=1562 comm="apparmor_parser" +[ 23.399079] kernel: audit: type=1400 audit(1659354762.211:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/mysqld" pid=1557 comm="apparmor_parser" +[ 23.403011] kernel: audit: type=1400 audit(1659354762.215:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="lsb_release" pid=1567 comm="apparmor_parser" +[ 23.403944] kernel: audit: type=1400 audit(1659354762.215:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/sbin/tcpdump" pid=1561 comm="apparmor_parser" +[ 23.405610] kernel: audit: type=1400 audit(1659354762.215:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="libreoffice-oopslash" pid=1568 comm="apparmor_parser" +[ 23.406431] kernel: audit: type=1400 audit(1659354762.215:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/snapd/snap-confine" pid=1564 comm="apparmor_parser" +[ 23.406444] kernel: audit: type=1400 audit(1659354762.215:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="/usr/lib/snapd/snap-confine//mount-namespace-capture-helper" pid=1564 comm="apparmor_parser" +[ 23.996084] kernel: mmc0: cannot verify signal voltage switch +[ 24.102783] kernel: Bluetooth: BNEP (Ethernet Emulation) ver 1.3 +[ 24.102790] kernel: Bluetooth: BNEP filters: protocol multicast +[ 24.102798] kernel: Bluetooth: BNEP socket layer initialized +[ 24.117038] kernel: NET: Registered PF_ALG protocol family +[ 24.191306] kernel: hid-sensor-hub 001F:8087:0AC2.0004: hid_field_extract() called with n (192) > 32! (kworker/4:2) +[ 24.942616] kernel: aufs 5.15.5-20211129 +[ 25.417286] kernel: NFSD: Using UMH upcall client tracking operations. +[ 25.417301] kernel: NFSD: starting 90-second grace period (net f0000000) +[ 28.614725] kernel: Lockdown: systemd-logind: hibernation is restricted; see man kernel_lockdown.7 +[ 28.719951] kernel: wlp0s20f3: authenticate with a8:bf:3c:10:d8:31 +[ 28.721869] kernel: wlp0s20f3: send auth to a8:bf:3c:10:d8:31 (try 1/3) +[ 28.747295] kernel: wlp0s20f3: authenticated +[ 28.750899] kernel: wlp0s20f3: associate with a8:bf:3c:10:d8:31 (try 1/3) +[ 28.755481] kernel: wlp0s20f3: RX AssocResp from a8:bf:3c:10:d8:31 (capab=0x411 status=0 aid=5) +[ 28.761691] kernel: wlp0s20f3: associated +[ 28.936572] kernel: IPv6: ADDRCONF(NETDEV_CHANGE): wlp0s20f3: link becomes ready +[ 29.015381] kernel: rfkill: input handler disabled diff --git a/t/pt-summary/samples/Linux/006/dmidecode b/t/pt-summary/samples/Linux/006/dmidecode new file mode 100644 index 00000000..c50bee81 --- /dev/null +++ b/t/pt-summary/samples/Linux/006/dmidecode @@ -0,0 +1,1068 @@ +# dmidecode 3.2 +Getting SMBIOS data from sysfs. +SMBIOS 3.1 present. +90 structures occupying 5942 bytes. +Table at 0x62754000. + +Handle 0xDA00, DMI type 218, 251 bytes +OEM-specific Type + Header and Data: + DA FB 00 DA B2 00 06 FF 1F B6 50 1E 00 1E 00 00 + 00 22 00 22 00 01 00 23 00 23 00 00 00 28 00 28 + 00 00 00 29 00 29 00 01 00 2A 00 2A 00 02 00 2B + 00 2B 00 FF FF 2C 00 2C 00 FF FF 2D 00 2D 00 02 + 00 2E 00 2E 00 00 00 40 00 40 00 01 00 41 00 41 + 00 00 00 42 00 42 00 01 00 43 00 43 00 00 00 50 + 00 50 00 01 00 55 00 55 00 00 00 5C 00 5C 00 01 + 00 5D 00 5D 00 00 00 6D 00 6D 00 05 00 6E 00 6E + 00 01 00 7D 00 7D 00 FF FF 9B 00 9B 00 01 00 9C + 00 9C 00 00 00 9F 00 9F 00 00 00 A0 00 A0 00 01 + 00 A1 00 A1 00 00 00 A3 00 A3 00 01 00 D1 00 D1 + 00 01 00 D2 00 D2 00 00 00 EA 00 EA 00 00 00 EB + 00 EB 00 01 00 EC 00 EC 00 02 00 ED 00 ED 00 00 + 00 F0 00 F0 00 01 00 F1 00 F1 00 00 00 F2 00 F2 + 00 01 00 F3 00 F3 00 02 00 09 01 09 01 00 00 0E + 01 0E 01 01 00 FF FF FF FF 00 00 + +Handle 0xDA01, DMI type 218, 251 bytes +OEM-specific Type + Header and Data: + DA FB 01 DA B2 00 06 FF 1F B6 50 0F 01 0F 01 00 + 00 2B 01 2B 01 01 00 2C 01 2C 01 00 00 2D 01 2D + 01 01 00 2E 01 2E 01 00 00 35 01 35 01 FF 00 38 + 01 38 01 01 00 39 01 39 01 02 00 44 01 44 01 00 + 00 45 01 45 01 01 00 4A 01 4A 01 00 00 4B 01 4B + 01 01 00 4C 01 4C 01 01 00 4D 01 4D 01 00 00 52 + 01 52 01 01 00 53 01 53 01 00 00 7F 01 7F 01 00 + 00 80 01 80 01 01 00 81 01 81 01 00 00 82 01 82 + 01 01 00 89 01 89 01 00 00 8A 01 8A 01 01 00 98 + 01 98 01 04 00 9B 01 9B 01 00 00 9C 01 9C 01 01 + 00 DE 01 DE 01 00 00 DF 01 DF 01 01 00 E1 01 E1 + 01 00 00 EA 01 EA 01 00 00 EB 01 EB 01 01 00 02 + 02 02 02 00 00 03 02 03 02 01 00 04 02 04 02 00 + 00 05 02 05 02 01 00 16 02 16 02 06 00 2D 02 2D + 02 01 00 32 02 32 02 02 00 33 02 33 02 01 00 35 + 02 35 02 01 00 FF FF FF FF 00 00 + +Handle 0xDA02, DMI type 218, 251 bytes +OEM-specific Type + Header and Data: + DA FB 02 DA B2 00 06 FF 1F B6 50 36 02 36 02 00 + 00 4B 02 4B 02 01 00 4C 02 4C 02 00 00 64 02 64 + 02 01 00 65 02 65 02 00 00 66 02 66 02 01 00 67 + 02 67 02 00 00 68 02 68 02 01 00 69 02 69 02 00 + 00 6C 02 6C 02 01 00 6D 02 6D 02 00 00 6E 02 6E + 02 00 00 85 02 85 02 01 00 86 02 86 02 00 00 94 + 02 94 02 01 00 95 02 95 02 00 00 A7 02 A7 02 01 + 00 A8 02 A8 02 00 00 BD 02 BD 02 01 00 BE 02 BE + 02 00 00 D8 02 D8 02 FF FF D9 02 D9 02 FF FF DA + 02 DA 02 FF FF DB 02 DB 02 FF FF DC 02 DC 02 FF + FF DD 02 DD 02 FF FF DE 02 DE 02 FF FF DF 02 DF + 02 FF FF E3 02 E3 02 01 00 E4 02 E4 02 00 00 E5 + 02 E5 02 01 00 EB 02 EB 02 06 00 F6 02 F6 02 08 + 00 12 03 12 03 03 00 13 03 13 03 01 00 14 03 14 + 03 00 00 15 03 15 03 01 00 16 03 16 03 00 00 17 + 03 17 03 01 00 FF FF FF FF 00 00 + +Handle 0xDA03, DMI type 218, 251 bytes +OEM-specific Type + Header and Data: + DA FB 03 DA B2 00 06 FF 1F B6 50 18 03 18 03 00 + 00 19 03 19 03 01 00 1A 03 1A 03 00 00 1B 03 1B + 03 01 00 1C 03 1C 03 00 00 1D 03 1D 03 01 00 1E + 03 1E 03 00 00 1F 03 1F 03 01 00 20 03 20 03 00 + 00 25 03 25 03 01 00 26 03 26 03 01 00 2B 03 2B + 03 01 00 2C 03 2C 03 00 00 41 03 41 03 03 00 42 + 03 42 03 04 00 43 03 43 03 05 00 46 03 46 03 01 + 00 47 03 47 03 02 00 48 03 48 03 05 00 49 03 49 + 03 FF FF 4A 03 4A 03 FF FF 4F 03 4F 03 01 00 50 + 03 50 03 00 00 5D 03 5D 03 01 00 5E 03 5E 03 00 + 00 5F 03 5F 03 01 00 60 03 60 03 00 00 61 03 61 + 03 01 00 62 03 62 03 00 00 66 03 66 03 00 00 67 + 03 67 03 01 00 6C 03 6C 03 00 00 6D 03 6D 03 01 + 00 6E 03 6E 03 FF FF 74 03 74 03 00 00 75 03 75 + 03 01 00 78 03 78 03 01 00 79 03 79 03 00 00 99 + 03 99 03 01 00 FF FF FF FF 00 00 + +Handle 0xDA04, DMI type 218, 251 bytes +OEM-specific Type + Header and Data: + DA FB 04 DA B2 00 06 FF 1F B6 50 9A 03 9A 03 00 + 00 A2 03 A2 03 01 00 A3 03 A3 03 00 00 BE 03 BE + 03 FF FF C6 03 C6 03 00 00 C7 03 C7 03 01 00 C8 + 03 C8 03 02 00 C9 03 C9 03 01 00 CA 03 CA 03 00 + 00 CB 03 CB 03 FF FF CD 03 CD 03 01 00 CE 03 CE + 03 00 00 D3 03 D3 03 FF FF D4 03 D4 03 01 00 D5 + 03 D5 03 00 00 D6 03 D6 03 01 00 D7 03 D7 03 00 + 00 F6 03 F6 03 01 00 F7 03 F7 03 00 00 FE 03 FE + 03 01 00 FF 03 FF 03 00 00 01 04 01 04 01 00 02 + 04 02 04 00 00 03 04 03 04 01 00 04 04 04 04 00 + 00 1E 04 1E 04 01 00 1F 04 1F 04 00 00 31 04 31 + 04 FF FF 32 04 32 04 01 00 33 04 33 04 00 00 36 + 04 36 04 01 00 37 04 37 04 00 00 38 04 38 04 01 + 00 39 04 39 04 00 00 40 04 40 04 01 00 41 04 41 + 04 00 00 42 04 42 04 01 00 43 04 43 04 00 00 46 + 04 46 04 01 00 FF FF FF FF 00 00 + +Handle 0xDA05, DMI type 218, 251 bytes +OEM-specific Type + Header and Data: + DA FB 05 DA B2 00 06 FF 1F B6 50 47 04 47 04 00 + 00 4B 04 4B 04 01 00 4C 04 4C 04 00 00 4D 04 4D + 04 00 00 4E 04 4E 04 01 00 4F 04 4F 04 02 00 51 + 04 51 04 FF FF 52 04 52 04 FF FF 61 04 61 04 01 + 00 62 04 62 04 00 00 7B 04 7B 04 01 00 7C 04 7C + 04 00 00 7F 04 7F 04 02 00 80 04 80 04 01 00 81 + 04 81 04 00 00 82 04 82 04 FF FF 83 04 83 04 01 + 00 84 04 84 04 00 00 87 04 87 04 01 00 88 04 88 + 04 00 00 8C 04 8C 04 01 00 8D 04 8D 04 00 00 9C + 04 9C 04 01 00 9D 04 9D 04 00 00 9E 04 9E 04 01 + 00 9F 04 9F 04 00 00 A0 04 A0 04 01 00 A1 04 A1 + 04 00 00 A2 04 A2 04 01 00 A3 04 A3 04 00 00 AC + 04 AC 04 01 00 AD 04 AD 04 00 00 AE 04 AE 04 01 + 00 AF 04 AF 04 00 00 DC 04 DC 04 FF FF E6 04 E6 + 04 01 00 E7 04 E7 04 00 00 EC 04 EC 04 01 00 ED + 04 ED 04 00 00 FF FF FF FF 00 00 + +Handle 0xDA06, DMI type 218, 149 bytes +OEM-specific Type + Header and Data: + DA 95 06 DA B2 00 06 FF 1F B6 50 00 05 00 05 FF + FF 12 05 12 05 00 00 13 05 13 05 01 00 14 05 14 + 05 02 00 15 05 15 05 01 00 1A 05 1A 05 01 00 1B + 05 1B 05 00 00 1C 05 1C 05 01 00 1D 05 1D 05 00 + 00 30 05 30 05 01 00 31 05 31 05 00 00 4A 40 4A + 40 01 00 4B 40 4B 40 00 00 4C 40 4C 40 FF FF 4F + 40 4F 40 01 00 50 40 50 40 00 00 0D 80 0D 80 00 + 00 0F 80 0F 80 FF FF 12 80 12 80 FF FF 13 80 13 + 80 00 00 14 80 14 80 00 00 04 A0 04 A0 01 00 FF + FF FF FF 00 00 + +Handle 0xDA07, DMI type 218, 209 bytes +OEM-specific Type + Header and Data: + DA D1 07 DA B2 00 06 FF 1F B6 50 00 F1 00 F1 01 + 00 02 F1 02 F1 01 00 03 F1 03 F1 01 00 05 F1 05 + F1 01 00 10 F1 10 F1 01 00 12 F1 12 F1 01 00 13 + F1 13 F1 01 00 15 F1 15 F1 01 00 20 F1 20 F1 01 + 00 22 F1 22 F1 01 00 23 F1 23 F1 01 00 25 F1 25 + F1 01 00 30 F1 30 F1 01 00 32 F1 32 F1 01 00 33 + F1 33 F1 01 00 35 F1 35 F1 01 00 40 F1 40 F1 01 + 00 42 F1 42 F1 01 00 43 F1 43 F1 01 00 45 F1 45 + F1 01 00 50 F1 50 F1 01 00 52 F1 52 F1 01 00 53 + F1 53 F1 01 00 55 F1 55 F1 01 00 00 F6 00 F6 01 + 00 01 F6 01 F6 01 00 02 F6 02 F6 01 00 04 F6 04 + F6 01 00 10 F6 10 F6 01 00 11 F6 11 F6 01 00 12 + F6 12 F6 01 00 14 F6 14 F6 01 00 FF FF FF FF 00 + 00 + +Handle 0x0001, DMI type 0, 26 bytes +BIOS Information + Vendor: Dell Inc. + Version: 1.14.0 + Release Date: 02/11/2022 + ROM Size: 16064 kB + Characteristics: + PCI is supported + PNP is supported + BIOS is upgradeable + BIOS shadowing is allowed + Boot from CD is supported + Selectable boot is supported + EDD is supported + Print screen service is supported (int 5h) + 8042 keyboard services are supported (int 9h) + Serial services are supported (int 14h) + Printer services are supported (int 17h) + ACPI is supported + USB legacy is supported + Smart battery is supported + BIOS boot specification is supported + Function key-initiated network boot is supported + Targeted content distribution is supported + UEFI is supported + BIOS Revision: 1.14 + +Handle 0x0100, DMI type 1, 27 bytes +System Information + Manufacturer: Dell Inc. + Product Name: XPS 13 7390 2-in-1 + Version: Not Specified + Serial Number: H3RJL13 + UUID: 4c4c4544-0033-5210-804a-c8c04f4c3133 + Wake-up Type: Power Switch + SKU Number: 08B0 + Family: XPS + +Handle 0x0200, DMI type 2, 17 bytes +Base Board Information + Manufacturer: Dell Inc. + Product Name: 06CDVY + Version: A00 + Serial Number: /H3RJL13/CNCMK0001K013C/ + Asset Tag: Not Specified + Features: + Board is a hosting board + Board is replaceable + Location In Chassis: Not Specified + Chassis Handle: 0x0300 + Type: Motherboard + Contained Object Handles: 0 + +Handle 0x0301, DMI type 3, 24 bytes +Chassis Information + Manufacturer: Dell Inc. + Type: Convertible + Lock: Not Present + Version: Not Specified + Serial Number: H3RJL13 + Asset Tag: Not Specified + Boot-up State: Safe + Power Supply State: Safe + Thermal State: Safe + Security Status: None + OEM Information: 0x00000000 + Height: Unspecified + Number Of Power Cords: 1 + Contained Elements: 0 + SKU Number: Convertible + +Handle 0x0400, DMI type 4, 48 bytes +Processor Information + Socket Designation: CPU 1 + Type: Central Processor + Family: Core i7 + Manufacturer: Intel(R) Corporation + ID: E5 06 07 00 FF FB EB BF + Signature: Type 0, Family 6, Model 126, Stepping 5 + Flags: + FPU (Floating-point unit on-chip) + VME (Virtual mode extension) + DE (Debugging extension) + PSE (Page size extension) + TSC (Time stamp counter) + MSR (Model specific registers) + PAE (Physical address extension) + MCE (Machine check exception) + CX8 (CMPXCHG8 instruction supported) + APIC (On-chip APIC hardware supported) + SEP (Fast system call) + MTRR (Memory type range registers) + PGE (Page global enable) + MCA (Machine check architecture) + CMOV (Conditional move instruction supported) + PAT (Page attribute table) + PSE-36 (36-bit page size extension) + CLFSH (CLFLUSH instruction supported) + DS (Debug store) + ACPI (ACPI supported) + MMX (MMX technology supported) + FXSR (FXSAVE and FXSTOR instructions supported) + SSE (Streaming SIMD extensions) + SSE2 (Streaming SIMD extensions 2) + SS (Self-snoop) + HTT (Multi-threading) + TM (Thermal monitor supported) + PBE (Pending break enabled) + Version: Intel(R) Core(TM) i7-1065G7 CPU @ 1.30GHz + Voltage: 0.7 V + External Clock: 100 MHz + Max Speed: 1500 MHz + Current Speed: 1400 MHz + Status: Populated, Enabled + Upgrade: Other + L1 Cache Handle: 0x0701 + L2 Cache Handle: 0x0702 + L3 Cache Handle: 0x0703 + Serial Number: + Asset Tag: + Part Number: + Core Count: 4 + Core Enabled: 4 + Thread Count: 8 + Characteristics: + 64-bit capable + Multi-Core + Hardware Thread + Execute Protection + Enhanced Virtualization + Power/Performance Control + +Handle 0x0700, DMI type 7, 27 bytes +Cache Information + Socket Designation: L1 Cache + Configuration: Enabled, Not Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 0 kB + Maximum Size: 0 kB + Supported SRAM Types: + Synchronous + Installed SRAM Type: Synchronous + Speed: Unknown + Error Correction Type: Parity + System Type: Data + Associativity: 12-way Set-associative + +Handle 0x0701, DMI type 7, 27 bytes +Cache Information + Socket Designation: L1 Cache + Configuration: Enabled, Not Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 0 kB + Maximum Size: 0 kB + Supported SRAM Types: + Synchronous + Installed SRAM Type: Synchronous + Speed: Unknown + Error Correction Type: Parity + System Type: Instruction + Associativity: 8-way Set-associative + +Handle 0x0702, DMI type 7, 27 bytes +Cache Information + Socket Designation: L2 Cache + Configuration: Enabled, Not Socketed, Level 2 + Operational Mode: Write Back + Location: Internal + Installed Size: 0 kB + Maximum Size: 0 kB + Supported SRAM Types: + Synchronous + Installed SRAM Type: Synchronous + Speed: Unknown + Error Correction Type: Single-bit ECC + System Type: Unified + Associativity: 8-way Set-associative + +Handle 0x0703, DMI type 7, 27 bytes +Cache Information + Socket Designation: L3 Cache + Configuration: Enabled, Not Socketed, Level 3 + Operational Mode: Write Back + Location: Internal + Installed Size: 0 kB + Maximum Size: 0 kB + Supported SRAM Types: + Synchronous + Installed SRAM Type: Synchronous + Speed: Unknown + Error Correction Type: Multi-bit ECC + System Type: Unified + Associativity: 16-way Set-associative + +Handle 0x0800, DMI type 8, 9 bytes +Port Connector Information + Internal Reference Designator: Keyboard + Internal Connector Type: PS/2 + External Reference Designator: None + External Connector Type: None + Port Type: Keyboard Port + +Handle 0x0801, DMI type 8, 9 bytes +Port Connector Information + Internal Reference Designator: Mouse + Internal Connector Type: PS/2 + External Reference Designator: None + External Connector Type: None + Port Type: Mouse Port + +Handle 0x0802, DMI type 8, 9 bytes +Port Connector Information + Internal Reference Designator: JTypeC1 + Internal Connector Type: None + External Reference Designator: USB1 + External Connector Type: Access Bus (USB) + Port Type: USB + +Handle 0x0803, DMI type 8, 9 bytes +Port Connector Information + Internal Reference Designator: JTypeC2 + Internal Connector Type: None + External Reference Designator: USB2 + External Connector Type: Access Bus (USB) + Port Type: USB + +Handle 0x0804, DMI type 8, 9 bytes +Port Connector Information + Internal Reference Designator: J9A1 - TPM/PORT 80 + Internal Connector Type: Other + External Reference Designator: None + External Connector Type: None + Port Type: Other + +Handle 0x0805, DMI type 8, 9 bytes +Port Connector Information + Internal Reference Designator: J8E1 - SPI Program + Internal Connector Type: Other + External Reference Designator: None + External Connector Type: None + Port Type: Other + +Handle 0x0806, DMI type 8, 9 bytes +Port Connector Information + Internal Reference Designator: J5J1 - FP Header + Internal Connector Type: Other + External Reference Designator: None + External Connector Type: None + Port Type: Other + +Handle 0x0807, DMI type 8, 9 bytes +Port Connector Information + Internal Reference Designator: J1H2 - BATT A + Internal Connector Type: Other + External Reference Designator: None + External Connector Type: None + Port Type: Other + +Handle 0x0808, DMI type 8, 9 bytes +Port Connector Information + Internal Reference Designator: J2G1 - CPU Fan + Internal Connector Type: Other + External Reference Designator: None + External Connector Type: None + Port Type: Other + +Handle 0x0809, DMI type 8, 9 bytes +Port Connector Information + Internal Reference Designator: J4C1 - FAN PWR + Internal Connector Type: Other + External Reference Designator: None + External Connector Type: None + Port Type: Other + +Handle 0x0900, DMI type 9, 17 bytes +System Slot Information + Designation: PCI-Express 0 + Type: x16 PCI Express x16 + Current Usage: Available + Length: Long + ID: 0 + Characteristics: + 3.3 V is provided + PME signal is supported + Hot-plug devices are supported + SMBus signal is supported + Bus Address: 0000:00:1c.0 + +Handle 0x0901, DMI type 9, 17 bytes +System Slot Information + Designation: PCI-Express 1 + Type: x1 PCI Express + Current Usage: Available + Length: Long + ID: 1 + Characteristics: + 3.3 V is provided + PME signal is supported + Hot-plug devices are supported + SMBus signal is supported + Bus Address: 0000:00:1c.1 + +Handle 0x0902, DMI type 9, 17 bytes +System Slot Information + Designation: PCI-Express 2 + Type: x1 PCI Express + Current Usage: Available + Length: Long + ID: 2 + Characteristics: + 3.3 V is provided + PME signal is supported + Hot-plug devices are supported + SMBus signal is supported + Bus Address: 0000:00:1c.2 + +Handle 0x0903, DMI type 9, 17 bytes +System Slot Information + Designation: PCI-Express 3 + Type: x1 PCI Express + Current Usage: Available + Length: Long + ID: 3 + Characteristics: + 3.3 V is provided + PME signal is supported + Hot-plug devices are supported + SMBus signal is supported + Bus Address: 0000:00:1c.3 + +Handle 0x0904, DMI type 9, 17 bytes +System Slot Information + Designation: PCI-Express 4 + Type: x1 PCI Express + Current Usage: Available + Length: Long + ID: 4 + Characteristics: + 3.3 V is provided + PME signal is supported + Hot-plug devices are supported + SMBus signal is supported + Bus Address: 0000:00:1c.4 + +Handle 0x0905, DMI type 9, 17 bytes +System Slot Information + Designation: PCI-Express 5 + Type: x1 PCI Express + Current Usage: Available + Length: Long + ID: 5 + Characteristics: + 3.3 V is provided + PME signal is supported + Hot-plug devices are supported + SMBus signal is supported + Bus Address: 0000:00:1c.5 + +Handle 0x0906, DMI type 9, 17 bytes +System Slot Information + Designation: PCI-Express 6 + Type: x1 PCI Express + Current Usage: Available + Length: Long + ID: 6 + Characteristics: + 3.3 V is provided + PME signal is supported + Hot-plug devices are supported + SMBus signal is supported + Bus Address: 0000:00:1c.6 + +Handle 0x0B00, DMI type 11, 5 bytes +OEM Strings + String 1: Dell System + String 2: 1[08B0] + String 3: 3[1.0] + String 4: 12[www.dell.com] + String 5: 14[1] + String 6: 15[0] + String 7: 27[37232961591] + +Handle 0x0C00, DMI type 12, 5 bytes +System Configuration Options + Option 1: J6H1:1-X Boot with Default; J8H1:1-X BIOS RECOVERY + +Handle 0x0D00, DMI type 13, 22 bytes +BIOS Language Information + Language Description Format: Abbreviated + Installable Languages: 1 + enUS + Currently Installed Language: enUS + +Handle 0x0E00, DMI type 14, 8 bytes +Group Associations + Name: Intel(R) Silicon View Technology + Items: 1 + 0xCE00 (OEM-specific) + +Handle 0x0E01, DMI type 14, 23 bytes +Group Associations + Name: Firmware Version Info + Items: 6 + 0xCD00 (OEM-specific) + 0xCD01 (OEM-specific) + 0xCD02 (OEM-specific) + 0xCD03 (OEM-specific) + 0xCD04 (OEM-specific) + 0xCD05 (OEM-specific) + +Handle 0x0E02, DMI type 14, 8 bytes +Group Associations + Name: $MEI + Items: 1 + 0x0000 (OEM-specific) + +Handle 0x1000, DMI type 16, 23 bytes +Physical Memory Array + Location: System Board Or Motherboard + Use: System Memory + Error Correction Type: None + Maximum Capacity: 32 GB + Error Information Handle: Not Provided + Number Of Devices: 2 + +Handle 0x1100, DMI type 17, 40 bytes +Memory Device + Array Handle: 0x1000 + Error Information Handle: Not Provided + Total Width: 32 bits + Data Width: 32 bits + Size: 16384 MB + Form Factor: Row Of Chips + Set: None + Locator: Motherboard + Bank Locator: Not Specified + Type: LPDDR4 + Type Detail: Synchronous + Speed: 3733 MT/s + Manufacturer: SK Hynix + Serial Number: Not Specified + Asset Tag: 0000000000 + Part Number: H9HCNNNFAMALTR-NEE + Rank: 2 + Configured Memory Speed: 3733 MT/s + Minimum Voltage: Unknown + Maximum Voltage: Unknown + Configured Voltage: 0.6 V + +Handle 0x1101, DMI type 17, 40 bytes +Memory Device + Array Handle: 0x1000 + Error Information Handle: Not Provided + Total Width: 32 bits + Data Width: 32 bits + Size: 16384 MB + Form Factor: Row Of Chips + Set: None + Locator: Motherboard + Bank Locator: Not Specified + Type: LPDDR4 + Type Detail: Synchronous + Speed: 3733 MT/s + Manufacturer: SK Hynix + Serial Number: Not Specified + Asset Tag: 0000000000 + Part Number: H9HCNNNFAMALTR-NEE + Rank: 2 + Configured Memory Speed: 3733 MT/s + Minimum Voltage: Unknown + Maximum Voltage: Unknown + Configured Voltage: 0.6 V + +Handle 0x1300, DMI type 19, 31 bytes +Memory Array Mapped Address + Starting Address: 0x00000000000 + Ending Address: 0x007FFFFFFFF + Range Size: 32 GB + Physical Array Handle: 0x1000 + Partition Width: 2 + +Handle 0x1500, DMI type 21, 7 bytes +Built-in Pointing Device + Type: Touch Pad + Interface: Bus Mouse + Buttons: 2 + +Handle 0x1600, DMI type 22, 26 bytes +Portable Battery + Location: Sys. Battery Bay + Manufacturer: BYD + Manufacture Date: 09/03/2019 + Serial Number: 5B65 + Name: DELL XX3T799 + Design Capacity: 49980 mWh + Design Voltage: 7600 mV + SBDS Version: 1.0 + Maximum Error: 20% + SBDS Chemistry: LiP + OEM-specific Information: 0x00000801 + +Handle 0x1900, DMI type 25, 9 bytes + System Power Controls + Next Scheduled Power-on: *-* 00:00:00 + +Handle 0x1B00, DMI type 27, 15 bytes +Cooling Device + Type: Fan + Status: OK + OEM-specific Information: 0x0000DD00 + Nominal Speed: 9100 rpm + Description: Processor Fan + +Handle 0x1B01, DMI type 27, 15 bytes +Cooling Device + Type: Fan + Status: OK + OEM-specific Information: 0x0000DD01 + Nominal Speed: 9100 rpm + Description: Video Fan + +Handle 0x1C00, DMI type 28, 22 bytes +Temperature Probe + Description: CPU + Location: Processor Module + Status: OK + Maximum Value: 127.0 deg C + Minimum Value: -127.0 deg C + Resolution: 1.000 deg C + Tolerance: Unknown + Accuracy: Unknown + OEM-specific Information: 0x0000DC00 + Nominal Value: 10.0 deg C + +Handle 0x1C01, DMI type 28, 22 bytes +Temperature Probe + Description: DIMM A + Location: Memory Module + Status: OK + Maximum Value: 127.0 deg C + Minimum Value: -127.0 deg C + Resolution: 1.000 deg C + Tolerance: Unknown + Accuracy: Unknown + OEM-specific Information: 0x0000DC01 + Nominal Value: 10.0 deg C + +Handle 0x1C02, DMI type 28, 22 bytes +Temperature Probe + Description: DIMM A + Location: Disk + Status: OK + Maximum Value: 127.0 deg C + Minimum Value: -127.0 deg C + Resolution: 1.000 deg C + Tolerance: Unknown + Accuracy: Unknown + OEM-specific Information: 0x0000DC02 + Nominal Value: 10.0 deg C + +Handle 0x1C03, DMI type 28, 22 bytes +Temperature Probe + Description: SKIN + Location: Motherboard + Status: OK + Maximum Value: 127.0 deg C + Minimum Value: -127.0 deg C + Resolution: 1.000 deg C + Tolerance: Unknown + Accuracy: Unknown + OEM-specific Information: 0x0000DC03 + Nominal Value: 10.0 deg C + +Handle 0x1C04, DMI type 28, 22 bytes +Temperature Probe + Description: SKIN + Location: Motherboard + Status: OK + Maximum Value: 127.0 deg C + Minimum Value: -127.0 deg C + Resolution: 1.000 deg C + Tolerance: Unknown + Accuracy: Unknown + OEM-specific Information: 0x0000DC04 + Nominal Value: 10.0 deg C + +Handle 0x1C05, DMI type 28, 22 bytes +Temperature Probe + Description: SKIN + Location: Motherboard + Status: OK + Maximum Value: 127.0 deg C + Minimum Value: -127.0 deg C + Resolution: 1.000 deg C + Tolerance: Unknown + Accuracy: Unknown + OEM-specific Information: 0x0000DC05 + Nominal Value: 10.0 deg C + +Handle 0x2000, DMI type 32, 11 bytes +System Boot Information + Status: No errors detected + +Handle 0x2700, DMI type 39, 22 bytes +System Power Supply + Power Unit Group: 1 + Location: + Name: + Manufacturer: + Serial Number: + Asset Tag: + Model Part Number: + Revision: + Max Power Capacity: Unknown + Status: Present, Unknown + Type: Unknown + Input Voltage Range Switching: Unknown + Plugged: Yes + Hot Replaceable: No + Input Voltage Probe Handle: 0x0000 + Cooling Device Handle: 0x000A + Input Current Probe Handle: 0x0000 + +Handle 0x2900, DMI type 41, 11 bytes +Onboard Device + Reference Designation: + Type: Video + Status: Enabled + Type Instance: 0 + Bus Address: 0000:00:02.0 + +Handle 0x2901, DMI type 41, 11 bytes +Onboard Device + Reference Designation: + Type: Ethernet + Status: Disabled + Type Instance: 0 + Bus Address: 0000:00:1f.6 + +Handle 0x2902, DMI type 41, 11 bytes +Onboard Device + Reference Designation: + Type: Sound + Status: Disabled + Type Instance: 0 + Bus Address: 0000:00:1f.3 + +Handle 0x2903, DMI type 41, 11 bytes +Onboard Device + Reference Designation: + Type: SATA Controller + Status: Disabled + Type Instance: 0 + Bus Address: 0000:00:17.0 + +Handle 0x2B00, DMI type 43, 31 bytes +TPM Device + Vendor ID: STM + Specification Version: 2.0 Firmware Revision: 74.8 + Description: TPM 2.0, ManufacturerID: STM , Firmware Version: 0x004A0008.0x4 Characteristics: + TPM Device characteristics not supported + OEM-specific Information: 0x00000000 + +Handle 0x0300, DMI type 126, 22 bytes +Inactive + +Handle 0x8200, DMI type 130, 20 bytes +OEM-specific Type + Header and Data: + 82 14 00 82 24 41 4D 54 00 00 00 00 00 A5 AF 02 + C0 00 00 00 + +Handle 0x8300, DMI type 131, 64 bytes +OEM-specific Type + Header and Data: + 83 40 00 83 31 00 00 00 00 00 00 00 00 00 00 00 + F8 00 82 34 00 00 00 00 01 00 00 00 00 00 0D 00 + 33 08 37 00 00 00 00 00 FE 00 FF FF 00 00 00 00 + 00 00 00 00 22 00 00 00 76 50 72 6F 00 00 00 00 + +Handle 0x8800, DMI type 136, 8 bytes +OEM-specific Type + Header and Data: + 88 08 00 88 00 00 00 00 + +Handle 0xB100, DMI type 177, 12 bytes +OEM-specific Type + Header and Data: + B1 0C 00 B1 1A 00 00 00 00 00 00 00 + +Handle 0xB200, DMI type 178, 88 bytes +OEM-specific Type + Header and Data: + B2 58 00 B2 0A 01 12 00 3B 00 0B 00 3C 00 0A 00 + 3D 00 0C 00 3E 00 02 00 40 00 13 00 41 00 14 00 + 42 00 18 00 48 00 FF FF 50 00 FF FF 10 00 FF 00 + 11 00 FF 00 12 00 FF 00 13 00 FF 00 14 00 FF 00 + 1E 00 FF 00 1F 00 FF 00 20 00 FF 00 21 00 FF 00 + 22 00 FF 00 3F 00 16 00 + Strings: + + +Handle 0xCB00, DMI type 203, 106 bytes +OEM-specific Type + Header and Data: + CB 6A 00 CB 01 04 01 45 02 00 A0 06 01 10 82 20 + 00 00 00 04 40 00 00 03 1F 00 00 C9 0B C0 47 02 + FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF FF + FF FF FF FF FF FF FF FF 03 00 00 00 80 00 00 00 + 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 + 00 04 00 00 00 00 00 00 00 00 00 00 00 00 00 00 + 00 00 00 00 00 00 00 00 00 00 + Strings: + MEI1 + MEI2 + MEI3 + MEI4 + +Handle 0xCD00, DMI type 205, 12 bytes +OEM-specific Type + Header and Data: + CD 0C 00 CD 01 01 00 02 00 00 4B 11 + Strings: + BIOS Guard + +Handle 0xCD01, DMI type 205, 26 bytes +OEM-specific Type + Header and Data: + CD 1A 01 CD 03 01 00 08 00 48 10 00 02 00 00 00 + 00 A8 00 03 00 FF FF FF FF FF + Strings: + Reference Code - CPU + uCode Version + TXT ACM version + +Handle 0xCD02, DMI type 205, 26 bytes +OEM-specific Type + Header and Data: + CD 1A 02 CD 03 01 00 08 00 48 10 00 02 00 00 00 + 00 00 00 03 04 0D 00 37 33 08 + Strings: + Reference Code - ME + MEBx version + ME Firmware Version + Consumer SKU + +Handle 0xCD03, DMI type 205, 54 bytes +OEM-specific Type + Header and Data: + CD 36 03 CD 07 01 00 08 00 48 10 00 02 03 FF FF + FF FF FF 04 00 FF FF FF 30 00 05 00 FF FF FF 30 + 00 06 00 02 0A 00 00 00 07 00 17 FF FF FF FF 08 + 00 00 FF FF FF FF + Strings: + Reference Code - ICL PCH + PCH-CRID Status + Disabled + PCH-CRID Original Value + PCH-CRID New Value + OPROM - RST - RAID + ChipsetInit Base Version + ChipsetInit Oem Version + +Handle 0xCD04, DMI type 205, 75 bytes +OEM-specific Type + Header and Data: + CD 4B 04 CD 0A 01 00 08 00 48 10 00 02 00 00 00 + 04 4B 00 03 00 08 00 48 10 00 04 05 FF FF FF FF + FF 06 00 00 00 00 03 00 07 00 00 00 00 03 00 08 + 00 FF FF FF FF FF 09 00 04 13 00 00 00 0A 00 00 + 00 00 00 00 0B 00 00 00 00 00 00 + Strings: + Reference Code - SA - System Agent + Reference Code - MRC + SA - PCIe Version + SA-CRID Status + Disabled + SA-CRID Original Value + SA-CRID New Value + OPROM - VBIOS + IO Manageability Engine FW Version + MG PHY Build Version + Thunderbolt(TM) FW Version + +Handle 0xCD05, DMI type 205, 89 bytes +OEM-specific Type + Header and Data: + CD 59 05 CD 0C 01 00 FF FF FF FF FF 02 00 FF FF + FF FF FF 03 04 FF FF FF FF FF 05 06 FF FF FF FF + FF 07 08 FF FF FF FF FF 09 00 FF FF FF FF FF 0A + 00 FF FF FF FF FF 0B 00 FF FF 00 00 00 0C 00 00 + 14 00 23 10 0D 0E 01 05 02 00 00 0F 00 00 07 00 + 00 00 10 00 00 02 00 0F 00 + Strings: + Lan Phy Version + Sensor Firmware Version + Debug Mode Status + Disabled + Performance Mode Status + Disabled + Debug Use USB(Disabled:Serial) + Disabled + ICC Overclocking Version + UNDI Version + EC FW Version + GOP Version + Royal Park Version + BP1520_Formal_P01_RP01 + Platform Version + Client Silicon Version + +Handle 0xCE00, DMI type 206, 14 bytes +OEM-specific Type + Header and Data: + CE 0E 00 CE 01 99 00 03 10 01 20 02 30 03 + Strings: + Memory Init Complete + End of DXE Phase + BIOS Boot Complete + +Handle 0xD000, DMI type 208, 16 bytes +OEM-specific Type + Header and Data: + D0 10 00 D0 03 11 FE 00 B0 08 01 02 00 00 00 00 + Strings: + 20200120 + 20200202 + +Handle 0xD800, DMI type 216, 9 bytes +OEM-specific Type + Header and Data: + D8 09 00 D8 01 02 01 88 00 + Strings: + "Intel Corp." + "2089" + +Handle 0xD900, DMI type 217, 8 bytes +OEM-specific Type + Header and Data: + D9 08 00 D9 01 02 01 03 + Strings: + US-101 + Proprietary + +Handle 0xDC00, DMI type 220, 22 bytes +OEM-specific Type + Header and Data: + DC 16 00 DC 00 F1 00 00 02 F1 03 F1 00 00 05 F1 + 00 00 00 00 00 00 + +Handle 0xDC01, DMI type 220, 22 bytes +OEM-specific Type + Header and Data: + DC 16 01 DC 10 F1 00 00 12 F1 13 F1 00 00 15 F1 + 00 00 00 00 00 00 + +Handle 0xDC02, DMI type 220, 22 bytes +OEM-specific Type + Header and Data: + DC 16 02 DC 20 F1 00 00 22 F1 23 F1 00 00 25 F1 + 00 00 00 00 00 00 + +Handle 0xDC03, DMI type 220, 22 bytes +OEM-specific Type + Header and Data: + DC 16 03 DC 30 F1 00 00 32 F1 33 F1 00 00 35 F1 + 00 00 00 00 00 00 + +Handle 0xDC04, DMI type 220, 22 bytes +OEM-specific Type + Header and Data: + DC 16 04 DC 40 F1 00 00 42 F1 43 F1 00 00 45 F1 + 00 00 00 00 00 00 + +Handle 0xDC05, DMI type 220, 22 bytes +OEM-specific Type + Header and Data: + DC 16 05 DC 50 F1 00 00 52 F1 53 F1 00 00 55 F1 + 00 00 00 00 00 00 + +Handle 0xDD00, DMI type 221, 19 bytes +OEM-specific Type + Header and Data: + DD 13 00 DD 03 01 00 00 F6 01 F6 02 F6 00 00 04 + F6 00 00 + +Handle 0xDD01, DMI type 221, 19 bytes +OEM-specific Type + Header and Data: + DD 13 01 DD 03 01 00 10 F6 11 F6 12 F6 00 00 14 + F6 00 00 + +Handle 0xDE00, DMI type 222, 16 bytes +OEM-specific Type + Header and Data: + DE 10 00 DE 01 04 00 00 22 03 18 00 04 01 00 00 + +Handle 0x0000, DMI type 255, 6 bytes +OEM-specific Type + Header and Data: + FF 06 00 00 01 02 + Strings: + _SIDF1XMKrW1MLrL + 08B0 + +Handle 0xFEFF, DMI type 127, 4 bytes +End Of Table + diff --git a/t/pt-summary/samples/Linux/006/ip b/t/pt-summary/samples/Linux/006/ip new file mode 100644 index 00000000..5bda9204 --- /dev/null +++ b/t/pt-summary/samples/Linux/006/ip @@ -0,0 +1,36 @@ +1: lo: mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT group default qlen 1000 + link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 + RX: bytes packets errors dropped overrun mcast + 7535270 73015 0 0 0 0 + TX: bytes packets errors dropped carrier collsns + 7535270 73015 0 0 0 0 +2: wlp0s20f3: mtu 1500 qdisc noqueue state UP mode DORMANT group default qlen 1000 + link/ether 98:af:65:26:69:57 brd ff:ff:ff:ff:ff:ff + RX: bytes packets errors dropped overrun mcast + 1657084859 1627351 0 3636 0 0 + TX: bytes packets errors dropped carrier collsns + 428035923 961445 0 0 0 0 +3: br-5bbb6abaea1c: mtu 1500 qdisc noqueue state DOWN mode DEFAULT group default + link/ether 02:42:1f:31:64:19 brd ff:ff:ff:ff:ff:ff + RX: bytes packets errors dropped overrun mcast + 0 0 0 0 0 0 + TX: bytes packets errors dropped carrier collsns + 0 0 0 0 0 0 +4: docker0: mtu 1500 qdisc noqueue state UP mode DEFAULT group default + link/ether 02:42:b7:f9:b8:f1 brd ff:ff:ff:ff:ff:ff + RX: bytes packets errors dropped overrun mcast + 9263705 72006 0 0 0 0 + TX: bytes packets errors dropped carrier collsns + 38436691 83442 0 0 0 0 +6: veth311b798@if5: mtu 1500 qdisc noqueue master docker0 state UP mode DEFAULT group default + link/ether 6e:52:2e:46:58:3f brd ff:ff:ff:ff:ff:ff link-netnsid 0 + RX: bytes packets errors dropped overrun mcast + 9194725 58288 0 0 0 0 + TX: bytes packets errors dropped carrier collsns + 8681936 66908 0 0 0 0 +8: veth505c1de@if7: mtu 1500 qdisc noqueue master docker0 state UP mode DEFAULT group default + link/ether 46:fd:9c:ed:47:ab brd ff:ff:ff:ff:ff:ff link-netnsid 1 + RX: bytes packets errors dropped overrun mcast + 1077064 13718 0 0 0 0 + TX: bytes packets errors dropped carrier collsns + 30420523 20005 0 0 0 0 diff --git a/t/pt-summary/samples/Linux/006/lspci_file b/t/pt-summary/samples/Linux/006/lspci_file new file mode 100644 index 00000000..49b93ba3 --- /dev/null +++ b/t/pt-summary/samples/Linux/006/lspci_file @@ -0,0 +1,25 @@ +00:00.0 Host bridge: Intel Corporation Device 8a12 (rev 03) +00:02.0 VGA compatible controller: Intel Corporation Iris Plus Graphics G7 (rev 07) +00:04.0 Signal processing controller: Intel Corporation Device 8a03 (rev 03) +00:05.0 Multimedia controller: Intel Corporation Device 8a19 (rev 03) +00:07.0 PCI bridge: Intel Corporation Ice Lake Thunderbolt 3 PCI Express Root Port #0 (rev 03) +00:07.2 PCI bridge: Intel Corporation Ice Lake Thunderbolt 3 PCI Express Root Port #2 (rev 03) +00:0d.0 USB controller: Intel Corporation Ice Lake Thunderbolt 3 USB Controller (rev 03) +00:0d.2 System peripheral: Intel Corporation Ice Lake Thunderbolt 3 NHI #0 (rev 03) +00:0d.3 System peripheral: Intel Corporation Ice Lake Thunderbolt 3 NHI #1 (rev 03) +00:12.0 Serial controller: Intel Corporation Device 34fc (rev 30) +00:14.0 USB controller: Intel Corporation Ice Lake-LP USB 3.1 xHCI Host Controller (rev 30) +00:14.2 RAM memory: Intel Corporation Device 34ef (rev 30) +00:14.3 Network controller: Intel Corporation Killer Wi-Fi 6 AX1650i 160MHz Wireless Network Adapter (201NGW) (rev 30) +00:15.0 Serial bus controller [0c80]: Intel Corporation Ice Lake-LP Serial IO I2C Controller #0 (rev 30) +00:15.1 Serial bus controller [0c80]: Intel Corporation Ice Lake-LP Serial IO I2C Controller #1 (rev 30) +00:15.3 Serial bus controller [0c80]: Intel Corporation Ice Lake-LP Serial IO I2C Controller #3 (rev 30) +00:16.0 Communication controller: Intel Corporation Management Engine Interface (rev 30) +00:1d.0 PCI bridge: Intel Corporation Ice Lake-LP PCI Express Root Port #9 (rev 30) +00:1d.7 PCI bridge: Intel Corporation Device 34b7 (rev 30) +00:1f.0 ISA bridge: Intel Corporation Ice Lake-LP LPC Controller (rev 30) +00:1f.3 Audio device: Intel Corporation Smart Sound Technology Audio Controller (rev 30) +00:1f.4 SMBus: Intel Corporation Ice Lake-LP SMBus Controller (rev 30) +00:1f.5 Serial bus controller [0c80]: Intel Corporation Ice Lake-LP SPI Controller (rev 30) +57:00.0 Non-Volatile memory controller: KIOXIA Corporation Device 0001 +58:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. RTS525A PCI Express Card Reader (rev 01) diff --git a/t/pt-summary/samples/Linux/006/lvs b/t/pt-summary/samples/Linux/006/lvs new file mode 100644 index 00000000..8031e953 --- /dev/null +++ b/t/pt-summary/samples/Linux/006/lvs @@ -0,0 +1,3 @@ + LV VG Attr LSize Pool Origin Data% Meta% Move Log Cpy%Sync Convert + root vgubuntu -wi-ao---- <930,37g + swap_1 vgubuntu -wi-ao---- 976,00m diff --git a/t/pt-summary/samples/Linux/006/memory b/t/pt-summary/samples/Linux/006/memory new file mode 100644 index 00000000..5a5d7da9 --- /dev/null +++ b/t/pt-summary/samples/Linux/006/memory @@ -0,0 +1,54 @@ + total used free shared buff/cache available +Mem: 33426010112 13475635200 2393817088 5954158592 17556557824 13557874688 +Swap: 1023406080 128450560 894955520 +MemTotal: 32642588 kB +MemFree: 2337712 kB +MemAvailable: 13240112 kB +Buffers: 2027332 kB +Cached: 14349788 kB +SwapCached: 12984 kB +Active: 9644920 kB +Inactive: 18029536 kB +Active(anon): 2285512 kB +Inactive(anon): 14784956 kB +Active(file): 7359408 kB +Inactive(file): 3244580 kB +Unevictable: 901668 kB +Mlocked: 144 kB +SwapTotal: 999420 kB +SwapFree: 873980 kB +Dirty: 3992 kB +Writeback: 0 kB +AnonPages: 12185872 kB +Mapped: 2033720 kB +Shmem: 5814608 kB +KReclaimable: 767956 kB +Slab: 1063368 kB +SReclaimable: 767956 kB +SUnreclaim: 295412 kB +KernelStack: 47372 kB +PageTables: 188572 kB +NFS_Unstable: 0 kB +Bounce: 0 kB +WritebackTmp: 0 kB +CommitLimit: 17320712 kB +Committed_AS: 43974304 kB +VmallocTotal: 34359738367 kB +VmallocUsed: 83948 kB +VmallocChunk: 0 kB +Percpu: 10688 kB +HardwareCorrupted: 0 kB +AnonHugePages: 12288 kB +ShmemHugePages: 0 kB +ShmemPmdMapped: 0 kB +FileHugePages: 0 kB +FilePmdMapped: 0 kB +HugePages_Total: 0 +HugePages_Free: 0 +HugePages_Rsvd: 0 +HugePages_Surp: 0 +Hugepagesize: 2048 kB +Hugetlb: 0 kB +DirectMap4k: 1220240 kB +DirectMap2M: 22661120 kB +DirectMap1G: 10485760 kB diff --git a/t/pt-summary/samples/Linux/006/mounted_fs b/t/pt-summary/samples/Linux/006/mounted_fs new file mode 100644 index 00000000..bdb075d6 --- /dev/null +++ b/t/pt-summary/samples/Linux/006/mounted_fs @@ -0,0 +1,39 @@ +/dev/mapper/vgubuntu-root 915G 646G 223G 75% / on / type ext4 (rw,relatime,errors=remount-ro) +/dev/mmcblk0p1 239G 214G 26G 90% /media/sveta/disk1 on /media/sveta/disk1 type fuseblk (rw,nosuid,nodev,relatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096,uhelper=udisks2) +/dev/nvme0n1p1 511M 19M 493M 4% /boot/efi on /boot/efi type vfat (rw,relatime,fmask=0077,dmask=0077,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro) +/dev/nvme0n1p2 704M 269M 384M 42% /boot on /boot type ext4 (rw,relatime) +overlay 915G 646G 223G 75% /var/lib/docker/overlay2/c9349dd66a824eb0883d69eb6114a6d713a48901579c45267ef1bea3c6ab7a1a/merged on /var/lib/docker/overlay2/c9349dd66a824eb0883d69eb6114a6d713a48901579c45267ef1bea3c6ab7a1a/merged type overlay (rw,relatime,lowerdir=/var/lib/docker/overlay2/l/FQIQG2VFFXJ426FBUGGBSCWRG2:/var/lib/docker/overlay2/l/33C2CVPTOUZAT35KSL6I6DIWBZ:/var/lib/docker/overlay2/l/JTYFHSFS4TSV4PYBIQ7R57HCJ7,upperdir=/var/lib/docker/overlay2/c9349dd66a824eb0883d69eb6114a6d713a48901579c45267ef1bea3c6ab7a1a/diff,workdir=/var/lib/docker/overlay2/c9349dd66a824eb0883d69eb6114a6d713a48901579c45267ef1bea3c6ab7a1a/work) +overlay 915G 646G 223G 75% /var/lib/docker/overlay2/c9349dd66a824eb0883d69eb6114a6d713a48901579c45267ef1bea3c6ab7a1a/merged on /var/lib/docker/overlay2/f70a41a21dd8b3172c92e29fe1b91dfde0a65cfc878ee78acfad91e47124385c/merged type overlay (rw,relatime,lowerdir=/var/lib/docker/overlay2/l/RFAP7AE62T2GF223V7KCEJDN64:/var/lib/docker/overlay2/l/33C2CVPTOUZAT35KSL6I6DIWBZ:/var/lib/docker/overlay2/l/JTYFHSFS4TSV4PYBIQ7R57HCJ7,upperdir=/var/lib/docker/overlay2/f70a41a21dd8b3172c92e29fe1b91dfde0a65cfc878ee78acfad91e47124385c/diff,workdir=/var/lib/docker/overlay2/f70a41a21dd8b3172c92e29fe1b91dfde0a65cfc878ee78acfad91e47124385c/work) +overlay 915G 646G 223G 75% /var/lib/docker/overlay2/f70a41a21dd8b3172c92e29fe1b91dfde0a65cfc878ee78acfad91e47124385c/merged on /var/lib/docker/overlay2/c9349dd66a824eb0883d69eb6114a6d713a48901579c45267ef1bea3c6ab7a1a/merged type overlay (rw,relatime,lowerdir=/var/lib/docker/overlay2/l/FQIQG2VFFXJ426FBUGGBSCWRG2:/var/lib/docker/overlay2/l/33C2CVPTOUZAT35KSL6I6DIWBZ:/var/lib/docker/overlay2/l/JTYFHSFS4TSV4PYBIQ7R57HCJ7,upperdir=/var/lib/docker/overlay2/c9349dd66a824eb0883d69eb6114a6d713a48901579c45267ef1bea3c6ab7a1a/diff,workdir=/var/lib/docker/overlay2/c9349dd66a824eb0883d69eb6114a6d713a48901579c45267ef1bea3c6ab7a1a/work) +overlay 915G 646G 223G 75% /var/lib/docker/overlay2/f70a41a21dd8b3172c92e29fe1b91dfde0a65cfc878ee78acfad91e47124385c/merged on /var/lib/docker/overlay2/f70a41a21dd8b3172c92e29fe1b91dfde0a65cfc878ee78acfad91e47124385c/merged type overlay (rw,relatime,lowerdir=/var/lib/docker/overlay2/l/RFAP7AE62T2GF223V7KCEJDN64:/var/lib/docker/overlay2/l/33C2CVPTOUZAT35KSL6I6DIWBZ:/var/lib/docker/overlay2/l/JTYFHSFS4TSV4PYBIQ7R57HCJ7,upperdir=/var/lib/docker/overlay2/f70a41a21dd8b3172c92e29fe1b91dfde0a65cfc878ee78acfad91e47124385c/diff,workdir=/var/lib/docker/overlay2/f70a41a21dd8b3172c92e29fe1b91dfde0a65cfc878ee78acfad91e47124385c/work) +tmpfs 16G 0 16G 0% /sys/fs/cgroup on /dev/shm type tmpfs (rw,nosuid,nodev,inode64) +tmpfs 16G 0 16G 0% /sys/fs/cgroup on /run/lock type tmpfs (rw,nosuid,nodev,noexec,relatime,size=5120k,inode64) +tmpfs 16G 0 16G 0% /sys/fs/cgroup on /run/snapd/ns type tmpfs (rw,nosuid,nodev,noexec,relatime,size=3264260k,mode=755,inode64) +tmpfs 16G 0 16G 0% /sys/fs/cgroup on /run type tmpfs (rw,nosuid,nodev,noexec,relatime,size=3264260k,mode=755,inode64) +tmpfs 16G 0 16G 0% /sys/fs/cgroup on /run/user/1000 type tmpfs (rw,nosuid,nodev,relatime,size=3264256k,mode=700,uid=1000,gid=1000,inode64) +tmpfs 16G 0 16G 0% /sys/fs/cgroup on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,mode=755,inode64) +tmpfs 16G 205M 16G 2% /dev/shm on /dev/shm type tmpfs (rw,nosuid,nodev,inode64) +tmpfs 16G 205M 16G 2% /dev/shm on /run/lock type tmpfs (rw,nosuid,nodev,noexec,relatime,size=5120k,inode64) +tmpfs 16G 205M 16G 2% /dev/shm on /run/snapd/ns type tmpfs (rw,nosuid,nodev,noexec,relatime,size=3264260k,mode=755,inode64) +tmpfs 16G 205M 16G 2% /dev/shm on /run type tmpfs (rw,nosuid,nodev,noexec,relatime,size=3264260k,mode=755,inode64) +tmpfs 16G 205M 16G 2% /dev/shm on /run/user/1000 type tmpfs (rw,nosuid,nodev,relatime,size=3264256k,mode=700,uid=1000,gid=1000,inode64) +tmpfs 16G 205M 16G 2% /dev/shm on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,mode=755,inode64) +tmpfs 3,2G 2,8M 3,2G 1% /run on /dev/shm type tmpfs (rw,nosuid,nodev,inode64) +tmpfs 3,2G 2,8M 3,2G 1% /run on /run/lock type tmpfs (rw,nosuid,nodev,noexec,relatime,size=5120k,inode64) +tmpfs 3,2G 2,8M 3,2G 1% /run on /run/snapd/ns type tmpfs (rw,nosuid,nodev,noexec,relatime,size=3264260k,mode=755,inode64) +tmpfs 3,2G 2,8M 3,2G 1% /run on /run type tmpfs (rw,nosuid,nodev,noexec,relatime,size=3264260k,mode=755,inode64) +tmpfs 3,2G 2,8M 3,2G 1% /run on /run/user/1000 type tmpfs (rw,nosuid,nodev,relatime,size=3264256k,mode=700,uid=1000,gid=1000,inode64) +tmpfs 3,2G 2,8M 3,2G 1% /run on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,mode=755,inode64) +tmpfs 3,2G 88K 3,2G 1% /run/user/1000 on /dev/shm type tmpfs (rw,nosuid,nodev,inode64) +tmpfs 3,2G 88K 3,2G 1% /run/user/1000 on /run/lock type tmpfs (rw,nosuid,nodev,noexec,relatime,size=5120k,inode64) +tmpfs 3,2G 88K 3,2G 1% /run/user/1000 on /run/snapd/ns type tmpfs (rw,nosuid,nodev,noexec,relatime,size=3264260k,mode=755,inode64) +tmpfs 3,2G 88K 3,2G 1% /run/user/1000 on /run type tmpfs (rw,nosuid,nodev,noexec,relatime,size=3264260k,mode=755,inode64) +tmpfs 3,2G 88K 3,2G 1% /run/user/1000 on /run/user/1000 type tmpfs (rw,nosuid,nodev,relatime,size=3264256k,mode=700,uid=1000,gid=1000,inode64) +tmpfs 3,2G 88K 3,2G 1% /run/user/1000 on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,mode=755,inode64) +tmpfs 5,0M 4,0K 5,0M 1% /run/lock on /dev/shm type tmpfs (rw,nosuid,nodev,inode64) +tmpfs 5,0M 4,0K 5,0M 1% /run/lock on /run/lock type tmpfs (rw,nosuid,nodev,noexec,relatime,size=5120k,inode64) +tmpfs 5,0M 4,0K 5,0M 1% /run/lock on /run/snapd/ns type tmpfs (rw,nosuid,nodev,noexec,relatime,size=3264260k,mode=755,inode64) +tmpfs 5,0M 4,0K 5,0M 1% /run/lock on /run type tmpfs (rw,nosuid,nodev,noexec,relatime,size=3264260k,mode=755,inode64) +tmpfs 5,0M 4,0K 5,0M 1% /run/lock on /run/user/1000 type tmpfs (rw,nosuid,nodev,relatime,size=3264256k,mode=700,uid=1000,gid=1000,inode64) +tmpfs 5,0M 4,0K 5,0M 1% /run/lock on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,mode=755,inode64) +udev 16G 0 16G 0% /dev on /dev type devtmpfs (rw,nosuid,noexec,relatime,size=16256608k,nr_inodes=4064152,mode=755,inode64) diff --git a/t/pt-summary/samples/Linux/006/netstat b/t/pt-summary/samples/Linux/006/netstat new file mode 100644 index 00000000..de08664e --- /dev/null +++ b/t/pt-summary/samples/Linux/006/netstat @@ -0,0 +1,87 @@ +Active Internet connections (servers and established) +Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name +tcp 0 0 0.0.0.0:2049 0.0.0.0:* LISTEN - +tcp 0 0 0.0.0.0:443 0.0.0.0:* LISTEN 4451/docker-proxy +tcp 0 0 0.0.0.0:111 0.0.0.0:* LISTEN 1/init +tcp 0 0 0.0.0.0:17500 0.0.0.0:* LISTEN 6630/dropbox +tcp 0 0 127.0.0.53:53 0.0.0.0:* LISTEN 1577/systemd-resolv +tcp 0 0 0.0.0.0:5100 0.0.0.0:* LISTEN 1889/haproxy +tcp 0 0 127.0.0.1:42857 0.0.0.0:* LISTEN 1825/pmm-agent +tcp 0 0 0.0.0.0:37607 0.0.0.0:* LISTEN - +tcp 0 0 0.0.0.0:38653 0.0.0.0:* LISTEN 1872/rpc.mountd +tcp 0 0 127.0.0.1:7777 0.0.0.0:* LISTEN 1825/pmm-agent +tcp 0 0 0.0.0.0:60983 0.0.0.0:* LISTEN 1872/rpc.mountd +tcp 0 0 127.0.0.1:39817 0.0.0.0:* LISTEN 1836/containerd +tcp 0 0 127.0.0.1:5432 0.0.0.0:* LISTEN 2003/postgres +tcp 0 0 127.0.0.1:17603 0.0.0.0:* LISTEN 6630/dropbox +tcp 0 0 127.0.0.1:17600 0.0.0.0:* LISTEN 6630/dropbox +tcp 0 0 0.0.0.0:45741 0.0.0.0:* LISTEN 1872/rpc.mountd +tcp 0 0 127.0.0.1:25 0.0.0.0:* LISTEN 4777/master +tcp 0 0 127.0.0.1:631 0.0.0.0:* LISTEN 1632/cupsd +tcp 0 0 192.168.1.25:42348 52.73.62.51:443 ESTABLISHED 2425/s1-network +tcp 0 0 172.17.0.1:48718 172.17.0.2:443 TIME_WAIT - +tcp 0 0 172.17.0.1:48720 172.17.0.2:443 TIME_WAIT - +tcp 0 0 192.168.1.25:36336 157.240.9.53:443 ESTABLISHED 13327/wavebox --typ +tcp 0 0 192.168.1.25:50798 185.166.143.25:443 ESTABLISHED 13327/wavebox --typ +tcp 0 0 192.168.1.25:38128 162.220.4.198:22 ESTABLISHED 2378176/ssh +tcp 0 0 192.168.1.25:41906 108.177.127.108:993 ESTABLISHED 474260/thunderbird +tcp 0 0 192.168.1.25:48500 18.197.249.189:443 ESTABLISHED 7119/Slack --standa +tcp 0 0 192.168.1.25:48494 18.197.249.189:443 ESTABLISHED 7119/Slack --standa +tcp 0 0 192.168.1.25:55614 198.57.27.221:993 ESTABLISHED 474260/thunderbird +tcp 0 0 192.168.1.25:34404 52.59.193.28:443 ESTABLISHED 13327/wavebox --typ +tcp 1 0 192.168.11.22:57302 108.157.4.6:443 CLOSE_WAIT 12357/python3 +tcp 0 0 192.168.1.25:59664 82.202.226.23:443 ESTABLISHED 11292/firefox +tcp 0 0 192.168.1.25:34400 173.194.79.109:993 ESTABLISHED 474260/thunderbird +tcp 0 0 192.168.1.25:42474 84.38.188.87:443 ESTABLISHED 11292/firefox +tcp 0 0 192.168.1.25:51650 35.174.188.51:443 ESTABLISHED 11292/firefox +tcp 39 0 192.168.11.22:37302 35.168.140.53:443 CLOSE_WAIT 12357/python3 +tcp 0 0 192.168.1.25:60640 162.125.19.131:443 ESTABLISHED 6630/dropbox +tcp 0 0 192.168.1.25:48504 18.197.249.189:443 ESTABLISHED 7119/Slack --standa +tcp 0 0 192.168.1.25:38238 142.132.213.154:443 ESTABLISHED 13327/wavebox --typ +tcp 0 0 192.168.1.25:45476 149.96.232.184:443 ESTABLISHED 11292/firefox +tcp 0 0 172.17.0.1:48724 172.17.0.2:443 TIME_WAIT - +tcp 0 0 127.0.0.1:56862 127.0.0.1:42857 ESTABLISHED 1825/pmm-agent +tcp 1 0 192.168.11.22:40140 34.117.237.239:443 CLOSE_WAIT 12357/python3 +tcp 0 0 192.168.1.25:44984 54.146.182.72:443 ESTABLISHED 11292/firefox +tcp 0 0 192.168.1.25:40314 108.177.119.109:993 ESTABLISHED 474260/thunderbird +tcp 0 0 192.168.1.25:45412 149.96.232.184:443 ESTABLISHED 11292/firefox +tcp 1 0 192.168.11.22:37304 35.168.140.53:443 CLOSE_WAIT 12357/python3 +tcp 0 0 192.168.1.25:48502 18.197.249.189:443 ESTABLISHED 7119/Slack --standa +tcp 0 0 192.168.1.25:35324 23.61.80.242:443 ESTABLISHED 13327/wavebox --typ +tcp 1 0 192.168.11.22:50386 35.186.227.140:443 CLOSE_WAIT 12357/python3 +tcp 0 0 192.168.1.25:47450 172.67.8.157:443 TIME_WAIT - +tcp 0 0 192.168.1.25:58620 149.154.167.51:443 ESTABLISHED 181231/Telegram +tcp 1 0 192.168.11.22:49692 93.184.220.29:80 CLOSE_WAIT 12357/python3 +tcp 0 0 192.168.1.25:42408 35.174.127.31:443 ESTABLISHED 13327/wavebox --typ +tcp 0 0 192.168.1.25:48498 18.197.249.189:443 ESTABLISHED 7119/Slack --standa +tcp 0 0 172.17.0.1:48722 172.17.0.2:443 TIME_WAIT - +tcp 39 0 192.168.11.22:37306 35.168.140.53:443 CLOSE_WAIT 12357/python3 +tcp 1 0 192.168.11.22:49690 93.184.220.29:80 CLOSE_WAIT 12357/python3 +tcp 39 0 192.168.11.22:37300 35.168.140.53:443 CLOSE_WAIT 12357/python3 +tcp 0 0 192.168.1.25:39040 3.233.54.64:443 ESTABLISHED 7119/Slack --standa +tcp 0 0 192.168.1.25:59964 108.177.126.188:5228 ESTABLISHED 13327/wavebox --typ +tcp 0 0 192.168.1.25:58452 3.126.186.102:443 ESTABLISHED 7119/Slack --standa +tcp 0 0 192.168.1.25:50262 173.194.69.108:993 ESTABLISHED 474260/thunderbird +tcp 0 0 127.0.0.1:42857 127.0.0.1:56862 ESTABLISHED 1825/pmm-agent +tcp 0 0 192.168.1.25:34402 173.194.79.109:993 ESTABLISHED 474260/thunderbird +tcp 0 0 192.168.1.25:54208 162.125.19.9:443 ESTABLISHED 6630/dropbox +tcp 0 0 192.168.1.25:42406 35.174.127.31:443 ESTABLISHED 11292/firefox +tcp 0 0 192.168.1.25:44784 3.67.131.16:443 ESTABLISHED 7119/Slack --standa +tcp 0 0 192.168.1.25:48508 18.197.249.189:443 ESTABLISHED 7119/Slack --standa +tcp 0 0 192.168.1.25:50712 108.139.241.22:443 ESTABLISHED 11292/firefox +tcp 0 0 192.168.1.25:60766 54.244.16.100:443 ESTABLISHED 11292/firefox +tcp 0 0 192.168.1.25:48506 18.197.249.189:443 ESTABLISHED 7119/Slack --standa +tcp6 0 0 ::1:631 :::* LISTEN 1632/cupsd +tcp6 0 0 :::2049 :::* LISTEN - +tcp6 0 0 :::3000 :::* LISTEN 2882/grafana-server +tcp6 0 0 ::1:25 :::* LISTEN 4777/master +tcp6 0 0 :::3306 :::* LISTEN 1996/mysqld +tcp6 0 0 :::33060 :::* LISTEN 1996/mysqld +tcp6 0 0 :::443 :::* LISTEN 4459/docker-proxy +tcp6 0 0 :::111 :::* LISTEN 1/init +tcp6 0 0 :::17500 :::* LISTEN 6630/dropbox +tcp6 0 0 :::1716 :::* LISTEN 6285/kdeconnectd +tcp6 0 0 :::37817 :::* LISTEN - +tcp6 0 0 :::54381 :::* LISTEN 1872/rpc.mountd +tcp6 0 0 :::41909 :::* LISTEN 1872/rpc.mountd +tcp6 0 0 :::47587 :::* LISTEN 1872/rpc.mountd diff --git a/t/pt-summary/samples/Linux/006/network_devices b/t/pt-summary/samples/Linux/006/network_devices new file mode 100644 index 00000000..fee662c8 --- /dev/null +++ b/t/pt-summary/samples/Linux/006/network_devices @@ -0,0 +1,36 @@ +Settings for br-5bbb6abaea1c: + Supported ports: [ ] + Supported link modes: Not reported + Supported pause frame use: No + Supports auto-negotiation: No + Supported FEC modes: Not reported + Advertised link modes: Not reported + Advertised pause frame use: No + Advertised auto-negotiation: No + Advertised FEC modes: Not reported + Speed: Unknown! + Duplex: Unknown! (255) + Port: Other + PHYAD: 0 + Transceiver: internal + Auto-negotiation: off + Link detected: no +Settings for docker0: + Supported ports: [ ] + Supported link modes: Not reported + Supported pause frame use: No + Supports auto-negotiation: No + Supported FEC modes: Not reported + Advertised link modes: Not reported + Advertised pause frame use: No + Advertised auto-negotiation: No + Advertised FEC modes: Not reported + Speed: 10000Mb/s + Duplex: Unknown! (255) + Port: Other + PHYAD: 0 + Transceiver: internal + Auto-negotiation: off + Link detected: yes +Settings for wlp0s20f3: + Link detected: yes diff --git a/t/pt-summary/samples/Linux/006/notable_procs b/t/pt-summary/samples/Linux/006/notable_procs new file mode 100644 index 00000000..12d2fbe6 --- /dev/null +++ b/t/pt-summary/samples/Linux/006/notable_procs @@ -0,0 +1,2 @@ + PID OOM COMMAND + ? ? sshd doesn't appear to be running diff --git a/t/pt-summary/samples/Linux/006/numactl b/t/pt-summary/samples/Linux/006/numactl new file mode 100644 index 00000000..99178cfd --- /dev/null +++ b/t/pt-summary/samples/Linux/006/numactl @@ -0,0 +1,13 @@ +available: 1 nodes (0) +node 0 cpus: 0 1 2 3 4 5 6 7 +node 0 size: 31877 MB +node 0 free: 2282 MB +node distances: +node 0 + 0: 10 +policy: default +preferred node: current +physcpubind: 0 1 2 3 4 5 6 7 +cpubind: 0 +nodebind: 0 +membind: 0 diff --git a/t/pt-summary/samples/Linux/006/partitioning b/t/pt-summary/samples/Linux/006/partitioning new file mode 100644 index 00000000..20b96200 --- /dev/null +++ b/t/pt-summary/samples/Linux/006/partitioning @@ -0,0 +1,33 @@ +Disk /dev/dm-0: 952,65 GiB, 1022886936576 bytes, 1997826048 sectors +Units: sectors of 1 * 512 = 512 bytes +Sector size (logical/physical): 512 bytes / 512 bytes +I/O size (minimum/optimal): 512 bytes / 512 bytes +Disk /dev/dm-1: 930,38 GiB, 998974160896 bytes, 1951121408 sectors +Units: sectors of 1 * 512 = 512 bytes +Sector size (logical/physical): 512 bytes / 512 bytes +I/O size (minimum/optimal): 512 bytes / 512 bytes +Disk /dev/dm-2: 976 MiB, 1023410176 bytes, 1998848 sectors +Units: sectors of 1 * 512 = 512 bytes +Sector size (logical/physical): 512 bytes / 512 bytes +I/O size (minimum/optimal): 512 bytes / 512 bytes +Disk /dev/mmcblk0: 238,51 GiB, 256087425024 bytes, 500170752 sectors +Units: sectors of 1 * 512 = 512 bytes +Sector size (logical/physical): 512 bytes / 512 bytes +I/O size (minimum/optimal): 512 bytes / 512 bytes +Disklabel type: dos +Disk identifier: 0x00000000 + +Device Boot Start End Sectors Size Id Type +/dev/mmcblk0p1 65536 500170751 500105216 238,5G 7 HPFS/NTFS/exFAT +Disk /dev/nvme0n1: 953,89 GiB, 1024209543168 bytes, 2000409264 sectors +Disk model: KBG40ZPZ1T02 NVMe KIOXIA 1024GB +Units: sectors of 1 * 512 = 512 bytes +Sector size (logical/physical): 512 bytes / 512 bytes +I/O size (minimum/optimal): 512 bytes / 512 bytes +Disklabel type: gpt +Disk identifier: 85C611CD-5431-4294-868D-B74F61A4AEBC + +Device Start End Sectors Size Type +/dev/nvme0n1p1 2048 1050623 1048576 512M EFI System +/dev/nvme0n1p2 1050624 2549759 1499136 732M Linux filesystem +/dev/nvme0n1p3 2549760 2000408575 1997858816 952,7G Linux filesystem diff --git a/t/pt-summary/samples/Linux/006/proc_cpuinfo_copy b/t/pt-summary/samples/Linux/006/proc_cpuinfo_copy new file mode 100644 index 00000000..1914919a --- /dev/null +++ b/t/pt-summary/samples/Linux/006/proc_cpuinfo_copy @@ -0,0 +1,224 @@ +processor : 0 +vendor_id : GenuineIntel +cpu family : 6 +model : 126 +model name : Intel(R) Core(TM) i7-1065G7 CPU @ 1.30GHz +stepping : 5 +microcode : 0xb0 +cpu MHz : 1500.000 +cache size : 8192 KB +physical id : 0 +siblings : 8 +core id : 0 +cpu cores : 4 +apicid : 0 +initial apicid : 0 +fpu : yes +fpu_exception : yes +cpuid level : 27 +wp : yes +flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid avx512f avx512dq rdseed adx smap avx512ifma clflushopt intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves split_lock_detect dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req avx512vbmi umip pku ospke avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg avx512_vpopcntdq rdpid fsrm md_clear flush_l1d arch_capabilities +vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple pml ept_mode_based_exec tsc_scaling +bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs itlb_multihit srbds mmio_stale_data +bogomips : 2995.20 +clflush size : 64 +cache_alignment : 64 +address sizes : 39 bits physical, 48 bits virtual +power management: + +processor : 1 +vendor_id : GenuineIntel +cpu family : 6 +model : 126 +model name : Intel(R) Core(TM) i7-1065G7 CPU @ 1.30GHz +stepping : 5 +microcode : 0xb0 +cpu MHz : 1500.000 +cache size : 8192 KB +physical id : 0 +siblings : 8 +core id : 1 +cpu cores : 4 +apicid : 2 +initial apicid : 2 +fpu : yes +fpu_exception : yes +cpuid level : 27 +wp : yes +flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid avx512f avx512dq rdseed adx smap avx512ifma clflushopt intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves split_lock_detect dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req avx512vbmi umip pku ospke avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg avx512_vpopcntdq rdpid fsrm md_clear flush_l1d arch_capabilities +vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple pml ept_mode_based_exec tsc_scaling +bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs itlb_multihit srbds mmio_stale_data +bogomips : 2995.20 +clflush size : 64 +cache_alignment : 64 +address sizes : 39 bits physical, 48 bits virtual +power management: + +processor : 2 +vendor_id : GenuineIntel +cpu family : 6 +model : 126 +model name : Intel(R) Core(TM) i7-1065G7 CPU @ 1.30GHz +stepping : 5 +microcode : 0xb0 +cpu MHz : 1500.000 +cache size : 8192 KB +physical id : 0 +siblings : 8 +core id : 2 +cpu cores : 4 +apicid : 4 +initial apicid : 4 +fpu : yes +fpu_exception : yes +cpuid level : 27 +wp : yes +flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid avx512f avx512dq rdseed adx smap avx512ifma clflushopt intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves split_lock_detect dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req avx512vbmi umip pku ospke avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg avx512_vpopcntdq rdpid fsrm md_clear flush_l1d arch_capabilities +vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple pml ept_mode_based_exec tsc_scaling +bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs itlb_multihit srbds mmio_stale_data +bogomips : 2995.20 +clflush size : 64 +cache_alignment : 64 +address sizes : 39 bits physical, 48 bits virtual +power management: + +processor : 3 +vendor_id : GenuineIntel +cpu family : 6 +model : 126 +model name : Intel(R) Core(TM) i7-1065G7 CPU @ 1.30GHz +stepping : 5 +microcode : 0xb0 +cpu MHz : 1500.000 +cache size : 8192 KB +physical id : 0 +siblings : 8 +core id : 3 +cpu cores : 4 +apicid : 6 +initial apicid : 6 +fpu : yes +fpu_exception : yes +cpuid level : 27 +wp : yes +flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid avx512f avx512dq rdseed adx smap avx512ifma clflushopt intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves split_lock_detect dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req avx512vbmi umip pku ospke avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg avx512_vpopcntdq rdpid fsrm md_clear flush_l1d arch_capabilities +vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple pml ept_mode_based_exec tsc_scaling +bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs itlb_multihit srbds mmio_stale_data +bogomips : 2995.20 +clflush size : 64 +cache_alignment : 64 +address sizes : 39 bits physical, 48 bits virtual +power management: + +processor : 4 +vendor_id : GenuineIntel +cpu family : 6 +model : 126 +model name : Intel(R) Core(TM) i7-1065G7 CPU @ 1.30GHz +stepping : 5 +microcode : 0xb0 +cpu MHz : 3113.329 +cache size : 8192 KB +physical id : 0 +siblings : 8 +core id : 0 +cpu cores : 4 +apicid : 1 +initial apicid : 1 +fpu : yes +fpu_exception : yes +cpuid level : 27 +wp : yes +flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid avx512f avx512dq rdseed adx smap avx512ifma clflushopt intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves split_lock_detect dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req avx512vbmi umip pku ospke avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg avx512_vpopcntdq rdpid fsrm md_clear flush_l1d arch_capabilities +vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple pml ept_mode_based_exec tsc_scaling +bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs itlb_multihit srbds mmio_stale_data +bogomips : 2995.20 +clflush size : 64 +cache_alignment : 64 +address sizes : 39 bits physical, 48 bits virtual +power management: + +processor : 5 +vendor_id : GenuineIntel +cpu family : 6 +model : 126 +model name : Intel(R) Core(TM) i7-1065G7 CPU @ 1.30GHz +stepping : 5 +microcode : 0xb0 +cpu MHz : 1500.000 +cache size : 8192 KB +physical id : 0 +siblings : 8 +core id : 1 +cpu cores : 4 +apicid : 3 +initial apicid : 3 +fpu : yes +fpu_exception : yes +cpuid level : 27 +wp : yes +flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid avx512f avx512dq rdseed adx smap avx512ifma clflushopt intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves split_lock_detect dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req avx512vbmi umip pku ospke avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg avx512_vpopcntdq rdpid fsrm md_clear flush_l1d arch_capabilities +vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple pml ept_mode_based_exec tsc_scaling +bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs itlb_multihit srbds mmio_stale_data +bogomips : 2995.20 +clflush size : 64 +cache_alignment : 64 +address sizes : 39 bits physical, 48 bits virtual +power management: + +processor : 6 +vendor_id : GenuineIntel +cpu family : 6 +model : 126 +model name : Intel(R) Core(TM) i7-1065G7 CPU @ 1.30GHz +stepping : 5 +microcode : 0xb0 +cpu MHz : 1500.000 +cache size : 8192 KB +physical id : 0 +siblings : 8 +core id : 2 +cpu cores : 4 +apicid : 5 +initial apicid : 5 +fpu : yes +fpu_exception : yes +cpuid level : 27 +wp : yes +flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid avx512f avx512dq rdseed adx smap avx512ifma clflushopt intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves split_lock_detect dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req avx512vbmi umip pku ospke avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg avx512_vpopcntdq rdpid fsrm md_clear flush_l1d arch_capabilities +vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple pml ept_mode_based_exec tsc_scaling +bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs itlb_multihit srbds mmio_stale_data +bogomips : 2995.20 +clflush size : 64 +cache_alignment : 64 +address sizes : 39 bits physical, 48 bits virtual +power management: + +processor : 7 +vendor_id : GenuineIntel +cpu family : 6 +model : 126 +model name : Intel(R) Core(TM) i7-1065G7 CPU @ 1.30GHz +stepping : 5 +microcode : 0xb0 +cpu MHz : 1500.000 +cache size : 8192 KB +physical id : 0 +siblings : 8 +core id : 3 +cpu cores : 4 +apicid : 7 +initial apicid : 7 +fpu : yes +fpu_exception : yes +cpuid level : 27 +wp : yes +flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf tsc_known_freq pni pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb invpcid_single ssbd ibrs ibpb stibp ibrs_enhanced tpr_shadow vnmi flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid avx512f avx512dq rdseed adx smap avx512ifma clflushopt intel_pt avx512cd sha_ni avx512bw avx512vl xsaveopt xsavec xgetbv1 xsaves split_lock_detect dtherm ida arat pln pts hwp hwp_act_window hwp_epp hwp_pkg_req avx512vbmi umip pku ospke avx512_vbmi2 gfni vaes vpclmulqdq avx512_vnni avx512_bitalg avx512_vpopcntdq rdpid fsrm md_clear flush_l1d arch_capabilities +vmx flags : vnmi preemption_timer posted_intr invvpid ept_x_only ept_ad ept_1gb flexpriority apicv tsc_offset vtpr mtf vapic ept vpid unrestricted_guest vapic_reg vid ple pml ept_mode_based_exec tsc_scaling +bugs : spectre_v1 spectre_v2 spec_store_bypass swapgs itlb_multihit srbds mmio_stale_data +bogomips : 2995.20 +clflush size : 64 +cache_alignment : 64 +address sizes : 39 bits physical, 48 bits virtual +power management: + diff --git a/t/pt-summary/samples/Linux/006/processes b/t/pt-summary/samples/Linux/006/processes new file mode 100644 index 00000000..4015dd36 --- /dev/null +++ b/t/pt-summary/samples/Linux/006/processes @@ -0,0 +1,10 @@ + PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND + 1836 root 20 0 1862488 39156 14168 S 6,2 0,1 6:31.69 contain+ + 5074 sveta 20 0 715908 14380 3312 S 6,2 0,0 2:32.24 vmalert + 5511 sveta 20 0 5958132 675752 593316 S 6,2 2,1 23:18.64 Xorg + 5582 sveta 20 0 992772 140588 5952 S 6,2 0,4 1:32.41 percona+ + 5583 sveta 20 0 992516 246840 5964 S 6,2 0,8 1:29.62 percona+ + 5819 sveta 20 0 5997200 367992 81312 S 6,2 1,1 42:19.42 gnome-s+ + 13430 sveta 20 0 1124,6g 172364 74192 S 6,2 0,5 16:06.71 wavebox + 14886 sveta 20 0 1124,5g 138544 72440 S 6,2 0,4 0:32.75 wavebox + 474260 sveta 20 0 5069828 795952 162860 S 6,2 2,4 33:45.76 thunder+ diff --git a/t/pt-summary/samples/Linux/006/summary b/t/pt-summary/samples/Linux/006/summary new file mode 100644 index 00000000..792291cc --- /dev/null +++ b/t/pt-summary/samples/Linux/006/summary @@ -0,0 +1,29 @@ +platform Linux +hostname Delly-7390 +kernel 5.15.0-41-generic +release Ubuntu 20.04.4 LTS (focal) +CPU_ARCH 64-bit +OS_ARCH 64-bit +virt No virtualization detected +vendor Dell Inc. +system Dell Inc.; XPS 13 7390 2-in-1; vNot Specified (Convertible) +servicetag H3RJL13 +rss 21008793600 +raid_controller No RAID controller detected +threading NPTL 2.31 +getenforce No SELinux detected +swappiness 60 +dirtypolicy 20, 10 +dirtystatus 0, 0 +numa-available 1 +numa-policy default +numa-preferred-node current +internal::disks dm-0 dm-1 dm-2 mmcblk0 nvme0n1 +internal::dm-0 128 +internal::dm-1 128 +internal::dm-2 128 +internal::mmcblk0 [mq-deadline] 128 +internal::nvme0n1 [none] 127 +dentry-state 456513 375385 45 0 141719 0 +file-nr 30570 0 9223372036854775807 +inode-nr 399300 88416 diff --git a/t/pt-summary/samples/Linux/006/sysctl b/t/pt-summary/samples/Linux/006/sysctl new file mode 100644 index 00000000..0a58486d --- /dev/null +++ b/t/pt-summary/samples/Linux/006/sysctl @@ -0,0 +1,1486 @@ +abi.vsyscall32 = 1 +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: +dev.cdrom.info = drive speed: +dev.cdrom.info = drive # of slots: +dev.cdrom.info = Can close tray: +dev.cdrom.info = Can open tray: +dev.cdrom.info = Can lock tray: +dev.cdrom.info = Can change speed: +dev.cdrom.info = Can select disk: +dev.cdrom.info = Can read multisession: +dev.cdrom.info = Can read MCN: +dev.cdrom.info = Reports media changed: +dev.cdrom.info = Can play audio: +dev.cdrom.info = Can write CD-R: +dev.cdrom.info = Can write CD-RW: +dev.cdrom.info = Can read DVD: +dev.cdrom.info = Can write DVD-R: +dev.cdrom.info = Can write DVD-RAM: +dev.cdrom.info = Can read MRW: +dev.cdrom.info = Can write MRW: +dev.cdrom.info = Can write RAM: +dev.cdrom.info = +dev.cdrom.info = +dev.cdrom.lock = 0 +dev.hpet.max-user-freq = 64 +dev.i915.oa_max_sample_rate = 100000 +dev.i915.perf_stream_paranoid = 1 +dev.mac_hid.mouse_button2_keycode = 97 +dev.mac_hid.mouse_button3_keycode = 100 +dev.mac_hid.mouse_button_emulation = 0 +dev.parport.default.spintime = 500 +dev.parport.default.timeslice = 200 +dev.raid.speed_limit_max = 200000 +dev.raid.speed_limit_min = 1000 +dev.scsi.logging_level = 0 +dev.tty.ldisc_autoload = 1 +fs.aio-max-nr = 65536 +fs.aio-nr = 2789 +fs.binfmt_misc.status = enabled +fs.dentry-state = 456531 375401 45 0 141728 0 +fs.dir-notify-enable = 1 +fs.epoll.max_user_watches = 7237721 +fs.fanotify.max_queued_events = 16384 +fs.fanotify.max_user_groups = 128 +fs.fanotify.max_user_marks = 263398 +fs.file-max = 9223372036854775807 +fs.file-nr = 30538 0 9223372036854775807 +fs.inode-nr = 399309 88416 +fs.inode-state = 399309 88416 0 0 0 0 0 +fs.inotify.max_queued_events = 16384 +fs.inotify.max_user_instances = 128 +fs.inotify.max_user_watches = 65536 +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.nfs.nlm_grace_period = 0 +fs.nfs.nlm_tcpport = 0 +fs.nfs.nlm_timeout = 10 +fs.nfs.nlm_udpport = 0 +fs.nfs.nsm_local_state = 0 +fs.nfs.nsm_use_hostnames = 0 +fs.nr_open = 1048576 +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 = 1 +fs.protected_hardlinks = 1 +fs.protected_regular = 2 +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 = 16 +fs.quota.writes = 0 +fs.suid_dumpable = 2 +fs.verity.require_signatures = 0 +kernel.acct = 4 2 30 +kernel.acpi_video_flags = 0 +kernel.apparmor_display_secid_mode = 0 +kernel.auto_msgmni = 0 +kernel.bootloader_type = 6 +kernel.bootloader_version = 38 +kernel.bpf_stats_enabled = 0 +kernel.cad_pid = 1 +kernel.cap_last_cap = 40 +kernel.core_pattern = |/usr/share/apport/apport -p%p -s%s -c%c -d%d -P%P -u%u -g%g -- %E +kernel.core_pipe_limit = 10 +kernel.core_uses_pid = 0 +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 = 0 +kernel.hostname = Delly-7390 +kernel.hotplug = +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 = 1 +kernel.kexec_load_disabled = 0 +kernel.keys.gc_delay = 300 +kernel.keys.maxbytes = 20000 +kernel.keys.maxkeys = 200 +kernel.keys.persistent_keyring_expiry = 259200 +kernel.keys.root_maxbytes = 25000000 +kernel.keys.root_maxkeys = 1000000 +kernel.kptr_restrict = 1 +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 = 2397783 +kernel.numa_balancing = 0 +kernel.oops_all_cpu_backtrace = 0 +kernel.osrelease = 5.15.0-41-generic +kernel.ostype = Linux +kernel.overflowgid = 65534 +kernel.overflowuid = 65534 +kernel.panic = 0 +kernel.panic_on_io_nmi = 0 +kernel.panic_on_oops = 0 +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 = 4 +kernel.pid_max = 4194304 +kernel.poweroff_cmd = /sbin/poweroff +kernel.print-fatal-signals = 0 +kernel.printk = 4 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 = 3 +kernel.pty.reserve = 1024 +kernel.random.boot_id = 529384d2-960e-49f7-9761-be36408dd6b8 +kernel.random.entropy_avail = 3770 +kernel.random.poolsize = 4096 +kernel.random.urandom_min_reseed_secs = 60 +kernel.random.uuid = 283c9d35-2b44-4896-8b52-44c97a36d71e +kernel.random.write_wakeup_threshold = 896 +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_energy_aware = 1 +kernel.sched_rr_timeslice_ms = 100 +kernel.sched_rt_period_us = 1000000 +kernel.sched_rt_runtime_us = 950000 +kernel.sched_schedstats = 0 +kernel.sched_util_clamp_max = 1024 +kernel.sched_util_clamp_min = 1024 +kernel.sched_util_clamp_min_rt_default = 1024 +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.sg-big-buff = 32768 +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 = 0 +kernel.stack_tracer_enabled = 0 +kernel.sysctl_writes_strict = 1 +kernel.sysrq = 176 +kernel.tainted = 4608 +kernel.task_delayacct = 0 +kernel.threads-max = 254009 +kernel.timer_migration = 1 +kernel.traceoff_on_warning = 0 +kernel.tracepoint_printk = 0 +kernel.unknown_nmi_panic = 0 +kernel.unprivileged_bpf_disabled = 2 +kernel.unprivileged_userns_apparmor_policy = 1 +kernel.unprivileged_userns_clone = 1 +kernel.usermodehelper.bset = 4294967295 511 +kernel.usermodehelper.inheritable = 4294967295 511 +kernel.version = #44~20.04.1-Ubuntu SMP Fri Jun 24 13:27:29 UTC 2022 +kernel.watchdog = 1 +kernel.watchdog_cpumask = 0-7 +kernel.watchdog_thresh = 10 +kernel.yama.ptrace_scope = 0 +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 = 264241152 +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 = 00 +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.message_burst = 10 +net.core.message_cost = 5 +net.core.netdev_budget = 300 +net.core.netdev_budget_usecs = 8000 +net.core.netdev_max_backlog = 1000 +net.core.netdev_rss_key = d4:14:ef:22:66:34:34:c0:3c:7c:87:44:f5:6c:d5:a9:cd:4d:24:ad:ad:54:42:ab:94:f0:ea:2c:9d:c3:e0:68:bd:0d:1a:dd:0a:9c:2d:66:44:d1:53:96:3f:e4:12:8a:29:ad:0b:d4 +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_sock_flow_entries = 0 +net.core.somaxconn = 4096 +net.core.tstamp_allow_data = 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.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.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 = 0 +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.br-5bbb6abaea1c.accept_local = 0 +net.ipv4.conf.br-5bbb6abaea1c.accept_redirects = 1 +net.ipv4.conf.br-5bbb6abaea1c.accept_source_route = 1 +net.ipv4.conf.br-5bbb6abaea1c.arp_accept = 0 +net.ipv4.conf.br-5bbb6abaea1c.arp_announce = 0 +net.ipv4.conf.br-5bbb6abaea1c.arp_filter = 0 +net.ipv4.conf.br-5bbb6abaea1c.arp_ignore = 0 +net.ipv4.conf.br-5bbb6abaea1c.arp_notify = 0 +net.ipv4.conf.br-5bbb6abaea1c.bc_forwarding = 0 +net.ipv4.conf.br-5bbb6abaea1c.bootp_relay = 0 +net.ipv4.conf.br-5bbb6abaea1c.disable_policy = 0 +net.ipv4.conf.br-5bbb6abaea1c.disable_xfrm = 0 +net.ipv4.conf.br-5bbb6abaea1c.drop_gratuitous_arp = 0 +net.ipv4.conf.br-5bbb6abaea1c.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.br-5bbb6abaea1c.force_igmp_version = 0 +net.ipv4.conf.br-5bbb6abaea1c.forwarding = 1 +net.ipv4.conf.br-5bbb6abaea1c.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.br-5bbb6abaea1c.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.br-5bbb6abaea1c.ignore_routes_with_linkdown = 0 +net.ipv4.conf.br-5bbb6abaea1c.log_martians = 0 +net.ipv4.conf.br-5bbb6abaea1c.mc_forwarding = 0 +net.ipv4.conf.br-5bbb6abaea1c.medium_id = 0 +net.ipv4.conf.br-5bbb6abaea1c.promote_secondaries = 1 +net.ipv4.conf.br-5bbb6abaea1c.proxy_arp = 0 +net.ipv4.conf.br-5bbb6abaea1c.proxy_arp_pvlan = 0 +net.ipv4.conf.br-5bbb6abaea1c.route_localnet = 0 +net.ipv4.conf.br-5bbb6abaea1c.rp_filter = 2 +net.ipv4.conf.br-5bbb6abaea1c.secure_redirects = 1 +net.ipv4.conf.br-5bbb6abaea1c.send_redirects = 1 +net.ipv4.conf.br-5bbb6abaea1c.shared_media = 1 +net.ipv4.conf.br-5bbb6abaea1c.src_valid_mark = 0 +net.ipv4.conf.br-5bbb6abaea1c.tag = 0 +net.ipv4.conf.default.accept_local = 0 +net.ipv4.conf.default.accept_redirects = 1 +net.ipv4.conf.default.accept_source_route = 1 +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.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 = 2 +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 = 1 +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.bc_forwarding = 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.drop_gratuitous_arp = 0 +net.ipv4.conf.docker0.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.docker0.force_igmp_version = 0 +net.ipv4.conf.docker0.forwarding = 1 +net.ipv4.conf.docker0.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.docker0.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.docker0.ignore_routes_with_linkdown = 0 +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 = 2 +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.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.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.veth311b798.accept_local = 0 +net.ipv4.conf.veth311b798.accept_redirects = 1 +net.ipv4.conf.veth311b798.accept_source_route = 1 +net.ipv4.conf.veth311b798.arp_accept = 0 +net.ipv4.conf.veth311b798.arp_announce = 0 +net.ipv4.conf.veth311b798.arp_filter = 0 +net.ipv4.conf.veth311b798.arp_ignore = 0 +net.ipv4.conf.veth311b798.arp_notify = 0 +net.ipv4.conf.veth311b798.bc_forwarding = 0 +net.ipv4.conf.veth311b798.bootp_relay = 0 +net.ipv4.conf.veth311b798.disable_policy = 0 +net.ipv4.conf.veth311b798.disable_xfrm = 0 +net.ipv4.conf.veth311b798.drop_gratuitous_arp = 0 +net.ipv4.conf.veth311b798.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.veth311b798.force_igmp_version = 0 +net.ipv4.conf.veth311b798.forwarding = 1 +net.ipv4.conf.veth311b798.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.veth311b798.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.veth311b798.ignore_routes_with_linkdown = 0 +net.ipv4.conf.veth311b798.log_martians = 0 +net.ipv4.conf.veth311b798.mc_forwarding = 0 +net.ipv4.conf.veth311b798.medium_id = 0 +net.ipv4.conf.veth311b798.promote_secondaries = 1 +net.ipv4.conf.veth311b798.proxy_arp = 0 +net.ipv4.conf.veth311b798.proxy_arp_pvlan = 0 +net.ipv4.conf.veth311b798.route_localnet = 0 +net.ipv4.conf.veth311b798.rp_filter = 2 +net.ipv4.conf.veth311b798.secure_redirects = 1 +net.ipv4.conf.veth311b798.send_redirects = 1 +net.ipv4.conf.veth311b798.shared_media = 1 +net.ipv4.conf.veth311b798.src_valid_mark = 0 +net.ipv4.conf.veth311b798.tag = 0 +net.ipv4.conf.veth505c1de.accept_local = 0 +net.ipv4.conf.veth505c1de.accept_redirects = 1 +net.ipv4.conf.veth505c1de.accept_source_route = 1 +net.ipv4.conf.veth505c1de.arp_accept = 0 +net.ipv4.conf.veth505c1de.arp_announce = 0 +net.ipv4.conf.veth505c1de.arp_filter = 0 +net.ipv4.conf.veth505c1de.arp_ignore = 0 +net.ipv4.conf.veth505c1de.arp_notify = 0 +net.ipv4.conf.veth505c1de.bc_forwarding = 0 +net.ipv4.conf.veth505c1de.bootp_relay = 0 +net.ipv4.conf.veth505c1de.disable_policy = 0 +net.ipv4.conf.veth505c1de.disable_xfrm = 0 +net.ipv4.conf.veth505c1de.drop_gratuitous_arp = 0 +net.ipv4.conf.veth505c1de.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.veth505c1de.force_igmp_version = 0 +net.ipv4.conf.veth505c1de.forwarding = 1 +net.ipv4.conf.veth505c1de.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.veth505c1de.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.veth505c1de.ignore_routes_with_linkdown = 0 +net.ipv4.conf.veth505c1de.log_martians = 0 +net.ipv4.conf.veth505c1de.mc_forwarding = 0 +net.ipv4.conf.veth505c1de.medium_id = 0 +net.ipv4.conf.veth505c1de.promote_secondaries = 1 +net.ipv4.conf.veth505c1de.proxy_arp = 0 +net.ipv4.conf.veth505c1de.proxy_arp_pvlan = 0 +net.ipv4.conf.veth505c1de.route_localnet = 0 +net.ipv4.conf.veth505c1de.rp_filter = 2 +net.ipv4.conf.veth505c1de.secure_redirects = 1 +net.ipv4.conf.veth505c1de.send_redirects = 1 +net.ipv4.conf.veth505c1de.shared_media = 1 +net.ipv4.conf.veth505c1de.src_valid_mark = 0 +net.ipv4.conf.veth505c1de.tag = 0 +net.ipv4.conf.wlp0s20f3.accept_local = 0 +net.ipv4.conf.wlp0s20f3.accept_redirects = 1 +net.ipv4.conf.wlp0s20f3.accept_source_route = 1 +net.ipv4.conf.wlp0s20f3.arp_accept = 0 +net.ipv4.conf.wlp0s20f3.arp_announce = 0 +net.ipv4.conf.wlp0s20f3.arp_filter = 0 +net.ipv4.conf.wlp0s20f3.arp_ignore = 0 +net.ipv4.conf.wlp0s20f3.arp_notify = 0 +net.ipv4.conf.wlp0s20f3.bc_forwarding = 0 +net.ipv4.conf.wlp0s20f3.bootp_relay = 0 +net.ipv4.conf.wlp0s20f3.disable_policy = 0 +net.ipv4.conf.wlp0s20f3.disable_xfrm = 0 +net.ipv4.conf.wlp0s20f3.drop_gratuitous_arp = 0 +net.ipv4.conf.wlp0s20f3.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.wlp0s20f3.force_igmp_version = 0 +net.ipv4.conf.wlp0s20f3.forwarding = 1 +net.ipv4.conf.wlp0s20f3.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.wlp0s20f3.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.wlp0s20f3.ignore_routes_with_linkdown = 0 +net.ipv4.conf.wlp0s20f3.log_martians = 0 +net.ipv4.conf.wlp0s20f3.mc_forwarding = 0 +net.ipv4.conf.wlp0s20f3.medium_id = 0 +net.ipv4.conf.wlp0s20f3.promote_secondaries = 1 +net.ipv4.conf.wlp0s20f3.proxy_arp = 0 +net.ipv4.conf.wlp0s20f3.proxy_arp_pvlan = 0 +net.ipv4.conf.wlp0s20f3.route_localnet = 0 +net.ipv4.conf.wlp0s20f3.rp_filter = 2 +net.ipv4.conf.wlp0s20f3.secure_redirects = 1 +net.ipv4.conf.wlp0s20f3.send_redirects = 1 +net.ipv4.conf.wlp0s20f3.shared_media = 1 +net.ipv4.conf.wlp0s20f3.src_valid_mark = 0 +net.ipv4.conf.wlp0s20f3.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.br-5bbb6abaea1c.anycast_delay = 100 +net.ipv4.neigh.br-5bbb6abaea1c.app_solicit = 0 +net.ipv4.neigh.br-5bbb6abaea1c.base_reachable_time_ms = 30000 +net.ipv4.neigh.br-5bbb6abaea1c.delay_first_probe_time = 5 +net.ipv4.neigh.br-5bbb6abaea1c.gc_stale_time = 60 +net.ipv4.neigh.br-5bbb6abaea1c.locktime = 100 +net.ipv4.neigh.br-5bbb6abaea1c.mcast_resolicit = 0 +net.ipv4.neigh.br-5bbb6abaea1c.mcast_solicit = 3 +net.ipv4.neigh.br-5bbb6abaea1c.proxy_delay = 80 +net.ipv4.neigh.br-5bbb6abaea1c.proxy_qlen = 64 +net.ipv4.neigh.br-5bbb6abaea1c.retrans_time_ms = 1000 +net.ipv4.neigh.br-5bbb6abaea1c.ucast_solicit = 3 +net.ipv4.neigh.br-5bbb6abaea1c.unres_qlen = 101 +net.ipv4.neigh.br-5bbb6abaea1c.unres_qlen_bytes = 212992 +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_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.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_resolicit = 0 +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 = 101 +net.ipv4.neigh.docker0.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.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.veth311b798.anycast_delay = 100 +net.ipv4.neigh.veth311b798.app_solicit = 0 +net.ipv4.neigh.veth311b798.base_reachable_time_ms = 30000 +net.ipv4.neigh.veth311b798.delay_first_probe_time = 5 +net.ipv4.neigh.veth311b798.gc_stale_time = 60 +net.ipv4.neigh.veth311b798.locktime = 100 +net.ipv4.neigh.veth311b798.mcast_resolicit = 0 +net.ipv4.neigh.veth311b798.mcast_solicit = 3 +net.ipv4.neigh.veth311b798.proxy_delay = 80 +net.ipv4.neigh.veth311b798.proxy_qlen = 64 +net.ipv4.neigh.veth311b798.retrans_time_ms = 1000 +net.ipv4.neigh.veth311b798.ucast_solicit = 3 +net.ipv4.neigh.veth311b798.unres_qlen = 101 +net.ipv4.neigh.veth311b798.unres_qlen_bytes = 212992 +net.ipv4.neigh.veth505c1de.anycast_delay = 100 +net.ipv4.neigh.veth505c1de.app_solicit = 0 +net.ipv4.neigh.veth505c1de.base_reachable_time_ms = 30000 +net.ipv4.neigh.veth505c1de.delay_first_probe_time = 5 +net.ipv4.neigh.veth505c1de.gc_stale_time = 60 +net.ipv4.neigh.veth505c1de.locktime = 100 +net.ipv4.neigh.veth505c1de.mcast_resolicit = 0 +net.ipv4.neigh.veth505c1de.mcast_solicit = 3 +net.ipv4.neigh.veth505c1de.proxy_delay = 80 +net.ipv4.neigh.veth505c1de.proxy_qlen = 64 +net.ipv4.neigh.veth505c1de.retrans_time_ms = 1000 +net.ipv4.neigh.veth505c1de.ucast_solicit = 3 +net.ipv4.neigh.veth505c1de.unres_qlen = 101 +net.ipv4.neigh.veth505c1de.unres_qlen_bytes = 212992 +net.ipv4.neigh.wlp0s20f3.anycast_delay = 100 +net.ipv4.neigh.wlp0s20f3.app_solicit = 0 +net.ipv4.neigh.wlp0s20f3.base_reachable_time_ms = 30000 +net.ipv4.neigh.wlp0s20f3.delay_first_probe_time = 5 +net.ipv4.neigh.wlp0s20f3.gc_stale_time = 60 +net.ipv4.neigh.wlp0s20f3.locktime = 100 +net.ipv4.neigh.wlp0s20f3.mcast_resolicit = 0 +net.ipv4.neigh.wlp0s20f3.mcast_solicit = 3 +net.ipv4.neigh.wlp0s20f3.proxy_delay = 80 +net.ipv4.neigh.wlp0s20f3.proxy_qlen = 64 +net.ipv4.neigh.wlp0s20f3.retrans_time_ms = 1000 +net.ipv4.neigh.wlp0s20f3.ucast_solicit = 3 +net.ipv4.neigh.wlp0s20f3.unres_qlen = 101 +net.ipv4.neigh.wlp0s20f3.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 = 1250 +net.ipv4.route.error_cost = 250 +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 = 5 +net.ipv4.route.redirect_number = 9 +net.ipv4.route.redirect_silence = 5120 +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 = espintcp mptcp +net.ipv4.tcp_base_mss = 1024 +net.ipv4.tcp_challenge_ack_limit = 1000 +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_fack = 0 +net.ipv4.tcp_fastopen = 1 +net.ipv4.tcp_fastopen_blackhole_timeout_sec = 0 +net.ipv4.tcp_fastopen_key = 00000000-00000000-00000000-00000000 +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 = 131072 +net.ipv4.tcp_max_reordering = 300 +net.ipv4.tcp_max_syn_backlog = 2048 +net.ipv4.tcp_max_tw_buckets = 131072 +net.ipv4.tcp_mem = 379458 505947 758916 +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_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_rx_skb_cache = 0 +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_linear_timeouts = 0 +net.ipv4.tcp_timestamps = 1 +net.ipv4.tcp_tso_win_divisor = 3 +net.ipv4.tcp_tw_reuse = 2 +net.ipv4.tcp_tx_skb_cache = 0 +net.ipv4.tcp_window_scaling = 1 +net.ipv4.tcp_wmem = 4096 16384 4194304 +net.ipv4.tcp_workaround_signed_windows = 0 +net.ipv4.udp_early_demux = 1 +net.ipv4.udp_l3mdev_accept = 0 +net.ipv4.udp_mem = 758919 1011894 1517838 +net.ipv4.udp_rmem_min = 4096 +net.ipv4.udp_wmem_min = 4096 +net.ipv4.xfrm4_gc_thresh = 32768 +net.ipv6.anycast_src_echo_reply = 0 +net.ipv6.auto_flowlabels = 1 +net.ipv6.bindv6only = 0 +net.ipv6.calipso_cache_bucket_size = 10 +net.ipv6.calipso_cache_enable = 1 +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_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.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 = 0 +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_notify = 0 +net.ipv6.conf.all.ndisc_tclass = 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.seg6_require_hmac = 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_tempaddr = 2 +net.ipv6.conf.br-5bbb6abaea1c.accept_dad = 1 +net.ipv6.conf.br-5bbb6abaea1c.accept_ra = 0 +net.ipv6.conf.br-5bbb6abaea1c.accept_ra_defrtr = 1 +net.ipv6.conf.br-5bbb6abaea1c.accept_ra_from_local = 0 +net.ipv6.conf.br-5bbb6abaea1c.accept_ra_min_hop_limit = 1 +net.ipv6.conf.br-5bbb6abaea1c.accept_ra_mtu = 1 +net.ipv6.conf.br-5bbb6abaea1c.accept_ra_pinfo = 1 +net.ipv6.conf.br-5bbb6abaea1c.accept_ra_rt_info_max_plen = 0 +net.ipv6.conf.br-5bbb6abaea1c.accept_ra_rt_info_min_plen = 0 +net.ipv6.conf.br-5bbb6abaea1c.accept_ra_rtr_pref = 1 +net.ipv6.conf.br-5bbb6abaea1c.accept_redirects = 1 +net.ipv6.conf.br-5bbb6abaea1c.accept_source_route = 0 +net.ipv6.conf.br-5bbb6abaea1c.addr_gen_mode = 0 +net.ipv6.conf.br-5bbb6abaea1c.autoconf = 1 +net.ipv6.conf.br-5bbb6abaea1c.dad_transmits = 1 +net.ipv6.conf.br-5bbb6abaea1c.disable_ipv6 = 0 +net.ipv6.conf.br-5bbb6abaea1c.disable_policy = 0 +net.ipv6.conf.br-5bbb6abaea1c.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.br-5bbb6abaea1c.drop_unsolicited_na = 0 +net.ipv6.conf.br-5bbb6abaea1c.enhanced_dad = 1 +net.ipv6.conf.br-5bbb6abaea1c.force_mld_version = 0 +net.ipv6.conf.br-5bbb6abaea1c.force_tllao = 0 +net.ipv6.conf.br-5bbb6abaea1c.forwarding = 0 +net.ipv6.conf.br-5bbb6abaea1c.hop_limit = 64 +net.ipv6.conf.br-5bbb6abaea1c.ignore_routes_with_linkdown = 0 +net.ipv6.conf.br-5bbb6abaea1c.ioam6_enabled = 0 +net.ipv6.conf.br-5bbb6abaea1c.ioam6_id = 65535 +net.ipv6.conf.br-5bbb6abaea1c.ioam6_id_wide = 4294967295 +net.ipv6.conf.br-5bbb6abaea1c.keep_addr_on_down = 0 +net.ipv6.conf.br-5bbb6abaea1c.max_addresses = 16 +net.ipv6.conf.br-5bbb6abaea1c.max_desync_factor = 600 +net.ipv6.conf.br-5bbb6abaea1c.mc_forwarding = 0 +net.ipv6.conf.br-5bbb6abaea1c.mldv1_unsolicited_report_interval = 10000 +net.ipv6.conf.br-5bbb6abaea1c.mldv2_unsolicited_report_interval = 1000 +net.ipv6.conf.br-5bbb6abaea1c.mtu = 1500 +net.ipv6.conf.br-5bbb6abaea1c.ndisc_notify = 0 +net.ipv6.conf.br-5bbb6abaea1c.ndisc_tclass = 0 +net.ipv6.conf.br-5bbb6abaea1c.proxy_ndp = 0 +net.ipv6.conf.br-5bbb6abaea1c.ra_defrtr_metric = 1024 +net.ipv6.conf.br-5bbb6abaea1c.regen_max_retry = 3 +net.ipv6.conf.br-5bbb6abaea1c.router_probe_interval = 60 +net.ipv6.conf.br-5bbb6abaea1c.router_solicitation_delay = 1 +net.ipv6.conf.br-5bbb6abaea1c.router_solicitation_interval = 4 +net.ipv6.conf.br-5bbb6abaea1c.router_solicitation_max_interval = 3600 +net.ipv6.conf.br-5bbb6abaea1c.router_solicitations = -1 +net.ipv6.conf.br-5bbb6abaea1c.rpl_seg_enabled = 0 +net.ipv6.conf.br-5bbb6abaea1c.seg6_enabled = 0 +net.ipv6.conf.br-5bbb6abaea1c.seg6_require_hmac = 0 +net.ipv6.conf.br-5bbb6abaea1c.suppress_frag_ndisc = 1 +net.ipv6.conf.br-5bbb6abaea1c.temp_prefered_lft = 86400 +net.ipv6.conf.br-5bbb6abaea1c.temp_valid_lft = 604800 +net.ipv6.conf.br-5bbb6abaea1c.use_oif_addrs_only = 0 +net.ipv6.conf.br-5bbb6abaea1c.use_tempaddr = 2 +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_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.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 = 0 +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_notify = 0 +net.ipv6.conf.default.ndisc_tclass = 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.seg6_require_hmac = 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_tempaddr = 2 +net.ipv6.conf.docker0.accept_dad = 1 +net.ipv6.conf.docker0.accept_ra = 0 +net.ipv6.conf.docker0.accept_ra_defrtr = 1 +net.ipv6.conf.docker0.accept_ra_from_local = 0 +net.ipv6.conf.docker0.accept_ra_min_hop_limit = 1 +net.ipv6.conf.docker0.accept_ra_mtu = 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_rt_info_min_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.addr_gen_mode = 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.disable_policy = 0 +net.ipv6.conf.docker0.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.docker0.drop_unsolicited_na = 0 +net.ipv6.conf.docker0.enhanced_dad = 1 +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.ignore_routes_with_linkdown = 0 +net.ipv6.conf.docker0.ioam6_enabled = 0 +net.ipv6.conf.docker0.ioam6_id = 65535 +net.ipv6.conf.docker0.ioam6_id_wide = 4294967295 +net.ipv6.conf.docker0.keep_addr_on_down = 0 +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.ndisc_tclass = 0 +net.ipv6.conf.docker0.proxy_ndp = 0 +net.ipv6.conf.docker0.ra_defrtr_metric = 1024 +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_solicitation_max_interval = 3600 +net.ipv6.conf.docker0.router_solicitations = -1 +net.ipv6.conf.docker0.rpl_seg_enabled = 0 +net.ipv6.conf.docker0.seg6_enabled = 0 +net.ipv6.conf.docker0.seg6_require_hmac = 0 +net.ipv6.conf.docker0.suppress_frag_ndisc = 1 +net.ipv6.conf.docker0.temp_prefered_lft = 86400 +net.ipv6.conf.docker0.temp_valid_lft = 604800 +net.ipv6.conf.docker0.use_oif_addrs_only = 0 +net.ipv6.conf.docker0.use_tempaddr = 2 +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_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.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 = 0 +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_notify = 0 +net.ipv6.conf.lo.ndisc_tclass = 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.seg6_require_hmac = 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_tempaddr = -1 +net.ipv6.conf.veth311b798.accept_dad = 1 +net.ipv6.conf.veth311b798.accept_ra = 1 +net.ipv6.conf.veth311b798.accept_ra_defrtr = 1 +net.ipv6.conf.veth311b798.accept_ra_from_local = 0 +net.ipv6.conf.veth311b798.accept_ra_min_hop_limit = 1 +net.ipv6.conf.veth311b798.accept_ra_mtu = 1 +net.ipv6.conf.veth311b798.accept_ra_pinfo = 1 +net.ipv6.conf.veth311b798.accept_ra_rt_info_max_plen = 0 +net.ipv6.conf.veth311b798.accept_ra_rt_info_min_plen = 0 +net.ipv6.conf.veth311b798.accept_ra_rtr_pref = 1 +net.ipv6.conf.veth311b798.accept_redirects = 1 +net.ipv6.conf.veth311b798.accept_source_route = 0 +net.ipv6.conf.veth311b798.addr_gen_mode = 0 +net.ipv6.conf.veth311b798.autoconf = 1 +net.ipv6.conf.veth311b798.dad_transmits = 1 +net.ipv6.conf.veth311b798.disable_ipv6 = 0 +net.ipv6.conf.veth311b798.disable_policy = 0 +net.ipv6.conf.veth311b798.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.veth311b798.drop_unsolicited_na = 0 +net.ipv6.conf.veth311b798.enhanced_dad = 1 +net.ipv6.conf.veth311b798.force_mld_version = 0 +net.ipv6.conf.veth311b798.force_tllao = 0 +net.ipv6.conf.veth311b798.forwarding = 0 +net.ipv6.conf.veth311b798.hop_limit = 64 +net.ipv6.conf.veth311b798.ignore_routes_with_linkdown = 0 +net.ipv6.conf.veth311b798.ioam6_enabled = 0 +net.ipv6.conf.veth311b798.ioam6_id = 65535 +net.ipv6.conf.veth311b798.ioam6_id_wide = 4294967295 +net.ipv6.conf.veth311b798.keep_addr_on_down = 0 +net.ipv6.conf.veth311b798.max_addresses = 16 +net.ipv6.conf.veth311b798.max_desync_factor = 600 +net.ipv6.conf.veth311b798.mc_forwarding = 0 +net.ipv6.conf.veth311b798.mldv1_unsolicited_report_interval = 10000 +net.ipv6.conf.veth311b798.mldv2_unsolicited_report_interval = 1000 +net.ipv6.conf.veth311b798.mtu = 1500 +net.ipv6.conf.veth311b798.ndisc_notify = 0 +net.ipv6.conf.veth311b798.ndisc_tclass = 0 +net.ipv6.conf.veth311b798.proxy_ndp = 0 +net.ipv6.conf.veth311b798.ra_defrtr_metric = 1024 +net.ipv6.conf.veth311b798.regen_max_retry = 3 +net.ipv6.conf.veth311b798.router_probe_interval = 60 +net.ipv6.conf.veth311b798.router_solicitation_delay = 1 +net.ipv6.conf.veth311b798.router_solicitation_interval = 4 +net.ipv6.conf.veth311b798.router_solicitation_max_interval = 3600 +net.ipv6.conf.veth311b798.router_solicitations = -1 +net.ipv6.conf.veth311b798.rpl_seg_enabled = 0 +net.ipv6.conf.veth311b798.seg6_enabled = 0 +net.ipv6.conf.veth311b798.seg6_require_hmac = 0 +net.ipv6.conf.veth311b798.suppress_frag_ndisc = 1 +net.ipv6.conf.veth311b798.temp_prefered_lft = 86400 +net.ipv6.conf.veth311b798.temp_valid_lft = 604800 +net.ipv6.conf.veth311b798.use_oif_addrs_only = 0 +net.ipv6.conf.veth311b798.use_tempaddr = 2 +net.ipv6.conf.veth505c1de.accept_dad = 1 +net.ipv6.conf.veth505c1de.accept_ra = 1 +net.ipv6.conf.veth505c1de.accept_ra_defrtr = 1 +net.ipv6.conf.veth505c1de.accept_ra_from_local = 0 +net.ipv6.conf.veth505c1de.accept_ra_min_hop_limit = 1 +net.ipv6.conf.veth505c1de.accept_ra_mtu = 1 +net.ipv6.conf.veth505c1de.accept_ra_pinfo = 1 +net.ipv6.conf.veth505c1de.accept_ra_rt_info_max_plen = 0 +net.ipv6.conf.veth505c1de.accept_ra_rt_info_min_plen = 0 +net.ipv6.conf.veth505c1de.accept_ra_rtr_pref = 1 +net.ipv6.conf.veth505c1de.accept_redirects = 1 +net.ipv6.conf.veth505c1de.accept_source_route = 0 +net.ipv6.conf.veth505c1de.addr_gen_mode = 0 +net.ipv6.conf.veth505c1de.autoconf = 1 +net.ipv6.conf.veth505c1de.dad_transmits = 1 +net.ipv6.conf.veth505c1de.disable_ipv6 = 0 +net.ipv6.conf.veth505c1de.disable_policy = 0 +net.ipv6.conf.veth505c1de.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.veth505c1de.drop_unsolicited_na = 0 +net.ipv6.conf.veth505c1de.enhanced_dad = 1 +net.ipv6.conf.veth505c1de.force_mld_version = 0 +net.ipv6.conf.veth505c1de.force_tllao = 0 +net.ipv6.conf.veth505c1de.forwarding = 0 +net.ipv6.conf.veth505c1de.hop_limit = 64 +net.ipv6.conf.veth505c1de.ignore_routes_with_linkdown = 0 +net.ipv6.conf.veth505c1de.ioam6_enabled = 0 +net.ipv6.conf.veth505c1de.ioam6_id = 65535 +net.ipv6.conf.veth505c1de.ioam6_id_wide = 4294967295 +net.ipv6.conf.veth505c1de.keep_addr_on_down = 0 +net.ipv6.conf.veth505c1de.max_addresses = 16 +net.ipv6.conf.veth505c1de.max_desync_factor = 600 +net.ipv6.conf.veth505c1de.mc_forwarding = 0 +net.ipv6.conf.veth505c1de.mldv1_unsolicited_report_interval = 10000 +net.ipv6.conf.veth505c1de.mldv2_unsolicited_report_interval = 1000 +net.ipv6.conf.veth505c1de.mtu = 1500 +net.ipv6.conf.veth505c1de.ndisc_notify = 0 +net.ipv6.conf.veth505c1de.ndisc_tclass = 0 +net.ipv6.conf.veth505c1de.proxy_ndp = 0 +net.ipv6.conf.veth505c1de.ra_defrtr_metric = 1024 +net.ipv6.conf.veth505c1de.regen_max_retry = 3 +net.ipv6.conf.veth505c1de.router_probe_interval = 60 +net.ipv6.conf.veth505c1de.router_solicitation_delay = 1 +net.ipv6.conf.veth505c1de.router_solicitation_interval = 4 +net.ipv6.conf.veth505c1de.router_solicitation_max_interval = 3600 +net.ipv6.conf.veth505c1de.router_solicitations = -1 +net.ipv6.conf.veth505c1de.rpl_seg_enabled = 0 +net.ipv6.conf.veth505c1de.seg6_enabled = 0 +net.ipv6.conf.veth505c1de.seg6_require_hmac = 0 +net.ipv6.conf.veth505c1de.suppress_frag_ndisc = 1 +net.ipv6.conf.veth505c1de.temp_prefered_lft = 86400 +net.ipv6.conf.veth505c1de.temp_valid_lft = 604800 +net.ipv6.conf.veth505c1de.use_oif_addrs_only = 0 +net.ipv6.conf.veth505c1de.use_tempaddr = 2 +net.ipv6.conf.wlp0s20f3.accept_dad = 1 +net.ipv6.conf.wlp0s20f3.accept_ra = 0 +net.ipv6.conf.wlp0s20f3.accept_ra_defrtr = 1 +net.ipv6.conf.wlp0s20f3.accept_ra_from_local = 0 +net.ipv6.conf.wlp0s20f3.accept_ra_min_hop_limit = 1 +net.ipv6.conf.wlp0s20f3.accept_ra_mtu = 1 +net.ipv6.conf.wlp0s20f3.accept_ra_pinfo = 1 +net.ipv6.conf.wlp0s20f3.accept_ra_rt_info_max_plen = 0 +net.ipv6.conf.wlp0s20f3.accept_ra_rt_info_min_plen = 0 +net.ipv6.conf.wlp0s20f3.accept_ra_rtr_pref = 1 +net.ipv6.conf.wlp0s20f3.accept_redirects = 1 +net.ipv6.conf.wlp0s20f3.accept_source_route = 0 +net.ipv6.conf.wlp0s20f3.addr_gen_mode = 1 +net.ipv6.conf.wlp0s20f3.autoconf = 1 +net.ipv6.conf.wlp0s20f3.dad_transmits = 1 +net.ipv6.conf.wlp0s20f3.disable_ipv6 = 0 +net.ipv6.conf.wlp0s20f3.disable_policy = 0 +net.ipv6.conf.wlp0s20f3.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.wlp0s20f3.drop_unsolicited_na = 0 +net.ipv6.conf.wlp0s20f3.enhanced_dad = 1 +net.ipv6.conf.wlp0s20f3.force_mld_version = 0 +net.ipv6.conf.wlp0s20f3.force_tllao = 0 +net.ipv6.conf.wlp0s20f3.forwarding = 0 +net.ipv6.conf.wlp0s20f3.hop_limit = 64 +net.ipv6.conf.wlp0s20f3.ignore_routes_with_linkdown = 0 +net.ipv6.conf.wlp0s20f3.ioam6_enabled = 0 +net.ipv6.conf.wlp0s20f3.ioam6_id = 65535 +net.ipv6.conf.wlp0s20f3.ioam6_id_wide = 4294967295 +net.ipv6.conf.wlp0s20f3.keep_addr_on_down = 0 +net.ipv6.conf.wlp0s20f3.max_addresses = 16 +net.ipv6.conf.wlp0s20f3.max_desync_factor = 600 +net.ipv6.conf.wlp0s20f3.mc_forwarding = 0 +net.ipv6.conf.wlp0s20f3.mldv1_unsolicited_report_interval = 10000 +net.ipv6.conf.wlp0s20f3.mldv2_unsolicited_report_interval = 1000 +net.ipv6.conf.wlp0s20f3.mtu = 1500 +net.ipv6.conf.wlp0s20f3.ndisc_notify = 0 +net.ipv6.conf.wlp0s20f3.ndisc_tclass = 0 +net.ipv6.conf.wlp0s20f3.proxy_ndp = 0 +net.ipv6.conf.wlp0s20f3.ra_defrtr_metric = 1024 +net.ipv6.conf.wlp0s20f3.regen_max_retry = 3 +net.ipv6.conf.wlp0s20f3.router_probe_interval = 60 +net.ipv6.conf.wlp0s20f3.router_solicitation_delay = 1 +net.ipv6.conf.wlp0s20f3.router_solicitation_interval = 4 +net.ipv6.conf.wlp0s20f3.router_solicitation_max_interval = 3600 +net.ipv6.conf.wlp0s20f3.router_solicitations = -1 +net.ipv6.conf.wlp0s20f3.rpl_seg_enabled = 0 +net.ipv6.conf.wlp0s20f3.seg6_enabled = 0 +net.ipv6.conf.wlp0s20f3.seg6_require_hmac = 0 +net.ipv6.conf.wlp0s20f3.suppress_frag_ndisc = 1 +net.ipv6.conf.wlp0s20f3.temp_prefered_lft = 86400 +net.ipv6.conf.wlp0s20f3.temp_valid_lft = 604800 +net.ipv6.conf.wlp0s20f3.use_oif_addrs_only = 0 +net.ipv6.conf.wlp0s20f3.use_tempaddr = 2 +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.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.br-5bbb6abaea1c.anycast_delay = 100 +net.ipv6.neigh.br-5bbb6abaea1c.app_solicit = 0 +net.ipv6.neigh.br-5bbb6abaea1c.base_reachable_time_ms = 30000 +net.ipv6.neigh.br-5bbb6abaea1c.delay_first_probe_time = 5 +net.ipv6.neigh.br-5bbb6abaea1c.gc_stale_time = 60 +net.ipv6.neigh.br-5bbb6abaea1c.locktime = 0 +net.ipv6.neigh.br-5bbb6abaea1c.mcast_resolicit = 0 +net.ipv6.neigh.br-5bbb6abaea1c.mcast_solicit = 3 +net.ipv6.neigh.br-5bbb6abaea1c.proxy_delay = 80 +net.ipv6.neigh.br-5bbb6abaea1c.proxy_qlen = 64 +net.ipv6.neigh.br-5bbb6abaea1c.retrans_time_ms = 1000 +net.ipv6.neigh.br-5bbb6abaea1c.ucast_solicit = 3 +net.ipv6.neigh.br-5bbb6abaea1c.unres_qlen = 101 +net.ipv6.neigh.br-5bbb6abaea1c.unres_qlen_bytes = 212992 +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_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.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_resolicit = 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 = 101 +net.ipv6.neigh.docker0.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.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.veth311b798.anycast_delay = 100 +net.ipv6.neigh.veth311b798.app_solicit = 0 +net.ipv6.neigh.veth311b798.base_reachable_time_ms = 30000 +net.ipv6.neigh.veth311b798.delay_first_probe_time = 5 +net.ipv6.neigh.veth311b798.gc_stale_time = 60 +net.ipv6.neigh.veth311b798.locktime = 0 +net.ipv6.neigh.veth311b798.mcast_resolicit = 0 +net.ipv6.neigh.veth311b798.mcast_solicit = 3 +net.ipv6.neigh.veth311b798.proxy_delay = 80 +net.ipv6.neigh.veth311b798.proxy_qlen = 64 +net.ipv6.neigh.veth311b798.retrans_time_ms = 1000 +net.ipv6.neigh.veth311b798.ucast_solicit = 3 +net.ipv6.neigh.veth311b798.unres_qlen = 101 +net.ipv6.neigh.veth311b798.unres_qlen_bytes = 212992 +net.ipv6.neigh.veth505c1de.anycast_delay = 100 +net.ipv6.neigh.veth505c1de.app_solicit = 0 +net.ipv6.neigh.veth505c1de.base_reachable_time_ms = 30000 +net.ipv6.neigh.veth505c1de.delay_first_probe_time = 5 +net.ipv6.neigh.veth505c1de.gc_stale_time = 60 +net.ipv6.neigh.veth505c1de.locktime = 0 +net.ipv6.neigh.veth505c1de.mcast_resolicit = 0 +net.ipv6.neigh.veth505c1de.mcast_solicit = 3 +net.ipv6.neigh.veth505c1de.proxy_delay = 80 +net.ipv6.neigh.veth505c1de.proxy_qlen = 64 +net.ipv6.neigh.veth505c1de.retrans_time_ms = 1000 +net.ipv6.neigh.veth505c1de.ucast_solicit = 3 +net.ipv6.neigh.veth505c1de.unres_qlen = 101 +net.ipv6.neigh.veth505c1de.unres_qlen_bytes = 212992 +net.ipv6.neigh.wlp0s20f3.anycast_delay = 100 +net.ipv6.neigh.wlp0s20f3.app_solicit = 0 +net.ipv6.neigh.wlp0s20f3.base_reachable_time_ms = 30000 +net.ipv6.neigh.wlp0s20f3.delay_first_probe_time = 5 +net.ipv6.neigh.wlp0s20f3.gc_stale_time = 60 +net.ipv6.neigh.wlp0s20f3.locktime = 0 +net.ipv6.neigh.wlp0s20f3.mcast_resolicit = 0 +net.ipv6.neigh.wlp0s20f3.mcast_solicit = 3 +net.ipv6.neigh.wlp0s20f3.proxy_delay = 80 +net.ipv6.neigh.wlp0s20f3.proxy_qlen = 64 +net.ipv6.neigh.wlp0s20f3.retrans_time_ms = 1000 +net.ipv6.neigh.wlp0s20f3.ucast_solicit = 3 +net.ipv6.neigh.wlp0s20f3.unres_qlen = 101 +net.ipv6.neigh.wlp0s20f3.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 = 4096 +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.mptcp.add_addr_timeout = 120 +net.mptcp.allow_join_initial_addr_port = 1 +net.mptcp.checksum_enabled = 0 +net.mptcp.enabled = 1 +net.mptcp.stale_loss_cnt = 4 +net.netfilter.nf_conntrack_acct = 0 +net.netfilter.nf_conntrack_buckets = 262144 +net.netfilter.nf_conntrack_checksum = 1 +net.netfilter.nf_conntrack_count = 123 +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 = 1 +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_helper = 0 +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 = 432000 +net.netfilter.nf_conntrack_sctp_timeout_heartbeat_acked = 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 = 0 +net.netfilter.nf_conntrack_sctp_timeout_shutdown_sent = 0 +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 = 60 +net.netfilter.nf_conntrack_tcp_timeout_established = 432000 +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_flowtable_tcp_timeout = 30 +net.netfilter.nf_flowtable_udp_timeout = 30 +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.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.netfilter.nf_log_all_netns = 0 +net.nf_conntrack_max = 262144 +net.unix.max_dgram_qlen = 512 +sunrpc.max_resvport = 1023 +sunrpc.min_resvport = 665 +sunrpc.nfs_debug = 0x0000 +sunrpc.nfsd_debug = 0x0000 +sunrpc.nlm_debug = 0x0000 +sunrpc.rpc_debug = 0x0000 +sunrpc.tcp_fin_timeout = 15 +sunrpc.tcp_max_slot_table_entries = 65536 +sunrpc.tcp_slot_table_entries = 2 +sunrpc.transports = tcp 1048576 +sunrpc.transports = udp 32768 +sunrpc.udp_slot_table_entries = 16 +user.max_cgroup_namespaces = 127004 +user.max_fanotify_groups = 128 +user.max_fanotify_marks = 263398 +user.max_inotify_instances = 128 +user.max_inotify_watches = 65536 +user.max_ipc_namespaces = 127004 +user.max_mnt_namespaces = 127004 +user.max_net_namespaces = 127004 +user.max_pid_namespaces = 127004 +user.max_time_namespaces = 127004 +user.max_user_namespaces = 127004 +user.max_uts_namespaces = 127004 +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 = 1500 +vm.dirty_ratio = 20 +vm.dirty_writeback_centisecs = 1500 +vm.dirtytime_expire_seconds = 43200 +vm.extfrag_threshold = 500 +vm.hugetlb_shm_group = 0 +vm.laptop_mode = 0 +vm.legacy_va_layout = 0 +vm.lowmem_reserve_ratio = 256 256 32 0 0 +vm.max_map_count = 65530 +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 = 65536 +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 = 0 +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.unprivileged_userfaultfd = 0 +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 diff --git a/t/pt-summary/samples/Linux/006/uptime b/t/pt-summary/samples/Linux/006/uptime new file mode 100644 index 00000000..d3806dc2 --- /dev/null +++ b/t/pt-summary/samples/Linux/006/uptime @@ -0,0 +1 @@ + 21:07:41 up 1 day, 6:15, 1 user, load average: 0,40, 0,72, 0,86 diff --git a/t/pt-summary/samples/Linux/006/vgs b/t/pt-summary/samples/Linux/006/vgs new file mode 100644 index 00000000..658fe0bf --- /dev/null +++ b/t/pt-summary/samples/Linux/006/vgs @@ -0,0 +1,2 @@ + VG VSize VFree + vgubuntu <952,64g <21,32g diff --git a/t/pt-summary/samples/Linux/007/collect.err b/t/pt-summary/samples/Linux/007/collect.err new file mode 100644 index 00000000..6b222706 --- /dev/null +++ b/t/pt-summary/samples/Linux/007/collect.err @@ -0,0 +1 @@ +join: /tmp/pt-summary.21603.7sClIl/mounted_fs_info.tmp:5: is not sorted: /dev/loop1 114M 114M 0 100% /var/lib/snapd/snap/core/13308 diff --git a/t/pt-summary/samples/Linux/007/dmesg_file b/t/pt-summary/samples/Linux/007/dmesg_file new file mode 100644 index 00000000..a9745c4a --- /dev/null +++ b/t/pt-summary/samples/Linux/007/dmesg_file @@ -0,0 +1,1175 @@ +[ 0.000000] Linux version 5.1.7-1.el7.elrepo.x86_64 (mockbuild@Build64R7) (gcc version 4.8.5 20150623 (Red Hat 4.8.5-36) (GCC)) #1 SMP Tue Jun 4 09:15:25 EDT 2019 +[ 0.000000] Command line: BOOT_IMAGE=/vmlinuz-5.1.7-1.el7.elrepo.x86_64 root=UUID=85a60d0d-c09c-42b7-a2fe-3c484f10af54 ro crashkernel=auto rhgb quiet +[ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers' +[ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers' +[ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers' +[ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256 +[ 0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format. +[ 0.000000] BIOS-provided physical RAM map: +[ 0.000000] BIOS-e820: [mem 0x0000000000010000-0x000000000009ffff] usable +[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007673cfff] usable +[ 0.000000] BIOS-e820: [mem 0x000000007673d000-0x0000000076b3cfff] ACPI NVS +[ 0.000000] BIOS-e820: [mem 0x0000000076b3d000-0x0000000076d3dfff] reserved +[ 0.000000] BIOS-e820: [mem 0x0000000076d3e000-0x00000000786bffff] usable +[ 0.000000] BIOS-e820: [mem 0x00000000786c0000-0x00000000788c3fff] reserved +[ 0.000000] BIOS-e820: [mem 0x00000000788c4000-0x00000000789c3fff] ACPI NVS +[ 0.000000] BIOS-e820: [mem 0x00000000789c4000-0x0000000078a43fff] ACPI data +[ 0.000000] BIOS-e820: [mem 0x0000000078a44000-0x000000007ca87fff] usable +[ 0.000000] BIOS-e820: [mem 0x000000007cab8000-0x000000007caeffff] usable +[ 0.000000] BIOS-e820: [mem 0x000000007d2f0000-0x000000007d31bfff] reserved +[ 0.000000] BIOS-e820: [mem 0x000000007d31c000-0x000000007d35afff] ACPI data +[ 0.000000] BIOS-e820: [mem 0x000000007d35b000-0x000000007fffffff] reserved +[ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved +[ 0.000000] BIOS-e820: [mem 0x00000000fe000000-0x00000000ffffffff] reserved +[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000307fffffff] usable +[ 0.000000] NX (Execute Disable) protection: active +[ 0.000000] e820: update [mem 0x781a2018-0x781b5457] usable ==> usable +[ 0.000000] e820: update [mem 0x781a2018-0x781b5457] usable ==> usable +[ 0.000000] e820: update [mem 0x7819c018-0x781a1657] usable ==> usable +[ 0.000000] e820: update [mem 0x7819c018-0x781a1657] usable ==> usable +[ 0.000000] e820: update [mem 0x78196018-0x7819b657] usable ==> usable +[ 0.000000] e820: update [mem 0x78196018-0x7819b657] usable ==> usable +[ 0.000000] e820: update [mem 0x78162018-0x78195a57] usable ==> usable +[ 0.000000] e820: update [mem 0x78162018-0x78195a57] usable ==> usable +[ 0.000000] e820: update [mem 0x7812e018-0x78161a57] usable ==> usable +[ 0.000000] e820: update [mem 0x7812e018-0x78161a57] usable ==> usable +[ 0.000000] extended physical RAM map: +[ 0.000000] reserve setup_data: [mem 0x0000000000010000-0x000000000009ffff] usable +[ 0.000000] reserve setup_data: [mem 0x0000000000100000-0x000000007673cfff] usable +[ 0.000000] reserve setup_data: [mem 0x000000007673d000-0x0000000076b3cfff] ACPI NVS +[ 0.000000] reserve setup_data: [mem 0x0000000076b3d000-0x0000000076d3dfff] reserved +[ 0.000000] reserve setup_data: [mem 0x0000000076d3e000-0x000000007812e017] usable +[ 0.000000] reserve setup_data: [mem 0x000000007812e018-0x0000000078161a57] usable +[ 0.000000] reserve setup_data: [mem 0x0000000078161a58-0x0000000078162017] usable +[ 0.000000] reserve setup_data: [mem 0x0000000078162018-0x0000000078195a57] usable +[ 0.000000] reserve setup_data: [mem 0x0000000078195a58-0x0000000078196017] usable +[ 0.000000] reserve setup_data: [mem 0x0000000078196018-0x000000007819b657] usable +[ 0.000000] reserve setup_data: [mem 0x000000007819b658-0x000000007819c017] usable +[ 0.000000] reserve setup_data: [mem 0x000000007819c018-0x00000000781a1657] usable +[ 0.000000] reserve setup_data: [mem 0x00000000781a1658-0x00000000781a2017] usable +[ 0.000000] reserve setup_data: [mem 0x00000000781a2018-0x00000000781b5457] usable +[ 0.000000] reserve setup_data: [mem 0x00000000781b5458-0x00000000786bffff] usable +[ 0.000000] reserve setup_data: [mem 0x00000000786c0000-0x00000000788c3fff] reserved +[ 0.000000] reserve setup_data: [mem 0x00000000788c4000-0x00000000789c3fff] ACPI NVS +[ 0.000000] reserve setup_data: [mem 0x00000000789c4000-0x0000000078a43fff] ACPI data +[ 0.000000] reserve setup_data: [mem 0x0000000078a44000-0x000000007ca87fff] usable +[ 0.000000] reserve setup_data: [mem 0x000000007cab8000-0x000000007caeffff] usable +[ 0.000000] reserve setup_data: [mem 0x000000007d2f0000-0x000000007d31bfff] reserved +[ 0.000000] reserve setup_data: [mem 0x000000007d31c000-0x000000007d35afff] ACPI data +[ 0.000000] reserve setup_data: [mem 0x000000007d35b000-0x000000007fffffff] reserved +[ 0.000000] reserve setup_data: [mem 0x00000000e0000000-0x00000000efffffff] reserved +[ 0.000000] reserve setup_data: [mem 0x00000000fe000000-0x00000000ffffffff] reserved +[ 0.000000] reserve setup_data: [mem 0x0000000100000000-0x000000307fffffff] usable +[ 0.000000] efi: EFI v2.30 by Dell +[ 0.000000] efi: ACPI 2.0=0x789a8000 ACPI=0x789a7000 SMBIOS=0x789a5000 MPS=0x789a4000 +[ 0.000000] SMBIOS 2.7 present. +[ 0.000000] DMI: Dell Inc. PowerEdge R520/051XDX, BIOS 2.3.3 07/10/2014 +[ 0.000000] tsc: Fast TSC calibration using PIT +[ 0.000000] tsc: Detected 2199.950 MHz processor +[ 0.004449] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved +[ 0.004451] e820: remove [mem 0x000a0000-0x000fffff] usable +[ 0.004460] last_pfn = 0x3080000 max_arch_pfn = 0x400000000 +[ 0.004464] MTRR default type: uncachable +[ 0.004465] MTRR fixed ranges enabled: +[ 0.004466] 00000-9FFFF write-back +[ 0.004467] A0000-BFFFF uncachable +[ 0.004467] C0000-CFFFF write-protect +[ 0.004468] D0000-DBFFF write-back +[ 0.004469] DC000-EBFFF uncachable +[ 0.004470] EC000-FFFFF write-protect +[ 0.004470] MTRR variable ranges enabled: +[ 0.004472] 0 base 000000000000 mask 3FFF80000000 write-back +[ 0.004473] 1 base 000100000000 mask 3FFF00000000 write-back +[ 0.004473] 2 base 000200000000 mask 3FFE00000000 write-back +[ 0.004474] 3 base 000400000000 mask 3FFC00000000 write-back +[ 0.004475] 4 base 000800000000 mask 3FF800000000 write-back +[ 0.004476] 5 base 001000000000 mask 3FF000000000 write-back +[ 0.004477] 6 base 002000000000 mask 3FF000000000 write-back +[ 0.004477] 7 base 003000000000 mask 3FFF80000000 write-back +[ 0.004478] 8 disabled +[ 0.004478] 9 disabled +[ 0.006845] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT +[ 0.007031] e820: update [mem 0x80000000-0xffffffff] usable ==> reserved +[ 0.007036] last_pfn = 0x7caf0 max_arch_pfn = 0x400000000 +[ 0.017806] found SMP MP-table at [mem 0x000fe710-0x000fe71f] +[ 0.017923] Using GB pages for direct mapping +[ 0.017926] BRK [0x06a01000, 0x06a01fff] PGTABLE +[ 0.017929] BRK [0x06a02000, 0x06a02fff] PGTABLE +[ 0.017930] BRK [0x06a03000, 0x06a03fff] PGTABLE +[ 0.018357] BRK [0x06a04000, 0x06a04fff] PGTABLE +[ 0.018461] BRK [0x06a05000, 0x06a05fff] PGTABLE +[ 0.018554] BRK [0x06a06000, 0x06a06fff] PGTABLE +[ 0.018889] Secure boot disabled +[ 0.018890] RAMDISK: [mem 0x3d222000-0x3e51afff] +[ 0.018896] ACPI: Early table checksum verification disabled +[ 0.018900] ACPI: RSDP 0x00000000789A8000 000024 (v02 DELL ) +[ 0.018904] ACPI: XSDT 0x00000000000F1248 0000A4 (v01 DELL PE_SC3 00000001 DELL 00000001) +[ 0.018909] ACPI: FACP 0x000000007D33534C 0000F4 (v03 DELL PE_SC3 00000001 DELL 00000001) +[ 0.018915] ACPI: DSDT 0x000000007D31C000 0072F1 (v01 DELL PE_SC3 00000001 INTL 20110211) +[ 0.018918] ACPI: FACS 0x000000007D337000 000040 +[ 0.018920] ACPI: FACS 0x000000007D337000 000040 +[ 0.018923] ACPI: APIC 0x000000007D334478 0001EA (v01 DELL PE_SC3 00000001 DELL 00000001) +[ 0.018926] ACPI: SPCR 0x000000007D334664 000050 (v01 DELL PE_SC3 00000001 DELL 00000001) +[ 0.018928] ACPI: HPET 0x000000007D3346B8 000038 (v01 DELL PE_SC3 00000001 DELL 00000001) +[ 0.018931] ACPI: DMAR 0x000000007D3346F4 000128 (v01 DELL PE_SC3 00000001 DELL 00000001) +[ 0.018934] ACPI: MCFG 0x000000007D334A10 00003C (v01 DELL PE_SC3 00000001 DELL 00000001) +[ 0.018936] ACPI: WD__ 0x000000007D334A50 000134 (v01 DELL PE_SC3 00000001 DELL 00000001) +[ 0.018939] ACPI: SLIC 0x000000007D334B88 000024 (v01 DELL PE_SC3 00000001 DELL 00000001) +[ 0.018942] ACPI: ERST 0x000000007D3234B4 000270 (v01 DELL PE_SC3 00000001 DELL 00000001) +[ 0.018944] ACPI: HEST 0x000000007D323724 00055C (v01 DELL PE_SC3 00000001 DELL 00000001) +[ 0.018947] ACPI: BERT 0x000000007D3232F4 000030 (v01 DELL PE_SC3 00000001 DELL 00000001) +[ 0.018950] ACPI: EINJ 0x000000007D323324 000190 (v01 DELL PE_SC3 00000001 DELL 00000001) +[ 0.018953] ACPI: TCPA 0x000000007D3352E4 000064 (v02 DELL PE_SC3 00000001 DELL 00000001) +[ 0.018955] ACPI: PC__ 0x000000007D335274 00006E (v01 DELL PE_SC3 00000001 DELL 00000001) +[ 0.018958] ACPI: SRAT 0x000000007D334DB0 0004C0 (v01 DELL PE_SC3 00000001 DELL 00000001) +[ 0.018961] ACPI: SSDT 0x000000007D338000 006DB4 (v01 INTEL PPM RCM 80000001 INTL 20061109) +[ 0.018970] ACPI: Local APIC address 0xfee00000 +[ 0.019005] SRAT: PXM 1 -> APIC 0x00 -> Node 0 +[ 0.019006] SRAT: PXM 2 -> APIC 0x20 -> Node 1 +[ 0.019006] SRAT: PXM 1 -> APIC 0x02 -> Node 0 +[ 0.019007] SRAT: PXM 2 -> APIC 0x22 -> Node 1 +[ 0.019008] SRAT: PXM 1 -> APIC 0x04 -> Node 0 +[ 0.019008] SRAT: PXM 2 -> APIC 0x24 -> Node 1 +[ 0.019009] SRAT: PXM 1 -> APIC 0x06 -> Node 0 +[ 0.019009] SRAT: PXM 2 -> APIC 0x26 -> Node 1 +[ 0.019010] SRAT: PXM 1 -> APIC 0x08 -> Node 0 +[ 0.019010] SRAT: PXM 2 -> APIC 0x28 -> Node 1 +[ 0.019011] SRAT: PXM 1 -> APIC 0x0a -> Node 0 +[ 0.019011] SRAT: PXM 2 -> APIC 0x2a -> Node 1 +[ 0.019012] SRAT: PXM 1 -> APIC 0x01 -> Node 0 +[ 0.019013] SRAT: PXM 2 -> APIC 0x21 -> Node 1 +[ 0.019013] SRAT: PXM 1 -> APIC 0x03 -> Node 0 +[ 0.019014] SRAT: PXM 2 -> APIC 0x23 -> Node 1 +[ 0.019014] SRAT: PXM 1 -> APIC 0x05 -> Node 0 +[ 0.019015] SRAT: PXM 2 -> APIC 0x25 -> Node 1 +[ 0.019015] SRAT: PXM 1 -> APIC 0x07 -> Node 0 +[ 0.019016] SRAT: PXM 2 -> APIC 0x27 -> Node 1 +[ 0.019016] SRAT: PXM 1 -> APIC 0x09 -> Node 0 +[ 0.019017] SRAT: PXM 2 -> APIC 0x29 -> Node 1 +[ 0.019018] SRAT: PXM 1 -> APIC 0x0b -> Node 0 +[ 0.019018] SRAT: PXM 2 -> APIC 0x2b -> Node 1 +[ 0.019022] ACPI: SRAT: Node 0 PXM 1 [mem 0x00000000-0x187fffffff] +[ 0.019023] ACPI: SRAT: Node 1 PXM 2 [mem 0x1880000000-0x307fffffff] +[ 0.019038] NODE_DATA(0) allocated [mem 0x187ffd6000-0x187fffffff] +[ 0.019068] NODE_DATA(1) allocated [mem 0x307ffd3000-0x307fffcfff] +[ 0.019318] crashkernel: memory value expected +[ 0.019546] Zone ranges: +[ 0.019547] DMA [mem 0x0000000000010000-0x0000000000ffffff] +[ 0.019548] DMA32 [mem 0x0000000001000000-0x00000000ffffffff] +[ 0.019549] Normal [mem 0x0000000100000000-0x000000307fffffff] +[ 0.019550] Device empty +[ 0.019551] Movable zone start for each node +[ 0.019554] Early memory node ranges +[ 0.019555] node 0: [mem 0x0000000000010000-0x000000000009ffff] +[ 0.019555] node 0: [mem 0x0000000000100000-0x000000007673cfff] +[ 0.019556] node 0: [mem 0x0000000076d3e000-0x00000000786bffff] +[ 0.019557] node 0: [mem 0x0000000078a44000-0x000000007ca87fff] +[ 0.019557] node 0: [mem 0x000000007cab8000-0x000000007caeffff] +[ 0.019558] node 0: [mem 0x0000000100000000-0x000000187fffffff] +[ 0.019558] node 1: [mem 0x0000001880000000-0x000000307fffffff] +[ 0.019908] Zeroed struct page in unavailable ranges: 16181 pages +[ 0.019909] Initmem setup node 0 [mem 0x0000000000010000-0x000000187fffffff] +[ 0.019911] On node 0 totalpages: 25149643 +[ 0.019912] DMA zone: 64 pages used for memmap +[ 0.019913] DMA zone: 3850 pages reserved +[ 0.019914] DMA zone: 3984 pages, LIFO batch:0 +[ 0.020060] DMA32 zone: 7877 pages used for memmap +[ 0.020061] DMA32 zone: 504123 pages, LIFO batch:63 +[ 0.038703] Normal zone: 385024 pages used for memmap +[ 0.038706] Normal zone: 24641536 pages, LIFO batch:63 +[ 0.810450] Initmem setup node 1 [mem 0x0000001880000000-0x000000307fffffff] +[ 0.810453] On node 1 totalpages: 25165824 +[ 0.810455] Normal zone: 393216 pages used for memmap +[ 0.810456] Normal zone: 25165824 pages, LIFO batch:63 +[ 1.638740] ACPI: PM-Timer IO Port: 0x808 +[ 1.638743] ACPI: Local APIC address 0xfee00000 +[ 1.638754] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1]) +[ 1.638765] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23 +[ 1.638768] IOAPIC[1]: apic_id 1, version 32, address 0xfec3f000, GSI 32-55 +[ 1.638773] IOAPIC[2]: apic_id 2, version 32, address 0xfec7f000, GSI 64-87 +[ 1.638775] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl) +[ 1.638777] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level) +[ 1.638778] ACPI: IRQ0 used by override. +[ 1.638780] ACPI: IRQ9 used by override. +[ 1.638783] Using ACPI (MADT) for SMP configuration information +[ 1.638784] ACPI: HPET id: 0x8086a701 base: 0xfed00000 +[ 1.638790] ACPI: SPCR: SPCR table version 1 +[ 1.638790] ACPI: SPCR: Unexpected SPCR Access Width. Defaulting to byte size +[ 1.638793] ACPI: SPCR: console: uart,mmio,0x0 +[ 1.638796] smpboot: Allowing 48 CPUs, 24 hotplug CPUs +[ 1.638831] PM: Registered nosave memory: [mem 0x00000000-0x0000ffff] +[ 1.638833] PM: Registered nosave memory: [mem 0x000a0000-0x000fffff] +[ 1.638835] PM: Registered nosave memory: [mem 0x7673d000-0x76b3cfff] +[ 1.638836] PM: Registered nosave memory: [mem 0x76b3d000-0x76d3dfff] +[ 1.638838] PM: Registered nosave memory: [mem 0x7812e000-0x7812efff] +[ 1.638840] PM: Registered nosave memory: [mem 0x78161000-0x78161fff] +[ 1.638841] PM: Registered nosave memory: [mem 0x78162000-0x78162fff] +[ 1.638843] PM: Registered nosave memory: [mem 0x78195000-0x78195fff] +[ 1.638844] PM: Registered nosave memory: [mem 0x78196000-0x78196fff] +[ 1.638846] PM: Registered nosave memory: [mem 0x7819b000-0x7819bfff] +[ 1.638847] PM: Registered nosave memory: [mem 0x7819c000-0x7819cfff] +[ 1.638849] PM: Registered nosave memory: [mem 0x781a1000-0x781a1fff] +[ 1.638850] PM: Registered nosave memory: [mem 0x781a2000-0x781a2fff] +[ 1.638852] PM: Registered nosave memory: [mem 0x781b5000-0x781b5fff] +[ 1.638862] PM: Registered nosave memory: [mem 0x786c0000-0x788c3fff] +[ 1.638862] PM: Registered nosave memory: [mem 0x788c4000-0x789c3fff] +[ 1.638863] PM: Registered nosave memory: [mem 0x789c4000-0x78a43fff] +[ 1.638865] PM: Registered nosave memory: [mem 0x7ca88000-0x7cab7fff] +[ 1.638867] PM: Registered nosave memory: [mem 0x7caf0000-0x7d2effff] +[ 1.638868] PM: Registered nosave memory: [mem 0x7d2f0000-0x7d31bfff] +[ 1.638868] PM: Registered nosave memory: [mem 0x7d31c000-0x7d35afff] +[ 1.638869] PM: Registered nosave memory: [mem 0x7d35b000-0x7fffffff] +[ 1.638869] PM: Registered nosave memory: [mem 0x80000000-0xdfffffff] +[ 1.638870] PM: Registered nosave memory: [mem 0xe0000000-0xefffffff] +[ 1.638870] PM: Registered nosave memory: [mem 0xf0000000-0xfdffffff] +[ 1.638871] PM: Registered nosave memory: [mem 0xfe000000-0xffffffff] +[ 1.638873] [mem 0x80000000-0xdfffffff] available for PCI devices +[ 1.638876] Booting paravirtualized kernel on bare hardware +[ 1.638879] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns +[ 1.638891] random: get_random_bytes called from start_kernel+0x9b/0x526 with crng_init=0 +[ 1.638900] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:48 nr_cpu_ids:48 nr_node_ids:2 +[ 1.641645] percpu: Embedded 46 pages/cpu s147864 r8192 d32360 u262144 +[ 1.641658] pcpu-alloc: s147864 r8192 d32360 u262144 alloc=1*2097152 +[ 1.641659] pcpu-alloc: [0] 00 02 04 06 08 10 12 14 [0] 16 18 20 22 24 26 28 30 +[ 1.641664] pcpu-alloc: [0] 32 34 36 38 40 42 44 46 [1] 01 03 05 07 09 11 13 15 +[ 1.641667] pcpu-alloc: [1] 17 19 21 23 25 27 29 31 [1] 33 35 37 39 41 43 45 47 +[ 1.641725] Built 2 zonelists, mobility grouping on. Total pages: 49525436 +[ 1.641725] Policy zone: Normal +[ 1.641727] Kernel command line: BOOT_IMAGE=/vmlinuz-5.1.7-1.el7.elrepo.x86_64 root=UUID=85a60d0d-c09c-42b7-a2fe-3c484f10af54 ro crashkernel=auto rhgb quiet +[ 2.292371] Memory: 197791408K/201261868K available (12291K kernel code, 2163K rwdata, 3752K rodata, 2368K init, 3556K bss, 3470460K reserved, 0K cma-reserved) +[ 2.292775] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=48, Nodes=2 +[ 2.292789] Kernel/User page tables isolation: enabled +[ 2.292828] ftrace: allocating 37202 entries in 146 pages +[ 2.310705] rcu: Hierarchical RCU implementation. +[ 2.310707] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=48. +[ 2.310708] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies. +[ 2.310709] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=48 +[ 2.313806] NR_IRQS: 524544, nr_irqs: 1896, preallocated irqs: 16 +[ 2.314149] Console: colour dummy device 80x25 +[ 2.314158] printk: console [tty0] enabled +[ 2.314223] mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl +[ 2.314245] ACPI: Core revision 20190215 +[ 2.314487] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns +[ 2.314496] hpet clockevent registered +[ 2.314500] APIC: Switch to symmetric I/O mode setup +[ 2.314502] DMAR: Host address width 46 +[ 2.314503] DMAR: DRHD base: 0x000000cf000000 flags: 0x0 +[ 2.314509] DMAR: dmar0: reg_base_addr cf000000 ver 1:0 cap d2078c106f0462 ecap f020fe +[ 2.314510] DMAR: DRHD base: 0x000000dd100000 flags: 0x1 +[ 2.314514] DMAR: dmar1: reg_base_addr dd100000 ver 1:0 cap d2078c106f0462 ecap f020fe +[ 2.314514] DMAR: RMRR base: 0x0000007f458000 end: 0x0000007f46ffff +[ 2.314516] DMAR: RMRR base: 0x0000007f450000 end: 0x0000007f450fff +[ 2.314516] DMAR: RMRR base: 0x0000007f452000 end: 0x0000007f452fff +[ 2.314517] DMAR: ATSR flags: 0x0 +[ 2.314519] DMAR-IR: IOAPIC id 2 under DRHD base 0xcf000000 IOMMU 0 +[ 2.314520] DMAR-IR: IOAPIC id 0 under DRHD base 0xdd100000 IOMMU 1 +[ 2.314521] DMAR-IR: IOAPIC id 1 under DRHD base 0xdd100000 IOMMU 1 +[ 2.314522] DMAR-IR: HPET id 0 under DRHD base 0xdd100000 +[ 2.314523] DMAR-IR: x2apic is disabled because BIOS sets x2apic opt out bit. +[ 2.314523] DMAR-IR: Use 'intremap=no_x2apic_optout' to override the BIOS setting. +[ 2.315114] DMAR-IR: Enabled IRQ remapping in xapic mode +[ 2.315116] x2apic: IRQ remapping doesn't support X2APIC mode +[ 2.315120] Switched APIC routing to physical flat. +[ 2.315764] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1 +[ 2.320533] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x1fb6039e5ea, max_idle_ns: 440795308611 ns +[ 2.320544] Calibrating delay loop (skipped), value calculated using timer frequency.. 4399.90 BogoMIPS (lpj=2199950) +[ 2.320546] pid_max: default: 49152 minimum: 384 +[ 2.329125] LSM: Security Framework initializing +[ 2.329152] SELinux: Initializing. +[ 2.329195] *** VALIDATE SELinux *** +[ 2.329197] TOMOYO Linux initialized +[ 2.355251] Dentry cache hash table entries: 16777216 (order: 15, 134217728 bytes) +[ 2.368358] Inode-cache hash table entries: 8388608 (order: 14, 67108864 bytes) +[ 2.368816] Mount-cache hash table entries: 262144 (order: 9, 2097152 bytes) +[ 2.369221] Mountpoint-cache hash table entries: 262144 (order: 9, 2097152 bytes) +[ 2.369488] *** VALIDATE proc *** +[ 2.369607] *** VALIDATE cgroup1 *** +[ 2.369608] *** VALIDATE cgroup2 *** +[ 2.369675] mce: CPU0: Thermal monitoring enabled (TM1) +[ 2.369705] process: using mwait in idle threads +[ 2.369708] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8 +[ 2.369709] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0 +[ 2.369711] Spectre V2 : Mitigation: Full generic retpoline +[ 2.369711] Spectre V2 : Spectre v2 / SpectreRSB mitigation: Filling RSB on context switch +[ 2.369712] Speculative Store Bypass: Vulnerable +[ 2.369742] MDS: Vulnerable: Clear CPU buffers attempted, no microcode +[ 2.369913] Freeing SMP alternatives memory: 32K +[ 2.372681] TSC deadline timer enabled +[ 2.372688] smpboot: CPU0: Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz (family: 0x6, model: 0x2d, stepping: 0x7) +[ 2.372896] Performance Events: PEBS fmt1+, SandyBridge events, 16-deep LBR, full-width counters, Intel PMU driver. +[ 2.372920] ... version: 3 +[ 2.372921] ... bit width: 48 +[ 2.372921] ... generic registers: 4 +[ 2.372922] ... value mask: 0000ffffffffffff +[ 2.372923] ... max period: 00007fffffffffff +[ 2.372923] ... fixed-purpose events: 3 +[ 2.372924] ... event mask: 000000070000000f +[ 2.372988] rcu: Hierarchical SRCU implementation. +[ 2.376673] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter. +[ 2.377539] smp: Bringing up secondary CPUs ... +[ 2.377695] x86: Booting SMP configuration: +[ 2.377696] .... node #1, CPUs: #1 +[ 2.439777] .... node #0, CPUs: #2 +[ 2.443734] .... node #1, CPUs: #3 +[ 2.445733] .... node #0, CPUs: #4 +[ 2.447732] .... node #1, CPUs: #5 +[ 2.449732] .... node #0, CPUs: #6 +[ 2.451734] .... node #1, CPUs: #7 +[ 2.453738] .... node #0, CPUs: #8 +[ 2.455726] .... node #1, CPUs: #9 +[ 2.457744] .... node #0, CPUs: #10 +[ 2.459735] .... node #1, CPUs: #11 +[ 2.461740] .... node #0, CPUs: #12 +[ 2.463902] MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details. +[ 2.463902] .... node #1, CPUs: #13 +[ 2.465739] .... node #0, CPUs: #14 +[ 2.467732] .... node #1, CPUs: #15 +[ 2.469733] .... node #0, CPUs: #16 +[ 2.471734] .... node #1, CPUs: #17 +[ 2.473738] .... node #0, CPUs: #18 +[ 2.475728] .... node #1, CPUs: #19 +[ 2.477738] .... node #0, CPUs: #20 +[ 2.479738] .... node #1, CPUs: #21 +[ 2.481739] .... node #0, CPUs: #22 +[ 2.483735] .... node #1, CPUs: #23 +[ 2.485743] smp: Brought up 2 nodes, 24 CPUs +[ 2.485743] smpboot: Max logical packages: 4 +[ 2.485743] smpboot: Total of 24 processors activated (106123.48 BogoMIPS) +[ 2.495947] devtmpfs: initialized +[ 2.495947] x86/mm: Memory block size: 2048MB +[ 2.497331] PM: Registering ACPI NVS region [mem 0x7673d000-0x76b3cfff] (4194304 bytes) +[ 2.497331] PM: Registering ACPI NVS region [mem 0x788c4000-0x789c3fff] (1048576 bytes) +[ 2.497567] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns +[ 2.497567] futex hash table entries: 16384 (order: 8, 1048576 bytes) +[ 2.497567] pinctrl core: initialized pinctrl subsystem +[ 2.497567] NET: Registered protocol family 16 +[ 2.497615] audit: initializing netlink subsys (disabled) +[ 2.498568] audit: type=2000 audit(1656174830.184:1): state=initialized audit_enabled=0 res=1 +[ 2.498676] cpuidle: using governor menu +[ 2.498686] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it +[ 2.498687] ACPI: bus type PCI registered +[ 2.498689] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5 +[ 2.498840] PCI: MMCONFIG for domain 0000 [bus 00-ff] at [mem 0xe0000000-0xefffffff] (base 0xe0000000) +[ 2.498843] PCI: MMCONFIG at [mem 0xe0000000-0xefffffff] reserved in E820 +[ 2.498861] PCI: Using configuration type 1 for base access +[ 2.498875] PCI: Dell System detected, enabling pci=bfsort. +[ 2.498912] core: PMU erratum BJ122, BV98, HSD29 worked around, HT is on +[ 2.500639] HugeTLB registered 1.00 GiB page size, pre-allocated 0 pages +[ 2.500639] HugeTLB registered 2.00 MiB page size, pre-allocated 0 pages +[ 2.501700] fbcon: Taking over console +[ 2.501819] ACPI: Added _OSI(Module Device) +[ 2.501820] ACPI: Added _OSI(Processor Device) +[ 2.501821] ACPI: Added _OSI(3.0 _SCP Extensions) +[ 2.501821] ACPI: Added _OSI(Processor Aggregator Device) +[ 2.501822] ACPI: Added _OSI(Linux-Dell-Video) +[ 2.501823] ACPI: Added _OSI(Linux-Lenovo-NV-HDMI-Audio) +[ 2.501824] ACPI: Added _OSI(Linux-HPI-Hybrid-Graphics) +[ 2.504541] ACPI: 2 ACPI AML tables successfully acquired and loaded +[ 2.504554] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored +[ 2.507758] ACPI: Interpreter enabled +[ 2.507775] ACPI: (supports S0 S4 S5) +[ 2.507776] ACPI: Using IOAPIC for interrupt routing +[ 2.507931] HEST: Table parsing has been initialized. +[ 2.507933] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug +[ 2.508110] ACPI: Enabled 4 GPEs in block 00 to 3F +[ 2.515166] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3d]) +[ 2.515171] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI] +[ 2.515256] acpi PNP0A08:00: PCIe AER handled by firmware +[ 2.515417] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR] +[ 2.515418] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration +[ 2.517127] PCI host bridge to bus 0000:00 +[ 2.517130] pci_bus 0000:00: root bus resource [io 0x0000-0x03af window] +[ 2.517131] pci_bus 0000:00: root bus resource [io 0x03e0-0x0cf7 window] +[ 2.517132] pci_bus 0000:00: root bus resource [io 0x03b0-0x03df window] +[ 2.517133] pci_bus 0000:00: root bus resource [io 0x0d00-0x1fff window] +[ 2.517134] pci_bus 0000:00: root bus resource [io 0xe000-0xffff window] +[ 2.517136] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window] +[ 2.517137] pci_bus 0000:00: root bus resource [mem 0xd4000000-0xdfffffff window] +[ 2.517138] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff window] +[ 2.517139] pci_bus 0000:00: root bus resource [bus 00-3d] +[ 2.517151] pci 0000:00:00.0: [8086:3c00] type 00 class 0x060000 +[ 2.517233] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold +[ 2.517315] pci 0000:00:01.0: [8086:3c02] type 01 class 0x060400 +[ 2.517407] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold +[ 2.517531] pci 0000:00:03.0: [8086:3c08] type 01 class 0x060400 +[ 2.517578] pci 0000:00:03.0: enabling Extended Tags +[ 2.517630] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold +[ 2.517753] pci 0000:00:03.2: [8086:3c0a] type 01 class 0x060400 +[ 2.517847] pci 0000:00:03.2: PME# supported from D0 D3hot D3cold +[ 2.517966] pci 0000:00:05.0: [8086:3c28] type 00 class 0x088000 +[ 2.518093] pci 0000:00:05.2: [8086:3c2a] type 00 class 0x088000 +[ 2.518222] pci 0000:00:11.0: [8086:1d3e] type 01 class 0x060400 +[ 2.518330] pci 0000:00:11.0: PME# supported from D0 D3hot D3cold +[ 2.518424] pci 0000:00:16.0: [8086:1d3a] type 00 class 0x078000 +[ 2.518445] pci 0000:00:16.0: reg 0x10: [mem 0xdd0fb000-0xdd0fb00f 64bit] +[ 2.518507] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold +[ 2.518507] pci 0000:00:16.1: [8086:1d3b] type 00 class 0x078000 +[ 2.518507] pci 0000:00:16.1: reg 0x10: [mem 0xdd0fc000-0xdd0fc00f 64bit] +[ 2.518507] pci 0000:00:16.1: PME# supported from D0 D3hot D3cold +[ 2.518507] pci 0000:00:1a.0: [8086:1d2d] type 00 class 0x0c0320 +[ 2.518507] pci 0000:00:1a.0: reg 0x10: [mem 0xdd0fd000-0xdd0fd3ff] +[ 2.518507] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold +[ 2.518507] pci 0000:00:1c.0: [8086:1d10] type 01 class 0x060400 +[ 2.518507] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold +[ 2.518507] pci 0000:00:1c.4: [8086:1d18] type 01 class 0x060400 +[ 2.518507] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold +[ 2.518507] pci 0000:00:1c.7: [8086:1d1e] type 01 class 0x060400 +[ 2.518507] pci 0000:00:1c.7: PME# supported from D0 D3hot D3cold +[ 2.518517] pci 0000:00:1d.0: [8086:1d26] type 00 class 0x0c0320 +[ 2.518534] pci 0000:00:1d.0: reg 0x10: [mem 0xdd0fe000-0xdd0fe3ff] +[ 2.518620] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold +[ 2.518693] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401 +[ 2.518809] pci 0000:00:1f.0: [8086:1d41] type 00 class 0x060100 +[ 2.518977] pci 0000:00:1f.2: [8086:1d02] type 00 class 0x010601 +[ 2.518995] pci 0000:00:1f.2: reg 0x10: [io 0xece8-0xecef] +[ 2.519002] pci 0000:00:1f.2: reg 0x14: [io 0xecf8-0xecfb] +[ 2.519009] pci 0000:00:1f.2: reg 0x18: [io 0xecf0-0xecf7] +[ 2.519016] pci 0000:00:1f.2: reg 0x1c: [io 0xecfc-0xecff] +[ 2.519023] pci 0000:00:1f.2: reg 0x20: [io 0xecc0-0xecdf] +[ 2.519030] pci 0000:00:1f.2: reg 0x24: [mem 0xdd0ff000-0xdd0ff7ff] +[ 2.519069] pci 0000:00:1f.2: PME# supported from D3hot +[ 2.519177] pci 0000:01:00.0: [1000:005b] type 00 class 0x010400 +[ 2.519191] pci 0000:01:00.0: reg 0x10: [io 0xfc00-0xfcff] +[ 2.519199] pci 0000:01:00.0: reg 0x14: [mem 0xd8ffc000-0xd8ffffff 64bit] +[ 2.519207] pci 0000:01:00.0: reg 0x1c: [mem 0xd8f80000-0xd8fbffff 64bit] +[ 2.519217] pci 0000:01:00.0: reg 0x30: [mem 0xd8000000-0xd801ffff pref] +[ 2.519222] pci 0000:01:00.0: enabling Extended Tags +[ 2.519265] pci 0000:01:00.0: supports D1 D2 +[ 2.519330] pci 0000:00:01.0: PCI bridge to [bus 01] +[ 2.519333] pci 0000:00:01.0: bridge window [io 0xf000-0xffff] +[ 2.519336] pci 0000:00:01.0: bridge window [mem 0xd8000000-0xd8ffffff] +[ 2.519388] pci 0000:08:00.0: [8086:0953] type 00 class 0x010802 +[ 2.519402] pci 0000:08:00.0: reg 0x10: [mem 0xd9ffc000-0xd9ffffff 64bit] +[ 2.519422] pci 0000:08:00.0: reg 0x30: [mem 0xd9000000-0xd900ffff pref] +[ 2.519426] pci 0000:08:00.0: enabling Extended Tags +[ 2.521563] pci 0000:00:03.0: PCI bridge to [bus 08] +[ 2.521581] pci 0000:00:03.0: bridge window [mem 0xd9000000-0xd9ffffff] +[ 2.521633] pci 0000:09:00.0: [8086:0953] type 00 class 0x010802 +[ 2.521647] pci 0000:09:00.0: reg 0x10: [mem 0xdaffc000-0xdaffffff 64bit] +[ 2.521667] pci 0000:09:00.0: reg 0x30: [mem 0xda000000-0xda00ffff pref] +[ 2.521672] pci 0000:09:00.0: enabling Extended Tags +[ 2.525559] pci 0000:00:03.2: PCI bridge to [bus 09] +[ 2.525567] pci 0000:00:03.2: bridge window [mem 0xda000000-0xdaffffff] +[ 2.525632] pci 0000:00:11.0: PCI bridge to [bus 0a] +[ 2.525681] pci 0000:00:1c.0: PCI bridge to [bus 0b] +[ 2.525769] pci 0000:02:00.0: [14e4:165f] type 00 class 0x020000 +[ 2.525811] pci 0000:02:00.0: reg 0x10: [mem 0xd50a0000-0xd50affff 64bit pref] +[ 2.525832] pci 0000:02:00.0: reg 0x18: [mem 0xd50b0000-0xd50bffff 64bit pref] +[ 2.525852] pci 0000:02:00.0: reg 0x20: [mem 0xd50c0000-0xd50cffff 64bit pref] +[ 2.525866] pci 0000:02:00.0: reg 0x30: [mem 0xdb000000-0xdb03ffff pref] +[ 2.525986] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold +[ 2.526024] pci 0000:02:00.0: 4.000 Gb/s available PCIe bandwidth, limited by 5 GT/s x1 link at 0000:00:1c.4 (capable of 8.000 Gb/s with 5 GT/s x2 link) +[ 2.526106] pci 0000:02:00.1: [14e4:165f] type 00 class 0x020000 +[ 2.526148] pci 0000:02:00.1: reg 0x10: [mem 0xd50d0000-0xd50dffff 64bit pref] +[ 2.526169] pci 0000:02:00.1: reg 0x18: [mem 0xd50e0000-0xd50effff 64bit pref] +[ 2.526189] pci 0000:02:00.1: reg 0x20: [mem 0xd50f0000-0xd50fffff 64bit pref] +[ 2.526202] pci 0000:02:00.1: reg 0x30: [mem 0xdb000000-0xdb03ffff pref] +[ 2.526322] pci 0000:02:00.1: PME# supported from D0 D3hot D3cold +[ 2.526463] pci 0000:00:1c.4: PCI bridge to [bus 02] +[ 2.526468] pci 0000:00:1c.4: bridge window [mem 0xdb000000-0xdb7fffff] +[ 2.526473] pci 0000:00:1c.4: bridge window [mem 0xd5000000-0xd50fffff 64bit pref] +[ 2.526815] pci 0000:03:00.0: [1912:0013] type 01 class 0x060400 +[ 2.529786] pci 0000:03:00.0: PME# supported from D0 D3hot D3cold +[ 2.530860] pci 0000:00:1c.7: PCI bridge to [bus 03-07] +[ 2.530865] pci 0000:00:1c.7: bridge window [mem 0xdb800000-0xdcffffff] +[ 2.530870] pci 0000:00:1c.7: bridge window [mem 0xd4000000-0xd4ffffff 64bit pref] +[ 2.532040] pci 0000:04:00.0: [1912:0013] type 01 class 0x060400 +[ 2.535481] pci 0000:04:00.0: PME# supported from D0 D3hot D3cold +[ 2.536607] pci 0000:04:01.0: [1912:0013] type 01 class 0x060400 +[ 2.540237] pci 0000:04:01.0: PME# supported from D0 D3hot D3cold +[ 2.542646] pci 0000:03:00.0: PCI bridge to [bus 04-07] +[ 2.542846] pci 0000:03:00.0: bridge window [mem 0xdb800000-0xdcffffff] +[ 2.542967] pci 0000:03:00.0: bridge window [mem 0xd4000000-0xd4ffffff 64bit pref] +[ 2.544158] pci 0000:05:00.0: [1912:0012] type 01 class 0x060400 +[ 2.547571] pci 0000:04:00.0: PCI bridge to [bus 05-06] +[ 2.547787] pci 0000:04:00.0: bridge window [mem 0xdb800000-0xdc7fffff] +[ 2.547931] pci 0000:04:00.0: bridge window [mem 0xd4000000-0xd4ffffff 64bit pref] +[ 2.549006] pci_bus 0000:06: extended config space not accessible +[ 2.549253] pci 0000:06:00.0: [102b:0534] type 00 class 0x030000 +[ 2.549721] pci 0000:06:00.0: reg 0x10: [mem 0xd4000000-0xd4ffffff pref] +[ 2.549981] pci 0000:06:00.0: reg 0x14: [mem 0xdc7fc000-0xdc7fffff] +[ 2.550242] pci 0000:06:00.0: reg 0x18: [mem 0xdb800000-0xdbffffff] +[ 2.551391] pci 0000:06:00.0: BAR 0: assigned to efifb +[ 2.554402] pci 0000:05:00.0: PCI bridge to [bus 06] +[ 2.554615] pci 0000:05:00.0: bridge window [mem 0xdb800000-0xdc7fffff] +[ 2.554760] pci 0000:05:00.0: bridge window [mem 0xd4000000-0xd4ffffff 64bit pref] +[ 2.555981] pci 0000:04:01.0: PCI bridge to [bus 07] +[ 2.556199] pci 0000:04:01.0: bridge window [mem 0xdcf00000-0xdcffffff] +[ 2.557297] pci_bus 0000:0c: extended config space not accessible +[ 2.557344] pci 0000:00:1e.0: PCI bridge to [bus 0c] (subtractive decode) +[ 2.557353] pci 0000:00:1e.0: bridge window [io 0x0000-0x03af window] (subtractive decode) +[ 2.557354] pci 0000:00:1e.0: bridge window [io 0x03e0-0x0cf7 window] (subtractive decode) +[ 2.557356] pci 0000:00:1e.0: bridge window [io 0x03b0-0x03df window] (subtractive decode) +[ 2.557357] pci 0000:00:1e.0: bridge window [io 0x0d00-0x1fff window] (subtractive decode) +[ 2.557358] pci 0000:00:1e.0: bridge window [io 0xe000-0xffff window] (subtractive decode) +[ 2.557359] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode) +[ 2.557360] pci 0000:00:1e.0: bridge window [mem 0xd4000000-0xdfffffff window] (subtractive decode) +[ 2.557361] pci 0000:00:1e.0: bridge window [mem 0xfed40000-0xfed44fff window] (subtractive decode) +[ 2.557406] pci_bus 0000:00: on NUMA node 0 +[ 2.558617] ACPI: PCI Root Bridge [PCI1] (domain 0000 [bus 40-7e]) +[ 2.558621] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI] +[ 2.558704] acpi PNP0A08:01: PCIe AER handled by firmware +[ 2.558864] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR] +[ 2.558865] acpi PNP0A08:01: FADT indicates ASPM is unsupported, using BIOS configuration +[ 2.559579] PCI host bridge to bus 0000:40 +[ 2.559581] pci_bus 0000:40: root bus resource [io 0x2000-0x3fff window] +[ 2.559582] pci_bus 0000:40: root bus resource [io 0x4000-0x5fff window] +[ 2.559583] pci_bus 0000:40: root bus resource [io 0x6000-0x7fff window] +[ 2.559584] pci_bus 0000:40: root bus resource [io 0x8000-0x9fff window] +[ 2.559586] pci_bus 0000:40: root bus resource [io 0xa000-0xbfff window] +[ 2.559587] pci_bus 0000:40: root bus resource [io 0xc000-0xdfff window] +[ 2.559589] pci_bus 0000:40: root bus resource [mem 0xcc000000-0xd3ffffff window] +[ 2.559591] pci_bus 0000:40: root bus resource [bus 40-7e] +[ 2.559605] pci 0000:40:01.0: [8086:3c02] type 01 class 0x060400 +[ 2.559710] pci 0000:40:01.0: PME# supported from D0 D3hot D3cold +[ 2.559831] pci 0000:40:03.0: [8086:3c08] type 01 class 0x060400 +[ 2.559880] pci 0000:40:03.0: enabling Extended Tags +[ 2.559939] pci 0000:40:03.0: PME# supported from D0 D3hot D3cold +[ 2.560050] pci 0000:40:05.0: [8086:3c28] type 00 class 0x088000 +[ 2.560172] pci 0000:40:05.2: [8086:3c2a] type 00 class 0x088000 +[ 2.560331] pci 0000:40:01.0: PCI bridge to [bus 41] +[ 2.560376] pci 0000:40:03.0: PCI bridge to [bus 42] +[ 2.560398] pci_bus 0000:40: on NUMA node 1 +[ 2.560437] ACPI: PCI Root Bridge [P0B1] (domain 0000 [bus 3f]) +[ 2.560442] acpi PNP0A08:02: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI] +[ 2.560523] acpi PNP0A08:02: PCIe AER handled by firmware +[ 2.560686] acpi PNP0A08:02: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR] +[ 2.560688] acpi PNP0A08:02: FADT indicates ASPM is unsupported, using BIOS configuration +[ 2.560750] PCI host bridge to bus 0000:3f +[ 2.560752] pci_bus 0000:3f: root bus resource [bus 3f] +[ 2.560760] pci 0000:3f:08.0: [8086:3c80] type 00 class 0x088000 +[ 2.560823] pci 0000:3f:09.0: [8086:3c90] type 00 class 0x088000 +[ 2.560883] pci 0000:3f:0a.0: [8086:3cc0] type 00 class 0x088000 +[ 2.560934] pci 0000:3f:0a.1: [8086:3cc1] type 00 class 0x088000 +[ 2.560984] pci 0000:3f:0a.2: [8086:3cc2] type 00 class 0x088000 +[ 2.561036] pci 0000:3f:0a.3: [8086:3cd0] type 00 class 0x088000 +[ 2.561089] pci 0000:3f:0b.0: [8086:3ce0] type 00 class 0x088000 +[ 2.561140] pci 0000:3f:0b.3: [8086:3ce3] type 00 class 0x088000 +[ 2.561198] pci 0000:3f:0c.0: [8086:3ce8] type 00 class 0x088000 +[ 2.561252] pci 0000:3f:0c.1: [8086:3ce8] type 00 class 0x088000 +[ 2.561300] pci 0000:3f:0c.2: [8086:3ce8] type 00 class 0x088000 +[ 2.561349] pci 0000:3f:0c.6: [8086:3cf4] type 00 class 0x088000 +[ 2.561396] pci 0000:3f:0c.7: [8086:3cf6] type 00 class 0x088000 +[ 2.561444] pci 0000:3f:0d.0: [8086:3ce8] type 00 class 0x088000 +[ 2.561496] pci 0000:3f:0d.1: [8086:3ce8] type 00 class 0x088000 +[ 2.561547] pci 0000:3f:0d.2: [8086:3ce8] type 00 class 0x088000 +[ 2.561598] pci 0000:3f:0d.6: [8086:3cf5] type 00 class 0x088000 +[ 2.561646] pci 0000:3f:0e.0: [8086:3ca0] type 00 class 0x088000 +[ 2.561701] pci 0000:3f:0e.1: [8086:3c46] type 00 class 0x110100 +[ 2.561759] pci 0000:3f:0f.0: [8086:3ca8] type 00 class 0x088000 +[ 2.561830] pci 0000:3f:0f.1: [8086:3c71] type 00 class 0x088000 +[ 2.561898] pci 0000:3f:0f.2: [8086:3caa] type 00 class 0x088000 +[ 2.561969] pci 0000:3f:0f.3: [8086:3cab] type 00 class 0x088000 +[ 2.562042] pci 0000:3f:0f.4: [8086:3cac] type 00 class 0x088000 +[ 2.562107] pci 0000:3f:0f.5: [8086:3cad] type 00 class 0x088000 +[ 2.562170] pci 0000:3f:0f.6: [8086:3cae] type 00 class 0x088000 +[ 2.562226] pci 0000:3f:10.0: [8086:3cb0] type 00 class 0x088000 +[ 2.562293] pci 0000:3f:10.1: [8086:3cb1] type 00 class 0x088000 +[ 2.562361] pci 0000:3f:10.2: [8086:3cb2] type 00 class 0x088000 +[ 2.562426] pci 0000:3f:10.3: [8086:3cb3] type 00 class 0x088000 +[ 2.562490] pci 0000:3f:10.5: [8086:3cb5] type 00 class 0x088000 +[ 2.562581] pci 0000:3f:10.6: [8086:3cb6] type 00 class 0x088000 +[ 2.562651] pci 0000:3f:10.7: [8086:3cb7] type 00 class 0x088000 +[ 2.562723] pci 0000:3f:11.0: [8086:3cb8] type 00 class 0x088000 +[ 2.562784] pci 0000:3f:13.0: [8086:3ce4] type 00 class 0x088000 +[ 2.562836] pci 0000:3f:13.1: [8086:3c43] type 00 class 0x110100 +[ 2.562887] pci 0000:3f:13.4: [8086:3ce6] type 00 class 0x110100 +[ 2.562936] pci 0000:3f:13.5: [8086:3c44] type 00 class 0x110100 +[ 2.562986] pci 0000:3f:13.6: [8086:3c45] type 00 class 0x088000 +[ 2.563045] pci_bus 0000:3f: on NUMA node 0 +[ 2.563103] ACPI: PCI Root Bridge [P1B1] (domain 0000 [bus 7f]) +[ 2.563106] acpi PNP0A08:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI] +[ 2.563188] acpi PNP0A08:03: PCIe AER handled by firmware +[ 2.563347] acpi PNP0A08:03: _OSC: OS now controls [PCIeHotplug PME PCIeCapability LTR] +[ 2.563348] acpi PNP0A08:03: FADT indicates ASPM is unsupported, using BIOS configuration +[ 2.563391] PCI host bridge to bus 0000:7f +[ 2.563392] pci_bus 0000:7f: root bus resource [bus 7f] +[ 2.563402] pci 0000:7f:08.0: [8086:3c80] type 00 class 0x088000 +[ 2.563466] pci 0000:7f:09.0: [8086:3c90] type 00 class 0x088000 +[ 2.563531] pci 0000:7f:0a.0: [8086:3cc0] type 00 class 0x088000 +[ 2.563590] pci 0000:7f:0a.1: [8086:3cc1] type 00 class 0x088000 +[ 2.563644] pci 0000:7f:0a.2: [8086:3cc2] type 00 class 0x088000 +[ 2.563703] pci 0000:7f:0a.3: [8086:3cd0] type 00 class 0x088000 +[ 2.563756] pci 0000:7f:0b.0: [8086:3ce0] type 00 class 0x088000 +[ 2.563807] pci 0000:7f:0b.3: [8086:3ce3] type 00 class 0x088000 +[ 2.563859] pci 0000:7f:0c.0: [8086:3ce8] type 00 class 0x088000 +[ 2.563911] pci 0000:7f:0c.1: [8086:3ce8] type 00 class 0x088000 +[ 2.563963] pci 0000:7f:0c.2: [8086:3ce8] type 00 class 0x088000 +[ 2.564016] pci 0000:7f:0c.6: [8086:3cf4] type 00 class 0x088000 +[ 2.564068] pci 0000:7f:0c.7: [8086:3cf6] type 00 class 0x088000 +[ 2.564122] pci 0000:7f:0d.0: [8086:3ce8] type 00 class 0x088000 +[ 2.564182] pci 0000:7f:0d.1: [8086:3ce8] type 00 class 0x088000 +[ 2.564237] pci 0000:7f:0d.2: [8086:3ce8] type 00 class 0x088000 +[ 2.564292] pci 0000:7f:0d.6: [8086:3cf5] type 00 class 0x088000 +[ 2.564344] pci 0000:7f:0e.0: [8086:3ca0] type 00 class 0x088000 +[ 2.564404] pci 0000:7f:0e.1: [8086:3c46] type 00 class 0x110100 +[ 2.564469] pci 0000:7f:0f.0: [8086:3ca8] type 00 class 0x088000 +[ 2.564558] pci 0000:7f:0f.1: [8086:3c71] type 00 class 0x088000 +[ 2.564638] pci 0000:7f:0f.2: [8086:3caa] type 00 class 0x088000 +[ 2.564713] pci 0000:7f:0f.3: [8086:3cab] type 00 class 0x088000 +[ 2.564787] pci 0000:7f:0f.4: [8086:3cac] type 00 class 0x088000 +[ 2.564862] pci 0000:7f:0f.5: [8086:3cad] type 00 class 0x088000 +[ 2.564936] pci 0000:7f:0f.6: [8086:3cae] type 00 class 0x088000 +[ 2.565000] pci 0000:7f:10.0: [8086:3cb0] type 00 class 0x088000 +[ 2.565072] pci 0000:7f:10.1: [8086:3cb1] type 00 class 0x088000 +[ 2.565151] pci 0000:7f:10.2: [8086:3cb2] type 00 class 0x088000 +[ 2.565229] pci 0000:7f:10.3: [8086:3cb3] type 00 class 0x088000 +[ 2.565307] pci 0000:7f:10.5: [8086:3cb5] type 00 class 0x088000 +[ 2.565385] pci 0000:7f:10.6: [8086:3cb6] type 00 class 0x088000 +[ 2.565465] pci 0000:7f:10.7: [8086:3cb7] type 00 class 0x088000 +[ 2.565534] pci 0000:7f:11.0: [8086:3cb8] type 00 class 0x088000 +[ 2.565603] pci 0000:7f:13.0: [8086:3ce4] type 00 class 0x088000 +[ 2.565657] pci 0000:7f:13.1: [8086:3c43] type 00 class 0x110100 +[ 2.565708] pci 0000:7f:13.4: [8086:3ce6] type 00 class 0x110100 +[ 2.565759] pci 0000:7f:13.5: [8086:3c44] type 00 class 0x110100 +[ 2.565810] pci 0000:7f:13.6: [8086:3c45] type 00 class 0x088000 +[ 2.565874] pci_bus 0000:7f: on NUMA node 1 +[ 2.566020] ACPI: PCI Interrupt Link [LK00] (IRQs 3 4 5 6 7 11 14 *15) +[ 2.566080] ACPI: PCI Interrupt Link [LK01] (IRQs 3 4 5 6 7 11 *14 15) +[ 2.566139] ACPI: PCI Interrupt Link [LK02] (IRQs 3 4 5 6 7 11 14 15) *0, disabled. +[ 2.566197] ACPI: PCI Interrupt Link [LK03] (IRQs 3 4 5 6 7 *11 14 15) +[ 2.566253] ACPI: PCI Interrupt Link [LK04] (IRQs 3 4 *5 6 7 11 14 15) +[ 2.566311] ACPI: PCI Interrupt Link [LK05] (IRQs 3 4 5 6 7 11 14 15) *0, disabled. +[ 2.566368] ACPI: PCI Interrupt Link [LK06] (IRQs 3 4 5 *6 7 11 14 15) +[ 2.566424] ACPI: PCI Interrupt Link [LK07] (IRQs 3 4 5 6 7 11 *14 15) +[ 2.567682] pci 0000:06:00.0: vgaarb: setting as boot VGA device +[ 2.567685] pci 0000:06:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none +[ 2.567698] pci 0000:06:00.0: vgaarb: bridge control possible +[ 2.567700] vgaarb: loaded +[ 2.567863] SCSI subsystem initialized +[ 2.567883] ACPI: bus type USB registered +[ 2.567899] usbcore: registered new interface driver usbfs +[ 2.567905] usbcore: registered new interface driver hub +[ 2.568003] usbcore: registered new device driver usb +[ 2.568084] EDAC MC: Ver: 3.0.0 +[ 2.568661] Registered efivars operations +[ 2.569586] PCI: Using ACPI for IRQ routing +[ 2.574773] PCI: pci_cache_line_size set to 64 bytes +[ 2.575259] e820: reserve RAM buffer [mem 0x7673d000-0x77ffffff] +[ 2.575264] e820: reserve RAM buffer [mem 0x7812e018-0x7bffffff] +[ 2.575266] e820: reserve RAM buffer [mem 0x78162018-0x7bffffff] +[ 2.575267] e820: reserve RAM buffer [mem 0x78196018-0x7bffffff] +[ 2.575268] e820: reserve RAM buffer [mem 0x7819c018-0x7bffffff] +[ 2.575269] e820: reserve RAM buffer [mem 0x781a2018-0x7bffffff] +[ 2.575271] e820: reserve RAM buffer [mem 0x786c0000-0x7bffffff] +[ 2.575272] e820: reserve RAM buffer [mem 0x7ca88000-0x7fffffff] +[ 2.575273] e820: reserve RAM buffer [mem 0x7caf0000-0x7fffffff] +[ 2.575564] NetLabel: Initializing +[ 2.575565] NetLabel: domain hash size = 128 +[ 2.575566] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO +[ 2.575583] NetLabel: unlabeled traffic allowed by default +[ 2.575628] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0 +[ 2.575633] hpet0: 8 comparators, 64-bit 14.318180 MHz counter +[ 2.577620] clocksource: Switched to clocksource tsc-early +[ 2.591795] VFS: Disk quotas dquot_6.6.0 +[ 2.591848] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes) +[ 2.591886] *** VALIDATE hugetlbfs *** +[ 2.591980] pnp: PnP ACPI init +[ 2.592145] system 00:00: Plug and Play ACPI device, IDs PNP0c01 (active) +[ 2.592181] pnp 00:01: Plug and Play ACPI device, IDs PNP0b00 (active) +[ 2.592365] pnp 00:02: Plug and Play ACPI device, IDs PNP0501 (active) +[ 2.592533] pnp 00:03: Plug and Play ACPI device, IDs PNP0501 (active) +[ 2.592914] system 00:04: [io 0x0800-0x087f] has been reserved +[ 2.592916] system 00:04: [io 0x0880-0x08ff] has been reserved +[ 2.592918] system 00:04: [io 0x0900-0x091f] has been reserved +[ 2.592919] system 00:04: [io 0x0920-0x0923] has been reserved +[ 2.592920] system 00:04: [io 0x0924] has been reserved +[ 2.592924] system 00:04: [io 0x0370-0x0377] has been reserved +[ 2.592925] system 00:04: [io 0x0ca0-0x0ca7] has been reserved +[ 2.592927] system 00:04: [io 0x0ca9-0x0cab] has been reserved +[ 2.592928] system 00:04: [io 0x0cad-0x0caf] has been reserved +[ 2.592929] system 00:04: [io 0x0cb0-0x0cbf] has been reserved +[ 2.592934] system 00:04: Plug and Play ACPI device, IDs PNP0c01 (active) +[ 2.593015] system 00:05: [io 0x0ca8] has been reserved +[ 2.593016] system 00:05: [io 0x0cac] has been reserved +[ 2.593020] system 00:05: Plug and Play ACPI device, IDs IPI0001 PNP0c01 (active) +[ 2.593434] system 00:06: [mem 0xe0000000-0xe3efffff] has been reserved +[ 2.593439] system 00:06: Plug and Play ACPI device, IDs PNP0c02 (active) +[ 2.593608] system 00:07: [mem 0xe4000000-0xe7ffffff] has been reserved +[ 2.593612] system 00:07: Plug and Play ACPI device, IDs PNP0c02 (active) +[ 2.593711] system 00:08: [mem 0xe3f00000-0xe3ffffff] has been reserved +[ 2.593715] system 00:08: Plug and Play ACPI device, IDs PNP0c02 (active) +[ 2.593817] system 00:09: [mem 0xdd100000-0xdd101fff] could not be reserved +[ 2.593821] system 00:09: Plug and Play ACPI device, IDs PNP0c02 (active) +[ 2.593935] system 00:0a: [mem 0xcf000000-0xcf001fff] could not be reserved +[ 2.593939] system 00:0a: Plug and Play ACPI device, IDs PNP0c02 (active) +[ 2.594088] pnp: PnP ACPI: found 11 devices +[ 2.601725] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns +[ 2.601730] pci 0000:02:00.1: can't claim BAR 6 [mem 0xdb000000-0xdb03ffff pref]: address conflict with 0000:02:00.0 [mem 0xdb000000-0xdb03ffff pref] +[ 2.601745] pci 0000:00:01.0: PCI bridge to [bus 01] +[ 2.601748] pci 0000:00:01.0: bridge window [io 0xf000-0xffff] +[ 2.601752] pci 0000:00:01.0: bridge window [mem 0xd8000000-0xd8ffffff] +[ 2.601758] pci 0000:00:03.0: PCI bridge to [bus 08] +[ 2.601761] pci 0000:00:03.0: bridge window [mem 0xd9000000-0xd9ffffff] +[ 2.601767] pci 0000:00:03.2: PCI bridge to [bus 09] +[ 2.601771] pci 0000:00:03.2: bridge window [mem 0xda000000-0xdaffffff] +[ 2.601777] pci 0000:00:11.0: PCI bridge to [bus 0a] +[ 2.601788] pci 0000:00:1c.0: PCI bridge to [bus 0b] +[ 2.601801] pci 0000:02:00.1: BAR 6: assigned [mem 0xdb040000-0xdb07ffff pref] +[ 2.601803] pci 0000:00:1c.4: PCI bridge to [bus 02] +[ 2.601807] pci 0000:00:1c.4: bridge window [mem 0xdb000000-0xdb7fffff] +[ 2.601810] pci 0000:00:1c.4: bridge window [mem 0xd5000000-0xd50fffff 64bit pref] +[ 2.601816] pci 0000:05:00.0: PCI bridge to [bus 06] +[ 2.601956] pci 0000:05:00.0: bridge window [mem 0xdb800000-0xdc7fffff] +[ 2.602050] pci 0000:05:00.0: bridge window [mem 0xd4000000-0xd4ffffff 64bit pref] +[ 2.602245] pci 0000:04:00.0: PCI bridge to [bus 05-06] +[ 2.602388] pci 0000:04:00.0: bridge window [mem 0xdb800000-0xdc7fffff] +[ 2.602486] pci 0000:04:00.0: bridge window [mem 0xd4000000-0xd4ffffff 64bit pref] +[ 2.602685] pci 0000:04:01.0: PCI bridge to [bus 07] +[ 2.602829] pci 0000:04:01.0: bridge window [mem 0xdcf00000-0xdcffffff] +[ 2.603186] pci 0000:03:00.0: PCI bridge to [bus 04-07] +[ 2.603320] pci 0000:03:00.0: bridge window [mem 0xdb800000-0xdcffffff] +[ 2.603401] pci 0000:03:00.0: bridge window [mem 0xd4000000-0xd4ffffff 64bit pref] +[ 2.603643] pci 0000:00:1c.7: PCI bridge to [bus 03-07] +[ 2.603648] pci 0000:00:1c.7: bridge window [mem 0xdb800000-0xdcffffff] +[ 2.603651] pci 0000:00:1c.7: bridge window [mem 0xd4000000-0xd4ffffff 64bit pref] +[ 2.603656] pci 0000:00:1e.0: PCI bridge to [bus 0c] +[ 2.603666] pci_bus 0000:00: resource 4 [io 0x0000-0x03af window] +[ 2.603668] pci_bus 0000:00: resource 5 [io 0x03e0-0x0cf7 window] +[ 2.603670] pci_bus 0000:00: resource 6 [io 0x03b0-0x03df window] +[ 2.603671] pci_bus 0000:00: resource 7 [io 0x0d00-0x1fff window] +[ 2.603672] pci_bus 0000:00: resource 8 [io 0xe000-0xffff window] +[ 2.603673] pci_bus 0000:00: resource 9 [mem 0x000a0000-0x000bffff window] +[ 2.603674] pci_bus 0000:00: resource 10 [mem 0xd4000000-0xdfffffff window] +[ 2.603675] pci_bus 0000:00: resource 11 [mem 0xfed40000-0xfed44fff window] +[ 2.603677] pci_bus 0000:01: resource 0 [io 0xf000-0xffff] +[ 2.603678] pci_bus 0000:01: resource 1 [mem 0xd8000000-0xd8ffffff] +[ 2.603679] pci_bus 0000:08: resource 1 [mem 0xd9000000-0xd9ffffff] +[ 2.603680] pci_bus 0000:09: resource 1 [mem 0xda000000-0xdaffffff] +[ 2.603681] pci_bus 0000:02: resource 1 [mem 0xdb000000-0xdb7fffff] +[ 2.603682] pci_bus 0000:02: resource 2 [mem 0xd5000000-0xd50fffff 64bit pref] +[ 2.603684] pci_bus 0000:03: resource 1 [mem 0xdb800000-0xdcffffff] +[ 2.603685] pci_bus 0000:03: resource 2 [mem 0xd4000000-0xd4ffffff 64bit pref] +[ 2.603686] pci_bus 0000:04: resource 1 [mem 0xdb800000-0xdcffffff] +[ 2.603687] pci_bus 0000:04: resource 2 [mem 0xd4000000-0xd4ffffff 64bit pref] +[ 2.603688] pci_bus 0000:05: resource 1 [mem 0xdb800000-0xdc7fffff] +[ 2.603689] pci_bus 0000:05: resource 2 [mem 0xd4000000-0xd4ffffff 64bit pref] +[ 2.603690] pci_bus 0000:06: resource 1 [mem 0xdb800000-0xdc7fffff] +[ 2.603691] pci_bus 0000:06: resource 2 [mem 0xd4000000-0xd4ffffff 64bit pref] +[ 2.603692] pci_bus 0000:07: resource 1 [mem 0xdcf00000-0xdcffffff] +[ 2.603694] pci_bus 0000:0c: resource 4 [io 0x0000-0x03af window] +[ 2.603695] pci_bus 0000:0c: resource 5 [io 0x03e0-0x0cf7 window] +[ 2.603696] pci_bus 0000:0c: resource 6 [io 0x03b0-0x03df window] +[ 2.603697] pci_bus 0000:0c: resource 7 [io 0x0d00-0x1fff window] +[ 2.603698] pci_bus 0000:0c: resource 8 [io 0xe000-0xffff window] +[ 2.603699] pci_bus 0000:0c: resource 9 [mem 0x000a0000-0x000bffff window] +[ 2.603700] pci_bus 0000:0c: resource 10 [mem 0xd4000000-0xdfffffff window] +[ 2.603701] pci_bus 0000:0c: resource 11 [mem 0xfed40000-0xfed44fff window] +[ 2.603722] pci 0000:40:01.0: PCI bridge to [bus 41] +[ 2.603732] pci 0000:40:03.0: PCI bridge to [bus 42] +[ 2.603742] pci_bus 0000:40: resource 4 [io 0x2000-0x3fff window] +[ 2.603743] pci_bus 0000:40: resource 5 [io 0x4000-0x5fff window] +[ 2.603744] pci_bus 0000:40: resource 6 [io 0x6000-0x7fff window] +[ 2.603745] pci_bus 0000:40: resource 7 [io 0x8000-0x9fff window] +[ 2.603746] pci_bus 0000:40: resource 8 [io 0xa000-0xbfff window] +[ 2.603748] pci_bus 0000:40: resource 9 [io 0xc000-0xdfff window] +[ 2.603749] pci_bus 0000:40: resource 10 [mem 0xcc000000-0xd3ffffff window] +[ 2.603831] NET: Registered protocol family 2 +[ 2.604256] tcp_listen_portaddr_hash hash table entries: 65536 (order: 8, 1048576 bytes) +[ 2.604637] TCP established hash table entries: 524288 (order: 10, 4194304 bytes) +[ 2.605425] TCP bind hash table entries: 65536 (order: 8, 1048576 bytes) +[ 2.605591] TCP: Hash tables configured (established 524288 bind 65536) +[ 2.605815] UDP hash table entries: 65536 (order: 9, 2097152 bytes) +[ 2.606253] UDP-Lite hash table entries: 65536 (order: 9, 2097152 bytes) +[ 2.606818] NET: Registered protocol family 1 +[ 2.607575] pci 0000:01:00.0: [Firmware Bug]: disabling VPD access (can't determine size of non-standard VPD format) +[ 2.607937] pci 0000:06:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff] +[ 2.608111] PCI: CLS 64 bytes, default 64 +[ 2.608176] Unpacking initramfs... +[ 3.141309] Freeing initrd memory: 19428K +[ 3.158605] PCI-DMA: Using software bounce buffering for IO (SWIOTLB) +[ 3.158610] software IO TLB: mapped [mem 0x6e11d000-0x7211d000] (64MB) +[ 3.164701] sysfb: VRAM smaller than advertised +[ 3.169997] Initialise system trusted keyrings +[ 3.170127] workingset: timestamp_bits=36 max_order=26 bucket_order=0 +[ 3.173455] zbud: loaded +[ 3.953453] alg: No test for lzo-rle (lzo-rle-generic) +[ 3.955545] alg: No test for lzo-rle (lzo-rle-scomp) +[ 4.019421] NET: Registered protocol family 38 +[ 4.019427] Key type asymmetric registered +[ 4.019429] Asymmetric key parser 'x509' registered +[ 4.019448] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247) +[ 4.019626] io scheduler mq-deadline registered +[ 4.019628] io scheduler kyber registered +[ 4.019751] io scheduler bfq registered +[ 4.021150] pcieport 0000:00:01.0: Signaling PME with IRQ 25 +[ 4.021839] pcieport 0000:00:03.0: Signaling PME with IRQ 26 +[ 4.022476] pcieport 0000:00:03.2: Signaling PME with IRQ 27 +[ 4.023062] pcieport 0000:00:11.0: Signaling PME with IRQ 28 +[ 4.023302] pcieport 0000:00:1c.0: Signaling PME with IRQ 29 +[ 4.023828] pcieport 0000:00:1c.4: Signaling PME with IRQ 30 +[ 4.024355] pcieport 0000:00:1c.7: Signaling PME with IRQ 31 +[ 4.030324] pcieport 0000:40:01.0: Signaling PME with IRQ 35 +[ 4.030822] pcieport 0000:40:03.0: Signaling PME with IRQ 36 +[ 4.031026] efifb: probing for efifb +[ 4.031055] efifb: No BGRT, not showing boot graphics +[ 4.031057] efifb: framebuffer at 0xd4000000, using 1876k, total 1875k +[ 4.031059] efifb: mode is 800x600x32, linelength=3200, pages=1 +[ 4.031060] efifb: scrolling: redraw +[ 4.031063] efifb: Truecolor: size=8:8:8:8, shift=24:16:8:0 +[ 4.031256] Console: switching to colour frame buffer device 100x37 +[ 4.041570] fb0: EFI VGA frame buffer device +[ 4.041590] intel_idle: MWAIT substates: 0x21120 +[ 4.041592] intel_idle: v0.4.1 model 0x2D +[ 4.043871] intel_idle: lapic_timer_reliable_states 0xffffffff +[ 4.044119] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0 +[ 4.044188] ACPI: Power Button [PWRF] +[ 4.046179] ERST: Error Record Serialization Table (ERST) support is initialized. +[ 4.046183] pstore: Registered erst as persistent store backend +[ 4.046601] GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC. +[ 4.046901] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled +[ 4.067822] 00:02: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A +[ 4.088852] 00:03: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A +[ 4.090272] Non-volatile memory driver v1.3 +[ 4.090323] Linux agpgart interface v0.103 +[ 4.095137] rdac: device handler registered +[ 4.095324] hp_sw: device handler registered +[ 4.095326] emc: device handler registered +[ 4.095568] alua: device handler registered +[ 4.096454] nvme nvme0: pci function 0000:08:00.0 +[ 4.096680] nvme nvme1: pci function 0000:09:00.0 +[ 4.096814] libphy: Fixed MDIO Bus: probed +[ 4.096930] ehci_hcd: USB 2.0 'Enhanced' Host Controller (EHCI) Driver +[ 4.096937] ehci-pci: EHCI PCI platform driver +[ 4.097611] ehci-pci 0000:00:1a.0: EHCI Host Controller +[ 4.097695] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1 +[ 4.097713] ehci-pci 0000:00:1a.0: debug port 2 +[ 4.101644] ehci-pci 0000:00:1a.0: cache line size of 64 is not supported +[ 4.101671] ehci-pci 0000:00:1a.0: irq 23, io mem 0xdd0fd000 +[ 4.108586] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00 +[ 4.108686] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.01 +[ 4.108689] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1 +[ 4.108691] usb usb1: Product: EHCI Host Controller +[ 4.108694] usb usb1: Manufacturer: Linux 5.1.7-1.el7.elrepo.x86_64 ehci_hcd +[ 4.108696] usb usb1: SerialNumber: 0000:00:1a.0 +[ 4.108926] hub 1-0:1.0: USB hub found +[ 4.108939] hub 1-0:1.0: 2 ports detected +[ 4.109602] ehci-pci 0000:00:1d.0: EHCI Host Controller +[ 4.109689] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2 +[ 4.109705] ehci-pci 0000:00:1d.0: debug port 2 +[ 4.113606] ehci-pci 0000:00:1d.0: cache line size of 64 is not supported +[ 4.113632] ehci-pci 0000:00:1d.0: irq 22, io mem 0xdd0fe000 +[ 4.120585] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00 +[ 4.120690] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 5.01 +[ 4.120693] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1 +[ 4.120696] usb usb2: Product: EHCI Host Controller +[ 4.120698] usb usb2: Manufacturer: Linux 5.1.7-1.el7.elrepo.x86_64 ehci_hcd +[ 4.120700] usb usb2: SerialNumber: 0000:00:1d.0 +[ 4.120890] hub 2-0:1.0: USB hub found +[ 4.120902] hub 2-0:1.0: 2 ports detected +[ 4.121195] ohci_hcd: USB 1.1 'Open' Host Controller (OHCI) Driver +[ 4.121207] ohci-pci: OHCI PCI platform driver +[ 4.121249] uhci_hcd: USB Universal Host Controller Interface driver +[ 4.121395] usbcore: registered new interface driver usbserial_generic +[ 4.121410] usbserial: USB Serial support registered for generic +[ 4.121422] usbcore: registered new interface driver wishbone_serial +[ 4.121430] usbserial: USB Serial support registered for wishbone_serial +[ 4.121477] i8042: PNP: No PS/2 controller found. +[ 4.121564] mousedev: PS/2 mouse device common for all mice +[ 4.121753] rtc_cmos 00:01: RTC can wake from S4 +[ 4.121987] rtc_cmos 00:01: registered as rtc0 +[ 4.122025] rtc_cmos 00:01: alarms up to one day, y3k, 242 bytes nvram, hpet irqs +[ 4.122051] intel_pstate: Intel P-state driver initializing +[ 4.124912] ledtrig-cpu: registered to indicate activity on CPUs +[ 4.125493] EFI Variables Facility v0.08 2004-May-17 +[ 4.127660] hidraw: raw HID events driver (C) Jiri Kosina +[ 4.127839] usbcore: registered new interface driver usbhid +[ 4.127840] usbhid: USB HID core driver +[ 4.127991] drop_monitor: Initializing network drop monitor service +[ 4.128239] Initializing XFRM netlink socket +[ 4.128562] NET: Registered protocol family 10 +[ 4.129329] Segment Routing with IPv6 +[ 4.129377] NET: Registered protocol family 17 +[ 4.129410] Bridge firewalling registered +[ 4.133264] mce: Using 18 MCE banks +[ 4.133374] microcode: sig=0x206d7, pf=0x8, revision=0x710 +[ 4.134209] microcode: Microcode Update Driver: v2.2. +[ 4.134228] sched_clock: Marking stable (4133716113, 482471)->(4240531407, -106332823) +[ 4.135221] registered taskstats version 1 +[ 4.135225] Loading compiled-in X.509 certificates +[ 4.135292] zswap: loaded using pool lzo/zbud +[ 4.140711] pstore: Unknown compression: deflate +[ 4.148597] Key type big_key registered +[ 4.153935] Key type encrypted registered +[ 4.153965] ima: No TPM chip found, activating TPM-bypass! +[ 4.153977] ima: Allocated hash algorithm: sha1 +[ 4.153994] No architecture policies found +[ 4.154031] evm: Initialising EVM extended attributes: +[ 4.154033] evm: security.selinux +[ 4.154034] evm: security.ima +[ 4.154035] evm: security.capability +[ 4.154037] evm: HMAC attrs: 0x1 +[ 4.156266] rtc_cmos 00:01: setting system clock to 2022-06-25T16:33:52 UTC (1656174832) +[ 4.202594] tsc: Refined TSC clocksource calibration: 2199.999 MHz +[ 4.202636] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x1fb631c647b, max_idle_ns: 440795226700 ns +[ 4.202716] clocksource: Switched to clocksource tsc +[ 4.428593] usb 1-1: new high-speed USB device number 2 using ehci-pci +[ 4.444593] usb 2-1: new high-speed USB device number 2 using ehci-pci +[ 4.557344] usb 1-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00 +[ 4.557348] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0 +[ 4.557733] hub 1-1:1.0: USB hub found +[ 4.557953] hub 1-1:1.0: 6 ports detected +[ 4.573352] usb 2-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00 +[ 4.573356] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0 +[ 4.573812] hub 2-1:1.0: USB hub found +[ 4.574011] hub 2-1:1.0: 8 ports detected +[ 4.834598] usb 1-1.6: new high-speed USB device number 3 using ehci-pci +[ 4.914453] usb 1-1.6: New USB device found, idVendor=413c, idProduct=a001, bcdDevice= 0.00 +[ 4.914458] usb 1-1.6: New USB device strings: Mfr=1, Product=2, SerialNumber=3 +[ 4.914460] usb 1-1.6: Product: Gadget USB HUB +[ 4.914462] usb 1-1.6: Manufacturer: no manufacturer +[ 4.914464] usb 1-1.6: SerialNumber: 0123456789 +[ 4.915032] hub 1-1.6:1.0: USB hub found +[ 4.915339] hub 1-1.6:1.0: 6 ports detected +[ 5.344593] usb 1-1.6.1: new high-speed USB device number 4 using ehci-pci +[ 5.449459] usb 1-1.6.1: New USB device found, idVendor=0624, idProduct=0249, bcdDevice= 0.00 +[ 5.449463] usb 1-1.6.1: New USB device strings: Mfr=4, Product=5, SerialNumber=6 +[ 5.449465] usb 1-1.6.1: Product: Keyboard/Mouse Function +[ 5.449467] usb 1-1.6.1: Manufacturer: Avocent +[ 5.449469] usb 1-1.6.1: SerialNumber: 20121018 +[ 5.451345] input: Avocent Keyboard/Mouse Function as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6/1-1.6.1/1-1.6.1:1.0/0003:0624:0249.0001/input/input1 +[ 5.502932] hid-generic 0003:0624:0249.0001: input,hidraw0: USB HID v1.00 Keyboard [Avocent Keyboard/Mouse Function] on usb-0000:00:1a.0-1.6.1/input0 +[ 5.504469] input: Avocent Keyboard/Mouse Function as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6/1-1.6.1/1-1.6.1:1.1/0003:0624:0249.0002/input/input2 +[ 5.504914] hid-generic 0003:0624:0249.0002: input,hidraw1: USB HID v1.00 Mouse [Avocent Keyboard/Mouse Function] on usb-0000:00:1a.0-1.6.1/input1 +[ 5.506251] input: Avocent Keyboard/Mouse Function as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6/1-1.6.1/1-1.6.1:1.2/0003:0624:0249.0003/input/input3 +[ 5.506607] hid-generic 0003:0624:0249.0003: input,hidraw2: USB HID v1.00 Mouse [Avocent Keyboard/Mouse Function] on usb-0000:00:1a.0-1.6.1/input2 +[ 6.079888] nvme nvme0: 31/0/0 default/read/poll queues +[ 6.289481] random: fast init done +[ 6.289505] nvme nvme1: 31/0/0 default/read/poll queues +[ 6.304993] Freeing unused kernel image memory: 2368K +[ 6.310606] Write protecting the kernel read-only data: 18432k +[ 6.312165] Freeing unused kernel image memory: 2020K +[ 6.312584] Freeing unused kernel image memory: 344K +[ 6.312646] Run /init as init process +[ 6.317643] ERST: NVRAM ERST Log Address Range not implemented yet. +[ 6.321525] random: systemd: uninitialized urandom read (16 bytes read) +[ 6.322296] random: systemd: uninitialized urandom read (16 bytes read) +[ 6.322311] random: systemd: uninitialized urandom read (16 bytes read) +[ 6.327064] systemd[1]: systemd 219 running in system mode. (+PAM +AUDIT +SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP +LIBCRYPTSETUP +GCRYPT +GNUTLS +ACL +XZ +LZ4 -SECCOMP +BLKID +ELFUTILS +KMOD +IDN) +[ 6.339212] systemd[1]: Detected architecture x86-64. +[ 6.339217] systemd[1]: Running in initial RAM disk. +[ 6.339275] systemd[1]: Set hostname to . +[ 6.404226] systemd[1]: Reached target Swap. +[ 6.404287] systemd[1]: Reached target Local File Systems. +[ 6.404300] systemd[1]: Reached target Timers. +[ 6.404647] systemd[1]: Created slice Root Slice. +[ 6.404686] systemd[1]: Listening on udev Kernel Socket. +[ 6.404761] systemd[1]: Listening on Journal Socket. +[ 6.689924] megasas: 07.707.51.00-rc1 +[ 6.691623] megaraid_sas 0000:01:00.0: FW now in Ready state +[ 6.691629] megaraid_sas 0000:01:00.0: 63 bit DMA mask and 32 bit consistent mask +[ 6.692611] megaraid_sas 0000:01:00.0: firmware supports msix : (16) +[ 6.692614] megaraid_sas 0000:01:00.0: current msix/online cpus : (16/24) +[ 6.692615] megaraid_sas 0000:01:00.0: RDPQ mode : (disabled) +[ 6.692618] megaraid_sas 0000:01:00.0: Current firmware supports maximum commands: 1008 LDIO threshold: 0 +[ 6.692946] megaraid_sas 0000:01:00.0: Configured max firmware commands: 1007 +[ 6.695060] pps_core: LinuxPPS API ver. 1 registered +[ 6.695062] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti +[ 6.695511] PTP clock support registered +[ 6.696615] libata version 3.00 loaded. +[ 6.697020] megaraid_sas 0000:01:00.0: FW supports sync cache : No +[ 6.697055] tg3.c:v3.137 (May 11, 2014) +[ 6.698662] ahci 0000:00:1f.2: version 3.0 +[ 6.709144] ahci 0000:00:1f.2: AHCI 0001.0300 32 slots 6 ports 3 Gbps 0x1f impl SATA mode +[ 6.709153] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ems apst +[ 6.709845] tg3 0000:02:00.0 eth0: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address 90:b1:1c:55:31:29 +[ 6.709850] tg3 0000:02:00.0 eth0: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1]) +[ 6.709852] tg3 0000:02:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1] +[ 6.709854] tg3 0000:02:00.0 eth0: dma_rwctrl[00000001] dma_mask[64-bit] +[ 6.722365] tg3 0000:02:00.1 eth1: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address 90:b1:1c:55:31:2a +[ 6.722370] tg3 0000:02:00.1 eth1: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1]) +[ 6.722372] tg3 0000:02:00.1 eth1: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1] +[ 6.722375] tg3 0000:02:00.1 eth1: dma_rwctrl[00000001] dma_mask[64-bit] +[ 6.724254] scsi host1: ahci +[ 6.725717] scsi host2: ahci +[ 6.729636] scsi host3: ahci +[ 6.731323] scsi host4: ahci +[ 6.733563] scsi host5: ahci +[ 6.734345] scsi host6: ahci +[ 6.734505] ata1: SATA max UDMA/133 abar m2048@0xdd0ff000 port 0xdd0ff100 irq 122 +[ 6.734508] ata2: SATA max UDMA/133 abar m2048@0xdd0ff000 port 0xdd0ff180 irq 122 +[ 6.734511] ata3: SATA max UDMA/133 abar m2048@0xdd0ff000 port 0xdd0ff200 irq 122 +[ 6.734512] ata4: SATA max UDMA/133 abar m2048@0xdd0ff000 port 0xdd0ff280 irq 122 +[ 6.734515] ata5: SATA max UDMA/133 abar m2048@0xdd0ff000 port 0xdd0ff300 irq 122 +[ 6.734516] ata6: DUMMY +[ 6.743612] checking generic (d4000000 1d5000) vs hw (d4000000 1000000) +[ 6.743615] fb0: switching to mgag200drmfb from EFI VGA +[ 6.743657] Console: switching to colour dummy device 80x25 +[ 6.743816] mgag200 0000:06:00.0: vgaarb: deactivate vga console +[ 6.755899] [TTM] Zone kernel: Available graphics memory: 99008982 kiB +[ 6.755903] [TTM] Zone dma32: Available graphics memory: 2097152 kiB +[ 6.755904] [TTM] Initializing pool allocator +[ 6.755912] [TTM] Initializing DMA pool allocator +[ 6.766164] megaraid_sas 0000:01:00.0: FW provided supportMaxExtLDs: 0 max_lds: 64 +[ 6.766168] megaraid_sas 0000:01:00.0: controller type : MR(1024MB) +[ 6.766169] megaraid_sas 0000:01:00.0: Online Controller Reset(OCR) : Enabled +[ 6.766171] megaraid_sas 0000:01:00.0: Secure JBOD support : No +[ 6.766172] megaraid_sas 0000:01:00.0: NVMe passthru support : No +[ 6.766174] megaraid_sas 0000:01:00.0: FW provided TM TaskAbort/Reset timeout : 0 secs/0 secs +[ 6.789275] megaraid_sas 0000:01:00.0: INIT adapter done +[ 6.789280] megaraid_sas 0000:01:00.0: Jbod map is not supported megasas_setup_jbod_map 5388 +[ 6.790171] fbcon: mgadrmfb (fb0) is primary device +[ 6.790259] Console: switching to colour frame buffer device 128x48 +[ 6.834703] megaraid_sas 0000:01:00.0: pci id : (0x1000)/(0x005b)/(0x1028)/(0x1f34) +[ 6.834705] megaraid_sas 0000:01:00.0: unevenspan support : no +[ 6.834706] megaraid_sas 0000:01:00.0: firmware crash dump : no +[ 6.834706] megaraid_sas 0000:01:00.0: jbod sync map : no +[ 6.834854] scsi host0: Avago SAS based MegaRAID driver +[ 6.866490] tg3 0000:02:00.0 em1: renamed from eth0 +[ 6.884214] tg3 0000:02:00.1 em2: renamed from eth1 +[ 6.898669] mgag200 0000:06:00.0: fb0: mgadrmfb frame buffer device +[ 6.904378] scsi 0:2:0:0: Direct-Access DELL PERC H710P 3.13 PQ: 0 ANSI: 5 +[ 6.905076] scsi 0:2:1:0: Direct-Access DELL PERC H710P 3.13 PQ: 0 ANSI: 5 +[ 6.905687] scsi 0:2:2:0: Direct-Access DELL PERC H710P 3.13 PQ: 0 ANSI: 5 +[ 6.946154] [drm] Initialized mgag200 1.0.0 20110418 for 0000:06:00.0 on minor 0 +[ 6.974891] sd 0:2:0:0: [sda] 975699968 512-byte logical blocks: (500 GB/465 GiB) +[ 6.974910] sd 0:2:1:0: [sdb] 7811891200 512-byte logical blocks: (4.00 TB/3.64 TiB) +[ 6.974923] sd 0:2:0:0: [sda] Write Protect is off +[ 6.974930] sd 0:2:0:0: [sda] Mode Sense: 1f 00 00 08 +[ 6.974935] sd 0:2:1:0: [sdb] Write Protect is off +[ 6.974940] sd 0:2:1:0: [sdb] Mode Sense: 1f 00 00 08 +[ 6.974971] sd 0:2:0:0: [sda] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 6.974991] sd 0:2:1:0: [sdb] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 6.975012] sd 0:2:2:0: [sdc] 11718885376 512-byte logical blocks: (6.00 TB/5.46 TiB) +[ 6.975038] sd 0:2:2:0: [sdc] Write Protect is off +[ 6.975040] sd 0:2:2:0: [sdc] Mode Sense: 1f 00 00 08 +[ 6.975087] sd 0:2:2:0: [sdc] Write cache: enabled, read cache: enabled, doesn't support DPO or FUA +[ 7.012403] sda: sda1 sda2 sda3 sda4 sda5 +[ 7.014099] sd 0:2:0:0: [sda] Attached SCSI disk +[ 7.029814] sdb: sdb1 sdb2 +[ 7.030736] sd 0:2:1:0: [sdb] Attached SCSI disk +[ 7.032293] sdc: sdc1 +[ 7.033544] sd 0:2:2:0: [sdc] Attached SCSI disk +[ 7.040724] ata2: SATA link down (SStatus 0 SControl 300) +[ 7.040747] ata4: SATA link down (SStatus 0 SControl 300) +[ 7.040769] ata1: SATA link down (SStatus 0 SControl 300) +[ 7.040800] ata5: SATA link up 1.5 Gbps (SStatus 113 SControl 300) +[ 7.040838] ata3: SATA link down (SStatus 0 SControl 300) +[ 7.045383] ata5.00: ATAPI: PLDS DVD-ROM DS-8D9SH, UD51, max UDMA/100 +[ 7.046209] ata5.00: configured for UDMA/100 +[ 7.048273] scsi 5:0:0:0: CD-ROM PLDS DVD-ROM DS-8D9SH UD51 PQ: 0 ANSI: 5 +[ 7.121547] sr 5:0:0:0: [sr0] scsi3-mmc drive: 24x/24x cd/rw xa/form2 cdda tray +[ 7.121551] cdrom: Uniform CD-ROM driver Revision: 3.20 +[ 7.122949] sr 5:0:0:0: Attached scsi CD-ROM sr0 +[ 7.248851] random: crng init done +[ 7.248862] random: 7 urandom warning(s) missed due to ratelimiting +[ 7.423850] SGI XFS with ACLs, security attributes, no debug enabled +[ 7.428958] XFS (sda5): Mounting V5 Filesystem +[ 7.538247] XFS (sda5): Starting recovery (logdev: internal) +[ 9.432240] XFS (sda5): Ending recovery (logdev: internal) +[ 9.850864] systemd-journald[326]: Received SIGTERM from PID 1 (systemd). +[ 9.963099] Not activating Mandatory Access Control as /sbin/tomoyo-init does not exist. +[ 10.021810] printk: systemd: 14 output lines suppressed due to ratelimiting +[ 10.418150] audit: type=1404 audit(1656174838.760:2): enforcing=1 old_enforcing=0 auid=4294967295 ses=4294967295 enabled=1 old-enabled=1 lsm=selinux res=1 +[ 10.568976] SELinux: Permission getrlimit in class process not defined in policy. +[ 10.569167] SELinux: Class xdp_socket not defined in policy. +[ 10.569167] SELinux: the above unknown classes and permissions will be allowed +[ 10.569171] SELinux: policy capability network_peer_controls=1 +[ 10.569172] SELinux: policy capability open_perms=1 +[ 10.569173] SELinux: policy capability extended_socket_class=1 +[ 10.569173] SELinux: policy capability always_check_network=0 +[ 10.569174] SELinux: policy capability cgroup_seclabel=1 +[ 10.569175] SELinux: policy capability nnp_nosuid_transition=1 +[ 10.599013] audit: type=1403 audit(1656174838.941:3): auid=4294967295 ses=4294967295 lsm=selinux res=1 +[ 10.617798] systemd[1]: Successfully loaded SELinux policy in 196.922ms. +[ 10.974490] systemd[1]: Inserted module 'ip_tables' +[ 11.016094] systemd[1]: Relabelled /dev, /run and /sys/fs/cgroup in 37.824ms. +[ 15.101631] RPC: Registered named UNIX socket transport module. +[ 15.101632] RPC: Registered udp transport module. +[ 15.101633] RPC: Registered tcp transport module. +[ 15.101633] RPC: Registered tcp NFSv4.1 backchannel transport module. +[ 15.729696] systemd-journald[2828]: Received request to flush runtime journal from PID 1 +[ 17.078634] ACPI Error: No handler for Region [SYSI] (00000000690d222e) [IPMI] (20190215/evregion-132) +[ 17.078645] ACPI Error: Region IPMI (ID=7) has no handler (20190215/exfldio-265) +[ 17.078653] ACPI Error: Aborting method \_SB.PMI0._GHL due to previous error (AE_NOT_EXIST) (20190215/psparse-531) +[ 17.078669] ACPI Error: Aborting method \_SB.PMI0._PMC due to previous error (AE_NOT_EXIST) (20190215/psparse-531) +[ 17.078682] ACPI Error: AE_NOT_EXIST, Evaluating _PMC (20190215/power_meter-756) +[ 17.089804] IPMI message handler: version 39.2 +[ 17.090937] ipmi device interface +[ 17.108030] ipmi_si: IPMI System Interface driver +[ 17.108106] ipmi_si dmi-ipmi-si.0: ipmi_platform: probing via SMBIOS +[ 17.108110] ipmi_platform: ipmi_si: SMBIOS: io 0xca8 regsize 1 spacing 4 irq 10 +[ 17.108112] ipmi_si: Adding SMBIOS-specified kcs state machine +[ 17.108778] ipmi_si: Trying SMBIOS-specified kcs state machine at i/o address 0xca8, slave address 0x20, irq 10 +[ 17.129338] sd 0:2:0:0: Attached scsi generic sg0 type 0 +[ 17.129542] input: PC Speaker as /devices/platform/pcspkr/input/input4 +[ 17.129561] sd 0:2:1:0: Attached scsi generic sg1 type 0 +[ 17.129761] sd 0:2:2:0: Attached scsi generic sg2 type 0 +[ 17.129950] sr 5:0:0:0: Attached scsi generic sg3 type 5 +[ 17.130845] mei_me 0000:00:16.0: Device doesn't have valid ME Interface +[ 17.143265] RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 163840 ms ovfl timer +[ 17.143267] RAPL PMU: hw unit of domain pp0-core 2^-16 Joules +[ 17.143268] RAPL PMU: hw unit of domain package 2^-16 Joules +[ 17.143269] RAPL PMU: hw unit of domain dram 2^-16 Joules +[ 17.146744] cryptd: max_cpu_qlen set to 1000 +[ 17.155495] AVX version of gcm_enc/dec engaged. +[ 17.155496] AES CTR mode by8 optimization enabled +[ 17.172241] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.3) +[ 17.196136] device-mapper: uevent: version 1.0.3 +[ 17.196435] device-mapper: ioctl: 4.40.0-ioctl (2019-01-18) initialised: dm-devel@redhat.com +[ 17.198756] iTCO_vendor_support: vendor-support=0 +[ 17.199737] iTCO_wdt: Intel TCO WatchDog Timer Driver v1.11 +[ 17.199821] iTCO_wdt: Found a Patsburg TCO device (Version=2, TCOBASE=0x0860) +[ 17.200159] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0) +[ 17.210555] ipmi_si dmi-ipmi-si.0: The BMC does not support setting the recv irq bit, compensating, but the BMC needs to be fixed. +[ 17.234663] ipmi_si dmi-ipmi-si.0: Using irq 10 +[ 17.256850] ipmi_si dmi-ipmi-si.0: IPMI message handler: Found new BMC (man_id: 0x0002a2, prod_id: 0x0100, dev_id: 0x20) +[ 17.293184] ipmi_si dmi-ipmi-si.0: IPMI kcs interface initialized +[ 17.337597] EDAC sbridge: Seeking for: PCI ID 8086:3ca0 +[ 17.337627] EDAC sbridge: Seeking for: PCI ID 8086:3ca0 +[ 17.337648] EDAC sbridge: Seeking for: PCI ID 8086:3ca0 +[ 17.337656] EDAC sbridge: Seeking for: PCI ID 8086:3ca8 +[ 17.337668] EDAC sbridge: Seeking for: PCI ID 8086:3ca8 +[ 17.337680] EDAC sbridge: Seeking for: PCI ID 8086:3ca8 +[ 17.337685] EDAC sbridge: Seeking for: PCI ID 8086:3c71 +[ 17.337697] EDAC sbridge: Seeking for: PCI ID 8086:3c71 +[ 17.337709] EDAC sbridge: Seeking for: PCI ID 8086:3c71 +[ 17.337714] EDAC sbridge: Seeking for: PCI ID 8086:3caa +[ 17.337726] EDAC sbridge: Seeking for: PCI ID 8086:3caa +[ 17.337738] EDAC sbridge: Seeking for: PCI ID 8086:3caa +[ 17.337756] EDAC sbridge: Seeking for: PCI ID 8086:3cab +[ 17.337767] EDAC sbridge: Seeking for: PCI ID 8086:3cab +[ 17.337779] EDAC sbridge: Seeking for: PCI ID 8086:3cab +[ 17.337783] EDAC sbridge: Seeking for: PCI ID 8086:3cac +[ 17.337796] EDAC sbridge: Seeking for: PCI ID 8086:3cac +[ 17.337808] EDAC sbridge: Seeking for: PCI ID 8086:3cac +[ 17.337813] EDAC sbridge: Seeking for: PCI ID 8086:3cad +[ 17.337825] EDAC sbridge: Seeking for: PCI ID 8086:3cad +[ 17.337836] EDAC sbridge: Seeking for: PCI ID 8086:3cad +[ 17.337840] EDAC sbridge: Seeking for: PCI ID 8086:3cb8 +[ 17.337854] EDAC sbridge: Seeking for: PCI ID 8086:3cb8 +[ 17.337866] EDAC sbridge: Seeking for: PCI ID 8086:3cb8 +[ 17.337869] EDAC sbridge: Seeking for: PCI ID 8086:3cf4 +[ 17.337878] EDAC sbridge: Seeking for: PCI ID 8086:3cf4 +[ 17.337887] EDAC sbridge: Seeking for: PCI ID 8086:3cf4 +[ 17.337891] EDAC sbridge: Seeking for: PCI ID 8086:3cf6 +[ 17.337899] EDAC sbridge: Seeking for: PCI ID 8086:3cf6 +[ 17.337914] EDAC sbridge: Seeking for: PCI ID 8086:3cf6 +[ 17.337919] EDAC sbridge: Seeking for: PCI ID 8086:3cf5 +[ 17.337928] EDAC sbridge: Seeking for: PCI ID 8086:3cf5 +[ 17.337936] EDAC sbridge: Seeking for: PCI ID 8086:3cf5 +[ 17.338136] EDAC MC0: Giving out device to module sb_edac controller Sandy Bridge SrcID#0_Ha#0: DEV 0000:3f:0e.0 (INTERRUPT) +[ 17.338302] EDAC MC1: Giving out device to module sb_edac controller Sandy Bridge SrcID#1_Ha#0: DEV 0000:7f:0e.0 (INTERRUPT) +[ 17.338303] EDAC sbridge: Ver: 1.1.2 +[ 18.159683] Adding 4194300k swap on /dev/sda4. Priority:-2 extents:1 across:4194300k FS +[ 18.690155] XFS (sda3): Mounting V5 Filesystem +[ 18.792830] loop: module loaded +[ 18.823475] squashfs: version 4.0 (2009/01/31) Phillip Lougher +[ 19.805912] XFS (sda3): Starting recovery (logdev: internal) +[ 20.014009] EXT4-fs (nvme1n1): recovery complete +[ 20.014038] EXT4-fs (nvme1n1): mounted filesystem with ordered data mode. Opts: (null) +[ 20.049167] EXT4-fs (nvme0n1): recovery complete +[ 20.049192] EXT4-fs (nvme0n1): mounted filesystem with ordered data mode. Opts: (null) +[ 20.357563] XFS (sda2): Mounting V5 Filesystem +[ 20.860759] XFS (sda2): Starting recovery (logdev: internal) +[ 20.959612] XFS (sda2): Ending recovery (logdev: internal) +[ 21.163670] FAT-fs (sda1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck. +[ 21.437995] XFS (sda3): Ending recovery (logdev: internal) +[ 24.439293] EXT4-fs (dm-6): recovery complete +[ 24.439493] EXT4-fs (dm-6): mounted filesystem with ordered data mode. Opts: (null) +[ 27.432501] EXT4-fs (dm-5): 209 orphan inodes deleted +[ 27.432505] EXT4-fs (dm-5): recovery complete +[ 27.447470] EXT4-fs (dm-5): mounted filesystem with ordered data mode. Opts: (null) +[ 45.436127] EXT4-fs (dm-7): 1319 orphan inodes deleted +[ 45.436131] EXT4-fs (dm-7): recovery complete +[ 45.510707] EXT4-fs (dm-7): mounted filesystem with ordered data mode. Opts: (null) diff --git a/t/pt-summary/samples/Linux/007/dmidecode b/t/pt-summary/samples/Linux/007/dmidecode new file mode 100644 index 00000000..58edae68 --- /dev/null +++ b/t/pt-summary/samples/Linux/007/dmidecode @@ -0,0 +1,974 @@ +# dmidecode 3.2 +Getting SMBIOS data from sysfs. +SMBIOS 2.7 present. +77 structures occupying 4848 bytes. +Table at 0x789A5020. + +Handle 0xDA00, DMI type 218, 11 bytes +OEM-specific Type + Header and Data: + DA 0B 00 DA B2 00 17 20 0E 10 01 + +Handle 0x0000, DMI type 0, 24 bytes +BIOS Information + Vendor: Dell Inc. + Version: 2.3.3 + Release Date: 07/10/2014 + Address: 0xF0000 + Runtime Size: 64 kB + ROM Size: 8192 kB + Characteristics: + ISA is supported + PCI is supported + PNP is supported + BIOS is upgradeable + BIOS shadowing is allowed + Boot from CD is supported + Selectable boot is supported + EDD is supported + Japanese floppy for Toshiba 1.2 MB is supported (int 13h) + 5.25"/360 kB floppy services are supported (int 13h) + 5.25"/1.2 MB floppy services are supported (int 13h) + 3.5"/720 kB floppy services are supported (int 13h) + 8042 keyboard services are supported (int 9h) + Serial services are supported (int 14h) + CGA/mono video services are supported (int 10h) + ACPI is supported + USB legacy is supported + BIOS boot specification is supported + Function key-initiated network boot is supported + Targeted content distribution is supported + UEFI is supported + BIOS Revision: 2.3 + +Handle 0x0100, DMI type 1, 27 bytes +System Information + Manufacturer: Dell Inc. + Product Name: PowerEdge R520 + Version: Not Specified + Serial Number: 6J6X9Y1 + UUID: 4c4c4544-004a-3610-8058-b6c04f395931 + Wake-up Type: Power Switch + SKU Number: SKU=NotProvided;ModelName=PowerEdge R520 + Family: Not Specified + +Handle 0x0200, DMI type 2, 9 bytes +Base Board Information + Manufacturer: Dell Inc. + Product Name: 051XDX + Version: A06 + Serial Number: ..CN1374035600RC. + Asset Tag: Not Specified + +Handle 0x0300, DMI type 3, 22 bytes +Chassis Information + Manufacturer: Dell Inc. + Type: Rack Mount Chassis + Lock: Present + Version: Not Specified + Serial Number: 6J6X9Y1 + Asset Tag: Not Specified + Boot-up State: Safe + Power Supply State: Safe + Thermal State: Safe + Security Status: Unknown + OEM Information: 0x00000000 + Height: 2 U + Number Of Power Cords: Unspecified + Contained Elements: 0 + SKU Number: Not Specified + +Handle 0x0400, DMI type 4, 40 bytes +Processor Information + Socket Designation: CPU1 + Type: Central Processor + Family: Xeon + Manufacturer: Intel + ID: D7 06 02 00 FF FB EB BF + Signature: Type 0, Family 6, Model 45, Stepping 7 + Flags: + FPU (Floating-point unit on-chip) + VME (Virtual mode extension) + DE (Debugging extension) + PSE (Page size extension) + TSC (Time stamp counter) + MSR (Model specific registers) + PAE (Physical address extension) + MCE (Machine check exception) + CX8 (CMPXCHG8 instruction supported) + APIC (On-chip APIC hardware supported) + SEP (Fast system call) + MTRR (Memory type range registers) + PGE (Page global enable) + MCA (Machine check architecture) + CMOV (Conditional move instruction supported) + PAT (Page attribute table) + PSE-36 (36-bit page size extension) + CLFSH (CLFLUSH instruction supported) + DS (Debug store) + ACPI (ACPI supported) + MMX (MMX technology supported) + FXSR (FXSAVE and FXSTOR instructions supported) + SSE (Streaming SIMD extensions) + SSE2 (Streaming SIMD extensions 2) + SS (Self-snoop) + HTT (Multi-threading) + TM (Thermal monitor supported) + PBE (Pending break enabled) + Version: Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz + Voltage: 1.2 V + External Clock: 7200 MHz + Max Speed: 3600 MHz + Current Speed: 2200 MHz + Status: Populated, Enabled + Upgrade: Socket LGA1356 + L1 Cache Handle: 0x0700 + L2 Cache Handle: 0x0701 + L3 Cache Handle: 0x0702 + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 6 + Core Enabled: 6 + Thread Count: 12 + Characteristics: + 64-bit capable + Multi-Core + Hardware Thread + Execute Protection + Enhanced Virtualization + Power/Performance Control + +Handle 0x0401, DMI type 4, 40 bytes +Processor Information + Socket Designation: CPU2 + Type: Central Processor + Family: Xeon + Manufacturer: Intel + ID: D7 06 02 00 FF FB EB BF + Signature: Type 0, Family 6, Model 45, Stepping 7 + Flags: + FPU (Floating-point unit on-chip) + VME (Virtual mode extension) + DE (Debugging extension) + PSE (Page size extension) + TSC (Time stamp counter) + MSR (Model specific registers) + PAE (Physical address extension) + MCE (Machine check exception) + CX8 (CMPXCHG8 instruction supported) + APIC (On-chip APIC hardware supported) + SEP (Fast system call) + MTRR (Memory type range registers) + PGE (Page global enable) + MCA (Machine check architecture) + CMOV (Conditional move instruction supported) + PAT (Page attribute table) + PSE-36 (36-bit page size extension) + CLFSH (CLFLUSH instruction supported) + DS (Debug store) + ACPI (ACPI supported) + MMX (MMX technology supported) + FXSR (FXSAVE and FXSTOR instructions supported) + SSE (Streaming SIMD extensions) + SSE2 (Streaming SIMD extensions 2) + SS (Self-snoop) + HTT (Multi-threading) + TM (Thermal monitor supported) + PBE (Pending break enabled) + Version: Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz + Voltage: 1.2 V + External Clock: 7200 MHz + Max Speed: 3600 MHz + Current Speed: 2200 MHz + Status: Populated, Idle + Upgrade: Socket LGA1356 + L1 Cache Handle: 0x0703 + L2 Cache Handle: 0x0704 + L3 Cache Handle: 0x0705 + Serial Number: Not Specified + Asset Tag: Not Specified + Part Number: Not Specified + Core Count: 6 + Core Enabled: 6 + Thread Count: 12 + Characteristics: + 64-bit capable + Multi-Core + Hardware Thread + Execute Protection + Enhanced Virtualization + Power/Performance Control + +Handle 0x0700, DMI type 7, 19 bytes +Cache Information + Socket Designation: Not Specified + Configuration: Enabled, Not Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 192 kB + Maximum Size: 192 kB + Supported SRAM Types: + Unknown + Installed SRAM Type: Unknown + Speed: Unknown + Error Correction Type: Single-bit ECC + System Type: Data + Associativity: 8-way Set-associative + +Handle 0x0701, DMI type 7, 19 bytes +Cache Information + Socket Designation: Not Specified + Configuration: Enabled, Not Socketed, Level 2 + Operational Mode: Write Back + Location: Internal + Installed Size: 1536 kB + Maximum Size: 1536 kB + Supported SRAM Types: + Unknown + Installed SRAM Type: Unknown + Speed: Unknown + Error Correction Type: Single-bit ECC + System Type: Unified + Associativity: 8-way Set-associative + +Handle 0x0702, DMI type 7, 19 bytes +Cache Information + Socket Designation: Not Specified + Configuration: Enabled, Not Socketed, Level 3 + Operational Mode: Write Back + Location: Internal + Installed Size: 15 MB + Maximum Size: 15 MB + Supported SRAM Types: + Unknown + Installed SRAM Type: Unknown + Speed: Unknown + Error Correction Type: Single-bit ECC + System Type: Unified + Associativity: 20-way Set-associative + +Handle 0x0703, DMI type 7, 19 bytes +Cache Information + Socket Designation: Not Specified + Configuration: Enabled, Not Socketed, Level 1 + Operational Mode: Write Back + Location: Internal + Installed Size: 192 kB + Maximum Size: 192 kB + Supported SRAM Types: + Unknown + Installed SRAM Type: Unknown + Speed: Unknown + Error Correction Type: Single-bit ECC + System Type: Data + Associativity: 8-way Set-associative + +Handle 0x0704, DMI type 7, 19 bytes +Cache Information + Socket Designation: Not Specified + Configuration: Enabled, Not Socketed, Level 2 + Operational Mode: Write Back + Location: Internal + Installed Size: 1536 kB + Maximum Size: 1536 kB + Supported SRAM Types: + Unknown + Installed SRAM Type: Unknown + Speed: Unknown + Error Correction Type: Single-bit ECC + System Type: Unified + Associativity: 8-way Set-associative + +Handle 0x0705, DMI type 7, 19 bytes +Cache Information + Socket Designation: Not Specified + Configuration: Enabled, Not Socketed, Level 3 + Operational Mode: Write Back + Location: Internal + Installed Size: 15 MB + Maximum Size: 15 MB + Supported SRAM Types: + Unknown + Installed SRAM Type: Unknown + Speed: Unknown + Error Correction Type: Single-bit ECC + System Type: Unified + Associativity: 20-way Set-associative + +Handle 0x0800, DMI type 8, 9 bytes +Port Connector Information + Internal Reference Designator: Not Specified + Internal Connector Type: None + External Reference Designator: Not Specified + External Connector Type: DB-15 female + Port Type: Video Port + +Handle 0x0801, DMI type 8, 9 bytes +Port Connector Information + Internal Reference Designator: Not Specified + Internal Connector Type: None + External Reference Designator: Not Specified + External Connector Type: DB-15 female + Port Type: Video Port + +Handle 0x0802, DMI type 8, 9 bytes +Port Connector Information + Internal Reference Designator: Not Specified + Internal Connector Type: None + External Reference Designator: Not Specified + External Connector Type: Access Bus (USB) + Port Type: USB + +Handle 0x0803, DMI type 8, 9 bytes +Port Connector Information + Internal Reference Designator: Not Specified + Internal Connector Type: None + External Reference Designator: Not Specified + External Connector Type: Access Bus (USB) + Port Type: USB + +Handle 0x0804, DMI type 126, 9 bytes +Inactive + +Handle 0x0805, DMI type 126, 9 bytes +Inactive + +Handle 0x0806, DMI type 126, 9 bytes +Inactive + +Handle 0x0807, DMI type 126, 9 bytes +Inactive + +Handle 0x0808, DMI type 8, 9 bytes +Port Connector Information + Internal Reference Designator: Not Specified + Internal Connector Type: None + External Reference Designator: Not Specified + External Connector Type: Access Bus (USB) + Port Type: USB + +Handle 0x0809, DMI type 8, 9 bytes +Port Connector Information + Internal Reference Designator: Not Specified + Internal Connector Type: None + External Reference Designator: Not Specified + External Connector Type: Access Bus (USB) + Port Type: USB + +Handle 0x080A, DMI type 8, 9 bytes +Port Connector Information + Internal Reference Designator: INT_USB + Internal Connector Type: Access Bus (USB) + External Reference Designator: Not Specified + External Connector Type: None + Port Type: USB + +Handle 0x080B, DMI type 126, 9 bytes +Inactive + +Handle 0x080C, DMI type 126, 9 bytes +Inactive + +Handle 0x080D, DMI type 8, 9 bytes +Port Connector Information + Internal Reference Designator: Not Specified + Internal Connector Type: None + External Reference Designator: Not Specified + External Connector Type: RJ-45 + Port Type: Network Port + +Handle 0x080E, DMI type 8, 9 bytes +Port Connector Information + Internal Reference Designator: Not Specified + Internal Connector Type: None + External Reference Designator: Not Specified + External Connector Type: RJ-45 + Port Type: Network Port + +Handle 0x080F, DMI type 8, 9 bytes +Port Connector Information + Internal Reference Designator: Not Specified + Internal Connector Type: None + External Reference Designator: Not Specified + External Connector Type: DB-9 male + Port Type: Serial Port 16550A Compatible + +Handle 0x0900, DMI type 9, 17 bytes +System Slot Information + Designation: PCI1 + Type: x16 PCI Express 3 + Current Usage: Available + Length: Long + ID: 1 + Characteristics: + 3.3 V is provided + PME signal is supported + +Handle 0x0901, DMI type 9, 17 bytes +System Slot Information + Designation: PCI2 + Type: x8 PCI Express 3 + Current Usage: In Use + Length: Long + ID: 2 + Characteristics: + 3.3 V is provided + PME signal is supported + Bus Address: 0000:08:00.0 + +Handle 0x0902, DMI type 9, 17 bytes +System Slot Information + Designation: PCI3 + Type: x8 PCI Express 3 + Current Usage: In Use + Length: Long + ID: 3 + Characteristics: + 3.3 V is provided + PME signal is supported + Bus Address: 0000:09:00.0 + +Handle 0x0903, DMI type 9, 17 bytes +System Slot Information + Designation: PCI4 + Type: x8 PCI Express 3 + Current Usage: Available + Length: Long + ID: 4 + Characteristics: + 3.3 V is provided + PME signal is supported + +Handle 0x0904, DMI type 126, 17 bytes +Inactive + +Handle 0x0905, DMI type 126, 17 bytes +Inactive + +Handle 0x0B00, DMI type 11, 5 bytes +OEM Strings + String 1: Dell System + String 2: 5[0000] + String 3: 17[FFFFFFFFFFFFFFFF] + String 4: 17[FFFFFFFFFFFFFFFF] + String 5: 17[FFFFFFFFFFFFFFFF] + String 6: 17[FFFFFFFFFFFFFFFF] + +Handle 0x7E00, DMI type 126, 170 bytes +Inactive + +Handle 0x0C00, DMI type 12, 5 bytes +System Configuration Options + Option 1: NVRAM_CLR: Clear user settable NVRAM areas and set defaults + Option 2: PWRD_EN: Close to enable password + +Handle 0x0D00, DMI type 13, 22 bytes +BIOS Language Information + Language Description Format: Long + Installable Languages: 1 + en|US|iso8859-1 + Currently Installed Language: en|US|iso8859-1 + +Handle 0x1000, DMI type 16, 23 bytes +Physical Memory Array + Location: System Board Or Motherboard + Use: System Memory + Error Correction Type: Multi-bit ECC + Maximum Capacity: 384 GB + Error Information Handle: Not Provided + Number Of Devices: 12 + +Handle 0x1100, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x1000 + Error Information Handle: Not Provided + Total Width: 72 bits + Data Width: 64 bits + Size: 16384 MB + Form Factor: DIMM + Set: 1 + Locator: DIMM_A1 + Bank Locator: Not Specified + Type: DDR3 + Type Detail: Synchronous Registered (Buffered) + Speed: 1333 MT/s + Manufacturer: 00AD04B300AD + Serial Number: 2EA1C6F0 + Asset Tag: 01131921 + Part Number: HMT42GR7MFR4A-H9 + Rank: 2 + Configured Memory Speed: 1333 MT/s + +Handle 0x1101, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x1000 + Error Information Handle: Not Provided + Total Width: 72 bits + Data Width: 64 bits + Size: 16384 MB + Form Factor: DIMM + Set: 1 + Locator: DIMM_A2 + Bank Locator: Not Specified + Type: DDR3 + Type Detail: Synchronous Registered (Buffered) + Speed: 1333 MT/s + Manufacturer: 00AD04B300AD + Serial Number: 2E21C700 + Asset Tag: 01131921 + Part Number: HMT42GR7MFR4A-H9 + Rank: 2 + Configured Memory Speed: 1333 MT/s + +Handle 0x1102, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x1000 + Error Information Handle: Not Provided + Total Width: 72 bits + Data Width: 64 bits + Size: 16384 MB + Form Factor: DIMM + Set: 2 + Locator: DIMM_A3 + Bank Locator: Not Specified + Type: DDR3 + Type Detail: Synchronous Registered (Buffered) + Speed: 1333 MT/s + Manufacturer: 00AD04B300AD + Serial Number: 2E11C700 + Asset Tag: 01131921 + Part Number: HMT42GR7MFR4A-H9 + Rank: 2 + Configured Memory Speed: 1333 MT/s + +Handle 0x1103, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x1000 + Error Information Handle: Not Provided + Total Width: 72 bits + Data Width: 64 bits + Size: 16384 MB + Form Factor: DIMM + Set: 2 + Locator: DIMM_A4 + Bank Locator: Not Specified + Type: DDR3 + Type Detail: Synchronous Registered (Buffered) + Speed: 1333 MT/s + Manufacturer: 00AD04B300AD + Serial Number: 2E91C6FF + Asset Tag: 01131921 + Part Number: HMT42GR7MFR4A-H9 + Rank: 2 + Configured Memory Speed: 1333 MT/s + +Handle 0x1104, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x1000 + Error Information Handle: Not Provided + Total Width: 72 bits + Data Width: 64 bits + Size: 16384 MB + Form Factor: DIMM + Set: 3 + Locator: DIMM_A5 + Bank Locator: Not Specified + Type: DDR3 + Type Detail: Synchronous Registered (Buffered) + Speed: 1333 MT/s + Manufacturer: 00AD04B300AD + Serial Number: 2E51C701 + Asset Tag: 01131921 + Part Number: HMT42GR7MFR4A-H9 + Rank: 2 + Configured Memory Speed: 1333 MT/s + +Handle 0x1105, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x1000 + Error Information Handle: Not Provided + Total Width: 72 bits + Data Width: 64 bits + Size: 16384 MB + Form Factor: DIMM + Set: 3 + Locator: DIMM_A6 + Bank Locator: Not Specified + Type: DDR3 + Type Detail: Synchronous Registered (Buffered) + Speed: 1333 MT/s + Manufacturer: 00AD04B300AD + Serial Number: 2E31C700 + Asset Tag: 01131921 + Part Number: HMT42GR7MFR4A-H9 + Rank: 2 + Configured Memory Speed: 1333 MT/s + +Handle 0x1106, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x1000 + Error Information Handle: Not Provided + Total Width: 72 bits + Data Width: 64 bits + Size: 16384 MB + Form Factor: DIMM + Set: 4 + Locator: DIMM_B1 + Bank Locator: Not Specified + Type: DDR3 + Type Detail: Synchronous Registered (Buffered) + Speed: 1333 MT/s + Manufacturer: 00AD04B300AD + Serial Number: 2EA1C708 + Asset Tag: 01131921 + Part Number: HMT42GR7MFR4A-H9 + Rank: 2 + Configured Memory Speed: 1333 MT/s + +Handle 0x1107, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x1000 + Error Information Handle: Not Provided + Total Width: 72 bits + Data Width: 64 bits + Size: 16384 MB + Form Factor: DIMM + Set: 4 + Locator: DIMM_B2 + Bank Locator: Not Specified + Type: DDR3 + Type Detail: Synchronous Registered (Buffered) + Speed: 1333 MT/s + Manufacturer: 00AD04B300AD + Serial Number: 2E61C728 + Asset Tag: 01131921 + Part Number: HMT42GR7MFR4A-H9 + Rank: 2 + Configured Memory Speed: 1333 MT/s + +Handle 0x1108, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x1000 + Error Information Handle: Not Provided + Total Width: 72 bits + Data Width: 64 bits + Size: 16384 MB + Form Factor: DIMM + Set: 5 + Locator: DIMM_B3 + Bank Locator: Not Specified + Type: DDR3 + Type Detail: Synchronous Registered (Buffered) + Speed: 1333 MT/s + Manufacturer: 00AD04B300AD + Serial Number: 2E51C728 + Asset Tag: 01131921 + Part Number: HMT42GR7MFR4A-H9 + Rank: 2 + Configured Memory Speed: 1333 MT/s + +Handle 0x1109, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x1000 + Error Information Handle: Not Provided + Total Width: 72 bits + Data Width: 64 bits + Size: 16384 MB + Form Factor: DIMM + Set: 5 + Locator: DIMM_B4 + Bank Locator: Not Specified + Type: DDR3 + Type Detail: Synchronous Registered (Buffered) + Speed: 1333 MT/s + Manufacturer: 00AD04B300AD + Serial Number: 2E31C730 + Asset Tag: 01131921 + Part Number: HMT42GR7MFR4A-H9 + Rank: 2 + Configured Memory Speed: 1333 MT/s + +Handle 0x110A, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x1000 + Error Information Handle: Not Provided + Total Width: 72 bits + Data Width: 64 bits + Size: 16384 MB + Form Factor: DIMM + Set: 6 + Locator: DIMM_B5 + Bank Locator: Not Specified + Type: DDR3 + Type Detail: Synchronous Registered (Buffered) + Speed: 1333 MT/s + Manufacturer: 00AD04B300AD + Serial Number: 2E21C709 + Asset Tag: 01131921 + Part Number: HMT42GR7MFR4A-H9 + Rank: 2 + Configured Memory Speed: 1333 MT/s + +Handle 0x110B, DMI type 17, 34 bytes +Memory Device + Array Handle: 0x1000 + Error Information Handle: Not Provided + Total Width: 72 bits + Data Width: 64 bits + Size: 16384 MB + Form Factor: DIMM + Set: 6 + Locator: DIMM_B6 + Bank Locator: Not Specified + Type: DDR3 + Type Detail: Synchronous Registered (Buffered) + Speed: 1333 MT/s + Manufacturer: 00AD04B300AD + Serial Number: 2E61C6F5 + Asset Tag: 01131921 + Part Number: HMT42GR7MFR4A-H9 + Rank: 2 + Configured Memory Speed: 1333 MT/s + +Handle 0x1300, DMI type 19, 31 bytes +Memory Array Mapped Address + Starting Address: 0x00000000000 + Ending Address: 0x0007FFFFFFF + Range Size: 2 GB + Physical Array Handle: 0x1000 + Partition Width: 2 + +Handle 0x1301, DMI type 19, 31 bytes +Memory Array Mapped Address + Starting Address: 0x00100000000 + Ending Address: 0x0307FFFFFFF + Range Size: 190 GB + Physical Array Handle: 0x1000 + Partition Width: 2 + +Handle 0x2000, DMI type 32, 11 bytes +System Boot Information + Status: No errors detected + +Handle 0x2600, DMI type 38, 18 bytes +IPMI Device Information + Interface Type: KCS (Keyboard Control Style) + Specification Version: 2.0 + I2C Slave Address: 0x10 + NV Storage Device: Not Present + Base Address: 0x0000000000000CA8 (I/O) + Register Spacing: 32-bit Boundaries + Interrupt Polarity: Active High + Interrupt Trigger Mode: Edge + Interrupt Number: 10 + +Handle 0x2900, DMI type 41, 11 bytes +Onboard Device + Reference Designation: Embedded NIC 1 + Type: Ethernet + Status: Enabled + Type Instance: 1 + Bus Address: 0000:02:00.0 + +Handle 0x2901, DMI type 41, 11 bytes +Onboard Device + Reference Designation: Embedded NIC 2 + Type: Ethernet + Status: Enabled + Type Instance: 2 + Bus Address: 0000:02:00.1 + +Handle 0x2902, DMI type 126, 11 bytes +Inactive + +Handle 0x2903, DMI type 41, 11 bytes +Onboard Device + Reference Designation: Integrated RAID + Type: SAS Controller + Status: Enabled + Type Instance: 1 + Bus Address: 0000:01:00.0 + +Handle 0x2904, DMI type 41, 11 bytes +Onboard Device + Reference Designation: Embedded Video + Type: Video + Status: Enabled + Type Instance: 1 + Bus Address: 0000:06:00.0 + +Handle 0x2905, DMI type 41, 11 bytes +Onboard Device + Reference Designation: + Type: SATA Controller + Status: Enabled + Type Instance: 1 + Bus Address: 0000:00:1f.2 + +Handle 0x2906, DMI type 126, 11 bytes +Inactive + +Handle 0xB100, DMI type 177, 12 bytes +OEM-specific Type + Header and Data: + B1 0C 00 B1 00 02 00 00 00 00 00 00 + +Handle 0xD000, DMI type 208, 16 bytes +OEM-specific Type + Header and Data: + D0 10 00 D0 02 00 FE 00 F6 04 00 00 00 01 00 00 + +Handle 0xD200, DMI type 210, 12 bytes +OEM-specific Type + Header and Data: + D2 0C 00 D2 F8 02 03 03 06 80 04 05 + +Handle 0xC200, DMI type 194, 87 bytes +OEM-specific Type + Header and Data: + C2 57 00 C2 70 00 71 00 00 10 2D 2E 42 00 11 FE + 01 43 00 11 FE 00 00 00 11 9F 20 00 00 11 9F 00 + 6E 01 11 9F 20 6D 01 11 9F 00 31 40 11 FB 00 32 + 40 11 FB 04 9D 00 11 FD 02 9E 00 11 FD 00 9F 00 + 26 FE 01 A0 00 26 FE 00 28 40 26 DF 20 29 40 26 + DF 00 FF FF 00 00 00 + +Handle 0xC201, DMI type 194, 252 bytes +OEM-specific Type + Header and Data: + C2 FC 01 C2 70 00 71 00 03 40 5A 6D 6C 01 57 FC + 00 6B 01 57 FC 01 6A 01 57 FC 02 12 02 57 EF 00 + 11 02 57 EF 10 00 00 5B FB 04 00 00 5B FB 00 77 + 01 54 FC 00 78 01 54 FC 01 79 01 54 FC 02 7A 01 + 54 FC 03 33 40 54 CF 00 34 40 54 CF 10 35 40 54 + CF 20 36 40 54 CF 30 1A 40 54 FB 04 1B 40 54 FB + 00 1C 40 54 F7 08 1D 40 54 F7 00 43 40 58 DF 20 + 42 40 58 DF 00 22 40 58 EF 10 23 40 58 EF 00 24 + 40 58 BF 40 25 40 58 BF 00 00 00 58 FC 01 00 00 + 58 FC 02 00 00 58 FC 03 00 00 58 F3 04 00 00 58 + F3 08 00 00 58 F3 0C 2D 02 55 FE 01 2E 02 55 FE + 00 D8 00 55 7F 80 D9 00 55 7F 00 54 02 56 DF 00 + 57 02 56 DF 20 4D 02 56 BF 00 4E 02 56 BF 40 2D + 01 56 7F 80 2E 01 56 7F 00 28 03 5B 7F 00 29 03 + 5B 7F 80 2A 03 5B 9F 00 2B 03 5B 9F 20 2C 03 5B + 9F 40 00 C0 5C 00 0A FF FF 00 00 00 + +Handle 0xC202, DMI type 194, 92 bytes +OEM-specific Type + Header and Data: + C2 5C 02 C2 70 00 71 00 03 40 5A 6D 03 C0 67 00 + 05 83 00 76 00 00 84 00 77 00 00 05 03 5A FC 00 + 06 03 5A FC 01 31 03 5A FC 02 07 03 5A F3 00 08 + 03 5A F3 04 32 03 5A F3 08 09 03 5A CF 00 10 03 + 5A CF 10 33 03 5A CF 20 11 03 5A 3F 00 12 03 5A + 3F 40 34 03 5A 3F 80 FF FF 00 00 00 + +Handle 0xC203, DMI type 194, 252 bytes +OEM-specific Type + Header and Data: + C2 FC 03 C2 72 00 73 00 00 40 5D 5E D3 00 00 00 + 02 D4 00 02 00 02 13 7C 28 F7 00 12 7C 28 F7 08 + 00 90 2C 00 00 01 90 2D 00 00 4A 01 46 BF 40 4B + 01 46 BF 00 00 00 49 D7 28 00 00 49 DF 20 DA 00 + 49 F7 08 00 00 49 D7 00 00 00 49 7F 00 00 00 49 + 7F 80 5D 02 49 F8 00 5E 02 49 F8 01 00 00 49 F8 + 02 60 02 49 F8 03 62 02 49 F8 04 65 02 49 F8 05 + DE 00 63 FE 01 DF 00 63 FE 00 26 40 42 FE 01 27 + 40 42 FE 00 FF 02 42 F7 08 00 03 42 F7 00 01 03 + 42 EF 10 02 03 42 EF 00 0B 7C 42 DF 00 0A 7C 42 + DF 20 0C 7C 42 BF 40 0D 7C 42 BF 00 17 01 4A FE + 00 18 01 4A FE 01 19 01 4A FD 00 1A 01 4A FD 02 + 1B 01 4A FB 00 1C 01 4A FB 04 1D 01 4A F7 00 1E + 01 4A F7 08 1F 01 44 FE 00 20 01 44 FE 01 00 00 + 44 FD 00 00 00 44 FD 02 35 01 4B FC 00 37 01 4B + FC 01 38 01 4B FC 02 FF FF 00 00 00 + +Handle 0xC204, DMI type 194, 252 bytes +OEM-specific Type + Header and Data: + C2 FC 04 C2 72 00 73 00 00 40 5D 5E 39 01 4B FC + 03 F7 02 4B 7F 80 F8 02 4B 7F 00 02 40 46 DF 00 + 01 40 46 DF 20 CF 01 40 FD 02 D0 01 40 FD 00 FC + 01 45 BF 00 FD 01 45 BF 40 00 00 45 7F 80 00 00 + 45 7F 00 A1 02 45 FB 00 A2 02 45 FB 04 D1 00 46 + FE 00 D2 00 46 FE 01 71 01 46 FB 04 72 01 46 FB + 00 73 01 46 F7 08 74 01 46 F7 00 40 01 47 EF 10 + 41 01 47 EF 00 EB 01 47 FD 00 EA 01 47 FD 02 33 + 02 40 07 08 32 02 40 07 10 31 02 40 07 20 00 00 + 40 07 30 00 00 40 07 40 00 00 40 07 50 00 00 40 + 07 60 6E 02 40 07 00 4B 02 47 DF 00 4C 02 47 DF + 20 10 7C 47 7F 80 11 7C 47 7F 00 C5 02 48 BF 00 + C6 02 48 BF 40 CB 02 48 DF 00 CC 02 48 DF 20 C4 + 01 50 FE 00 C5 01 50 FE 01 99 02 5C F7 00 98 02 + 5C F7 08 AE 02 5C FB 00 AD 02 5C FB 04 B6 02 5C + 3F 40 B7 02 5C 3F 80 FF FF 00 00 00 + +Handle 0xC205, DMI type 194, 252 bytes +OEM-specific Type + Header and Data: + C2 FC 05 C2 72 00 73 00 00 40 5D 5E B8 02 5C 3F + 00 E9 02 41 E7 00 EA 02 41 E7 08 EB 02 41 E7 10 + ED 02 41 BF 00 EE 02 41 BF 40 D8 02 4F F8 00 D9 + 02 4F F8 01 DA 02 4F F8 02 DC 02 4F F8 04 DD 02 + 4F F8 03 DE 02 4F E7 00 DF 02 4F E7 08 E0 02 4F + E7 18 E1 02 4F 1F 00 00 00 4F 1F C0 E2 02 4F 1F + A0 E3 02 4F 1F 20 E4 02 4F 1F 40 E5 02 4F 1F 60 + E6 02 4F 1F 80 F2 02 47 F3 00 00 00 47 F3 04 F4 + 02 47 F3 08 F5 02 47 F3 0C 06 7C 47 BF 40 07 7C + 47 BF 00 19 03 4E CF 00 1A 03 4E CF 10 1B 03 4E + CF 20 1E 03 4E F3 00 1C 03 4E F3 08 1D 03 4E F3 + 04 1F 03 4E BF 00 20 03 4E BF 40 2D 03 60 BF 00 + 2E 03 60 BF 40 00 00 19 F3 00 00 00 19 F3 04 00 + 00 19 F3 08 00 00 19 CF 00 00 00 19 CF 10 00 00 + 19 CF 20 3A 03 4B F3 00 3B 03 4B F3 04 3C 03 4B + F3 08 3D 03 4B F3 0C FF FF 00 00 00 + +Handle 0xC206, DMI type 194, 77 bytes +OEM-specific Type + Header and Data: + C2 4D 06 C2 72 00 73 00 00 40 5D 5E 14 7C 53 FE + 01 15 7C 53 FE 00 50 03 77 7F 00 51 03 77 7F 80 + 00 7C 7F FE 01 01 7C 7F FE 00 02 7C 7F F9 00 03 + 7C 7F F9 02 04 7C 7F F9 04 05 7C 7F F9 06 3E 03 + 48 EF 00 3F 03 48 EF 10 FF FF 00 00 00 + +Handle 0xD800, DMI type 216, 9 bytes +OEM-specific Type + Header and Data: + D8 09 00 D8 01 02 01 F0 03 + Strings: + MATROX + VGA/VBE BIOS, Version V3.8WO + +Handle 0xDE00, DMI type 222, 16 bytes +OEM-specific Type + Header and Data: + DE 10 00 DE 00 20 FF FF 00 00 00 00 00 00 00 00 + +Handle 0xE100, DMI type 225, 61 bytes +OEM-specific Type + Header and Data: + E1 3D 00 E1 01 01 00 04 00 02 01 04 00 03 00 11 + 00 04 01 11 00 05 02 11 00 06 03 11 00 07 04 11 + 00 08 05 11 00 09 06 11 00 0A 07 11 00 0B 08 11 + 00 0C 09 11 00 0D 0A 11 00 0E 00 00 00 + Strings: + CPU.Socket.1 + CPU.Socket.2 + DIMM.Socket.A1 + DIMM.Socket.A2 + DIMM.Socket.A3 + DIMM.Socket.A4 + DIMM.Socket.A5 + DIMM.Socket.A6 + DIMM.Socket.B1 + DIMM.Socket.B2 + DIMM.Socket.B3 + DIMM.Socket.B4 + DIMM.Socket.B5 + DIMM.Socket.B6 + +Handle 0x7F00, DMI type 127, 4 bytes +End Of Table + diff --git a/t/pt-summary/samples/Linux/007/ip b/t/pt-summary/samples/Linux/007/ip new file mode 100644 index 00000000..bb5d3a26 --- /dev/null +++ b/t/pt-summary/samples/Linux/007/ip @@ -0,0 +1,312 @@ +1: lo: mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT group default qlen 1000 + link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 + RX: bytes packets errors dropped overrun mcast + 288081053881 576594672 0 0 0 0 + TX: bytes packets errors dropped carrier collsns + 288081053881 576594672 0 0 0 0 +2: em1: mtu 1500 qdisc mq master bond0 state UP mode DEFAULT group default qlen 1000 + link/ether 90:b1:1c:55:31:29 brd ff:ff:ff:ff:ff:ff + RX: bytes packets errors dropped overrun mcast + 118451931881 163297856 0 0 0 5039072 + TX: bytes packets errors dropped carrier collsns + 90089682163 132411836 0 0 0 0 +3: em2: mtu 1500 qdisc mq master bond0 state UP mode DEFAULT group default qlen 1000 + link/ether 90:b1:1c:55:31:29 brd ff:ff:ff:ff:ff:ff + RX: bytes packets errors dropped overrun mcast + 404092078 5238978 0 0 0 5040008 + TX: bytes packets errors dropped carrier collsns + 228 2 0 0 0 0 +4: bond0: mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000 + link/ether 90:b1:1c:55:31:29 brd ff:ff:ff:ff:ff:ff + RX: bytes packets errors dropped overrun mcast + 118856023959 168536834 0 0 0 10079080 + TX: bytes packets errors dropped carrier collsns + 90089682391 132411838 0 0 0 0 +5: virbr0: mtu 1500 qdisc noqueue state DOWN mode DEFAULT group default qlen 1000 + link/ether 52:54:00:16:de:f8 brd ff:ff:ff:ff:ff:ff + RX: bytes packets errors dropped overrun mcast + 0 0 0 0 0 0 + TX: bytes packets errors dropped carrier collsns + 0 0 0 0 0 0 +6: virbr0-nic: mtu 1500 qdisc pfifo_fast master virbr0 state DOWN mode DEFAULT group default qlen 1000 + link/ether 52:54:00:16:de:f8 brd ff:ff:ff:ff:ff:ff + RX: bytes packets errors dropped overrun mcast + 0 0 0 0 0 0 + TX: bytes packets errors dropped carrier collsns + 0 0 0 0 0 0 +7: br-5f8d81e2374e: mtu 1500 qdisc noqueue state DOWN mode DEFAULT group default + link/ether 02:42:bc:4d:e2:32 brd ff:ff:ff:ff:ff:ff + RX: bytes packets errors dropped overrun mcast + 0 0 0 0 0 0 + TX: bytes packets errors dropped carrier collsns + 0 0 0 0 0 0 +8: docker0: mtu 1500 qdisc noqueue state UP mode DEFAULT group default + link/ether 02:42:3f:34:ce:fc brd ff:ff:ff:ff:ff:ff + RX: bytes packets errors dropped overrun mcast + 2984598222 10523632 0 0 0 0 + TX: bytes packets errors dropped carrier collsns + 18782619553 13752032 0 0 0 0 +9: br-294661236c88: mtu 1500 qdisc noqueue state DOWN mode DEFAULT group default + link/ether 02:42:25:df:72:e4 brd ff:ff:ff:ff:ff:ff + RX: bytes packets errors dropped overrun mcast + 0 0 0 0 0 0 + TX: bytes packets errors dropped carrier collsns + 0 0 0 0 0 0 +267: vethe8b73084@if266: mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000 + link/ether 36:0b:fa:25:af:c6 brd ff:ff:ff:ff:ff:ff link-netnsid 12 + RX: bytes packets errors dropped overrun mcast + 2301917 33114 0 0 0 0 + TX: bytes packets errors dropped carrier collsns + 546852484 94651 0 0 0 0 +269: veth1a2f3a50@if268: mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000 + link/ether 56:3b:9a:28:9b:53 brd ff:ff:ff:ff:ff:ff link-netnsid 7 + RX: bytes packets errors dropped overrun mcast + 267678933 1952641 0 0 0 0 + TX: bytes packets errors dropped carrier collsns + 519265875 1980967 0 0 0 0 +271: vethb2e8fb78@if270: mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000 + link/ether 16:79:83:36:01:d0 brd ff:ff:ff:ff:ff:ff link-netnsid 22 + RX: bytes packets errors dropped overrun mcast + 268754591 1973312 0 0 0 0 + TX: bytes packets errors dropped carrier collsns + 539694490 2008261 0 0 0 0 +273: vethc33cb528@if272: mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000 + link/ether 26:2b:06:f5:94:6e brd ff:ff:ff:ff:ff:ff link-netnsid 23 + RX: bytes packets errors dropped overrun mcast + 203289570 1649722 0 0 0 0 + TX: bytes packets errors dropped carrier collsns + 504084737 1636551 0 0 0 0 +275: vethc52473d4@if274: mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000 + link/ether 82:94:9b:fb:73:53 brd ff:ff:ff:ff:ff:ff link-netnsid 24 + RX: bytes packets errors dropped overrun mcast + 495512410 46782 0 0 0 0 + TX: bytes packets errors dropped carrier collsns + 107685970 65766 0 0 0 0 +277: vethf5136d77@if276: mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000 + link/ether 06:c6:d7:a2:51:6c brd ff:ff:ff:ff:ff:ff link-netnsid 9 + RX: bytes packets errors dropped overrun mcast + 1072875 14518 0 0 0 0 + TX: bytes packets errors dropped carrier collsns + 164168452 30643 0 0 0 0 +21: vethfa2d922@if20: mtu 1500 qdisc noqueue master docker0 state UP mode DEFAULT group default + link/ether aa:b6:e2:4f:54:dc brd ff:ff:ff:ff:ff:ff link-netnsid 5 + RX: bytes packets errors dropped overrun mcast + 73113056 462285 0 0 0 0 + TX: bytes packets errors dropped carrier collsns + 440101321 1081942 0 0 0 0 +279: veth046457e1@if278: mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000 + link/ether e6:1b:76:6b:82:ff brd ff:ff:ff:ff:ff:ff link-netnsid 10 + RX: bytes packets errors dropped overrun mcast + 1190508 16459 0 0 0 0 + TX: bytes packets errors dropped carrier collsns + 164390009 33373 0 0 0 0 +281: veth522c3e56@if280: mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000 + link/ether 76:72:02:83:02:1c brd ff:ff:ff:ff:ff:ff link-netnsid 11 + RX: bytes packets errors dropped overrun mcast + 450447 5875 0 0 0 0 + TX: bytes packets errors dropped carrier collsns + 32596490 8685 0 0 0 0 +283: vethc532c32b@if282: mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000 + link/ether 72:0b:fc:68:1f:b8 brd ff:ff:ff:ff:ff:ff link-netnsid 25 + RX: bytes packets errors dropped overrun mcast + 243841 3466 0 0 0 0 + TX: bytes packets errors dropped carrier collsns + 26670020 5751 0 0 0 0 +121: vboxnet12: mtu 1500 qdisc noop state DOWN mode DEFAULT group default qlen 1000 + link/ether 0a:00:27:00:00:0c brd ff:ff:ff:ff:ff:ff + RX: bytes packets errors dropped overrun mcast + 0 0 0 0 0 0 + TX: bytes packets errors dropped carrier collsns + 0 0 0 0 0 0 +122: vboxnet18: mtu 1500 qdisc noop state DOWN mode DEFAULT group default qlen 1000 + link/ether 0a:00:27:00:00:12 brd ff:ff:ff:ff:ff:ff + RX: bytes packets errors dropped overrun mcast + 0 0 0 0 0 0 + TX: bytes packets errors dropped carrier collsns + 0 0 0 0 0 0 +123: vboxnet19: mtu 1500 qdisc noop state DOWN mode DEFAULT group default qlen 1000 + link/ether 0a:00:27:00:00:13 brd ff:ff:ff:ff:ff:ff + RX: bytes packets errors dropped overrun mcast + 0 0 0 0 0 0 + TX: bytes packets errors dropped carrier collsns + 0 0 0 0 0 0 +124: vboxnet20: mtu 1500 qdisc noop state DOWN mode DEFAULT group default qlen 1000 + link/ether 0a:00:27:00:00:14 brd ff:ff:ff:ff:ff:ff + RX: bytes packets errors dropped overrun mcast + 0 0 0 0 0 0 + TX: bytes packets errors dropped carrier collsns + 0 0 0 0 0 0 +146: veth67e3da0@if145: mtu 1500 qdisc noqueue master docker0 state UP mode DEFAULT group default + link/ether 6e:6c:20:61:1a:d6 brd ff:ff:ff:ff:ff:ff link-netnsid 0 + RX: bytes packets errors dropped overrun mcast + 25074983 290092 0 0 0 0 + TX: bytes packets errors dropped carrier collsns + 1685873208 506528 0 0 0 0 +147: vboxnet0: mtu 1500 qdisc noop state DOWN mode DEFAULT group default qlen 1000 + link/ether 0a:00:27:00:00:00 brd ff:ff:ff:ff:ff:ff + RX: bytes packets errors dropped overrun mcast + 0 0 0 0 0 0 + TX: bytes packets errors dropped carrier collsns + 0 0 0 0 0 0 +148: vboxnet21: mtu 1500 qdisc noop state DOWN mode DEFAULT group default qlen 1000 + link/ether 0a:00:27:00:00:15 brd ff:ff:ff:ff:ff:ff + RX: bytes packets errors dropped overrun mcast + 0 0 0 0 0 0 + TX: bytes packets errors dropped carrier collsns + 0 0 0 0 0 0 +149: vboxnet24: mtu 1500 qdisc noop state DOWN mode DEFAULT group default qlen 1000 + link/ether 0a:00:27:00:00:18 brd ff:ff:ff:ff:ff:ff + RX: bytes packets errors dropped overrun mcast + 0 0 0 0 0 0 + TX: bytes packets errors dropped carrier collsns + 0 0 0 0 0 0 +150: vboxnet25: mtu 1500 qdisc pfifo_fast state DOWN mode DEFAULT group default qlen 1000 + link/ether 0a:00:27:00:00:19 brd ff:ff:ff:ff:ff:ff + RX: bytes packets errors dropped overrun mcast + 0 0 0 0 0 0 + TX: bytes packets errors dropped carrier collsns + 25156 239 0 0 0 0 +151: vboxnet3: mtu 1500 qdisc noop state DOWN mode DEFAULT group default qlen 1000 + link/ether 0a:00:27:00:00:03 brd ff:ff:ff:ff:ff:ff + RX: bytes packets errors dropped overrun mcast + 0 0 0 0 0 0 + TX: bytes packets errors dropped carrier collsns + 0 0 0 0 0 0 +152: vboxnet4: mtu 1500 qdisc noop state DOWN mode DEFAULT group default qlen 1000 + link/ether 0a:00:27:00:00:04 brd ff:ff:ff:ff:ff:ff + RX: bytes packets errors dropped overrun mcast + 0 0 0 0 0 0 + TX: bytes packets errors dropped carrier collsns + 0 0 0 0 0 0 +154: vethaa8f4de@if153: mtu 1500 qdisc noqueue master docker0 state UP mode DEFAULT group default + link/ether de:1c:ac:dc:41:88 brd ff:ff:ff:ff:ff:ff link-netnsid 1 + RX: bytes packets errors dropped overrun mcast + 2384501026 5652928 0 0 0 0 + TX: bytes packets errors dropped carrier collsns + 9951815230 7743370 0 0 0 0 +155: lxdbr0: mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000 + link/ether 00:16:3e:c9:ff:26 brd ff:ff:ff:ff:ff:ff + RX: bytes packets errors dropped overrun mcast + 100847667 1591955 0 0 0 0 + TX: bytes packets errors dropped carrier collsns + 7405489236 1792866 0 0 0 0 +157: veth0bd575f6@if156: mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000 + link/ether 16:a2:70:0f:af:53 brd ff:ff:ff:ff:ff:ff link-netnsid 2 + RX: bytes packets errors dropped overrun mcast + 398770 3913 0 0 0 0 + TX: bytes packets errors dropped carrier collsns + 3441398 53752 0 0 0 0 +159: veth1e01ee50@if158: mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000 + link/ether c2:8a:d5:7a:fa:24 brd ff:ff:ff:ff:ff:ff link-netnsid 3 + RX: bytes packets errors dropped overrun mcast + 398710 3912 0 0 0 0 + TX: bytes packets errors dropped carrier collsns + 3441020 53701 0 0 0 0 +161: veth07d7db6b@if160: mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000 + link/ether a6:a8:96:23:e8:58 brd ff:ff:ff:ff:ff:ff link-netnsid 4 + RX: bytes packets errors dropped overrun mcast + 398710 3912 0 0 0 0 + TX: bytes packets errors dropped carrier collsns + 3439590 53684 0 0 0 0 +177: veth12219f8c@if176: mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000 + link/ether d2:a0:d5:df:32:04 brd ff:ff:ff:ff:ff:ff link-netnsid 13 + RX: bytes packets errors dropped overrun mcast + 396668 3892 0 0 0 0 + TX: bytes packets errors dropped carrier collsns + 3401425 53413 0 0 0 0 +179: vethb9d2af0d@if178: mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000 + link/ether 8e:c2:5a:cf:35:ac brd ff:ff:ff:ff:ff:ff link-netnsid 14 + RX: bytes packets errors dropped overrun mcast + 398770 3913 0 0 0 0 + TX: bytes packets errors dropped carrier collsns + 3399264 53395 0 0 0 0 +181: veth0c948a7c@if180: mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000 + link/ether aa:1e:0b:83:66:3d brd ff:ff:ff:ff:ff:ff link-netnsid 15 + RX: bytes packets errors dropped overrun mcast + 397750 3903 0 0 0 0 + TX: bytes packets errors dropped carrier collsns + 3397560 53381 0 0 0 0 +183: vethad45a55a@if182: mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000 + link/ether ee:45:28:ac:4a:d2 brd ff:ff:ff:ff:ff:ff link-netnsid 16 + RX: bytes packets errors dropped overrun mcast + 398198 3907 0 0 0 0 + TX: bytes packets errors dropped carrier collsns + 3396836 53369 0 0 0 0 +185: veth3bd42127@if184: mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000 + link/ether 2a:e9:0b:d7:a4:bb brd ff:ff:ff:ff:ff:ff link-netnsid 17 + RX: bytes packets errors dropped overrun mcast + 398260 3908 0 0 0 0 + TX: bytes packets errors dropped carrier collsns + 3394912 53338 0 0 0 0 +187: vetha67e3445@if186: mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000 + link/ether 3e:4c:8f:9e:cb:9f brd ff:ff:ff:ff:ff:ff link-netnsid 18 + RX: bytes packets errors dropped overrun mcast + 397688 3902 0 0 0 0 + TX: bytes packets errors dropped carrier collsns + 3396256 53312 0 0 0 0 +189: veth57871859@if188: mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000 + link/ether 4e:93:e6:28:56:9d brd ff:ff:ff:ff:ff:ff link-netnsid 19 + RX: bytes packets errors dropped overrun mcast + 398198 3907 0 0 0 0 + TX: bytes packets errors dropped carrier collsns + 3391468 53275 0 0 0 0 +191: veth61f76055@if190: mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000 + link/ether e2:aa:bb:04:c3:51 brd ff:ff:ff:ff:ff:ff link-netnsid 20 + RX: bytes packets errors dropped overrun mcast + 400748 3932 0 0 0 0 + TX: bytes packets errors dropped carrier collsns + 3391394 53262 0 0 0 0 +193: veth67de6880@if192: mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000 + link/ether e6:ed:ce:55:a0:b5 brd ff:ff:ff:ff:ff:ff link-netnsid 21 + RX: bytes packets errors dropped overrun mcast + 1285926 13204 0 0 0 0 + TX: bytes packets errors dropped carrier collsns + 3475083 54268 0 0 0 0 +209: veth45fa2bdb@if208: mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000 + link/ether a2:e2:47:fc:54:3a brd ff:ff:ff:ff:ff:ff link-netnsid 30 + RX: bytes packets errors dropped overrun mcast + 397318 3899 0 0 0 0 + TX: bytes packets errors dropped carrier collsns + 3370766 53144 0 0 0 0 +219: vethce7b9a4d@if218: mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000 + link/ether 8e:a2:b6:ee:d2:37 brd ff:ff:ff:ff:ff:ff link-netnsid 35 + RX: bytes packets errors dropped overrun mcast + 1930874 19334 0 0 0 0 + TX: bytes packets errors dropped carrier collsns + 59751404 64926 0 0 0 0 +221: veth19c266ca@if220: mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000 + link/ether ae:17:9d:7e:42:4f brd ff:ff:ff:ff:ff:ff link-netnsid 36 + RX: bytes packets errors dropped overrun mcast + 395138 3877 0 0 0 0 + TX: bytes packets errors dropped carrier collsns + 3367890 53030 0 0 0 0 +225: veth140b78c8@if224: mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000 + link/ether 66:17:3f:a2:55:dc brd ff:ff:ff:ff:ff:ff link-netnsid 38 + RX: bytes packets errors dropped overrun mcast + 470366 5253 0 0 0 0 + TX: bytes packets errors dropped carrier collsns + 3467344 54349 0 0 0 0 +227: veth328abad5@if226: mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000 + link/ether ce:9d:b7:e8:32:68 brd ff:ff:ff:ff:ff:ff link-netnsid 39 + RX: bytes packets errors dropped overrun mcast + 613062 6737 0 0 0 0 + TX: bytes packets errors dropped carrier collsns + 3533422 55799 0 0 0 0 +229: veth125aed80@if228: mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000 + link/ether 9e:06:5e:ae:9c:96 brd ff:ff:ff:ff:ff:ff link-netnsid 40 + RX: bytes packets errors dropped overrun mcast + 493486 5399 0 0 0 0 + TX: bytes packets errors dropped carrier collsns + 3487996 54527 0 0 0 0 +231: vetha245bad8@if230: mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000 + link/ether 9e:d0:0e:cf:75:38 brd ff:ff:ff:ff:ff:ff link-netnsid 6 + RX: bytes packets errors dropped overrun mcast + 26900276 404736 0 0 0 0 + TX: bytes packets errors dropped carrier collsns + 2519395662 521491 0 0 0 0 +245: vethe8577b3d@if244: mtu 1500 qdisc noqueue master lxdbr0 state UP mode DEFAULT group default qlen 1000 + link/ether 62:7e:f7:14:45:3f brd ff:ff:ff:ff:ff:ff link-netnsid 8 + RX: bytes packets errors dropped overrun mcast + 1323198 17019 0 0 0 0 + TX: bytes packets errors dropped carrier collsns + 138649236 64065 0 0 0 0 diff --git a/t/pt-summary/samples/Linux/007/lspci_file b/t/pt-summary/samples/Linux/007/lspci_file new file mode 100644 index 00000000..8c30c834 --- /dev/null +++ b/t/pt-summary/samples/Linux/007/lspci_file @@ -0,0 +1,109 @@ +00:00.0 Host bridge: Intel Corporation Xeon E5/Core i7 DMI2 (rev 07) +00:01.0 PCI bridge: Intel Corporation Xeon E5/Core i7 IIO PCI Express Root Port 1a (rev 07) +00:03.0 PCI bridge: Intel Corporation Xeon E5/Core i7 IIO PCI Express Root Port 3a in PCI Express Mode (rev 07) +00:03.2 PCI bridge: Intel Corporation Xeon E5/Core i7 IIO PCI Express Root Port 3c (rev 07) +00:05.0 System peripheral: Intel Corporation Xeon E5/Core i7 Address Map, VTd_Misc, System Management (rev 07) +00:05.2 System peripheral: Intel Corporation Xeon E5/Core i7 Control Status and Global Errors (rev 07) +00:11.0 PCI bridge: Intel Corporation C600/X79 series chipset PCI Express Virtual Root Port (rev 05) +00:16.0 Communication controller: Intel Corporation C600/X79 series chipset MEI Controller #1 (rev 05) +00:16.1 Communication controller: Intel Corporation C600/X79 series chipset MEI Controller #2 (rev 05) +00:1a.0 USB controller: Intel Corporation C600/X79 series chipset USB2 Enhanced Host Controller #2 (rev 05) +00:1c.0 PCI bridge: Intel Corporation C600/X79 series chipset PCI Express Root Port 1 (rev b5) +00:1c.4 PCI bridge: Intel Corporation C600/X79 series chipset PCI Express Root Port 5 (rev b5) +00:1c.7 PCI bridge: Intel Corporation C600/X79 series chipset PCI Express Root Port 8 (rev b5) +00:1d.0 USB controller: Intel Corporation C600/X79 series chipset USB2 Enhanced Host Controller #1 (rev 05) +00:1e.0 PCI bridge: Intel Corporation 82801 PCI Bridge (rev a5) +00:1f.0 ISA bridge: Intel Corporation C600/X79 series chipset LPC Controller (rev 05) +00:1f.2 SATA controller: Intel Corporation C600/X79 series chipset 6-Port SATA AHCI Controller (rev 05) +01:00.0 RAID bus controller: Broadcom / LSI MegaRAID SAS 2208 [Thunderbolt] (rev 05) +02:00.0 Ethernet controller: Broadcom Inc. and subsidiaries NetXtreme BCM5720 2-port Gigabit Ethernet PCIe +02:00.1 Ethernet controller: Broadcom Inc. and subsidiaries NetXtreme BCM5720 2-port Gigabit Ethernet PCIe +03:00.0 PCI bridge: Renesas Technology Corp. SH7757 PCIe Switch [PS] +04:00.0 PCI bridge: Renesas Technology Corp. SH7757 PCIe Switch [PS] +04:01.0 PCI bridge: Renesas Technology Corp. SH7757 PCIe Switch [PS] +05:00.0 PCI bridge: Renesas Technology Corp. SH7757 PCIe-PCI Bridge [PPB] +06:00.0 VGA compatible controller: Matrox Electronics Systems Ltd. G200eR2 +08:00.0 Non-Volatile memory controller: Intel Corporation PCIe Data Center SSD (rev 01) +09:00.0 Non-Volatile memory controller: Intel Corporation PCIe Data Center SSD (rev 01) +3f:08.0 System peripheral: Intel Corporation Xeon E5/Core i7 QPI Link 0 (rev 07) +3f:09.0 System peripheral: Intel Corporation Xeon E5/Core i7 QPI Link 1 (rev 07) +3f:0a.0 System peripheral: Intel Corporation Xeon E5/Core i7 Power Control Unit 0 (rev 07) +3f:0a.1 System peripheral: Intel Corporation Xeon E5/Core i7 Power Control Unit 1 (rev 07) +3f:0a.2 System peripheral: Intel Corporation Xeon E5/Core i7 Power Control Unit 2 (rev 07) +3f:0a.3 System peripheral: Intel Corporation Xeon E5/Core i7 Power Control Unit 3 (rev 07) +3f:0b.0 System peripheral: Intel Corporation Xeon E5/Core i7 Interrupt Control Registers (rev 07) +3f:0b.3 System peripheral: Intel Corporation Xeon E5/Core i7 Semaphore and Scratchpad Configuration Registers (rev 07) +3f:0c.0 System peripheral: Intel Corporation Xeon E5/Core i7 Unicast Register 0 (rev 07) +3f:0c.1 System peripheral: Intel Corporation Xeon E5/Core i7 Unicast Register 0 (rev 07) +3f:0c.2 System peripheral: Intel Corporation Xeon E5/Core i7 Unicast Register 0 (rev 07) +3f:0c.6 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller System Address Decoder 0 (rev 07) +3f:0c.7 System peripheral: Intel Corporation Xeon E5/Core i7 System Address Decoder (rev 07) +3f:0d.0 System peripheral: Intel Corporation Xeon E5/Core i7 Unicast Register 0 (rev 07) +3f:0d.1 System peripheral: Intel Corporation Xeon E5/Core i7 Unicast Register 0 (rev 07) +3f:0d.2 System peripheral: Intel Corporation Xeon E5/Core i7 Unicast Register 0 (rev 07) +3f:0d.6 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller System Address Decoder 1 (rev 07) +3f:0e.0 System peripheral: Intel Corporation Xeon E5/Core i7 Processor Home Agent (rev 07) +3f:0e.1 Performance counters: Intel Corporation Xeon E5/Core i7 Processor Home Agent Performance Monitoring (rev 07) +3f:0f.0 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Registers (rev 07) +3f:0f.1 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller RAS Registers (rev 07) +3f:0f.2 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 0 (rev 07) +3f:0f.3 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 1 (rev 07) +3f:0f.4 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 2 (rev 07) +3f:0f.5 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 3 (rev 07) +3f:0f.6 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 4 (rev 07) +3f:10.0 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Channel 0-3 Thermal Control 0 (rev 07) +3f:10.1 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Channel 0-3 Thermal Control 1 (rev 07) +3f:10.2 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller ERROR Registers 0 (rev 07) +3f:10.3 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller ERROR Registers 1 (rev 07) +3f:10.5 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Channel 0-3 Thermal Control 3 (rev 07) +3f:10.6 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller ERROR Registers 2 (rev 07) +3f:10.7 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller ERROR Registers 3 (rev 07) +3f:11.0 System peripheral: Intel Corporation Xeon E5/Core i7 DDRIO (rev 07) +3f:13.0 System peripheral: Intel Corporation Xeon E5/Core i7 R2PCIe (rev 07) +3f:13.1 Performance counters: Intel Corporation Xeon E5/Core i7 Ring to PCI Express Performance Monitor (rev 07) +3f:13.4 Performance counters: Intel Corporation Xeon E5/Core i7 QuickPath Interconnect Agent Ring Registers (rev 07) +3f:13.5 Performance counters: Intel Corporation Xeon E5/Core i7 Ring to QuickPath Interconnect Link 0 Performance Monitor (rev 07) +3f:13.6 System peripheral: Intel Corporation Xeon E5/Core i7 Ring to QuickPath Interconnect Link 1 Performance Monitor (rev 07) +40:01.0 PCI bridge: Intel Corporation Xeon E5/Core i7 IIO PCI Express Root Port 1a (rev 07) +40:03.0 PCI bridge: Intel Corporation Xeon E5/Core i7 IIO PCI Express Root Port 3a in PCI Express Mode (rev 07) +40:05.0 System peripheral: Intel Corporation Xeon E5/Core i7 Address Map, VTd_Misc, System Management (rev 07) +40:05.2 System peripheral: Intel Corporation Xeon E5/Core i7 Control Status and Global Errors (rev 07) +7f:08.0 System peripheral: Intel Corporation Xeon E5/Core i7 QPI Link 0 (rev 07) +7f:09.0 System peripheral: Intel Corporation Xeon E5/Core i7 QPI Link 1 (rev 07) +7f:0a.0 System peripheral: Intel Corporation Xeon E5/Core i7 Power Control Unit 0 (rev 07) +7f:0a.1 System peripheral: Intel Corporation Xeon E5/Core i7 Power Control Unit 1 (rev 07) +7f:0a.2 System peripheral: Intel Corporation Xeon E5/Core i7 Power Control Unit 2 (rev 07) +7f:0a.3 System peripheral: Intel Corporation Xeon E5/Core i7 Power Control Unit 3 (rev 07) +7f:0b.0 System peripheral: Intel Corporation Xeon E5/Core i7 Interrupt Control Registers (rev 07) +7f:0b.3 System peripheral: Intel Corporation Xeon E5/Core i7 Semaphore and Scratchpad Configuration Registers (rev 07) +7f:0c.0 System peripheral: Intel Corporation Xeon E5/Core i7 Unicast Register 0 (rev 07) +7f:0c.1 System peripheral: Intel Corporation Xeon E5/Core i7 Unicast Register 0 (rev 07) +7f:0c.2 System peripheral: Intel Corporation Xeon E5/Core i7 Unicast Register 0 (rev 07) +7f:0c.6 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller System Address Decoder 0 (rev 07) +7f:0c.7 System peripheral: Intel Corporation Xeon E5/Core i7 System Address Decoder (rev 07) +7f:0d.0 System peripheral: Intel Corporation Xeon E5/Core i7 Unicast Register 0 (rev 07) +7f:0d.1 System peripheral: Intel Corporation Xeon E5/Core i7 Unicast Register 0 (rev 07) +7f:0d.2 System peripheral: Intel Corporation Xeon E5/Core i7 Unicast Register 0 (rev 07) +7f:0d.6 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller System Address Decoder 1 (rev 07) +7f:0e.0 System peripheral: Intel Corporation Xeon E5/Core i7 Processor Home Agent (rev 07) +7f:0e.1 Performance counters: Intel Corporation Xeon E5/Core i7 Processor Home Agent Performance Monitoring (rev 07) +7f:0f.0 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Registers (rev 07) +7f:0f.1 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller RAS Registers (rev 07) +7f:0f.2 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 0 (rev 07) +7f:0f.3 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 1 (rev 07) +7f:0f.4 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 2 (rev 07) +7f:0f.5 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 3 (rev 07) +7f:0f.6 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Target Address Decoder 4 (rev 07) +7f:10.0 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Channel 0-3 Thermal Control 0 (rev 07) +7f:10.1 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Channel 0-3 Thermal Control 1 (rev 07) +7f:10.2 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller ERROR Registers 0 (rev 07) +7f:10.3 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller ERROR Registers 1 (rev 07) +7f:10.5 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller Channel 0-3 Thermal Control 3 (rev 07) +7f:10.6 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller ERROR Registers 2 (rev 07) +7f:10.7 System peripheral: Intel Corporation Xeon E5/Core i7 Integrated Memory Controller ERROR Registers 3 (rev 07) +7f:11.0 System peripheral: Intel Corporation Xeon E5/Core i7 DDRIO (rev 07) +7f:13.0 System peripheral: Intel Corporation Xeon E5/Core i7 R2PCIe (rev 07) +7f:13.1 Performance counters: Intel Corporation Xeon E5/Core i7 Ring to PCI Express Performance Monitor (rev 07) +7f:13.4 Performance counters: Intel Corporation Xeon E5/Core i7 QuickPath Interconnect Agent Ring Registers (rev 07) +7f:13.5 Performance counters: Intel Corporation Xeon E5/Core i7 Ring to QuickPath Interconnect Link 0 Performance Monitor (rev 07) +7f:13.6 System peripheral: Intel Corporation Xeon E5/Core i7 Ring to QuickPath Interconnect Link 1 Performance Monitor (rev 07) diff --git a/t/pt-summary/samples/Linux/007/lvs b/t/pt-summary/samples/Linux/007/lvs new file mode 100644 index 00000000..5de1ce4d --- /dev/null +++ b/t/pt-summary/samples/Linux/007/lvs @@ -0,0 +1,6 @@ + LV VG Attr LSize Pool Origin Data% Meta% Move Log Cpy%Sync Convert + home raid10 -wi-ao---- <2.76t + root raid10 -wi-ao---- 100.00g + testlv raid10 -wi-a----- 10.00g + tokutest1 raid10 -wi-a----- 35.00g + vinicius-test raid10 -wi-a----- 100.00g diff --git a/t/pt-summary/samples/Linux/007/memory b/t/pt-summary/samples/Linux/007/memory new file mode 100644 index 00000000..74d76216 --- /dev/null +++ b/t/pt-summary/samples/Linux/007/memory @@ -0,0 +1,52 @@ + total used free shared buff/cache available +Mem: 202770395136 34394607616 77439123456 4469063680 90936664064 163263594496 +Swap: 4294963200 227540992 4067422208 +MemTotal: 198017964 kB +MemFree: 75624404 kB +MemAvailable: 159437364 kB +Buffers: 9117060 kB +Cached: 67197724 kB +SwapCached: 15024 kB +Active: 59782480 kB +Inactive: 36711100 kB +Active(anon): 16042904 kB +Inactive(anon): 6933996 kB +Active(file): 43739576 kB +Inactive(file): 29777104 kB +Unevictable: 100 kB +Mlocked: 100 kB +SwapTotal: 4194300 kB +SwapFree: 3972092 kB +Dirty: 7340 kB +Writeback: 0 kB +AnonPages: 19080708 kB +Mapped: 2415452 kB +Shmem: 4364320 kB +KReclaimable: 12490552 kB +Slab: 14653600 kB +SReclaimable: 12490552 kB +SUnreclaim: 2163048 kB +KernelStack: 98000 kB +PageTables: 398548 kB +NFS_Unstable: 0 kB +Bounce: 0 kB +WritebackTmp: 0 kB +CommitLimit: 18919206700 kB +Committed_AS: 77642340 kB +VmallocTotal: 34359738367 kB +VmallocUsed: 0 kB +VmallocChunk: 0 kB +Percpu: 254784 kB +HardwareCorrupted: 0 kB +AnonHugePages: 38912 kB +ShmemHugePages: 0 kB +ShmemPmdMapped: 0 kB +HugePages_Total: 4330 +HugePages_Free: 4299 +HugePages_Rsvd: 185 +HugePages_Surp: 0 +Hugepagesize: 2048 kB +Hugetlb: 8867840 kB +DirectMap4k: 24671468 kB +DirectMap2M: 164007936 kB +DirectMap1G: 14680064 kB diff --git a/t/pt-summary/samples/Linux/007/mounted_fs b/t/pt-summary/samples/Linux/007/mounted_fs new file mode 100644 index 00000000..a8c2ecd8 --- /dev/null +++ b/t/pt-summary/samples/Linux/007/mounted_fs @@ -0,0 +1,326 @@ +10.10.8.124:/srv/ftp 1.2T 588G 531G 53% /srv/ftp on /srv/ftp type nfs4 (ro,relatime,vers=4.1,rsize=524288,wsize=524288,namlen=255,hard,proto=tcp,timeo=600,retrans=2,sec=krb5p,clientaddr=10.10.8.141,local_lock=none,addr=10.10.8.124) +/dev/mapper/bigdisk_crypt 5.5T 2.0T 3.2T 38% /bigdisk on /bigdisk type ext4 (rw,relatime,seclabel) +/dev/mapper/home_crypt 2.8T 1.7T 990G 63% /home on /home type ext4 (rw,relatime,seclabel) +/dev/mapper/root_crypt 99G 28G 66G 30% /root on /root type ext4 (rw,relatime,seclabel) +/dev/nvme0n1 367G 32G 317G 10% /mnt/nvme on /mnt/nvme type ext4 (rw,relatime,seclabel) +/dev/nvme1n1 367G 71G 297G 20% /mnt/nvme2 on /mnt/nvme2 type ext4 (rw,relatime,seclabel) +/dev/sda1 190M 12M 179M 6% /boot/efi on /boot/efi type vfat (rw,relatime,fmask=0077,dmask=0077,codepage=437,iocharset=ascii,shortname=winnt,errors=remount-ro) +/dev/sda2 1014M 263M 752M 26% /boot on /boot type xfs (rw,relatime,seclabel,attr2,inode64,noquota) +/dev/sda3 150G 150G 368M 100% /opt on /opt type xfs (rw,relatime,seclabel,attr2,inode64,noquota) +/dev/sda5 310G 162G 149G 53% / on / type xfs (rw,relatime,seclabel,attr2,inode64,noquota) +devtmpfs 95G 0 95G 0% /dev on /dev type devtmpfs (rw,nosuid,seclabel,size=98996900k,nr_inodes=24749225,mode=755) +overlay 5.5T 2.0T 3.2T 38% /bigdisk/docker/overlay2/109ef036e6f60478d1e17515dc9c6424f0f979fa6d4d353fcd4e27aa9852e5e6/merged on /bigdisk/docker/overlay2/109ef036e6f60478d1e17515dc9c6424f0f979fa6d4d353fcd4e27aa9852e5e6/merged type overlay (rw,relatime,seclabel,lowerdir=/bigdisk/docker/overlay2/l/FTER5Z3KRDVUU5BZIQ5V2CBAEX:/bigdisk/docker/overlay2/l/WIAH4GSCWZ7ELFH2QQBLBPG2ME:/bigdisk/docker/overlay2/l/YF4GRKV3GEMT3LC2AC2RQRPAQP,upperdir=/bigdisk/docker/overlay2/109ef036e6f60478d1e17515dc9c6424f0f979fa6d4d353fcd4e27aa9852e5e6/diff,workdir=/bigdisk/docker/overlay2/109ef036e6f60478d1e17515dc9c6424f0f979fa6d4d353fcd4e27aa9852e5e6/work) +overlay 5.5T 2.0T 3.2T 38% /bigdisk/docker/overlay2/109ef036e6f60478d1e17515dc9c6424f0f979fa6d4d353fcd4e27aa9852e5e6/merged on /bigdisk/docker/overlay2/3d094130f6d9423fca205ff4a74634779080af9873c72a3e234e6e987a8d4c21/merged type overlay (rw,relatime,seclabel,lowerdir=/bigdisk/docker/overlay2/l/WCTE4ONPX6H43KHAQG2LQBRR65:/bigdisk/docker/overlay2/l/QNL4DERUZUQ6PMHLBW5E6JKSYJ:/bigdisk/docker/overlay2/l/YF4GRKV3GEMT3LC2AC2RQRPAQP,upperdir=/bigdisk/docker/overlay2/3d094130f6d9423fca205ff4a74634779080af9873c72a3e234e6e987a8d4c21/diff,workdir=/bigdisk/docker/overlay2/3d094130f6d9423fca205ff4a74634779080af9873c72a3e234e6e987a8d4c21/work) +overlay 5.5T 2.0T 3.2T 38% /bigdisk/docker/overlay2/109ef036e6f60478d1e17515dc9c6424f0f979fa6d4d353fcd4e27aa9852e5e6/merged on /bigdisk/docker/overlay2/97bbe65b7ed61b25671a69e6520051c4d01a64e5035768b787b5754b2d69a2cf/merged type overlay (rw,relatime,seclabel,lowerdir=/bigdisk/docker/overlay2/l/TFR4MO7WBKLH5P6MJFNL3OX47C:/bigdisk/docker/overlay2/l/QNL4DERUZUQ6PMHLBW5E6JKSYJ:/bigdisk/docker/overlay2/l/YF4GRKV3GEMT3LC2AC2RQRPAQP,upperdir=/bigdisk/docker/overlay2/97bbe65b7ed61b25671a69e6520051c4d01a64e5035768b787b5754b2d69a2cf/diff,workdir=/bigdisk/docker/overlay2/97bbe65b7ed61b25671a69e6520051c4d01a64e5035768b787b5754b2d69a2cf/work) +overlay 5.5T 2.0T 3.2T 38% /bigdisk/docker/overlay2/3d094130f6d9423fca205ff4a74634779080af9873c72a3e234e6e987a8d4c21/merged on /bigdisk/docker/overlay2/109ef036e6f60478d1e17515dc9c6424f0f979fa6d4d353fcd4e27aa9852e5e6/merged type overlay (rw,relatime,seclabel,lowerdir=/bigdisk/docker/overlay2/l/FTER5Z3KRDVUU5BZIQ5V2CBAEX:/bigdisk/docker/overlay2/l/WIAH4GSCWZ7ELFH2QQBLBPG2ME:/bigdisk/docker/overlay2/l/YF4GRKV3GEMT3LC2AC2RQRPAQP,upperdir=/bigdisk/docker/overlay2/109ef036e6f60478d1e17515dc9c6424f0f979fa6d4d353fcd4e27aa9852e5e6/diff,workdir=/bigdisk/docker/overlay2/109ef036e6f60478d1e17515dc9c6424f0f979fa6d4d353fcd4e27aa9852e5e6/work) +overlay 5.5T 2.0T 3.2T 38% /bigdisk/docker/overlay2/3d094130f6d9423fca205ff4a74634779080af9873c72a3e234e6e987a8d4c21/merged on /bigdisk/docker/overlay2/3d094130f6d9423fca205ff4a74634779080af9873c72a3e234e6e987a8d4c21/merged type overlay (rw,relatime,seclabel,lowerdir=/bigdisk/docker/overlay2/l/WCTE4ONPX6H43KHAQG2LQBRR65:/bigdisk/docker/overlay2/l/QNL4DERUZUQ6PMHLBW5E6JKSYJ:/bigdisk/docker/overlay2/l/YF4GRKV3GEMT3LC2AC2RQRPAQP,upperdir=/bigdisk/docker/overlay2/3d094130f6d9423fca205ff4a74634779080af9873c72a3e234e6e987a8d4c21/diff,workdir=/bigdisk/docker/overlay2/3d094130f6d9423fca205ff4a74634779080af9873c72a3e234e6e987a8d4c21/work) +overlay 5.5T 2.0T 3.2T 38% /bigdisk/docker/overlay2/3d094130f6d9423fca205ff4a74634779080af9873c72a3e234e6e987a8d4c21/merged on /bigdisk/docker/overlay2/97bbe65b7ed61b25671a69e6520051c4d01a64e5035768b787b5754b2d69a2cf/merged type overlay (rw,relatime,seclabel,lowerdir=/bigdisk/docker/overlay2/l/TFR4MO7WBKLH5P6MJFNL3OX47C:/bigdisk/docker/overlay2/l/QNL4DERUZUQ6PMHLBW5E6JKSYJ:/bigdisk/docker/overlay2/l/YF4GRKV3GEMT3LC2AC2RQRPAQP,upperdir=/bigdisk/docker/overlay2/97bbe65b7ed61b25671a69e6520051c4d01a64e5035768b787b5754b2d69a2cf/diff,workdir=/bigdisk/docker/overlay2/97bbe65b7ed61b25671a69e6520051c4d01a64e5035768b787b5754b2d69a2cf/work) +overlay 5.5T 2.0T 3.2T 38% /bigdisk/docker/overlay2/97bbe65b7ed61b25671a69e6520051c4d01a64e5035768b787b5754b2d69a2cf/merged on /bigdisk/docker/overlay2/109ef036e6f60478d1e17515dc9c6424f0f979fa6d4d353fcd4e27aa9852e5e6/merged type overlay (rw,relatime,seclabel,lowerdir=/bigdisk/docker/overlay2/l/FTER5Z3KRDVUU5BZIQ5V2CBAEX:/bigdisk/docker/overlay2/l/WIAH4GSCWZ7ELFH2QQBLBPG2ME:/bigdisk/docker/overlay2/l/YF4GRKV3GEMT3LC2AC2RQRPAQP,upperdir=/bigdisk/docker/overlay2/109ef036e6f60478d1e17515dc9c6424f0f979fa6d4d353fcd4e27aa9852e5e6/diff,workdir=/bigdisk/docker/overlay2/109ef036e6f60478d1e17515dc9c6424f0f979fa6d4d353fcd4e27aa9852e5e6/work) +overlay 5.5T 2.0T 3.2T 38% /bigdisk/docker/overlay2/97bbe65b7ed61b25671a69e6520051c4d01a64e5035768b787b5754b2d69a2cf/merged on /bigdisk/docker/overlay2/3d094130f6d9423fca205ff4a74634779080af9873c72a3e234e6e987a8d4c21/merged type overlay (rw,relatime,seclabel,lowerdir=/bigdisk/docker/overlay2/l/WCTE4ONPX6H43KHAQG2LQBRR65:/bigdisk/docker/overlay2/l/QNL4DERUZUQ6PMHLBW5E6JKSYJ:/bigdisk/docker/overlay2/l/YF4GRKV3GEMT3LC2AC2RQRPAQP,upperdir=/bigdisk/docker/overlay2/3d094130f6d9423fca205ff4a74634779080af9873c72a3e234e6e987a8d4c21/diff,workdir=/bigdisk/docker/overlay2/3d094130f6d9423fca205ff4a74634779080af9873c72a3e234e6e987a8d4c21/work) +overlay 5.5T 2.0T 3.2T 38% /bigdisk/docker/overlay2/97bbe65b7ed61b25671a69e6520051c4d01a64e5035768b787b5754b2d69a2cf/merged on /bigdisk/docker/overlay2/97bbe65b7ed61b25671a69e6520051c4d01a64e5035768b787b5754b2d69a2cf/merged type overlay (rw,relatime,seclabel,lowerdir=/bigdisk/docker/overlay2/l/TFR4MO7WBKLH5P6MJFNL3OX47C:/bigdisk/docker/overlay2/l/QNL4DERUZUQ6PMHLBW5E6JKSYJ:/bigdisk/docker/overlay2/l/YF4GRKV3GEMT3LC2AC2RQRPAQP,upperdir=/bigdisk/docker/overlay2/97bbe65b7ed61b25671a69e6520051c4d01a64e5035768b787b5754b2d69a2cf/diff,workdir=/bigdisk/docker/overlay2/97bbe65b7ed61b25671a69e6520051c4d01a64e5035768b787b5754b2d69a2cf/work) +tmpfs 1.0M 0 1.0M 0% /var/snap/lxd/common/ns on /dev/shm type tmpfs (rw,nosuid,nodev,seclabel) +tmpfs 1.0M 0 1.0M 0% /var/snap/lxd/common/ns on /run/snapd/ns type tmpfs (rw,nosuid,nodev,seclabel,mode=755) +tmpfs 1.0M 0 1.0M 0% /var/snap/lxd/common/ns on /run type tmpfs (rw,nosuid,nodev,seclabel,mode=755) +tmpfs 1.0M 0 1.0M 0% /var/snap/lxd/common/ns on /run/user/10006 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000) +tmpfs 1.0M 0 1.0M 0% /var/snap/lxd/common/ns on /run/user/10008 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000) +tmpfs 1.0M 0 1.0M 0% /var/snap/lxd/common/ns on /run/user/10014 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000) +tmpfs 1.0M 0 1.0M 0% /var/snap/lxd/common/ns on /run/user/10045 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000) +tmpfs 1.0M 0 1.0M 0% /var/snap/lxd/common/ns on /run/user/10078 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000) +tmpfs 1.0M 0 1.0M 0% /var/snap/lxd/common/ns on /run/user/10125 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000) +tmpfs 1.0M 0 1.0M 0% /var/snap/lxd/common/ns on /run/user/10201 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077) +tmpfs 1.0M 0 1.0M 0% /var/snap/lxd/common/ns on /run/user/10205 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000) +tmpfs 1.0M 0 1.0M 0% /var/snap/lxd/common/ns on /run/user/955600026 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000) +tmpfs 1.0M 0 1.0M 0% /var/snap/lxd/common/ns on /run/user/955600330 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000) +tmpfs 1.0M 0 1.0M 0% /var/snap/lxd/common/ns on /run/user/955600334 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000) +tmpfs 1.0M 0 1.0M 0% /var/snap/lxd/common/ns on /run/user/955600366 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000) +tmpfs 1.0M 0 1.0M 0% /var/snap/lxd/common/ns on /run/user/955600371 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000) +tmpfs 1.0M 0 1.0M 0% /var/snap/lxd/common/ns on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,seclabel,mode=755) +tmpfs 1.0M 0 1.0M 0% /var/snap/lxd/common/ns on /var/snap/lxd/common/ns type tmpfs (rw,relatime,seclabel,size=1024k,mode=700) +tmpfs 19G 0 19G 0% /run/user/10006 on /dev/shm type tmpfs (rw,nosuid,nodev,seclabel) +tmpfs 19G 0 19G 0% /run/user/10006 on /run/snapd/ns type tmpfs (rw,nosuid,nodev,seclabel,mode=755) +tmpfs 19G 0 19G 0% /run/user/10006 on /run type tmpfs (rw,nosuid,nodev,seclabel,mode=755) +tmpfs 19G 0 19G 0% /run/user/10006 on /run/user/10006 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10006 on /run/user/10008 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10006 on /run/user/10014 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10006 on /run/user/10045 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10006 on /run/user/10078 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10006 on /run/user/10125 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10006 on /run/user/10201 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077) +tmpfs 19G 0 19G 0% /run/user/10006 on /run/user/10205 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10006 on /run/user/955600026 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10006 on /run/user/955600330 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10006 on /run/user/955600334 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10006 on /run/user/955600366 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10006 on /run/user/955600371 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10006 on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,seclabel,mode=755) +tmpfs 19G 0 19G 0% /run/user/10006 on /var/snap/lxd/common/ns type tmpfs (rw,relatime,seclabel,size=1024k,mode=700) +tmpfs 19G 0 19G 0% /run/user/10008 on /dev/shm type tmpfs (rw,nosuid,nodev,seclabel) +tmpfs 19G 0 19G 0% /run/user/10008 on /run/snapd/ns type tmpfs (rw,nosuid,nodev,seclabel,mode=755) +tmpfs 19G 0 19G 0% /run/user/10008 on /run type tmpfs (rw,nosuid,nodev,seclabel,mode=755) +tmpfs 19G 0 19G 0% /run/user/10008 on /run/user/10006 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10008 on /run/user/10008 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10008 on /run/user/10014 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10008 on /run/user/10045 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10008 on /run/user/10078 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10008 on /run/user/10125 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10008 on /run/user/10201 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077) +tmpfs 19G 0 19G 0% /run/user/10008 on /run/user/10205 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10008 on /run/user/955600026 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10008 on /run/user/955600330 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10008 on /run/user/955600334 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10008 on /run/user/955600366 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10008 on /run/user/955600371 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10008 on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,seclabel,mode=755) +tmpfs 19G 0 19G 0% /run/user/10008 on /var/snap/lxd/common/ns type tmpfs (rw,relatime,seclabel,size=1024k,mode=700) +tmpfs 19G 0 19G 0% /run/user/10014 on /dev/shm type tmpfs (rw,nosuid,nodev,seclabel) +tmpfs 19G 0 19G 0% /run/user/10014 on /run/snapd/ns type tmpfs (rw,nosuid,nodev,seclabel,mode=755) +tmpfs 19G 0 19G 0% /run/user/10014 on /run type tmpfs (rw,nosuid,nodev,seclabel,mode=755) +tmpfs 19G 0 19G 0% /run/user/10014 on /run/user/10006 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10014 on /run/user/10008 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10014 on /run/user/10014 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10014 on /run/user/10045 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10014 on /run/user/10078 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10014 on /run/user/10125 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10014 on /run/user/10201 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077) +tmpfs 19G 0 19G 0% /run/user/10014 on /run/user/10205 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10014 on /run/user/955600026 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10014 on /run/user/955600330 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10014 on /run/user/955600334 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10014 on /run/user/955600366 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10014 on /run/user/955600371 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10014 on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,seclabel,mode=755) +tmpfs 19G 0 19G 0% /run/user/10014 on /var/snap/lxd/common/ns type tmpfs (rw,relatime,seclabel,size=1024k,mode=700) +tmpfs 19G 0 19G 0% /run/user/10045 on /dev/shm type tmpfs (rw,nosuid,nodev,seclabel) +tmpfs 19G 0 19G 0% /run/user/10045 on /run/snapd/ns type tmpfs (rw,nosuid,nodev,seclabel,mode=755) +tmpfs 19G 0 19G 0% /run/user/10045 on /run type tmpfs (rw,nosuid,nodev,seclabel,mode=755) +tmpfs 19G 0 19G 0% /run/user/10045 on /run/user/10006 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10045 on /run/user/10008 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10045 on /run/user/10014 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10045 on /run/user/10045 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10045 on /run/user/10078 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10045 on /run/user/10125 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10045 on /run/user/10201 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077) +tmpfs 19G 0 19G 0% /run/user/10045 on /run/user/10205 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10045 on /run/user/955600026 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10045 on /run/user/955600330 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10045 on /run/user/955600334 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10045 on /run/user/955600366 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10045 on /run/user/955600371 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10045 on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,seclabel,mode=755) +tmpfs 19G 0 19G 0% /run/user/10045 on /var/snap/lxd/common/ns type tmpfs (rw,relatime,seclabel,size=1024k,mode=700) +tmpfs 19G 0 19G 0% /run/user/10078 on /dev/shm type tmpfs (rw,nosuid,nodev,seclabel) +tmpfs 19G 0 19G 0% /run/user/10078 on /run/snapd/ns type tmpfs (rw,nosuid,nodev,seclabel,mode=755) +tmpfs 19G 0 19G 0% /run/user/10078 on /run type tmpfs (rw,nosuid,nodev,seclabel,mode=755) +tmpfs 19G 0 19G 0% /run/user/10078 on /run/user/10006 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10078 on /run/user/10008 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10078 on /run/user/10014 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10078 on /run/user/10045 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10078 on /run/user/10078 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10078 on /run/user/10125 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10078 on /run/user/10201 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077) +tmpfs 19G 0 19G 0% /run/user/10078 on /run/user/10205 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10078 on /run/user/955600026 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10078 on /run/user/955600330 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10078 on /run/user/955600334 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10078 on /run/user/955600366 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10078 on /run/user/955600371 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10078 on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,seclabel,mode=755) +tmpfs 19G 0 19G 0% /run/user/10078 on /var/snap/lxd/common/ns type tmpfs (rw,relatime,seclabel,size=1024k,mode=700) +tmpfs 19G 0 19G 0% /run/user/10125 on /dev/shm type tmpfs (rw,nosuid,nodev,seclabel) +tmpfs 19G 0 19G 0% /run/user/10125 on /run/snapd/ns type tmpfs (rw,nosuid,nodev,seclabel,mode=755) +tmpfs 19G 0 19G 0% /run/user/10125 on /run type tmpfs (rw,nosuid,nodev,seclabel,mode=755) +tmpfs 19G 0 19G 0% /run/user/10125 on /run/user/10006 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10125 on /run/user/10008 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10125 on /run/user/10014 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10125 on /run/user/10045 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10125 on /run/user/10078 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10125 on /run/user/10125 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10125 on /run/user/10201 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077) +tmpfs 19G 0 19G 0% /run/user/10125 on /run/user/10205 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10125 on /run/user/955600026 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10125 on /run/user/955600330 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10125 on /run/user/955600334 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10125 on /run/user/955600366 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10125 on /run/user/955600371 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10125 on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,seclabel,mode=755) +tmpfs 19G 0 19G 0% /run/user/10125 on /var/snap/lxd/common/ns type tmpfs (rw,relatime,seclabel,size=1024k,mode=700) +tmpfs 19G 0 19G 0% /run/user/10201 on /dev/shm type tmpfs (rw,nosuid,nodev,seclabel) +tmpfs 19G 0 19G 0% /run/user/10201 on /run/snapd/ns type tmpfs (rw,nosuid,nodev,seclabel,mode=755) +tmpfs 19G 0 19G 0% /run/user/10201 on /run type tmpfs (rw,nosuid,nodev,seclabel,mode=755) +tmpfs 19G 0 19G 0% /run/user/10201 on /run/user/10006 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10201 on /run/user/10008 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10201 on /run/user/10014 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10201 on /run/user/10045 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10201 on /run/user/10078 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10201 on /run/user/10125 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10201 on /run/user/10201 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077) +tmpfs 19G 0 19G 0% /run/user/10201 on /run/user/10205 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10201 on /run/user/955600026 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10201 on /run/user/955600330 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10201 on /run/user/955600334 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10201 on /run/user/955600366 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10201 on /run/user/955600371 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10201 on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,seclabel,mode=755) +tmpfs 19G 0 19G 0% /run/user/10201 on /var/snap/lxd/common/ns type tmpfs (rw,relatime,seclabel,size=1024k,mode=700) +tmpfs 19G 0 19G 0% /run/user/10205 on /dev/shm type tmpfs (rw,nosuid,nodev,seclabel) +tmpfs 19G 0 19G 0% /run/user/10205 on /run/snapd/ns type tmpfs (rw,nosuid,nodev,seclabel,mode=755) +tmpfs 19G 0 19G 0% /run/user/10205 on /run type tmpfs (rw,nosuid,nodev,seclabel,mode=755) +tmpfs 19G 0 19G 0% /run/user/10205 on /run/user/10006 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10205 on /run/user/10008 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10205 on /run/user/10014 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10205 on /run/user/10045 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10205 on /run/user/10078 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10205 on /run/user/10125 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10205 on /run/user/10201 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077) +tmpfs 19G 0 19G 0% /run/user/10205 on /run/user/10205 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10205 on /run/user/955600026 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10205 on /run/user/955600330 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10205 on /run/user/955600334 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10205 on /run/user/955600366 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10205 on /run/user/955600371 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000) +tmpfs 19G 0 19G 0% /run/user/10205 on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,seclabel,mode=755) +tmpfs 19G 0 19G 0% /run/user/10205 on /var/snap/lxd/common/ns type tmpfs (rw,relatime,seclabel,size=1024k,mode=700) +tmpfs 19G 0 19G 0% /run/user/955600026 on /dev/shm type tmpfs (rw,nosuid,nodev,seclabel) +tmpfs 19G 0 19G 0% /run/user/955600026 on /run/snapd/ns type tmpfs (rw,nosuid,nodev,seclabel,mode=755) +tmpfs 19G 0 19G 0% /run/user/955600026 on /run type tmpfs (rw,nosuid,nodev,seclabel,mode=755) +tmpfs 19G 0 19G 0% /run/user/955600026 on /run/user/10006 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600026 on /run/user/10008 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600026 on /run/user/10014 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600026 on /run/user/10045 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600026 on /run/user/10078 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600026 on /run/user/10125 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600026 on /run/user/10201 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077) +tmpfs 19G 0 19G 0% /run/user/955600026 on /run/user/10205 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600026 on /run/user/955600026 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600026 on /run/user/955600330 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600026 on /run/user/955600334 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600026 on /run/user/955600366 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600026 on /run/user/955600371 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600026 on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,seclabel,mode=755) +tmpfs 19G 0 19G 0% /run/user/955600026 on /var/snap/lxd/common/ns type tmpfs (rw,relatime,seclabel,size=1024k,mode=700) +tmpfs 19G 0 19G 0% /run/user/955600330 on /dev/shm type tmpfs (rw,nosuid,nodev,seclabel) +tmpfs 19G 0 19G 0% /run/user/955600330 on /run/snapd/ns type tmpfs (rw,nosuid,nodev,seclabel,mode=755) +tmpfs 19G 0 19G 0% /run/user/955600330 on /run type tmpfs (rw,nosuid,nodev,seclabel,mode=755) +tmpfs 19G 0 19G 0% /run/user/955600330 on /run/user/10006 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600330 on /run/user/10008 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600330 on /run/user/10014 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600330 on /run/user/10045 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600330 on /run/user/10078 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600330 on /run/user/10125 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600330 on /run/user/10201 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077) +tmpfs 19G 0 19G 0% /run/user/955600330 on /run/user/10205 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600330 on /run/user/955600026 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600330 on /run/user/955600330 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600330 on /run/user/955600334 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600330 on /run/user/955600366 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600330 on /run/user/955600371 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600330 on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,seclabel,mode=755) +tmpfs 19G 0 19G 0% /run/user/955600330 on /var/snap/lxd/common/ns type tmpfs (rw,relatime,seclabel,size=1024k,mode=700) +tmpfs 19G 0 19G 0% /run/user/955600334 on /dev/shm type tmpfs (rw,nosuid,nodev,seclabel) +tmpfs 19G 0 19G 0% /run/user/955600334 on /run/snapd/ns type tmpfs (rw,nosuid,nodev,seclabel,mode=755) +tmpfs 19G 0 19G 0% /run/user/955600334 on /run type tmpfs (rw,nosuid,nodev,seclabel,mode=755) +tmpfs 19G 0 19G 0% /run/user/955600334 on /run/user/10006 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600334 on /run/user/10008 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600334 on /run/user/10014 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600334 on /run/user/10045 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600334 on /run/user/10078 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600334 on /run/user/10125 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600334 on /run/user/10201 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077) +tmpfs 19G 0 19G 0% /run/user/955600334 on /run/user/10205 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600334 on /run/user/955600026 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600334 on /run/user/955600330 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600334 on /run/user/955600334 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600334 on /run/user/955600366 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600334 on /run/user/955600371 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600334 on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,seclabel,mode=755) +tmpfs 19G 0 19G 0% /run/user/955600334 on /var/snap/lxd/common/ns type tmpfs (rw,relatime,seclabel,size=1024k,mode=700) +tmpfs 19G 0 19G 0% /run/user/955600366 on /dev/shm type tmpfs (rw,nosuid,nodev,seclabel) +tmpfs 19G 0 19G 0% /run/user/955600366 on /run/snapd/ns type tmpfs (rw,nosuid,nodev,seclabel,mode=755) +tmpfs 19G 0 19G 0% /run/user/955600366 on /run type tmpfs (rw,nosuid,nodev,seclabel,mode=755) +tmpfs 19G 0 19G 0% /run/user/955600366 on /run/user/10006 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600366 on /run/user/10008 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600366 on /run/user/10014 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600366 on /run/user/10045 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600366 on /run/user/10078 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600366 on /run/user/10125 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600366 on /run/user/10201 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077) +tmpfs 19G 0 19G 0% /run/user/955600366 on /run/user/10205 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600366 on /run/user/955600026 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600366 on /run/user/955600330 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600366 on /run/user/955600334 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600366 on /run/user/955600366 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600366 on /run/user/955600371 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600366 on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,seclabel,mode=755) +tmpfs 19G 0 19G 0% /run/user/955600366 on /var/snap/lxd/common/ns type tmpfs (rw,relatime,seclabel,size=1024k,mode=700) +tmpfs 19G 0 19G 0% /run/user/955600371 on /dev/shm type tmpfs (rw,nosuid,nodev,seclabel) +tmpfs 19G 0 19G 0% /run/user/955600371 on /run/snapd/ns type tmpfs (rw,nosuid,nodev,seclabel,mode=755) +tmpfs 19G 0 19G 0% /run/user/955600371 on /run type tmpfs (rw,nosuid,nodev,seclabel,mode=755) +tmpfs 19G 0 19G 0% /run/user/955600371 on /run/user/10006 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600371 on /run/user/10008 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600371 on /run/user/10014 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600371 on /run/user/10045 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600371 on /run/user/10078 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600371 on /run/user/10125 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600371 on /run/user/10201 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077) +tmpfs 19G 0 19G 0% /run/user/955600371 on /run/user/10205 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600371 on /run/user/955600026 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600371 on /run/user/955600330 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600371 on /run/user/955600334 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600371 on /run/user/955600366 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600371 on /run/user/955600371 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000) +tmpfs 19G 0 19G 0% /run/user/955600371 on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,seclabel,mode=755) +tmpfs 19G 0 19G 0% /run/user/955600371 on /var/snap/lxd/common/ns type tmpfs (rw,relatime,seclabel,size=1024k,mode=700) +tmpfs 95G 0 95G 0% /dev/shm on /dev/shm type tmpfs (rw,nosuid,nodev,seclabel) +tmpfs 95G 0 95G 0% /dev/shm on /run/snapd/ns type tmpfs (rw,nosuid,nodev,seclabel,mode=755) +tmpfs 95G 0 95G 0% /dev/shm on /run type tmpfs (rw,nosuid,nodev,seclabel,mode=755) +tmpfs 95G 0 95G 0% /dev/shm on /run/user/10006 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000) +tmpfs 95G 0 95G 0% /dev/shm on /run/user/10008 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000) +tmpfs 95G 0 95G 0% /dev/shm on /run/user/10014 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000) +tmpfs 95G 0 95G 0% /dev/shm on /run/user/10045 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000) +tmpfs 95G 0 95G 0% /dev/shm on /run/user/10078 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000) +tmpfs 95G 0 95G 0% /dev/shm on /run/user/10125 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000) +tmpfs 95G 0 95G 0% /dev/shm on /run/user/10201 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077) +tmpfs 95G 0 95G 0% /dev/shm on /run/user/10205 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000) +tmpfs 95G 0 95G 0% /dev/shm on /run/user/955600026 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000) +tmpfs 95G 0 95G 0% /dev/shm on /run/user/955600330 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000) +tmpfs 95G 0 95G 0% /dev/shm on /run/user/955600334 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000) +tmpfs 95G 0 95G 0% /dev/shm on /run/user/955600366 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000) +tmpfs 95G 0 95G 0% /dev/shm on /run/user/955600371 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000) +tmpfs 95G 0 95G 0% /dev/shm on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,seclabel,mode=755) +tmpfs 95G 0 95G 0% /dev/shm on /var/snap/lxd/common/ns type tmpfs (rw,relatime,seclabel,size=1024k,mode=700) +tmpfs 95G 0 95G 0% /sys/fs/cgroup on /dev/shm type tmpfs (rw,nosuid,nodev,seclabel) +tmpfs 95G 0 95G 0% /sys/fs/cgroup on /run/snapd/ns type tmpfs (rw,nosuid,nodev,seclabel,mode=755) +tmpfs 95G 0 95G 0% /sys/fs/cgroup on /run type tmpfs (rw,nosuid,nodev,seclabel,mode=755) +tmpfs 95G 0 95G 0% /sys/fs/cgroup on /run/user/10006 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000) +tmpfs 95G 0 95G 0% /sys/fs/cgroup on /run/user/10008 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000) +tmpfs 95G 0 95G 0% /sys/fs/cgroup on /run/user/10014 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000) +tmpfs 95G 0 95G 0% /sys/fs/cgroup on /run/user/10045 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000) +tmpfs 95G 0 95G 0% /sys/fs/cgroup on /run/user/10078 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000) +tmpfs 95G 0 95G 0% /sys/fs/cgroup on /run/user/10125 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000) +tmpfs 95G 0 95G 0% /sys/fs/cgroup on /run/user/10201 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077) +tmpfs 95G 0 95G 0% /sys/fs/cgroup on /run/user/10205 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000) +tmpfs 95G 0 95G 0% /sys/fs/cgroup on /run/user/955600026 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000) +tmpfs 95G 0 95G 0% /sys/fs/cgroup on /run/user/955600330 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000) +tmpfs 95G 0 95G 0% /sys/fs/cgroup on /run/user/955600334 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000) +tmpfs 95G 0 95G 0% /sys/fs/cgroup on /run/user/955600366 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000) +tmpfs 95G 0 95G 0% /sys/fs/cgroup on /run/user/955600371 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000) +tmpfs 95G 0 95G 0% /sys/fs/cgroup on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,seclabel,mode=755) +tmpfs 95G 0 95G 0% /sys/fs/cgroup on /var/snap/lxd/common/ns type tmpfs (rw,relatime,seclabel,size=1024k,mode=700) +tmpfs 95G 4.1G 91G 5% /run on /dev/shm type tmpfs (rw,nosuid,nodev,seclabel) +tmpfs 95G 4.1G 91G 5% /run on /run/snapd/ns type tmpfs (rw,nosuid,nodev,seclabel,mode=755) +tmpfs 95G 4.1G 91G 5% /run on /run type tmpfs (rw,nosuid,nodev,seclabel,mode=755) +tmpfs 95G 4.1G 91G 5% /run on /run/user/10006 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000) +tmpfs 95G 4.1G 91G 5% /run on /run/user/10008 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000) +tmpfs 95G 4.1G 91G 5% /run on /run/user/10014 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000) +tmpfs 95G 4.1G 91G 5% /run on /run/user/10045 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000) +tmpfs 95G 4.1G 91G 5% /run on /run/user/10078 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000) +tmpfs 95G 4.1G 91G 5% /run on /run/user/10125 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000) +tmpfs 95G 4.1G 91G 5% /run on /run/user/10201 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077) +tmpfs 95G 4.1G 91G 5% /run on /run/user/10205 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000) +tmpfs 95G 4.1G 91G 5% /run on /run/user/955600026 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000) +tmpfs 95G 4.1G 91G 5% /run on /run/user/955600330 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000) +tmpfs 95G 4.1G 91G 5% /run on /run/user/955600334 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000) +tmpfs 95G 4.1G 91G 5% /run on /run/user/955600366 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000) +tmpfs 95G 4.1G 91G 5% /run on /run/user/955600371 type tmpfs (rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000) +tmpfs 95G 4.1G 91G 5% /run on /sys/fs/cgroup type tmpfs (ro,nosuid,nodev,noexec,seclabel,mode=755) +tmpfs 95G 4.1G 91G 5% /run on /var/snap/lxd/common/ns type tmpfs (rw,relatime,seclabel,size=1024k,mode=700) diff --git a/t/pt-summary/samples/Linux/007/netstat b/t/pt-summary/samples/Linux/007/netstat new file mode 100644 index 00000000..301fcf9c --- /dev/null +++ b/t/pt-summary/samples/Linux/007/netstat @@ -0,0 +1,1003 @@ +Active Internet connections (servers and established) +Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name +tcp 0 0 127.0.0.1:5551 0.0.0.0:* LISTEN 37437/mysqld +tcp 0 0 0.0.0.0:111 0.0.0.0:* LISTEN 3368/rpcbind +tcp 0 0 127.0.0.1:10608 0.0.0.0:* LISTEN 29707/mariadbd +tcp 0 0 172.17.0.1:42000 0.0.0.0:* LISTEN 37854/node_exporter +tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 6515/docker-proxy +tcp 0 0 127.0.0.1:42001 0.0.0.0:* LISTEN 38838/vmagent +tcp 0 0 127.0.0.1:39377 0.0.0.0:* LISTEN 4049/pmm-agent +tcp 0 0 127.0.0.1:5556 0.0.0.0:* LISTEN 18034/mysqld +tcp 0 0 127.0.0.1:6677 0.0.0.0:* LISTEN 10216/mongod +tcp 0 0 172.16.0.1:53 0.0.0.0:* LISTEN 43617/dnsmasq +tcp 0 0 192.168.122.1:53 0.0.0.0:* LISTEN 4707/dnsmasq +tcp 0 0 127.0.0.1:6678 0.0.0.0:* LISTEN 13004/mongod +tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 4081/sshd +tcp 0 0 127.0.0.1:6679 0.0.0.0:* LISTEN 15595/mongod +tcp 0 0 127.0.0.1:631 0.0.0.0:* LISTEN 4041/cupsd +tcp 0 0 127.0.0.1:23128 0.0.0.0:* LISTEN 24059/mysqld +tcp 0 0 127.0.0.1:31000 0.0.0.0:* LISTEN 1453/psmdb/percona- +tcp 0 0 127.0.0.1:37017 0.0.0.0:* LISTEN 26684/mongos +tcp 0 0 127.0.0.1:31001 0.0.0.0:* LISTEN 46462/psmdb/percona +tcp 0 0 127.0.0.1:37018 0.0.0.0:* LISTEN 17411/mongod +tcp 0 0 127.0.0.1:23002 0.0.0.0:* LISTEN 24059/mysqld +tcp 0 0 127.0.0.1:23130 0.0.0.0:* LISTEN 23878/mysqld +tcp 0 0 127.0.0.1:31002 0.0.0.0:* LISTEN 47245/psmdb/percona +tcp 0 0 127.0.0.1:37019 0.0.0.0:* LISTEN 23412/mongod +tcp 0 0 127.0.0.1:23003 0.0.0.0:* LISTEN 23878/mysqld +tcp 0 0 127.0.0.1:8443 0.0.0.0:* LISTEN 39642/lxd +tcp 0 0 0.0.0.0:8123 0.0.0.0:* LISTEN 34928/docker-proxy +tcp 0 0 127.0.0.1:31003 0.0.0.0:* LISTEN 47682/psmdb/percona +tcp 0 0 0.0.0.0:443 0.0.0.0:* LISTEN 6335/docker-proxy +tcp 0 0 127.0.0.1:8028 0.0.0.0:* LISTEN 16683/mysqld +tcp 0 0 127.0.0.1:37020 0.0.0.0:* LISTEN 34024/mongod +tcp 0 0 127.0.0.1:23004 0.0.0.0:* LISTEN 40649/mysqld +tcp 0 0 127.0.0.1:23132 0.0.0.0:* LISTEN 40649/mysqld +tcp 0 0 127.0.0.1:31004 0.0.0.0:* LISTEN 48915/psmdb/percona +tcp 0 0 127.0.0.1:34045 0.0.0.0:* LISTEN 30552/mysqld +tcp 0 0 127.0.0.1:37021 0.0.0.0:* LISTEN 40431/mongod +tcp 0 0 127.0.0.1:25149 0.0.0.0:* LISTEN 4242/mysqld +tcp 0 0 127.0.0.1:8029 0.0.0.0:* LISTEN 30603/mysqld +tcp 0 0 127.0.0.1:31005 0.0.0.0:* LISTEN 308/psmdb/percona-s +tcp 0 0 127.0.0.1:37022 0.0.0.0:* LISTEN 4445/mongod +tcp 0 0 127.0.0.1:31006 0.0.0.0:* LISTEN 957/psmdb/percona-s +tcp 0 0 127.0.0.1:37023 0.0.0.0:* LISTEN 16014/mongod +tcp 0 0 127.0.0.1:25151 0.0.0.0:* LISTEN 25072/mysqld +tcp 0 0 127.0.0.1:25023 0.0.0.0:* LISTEN 4242/mysqld +tcp 0 0 127.0.0.1:47007 0.0.0.0:* LISTEN 28054/mysqld +tcp 0 0 127.0.0.1:31007 0.0.0.0:* LISTEN 45946/psmdb/percona +tcp 0 0 127.0.0.1:37024 0.0.0.0:* LISTEN 15726/mongod +tcp 0 0 127.0.0.1:25024 0.0.0.0:* LISTEN 25072/mysqld +tcp 0 0 127.0.0.1:37025 0.0.0.0:* LISTEN 1199/mongod +tcp 0 0 127.0.0.1:25025 0.0.0.0:* LISTEN 43355/mysqld +tcp 0 0 127.0.0.1:25153 0.0.0.0:* LISTEN 43355/mysqld +tcp 0 0 127.0.0.1:18145 0.0.0.0:* LISTEN 32035/mysqld +tcp 0 0 127.0.0.1:7777 0.0.0.0:* LISTEN 4049/pmm-agent +tcp 0 0 127.0.0.1:37026 0.0.0.0:* LISTEN 6837/mongod +tcp 0 0 127.0.0.1:18146 0.0.0.0:* LISTEN 32760/mysqld +tcp 0 0 0.0.0.0:10050 0.0.0.0:* LISTEN 4086/zabbix_agentd +tcp 0 0 127.0.0.1:37027 0.0.0.0:* LISTEN 4362/mongod +tcp 0 0 127.0.0.1:18147 0.0.0.0:* LISTEN 33495/mysqld +tcp 0 0 127.0.0.1:37028 0.0.0.0:* LISTEN 8319/mongod +tcp 0 0 127.0.0.1:37029 0.0.0.0:* LISTEN 12003/mongod +tcp 0 0 127.0.0.1:2022 0.0.0.0:* LISTEN 26510/mongod +tcp 0 0 127.0.0.1:2023 0.0.0.0:* LISTEN 30550/mongod +tcp 0 0 127.0.0.1:2024 0.0.0.0:* LISTEN 33264/mongod +tcp 0 0 127.0.0.1:27017 0.0.0.0:* LISTEN 29756/mongod +tcp 0 0 127.0.0.1:5066 0.0.0.0:* LISTEN 2305/filebeat +tcp 0 0 0.0.0.0:49163 0.0.0.0:* LISTEN 42281/docker-proxy +tcp 0 0 127.0.0.1:42124 0.0.0.0:* LISTEN 3928/mysqld +tcp 0 0 127.0.0.1:42125 0.0.0.0:* LISTEN 40417/mysqld +tcp 0 0 127.0.0.1:42126 0.0.0.0:* LISTEN 34621/mysqld +tcp 0 0 127.0.0.1:2222 0.0.0.0:* LISTEN 12430/VBoxHeadless +tcp 0 0 127.0.0.1:37025 127.0.0.1:57544 ESTABLISHED 1199/mongod +tcp 0 0 127.0.0.1:33418 127.0.0.1:37019 ESTABLISHED 17411/mongod +tcp 0 0 127.0.0.1:33960 127.0.0.1:37019 ESTABLISHED 4362/mongod +tcp 0 0 127.0.0.1:37025 127.0.0.1:53554 ESTABLISHED 1199/mongod +tcp 0 0 127.0.0.1:37024 127.0.0.1:33778 ESTABLISHED 15726/mongod +tcp 0 0 10.10.8.141:10050 10.10.4.99:49858 TIME_WAIT - +tcp 0 0 127.0.0.1:37022 127.0.0.1:38534 ESTABLISHED 4445/mongod +tcp 0 0 127.0.0.1:47004 127.0.0.1:37026 ESTABLISHED 15726/mongod +tcp 0 0 127.0.0.1:47296 127.0.0.1:37029 ESTABLISHED 17411/mongod +tcp 0 0 127.0.0.1:45244 127.0.0.1:31007 ESTABLISHED 308/psmdb/percona-s +tcp 0 0 127.0.0.1:37021 127.0.0.1:36292 ESTABLISHED 40431/mongod +tcp 0 0 127.0.0.1:33402 127.0.0.1:37019 ESTABLISHED 1199/mongod +tcp 0 0 127.0.0.1:37024 127.0.0.1:44512 ESTABLISHED 15726/mongod +tcp 0 0 10.10.8.141:10050 10.10.4.99:58716 TIME_WAIT - +tcp 0 0 127.0.0.1:37028 127.0.0.1:52788 ESTABLISHED 8319/mongod +tcp 0 0 127.0.0.1:50730 127.0.0.1:31006 ESTABLISHED 47682/psmdb/percona +tcp 0 0 127.0.0.1:31005 127.0.0.1:39510 ESTABLISHED 308/psmdb/percona-s +tcp 0 0 127.0.0.1:48634 127.0.0.1:37029 ESTABLISHED 40431/mongod +tcp 0 0 127.0.0.1:6677 127.0.0.1:56354 ESTABLISHED 10216/mongod +tcp 0 0 127.0.0.1:2023 127.0.0.1:38724 ESTABLISHED 30550/mongod +tcp 0 0 127.0.0.1:37028 127.0.0.1:57878 ESTABLISHED 8319/mongod +tcp 0 0 127.0.0.1:40024 127.0.0.1:37018 ESTABLISHED 4362/mongod +tcp 0 0 127.0.0.1:37025 127.0.0.1:56528 ESTABLISHED 1199/mongod +tcp 0 0 127.0.0.1:48836 127.0.0.1:31004 ESTABLISHED 1453/psmdb/percona- +tcp 0 0 127.0.0.1:37018 127.0.0.1:57358 ESTABLISHED 17411/mongod +tcp 0 0 127.0.0.1:58149 127.0.0.1:23128 ESTABLISHED 23878/mysqld +tcp 0 0 127.0.0.1:44992 127.0.0.1:31007 ESTABLISHED 48915/psmdb/percona +tcp 0 0 10.10.8.141:10050 10.10.4.99:52460 TIME_WAIT - +tcp 0 0 127.0.0.1:31006 127.0.0.1:49704 ESTABLISHED 957/psmdb/percona-s +tcp 0 0 127.0.0.1:31001 127.0.0.1:44164 ESTABLISHED 46462/psmdb/percona +tcp 0 0 127.0.0.1:37025 127.0.0.1:46246 ESTABLISHED 1199/mongod +tcp 0 0 127.0.0.1:48296 127.0.0.1:31006 ESTABLISHED 308/psmdb/percona-s +tcp 0 0 127.0.0.1:55686 127.0.0.1:37018 ESTABLISHED 40431/mongod +tcp 0 0 127.0.0.1:54446 127.0.0.1:37018 ESTABLISHED 8319/mongod +tcp 0 0 127.0.0.1:37026 127.0.0.1:48590 ESTABLISHED 6837/mongod +tcp 0 0 127.0.0.1:38478 127.0.0.1:2024 ESTABLISHED 33264/mongod +tcp 0 0 127.0.0.1:57920 127.0.0.1:2023 ESTABLISHED 33264/mongod +tcp 0 0 127.0.0.1:36376 127.0.0.1:37021 ESTABLISHED 23412/mongod +tcp 0 0 127.0.0.1:31001 127.0.0.1:42272 ESTABLISHED 46462/psmdb/percona +tcp 0 0 127.0.0.1:43304 127.0.0.1:31001 ESTABLISHED 45946/psmdb/percona +tcp 0 0 127.0.0.1:6677 127.0.0.1:47276 ESTABLISHED 10216/mongod +tcp 0 0 10.10.8.141:60752 10.10.1.31:389 ESTABLISHED 3511/sssd_be +tcp 0 0 10.10.8.141:10050 10.10.4.99:48288 TIME_WAIT - +tcp 0 0 127.0.0.1:37022 127.0.0.1:43792 ESTABLISHED 4445/mongod +tcp 0 0 127.0.0.1:37022 127.0.0.1:43470 ESTABLISHED 4445/mongod +tcp 0 0 127.0.0.1:53906 127.0.0.1:39377 ESTABLISHED 4049/pmm-agent +tcp 0 0 127.0.0.1:49254 127.0.0.1:37029 ESTABLISHED 4445/mongod +tcp 0 0 127.0.0.1:57910 127.0.0.1:2023 ESTABLISHED 30550/mongod +tcp 0 0 127.0.0.1:46114 127.0.0.1:37025 ESTABLISHED 4362/mongod +tcp 0 0 127.0.0.1:37026 127.0.0.1:46992 ESTABLISHED 6837/mongod +tcp 0 0 127.0.0.1:59086 127.0.0.1:2022 ESTABLISHED 33264/mongod +tcp 0 0 127.0.0.1:37026 127.0.0.1:48322 ESTABLISHED 6837/mongod +tcp 0 0 127.0.0.1:51226 127.0.0.1:37023 ESTABLISHED 4445/mongod +tcp 0 0 172.17.0.1:51284 172.17.0.3:80 TIME_WAIT - +tcp 0 0 127.0.0.1:37019 127.0.0.1:58326 ESTABLISHED 23412/mongod +tcp 0 0 127.0.0.1:55338 127.0.0.1:37018 ESTABLISHED 34024/mongod +tcp 0 0 127.0.0.1:37026 127.0.0.1:48464 ESTABLISHED 6837/mongod +tcp 0 0 127.0.0.1:43920 127.0.0.1:31007 ESTABLISHED 45946/psmdb/percona +tcp 0 0 127.0.0.1:37018 127.0.0.1:54424 ESTABLISHED 17411/mongod +tcp 0 0 127.0.0.1:37024 127.0.0.1:44946 ESTABLISHED 15726/mongod +tcp 0 0 10.10.8.141:22 189.4.76.225:39144 ESTABLISHED 20115/sshd: roberto +tcp 0 0 127.0.0.1:38534 127.0.0.1:37022 ESTABLISHED 12003/mongod +tcp 0 0 127.0.0.1:37027 127.0.0.1:59846 ESTABLISHED 4362/mongod +tcp 0 0 127.0.0.1:31005 127.0.0.1:35748 ESTABLISHED 308/psmdb/percona-s +tcp 0 0 127.0.0.1:42708 127.0.0.1:31001 ESTABLISHED 47682/psmdb/percona +tcp 0 0 127.0.0.1:32868 127.0.0.1:6679 ESTABLISHED 13004/mongod +tcp 0 0 127.0.0.1:59068 127.0.0.1:2022 ESTABLISHED 30550/mongod +tcp 0 0 127.0.0.1:37018 127.0.0.1:54512 ESTABLISHED 17411/mongod +tcp 0 0 127.0.0.1:37029 127.0.0.1:36002 ESTABLISHED 12003/mongod +tcp 0 0 10.10.8.141:10050 10.10.4.99:50290 TIME_WAIT - +tcp 0 0 127.0.0.1:37029 127.0.0.1:47296 ESTABLISHED 12003/mongod +tcp 0 0 127.0.0.1:55958 127.0.0.1:37018 ESTABLISHED 12003/mongod +tcp 0 0 127.0.0.1:37026 127.0.0.1:39104 ESTABLISHED 6837/mongod +tcp 0 0 127.0.0.1:32878 127.0.0.1:6679 ESTABLISHED 13004/mongod +tcp 0 0 127.0.0.1:31001 127.0.0.1:42708 ESTABLISHED 46462/psmdb/percona +tcp 0 0 127.0.0.1:37024 127.0.0.1:33710 ESTABLISHED 15726/mongod +tcp 0 0 127.0.0.1:6677 127.0.0.1:47166 ESTABLISHED 10216/mongod +tcp 0 0 127.0.0.1:37029 127.0.0.1:47614 ESTABLISHED 12003/mongod +tcp 0 0 127.0.0.1:37027 127.0.0.1:54336 ESTABLISHED 4362/mongod +tcp 0 0 127.0.0.1:56178 127.0.0.1:37018 ESTABLISHED 34024/mongod +tcp 0 0 127.0.0.1:54668 127.0.0.1:37028 ESTABLISHED 40431/mongod +tcp 0 0 127.0.0.1:37025 127.0.0.1:58814 ESTABLISHED 1199/mongod +tcp 0 0 127.0.0.1:2022 127.0.0.1:59078 ESTABLISHED 26510/mongod +tcp 0 0 127.0.0.1:37029 127.0.0.1:46376 ESTABLISHED 12003/mongod +tcp 0 0 127.0.0.1:43272 127.0.0.1:37028 ESTABLISHED 4445/mongod +tcp 0 0 127.0.0.1:38462 127.0.0.1:2024 ESTABLISHED 30550/mongod +tcp 0 0 127.0.0.1:6678 127.0.0.1:59360 ESTABLISHED 13004/mongod +tcp 0 0 127.0.0.1:37202 127.0.0.1:37021 ESTABLISHED 16014/mongod +tcp 0 0 127.0.0.1:54416 127.0.0.1:37028 ESTABLISHED 34024/mongod +tcp 0 0 127.0.0.1:48862 127.0.0.1:37026 ESTABLISHED 12003/mongod +tcp 0 0 127.0.0.1:37025 127.0.0.1:55524 ESTABLISHED 1199/mongod +tcp 0 0 127.0.0.1:37018 127.0.0.1:56340 ESTABLISHED 17411/mongod +tcp 0 0 127.0.0.1:25149 127.0.0.1:47527 ESTABLISHED 4242/mysqld +tcp 0 0 127.0.0.1:41664 127.0.0.1:37024 ESTABLISHED 6837/mongod +tcp 0 0 127.0.0.1:38032 127.0.0.1:31007 ESTABLISHED 48915/psmdb/percona +tcp 0 0 127.0.0.1:39377 127.0.0.1:53906 ESTABLISHED 4049/pmm-agent +tcp 0 0 127.0.0.1:2024 127.0.0.1:38452 ESTABLISHED 33264/mongod +tcp 0 0 127.0.0.1:59066 127.0.0.1:2022 ESTABLISHED 30550/mongod +tcp 0 0 127.0.0.1:54402 127.0.0.1:37025 ESTABLISHED 6837/mongod +tcp 0 0 127.0.0.1:52738 127.0.0.1:37020 ESTABLISHED 40431/mongod +tcp 0 0 127.0.0.1:45834 127.0.0.1:31001 ESTABLISHED 47245/psmdb/percona +tcp 0 0 127.0.0.1:53650 127.0.0.1:37028 ESTABLISHED 23412/mongod +tcp 0 0 127.0.0.1:44842 127.0.0.1:37022 ESTABLISHED 8319/mongod +tcp 0 0 127.0.0.1:52754 127.0.0.1:37028 ESTABLISHED 6837/mongod +tcp 0 0 127.0.0.1:52596 127.0.0.1:37020 ESTABLISHED 6837/mongod +tcp 0 0 127.0.0.1:48754 127.0.0.1:31004 ESTABLISHED 957/psmdb/percona-s +tcp 0 0 127.0.0.1:34360 127.0.0.1:37019 ESTABLISHED 12003/mongod +tcp 0 0 127.0.0.1:35756 127.0.0.1:37019 ESTABLISHED 26684/mongos +tcp 0 0 127.0.0.1:31001 127.0.0.1:44988 ESTABLISHED 46462/psmdb/percona +tcp 0 0 10.10.8.141:22 185.117.120.39:58657 ESTABLISHED 2564/sshd: sveta.sm +tcp 0 0 127.0.0.1:33388 127.0.0.1:31002 ESTABLISHED 1453/psmdb/percona- +tcp 0 0 127.0.0.1:59824 127.0.0.1:37027 ESTABLISHED 12003/mongod +tcp 0 0 127.0.0.1:46376 127.0.0.1:31006 ESTABLISHED 48915/psmdb/percona +tcp 0 0 127.0.0.1:37022 127.0.0.1:43690 ESTABLISHED 4445/mongod +tcp 0 0 127.0.0.1:6678 127.0.0.1:59262 ESTABLISHED 13004/mongod +tcp 0 0 10.10.8.141:10050 10.10.4.99:48746 TIME_WAIT - +tcp 0 0 127.0.0.1:44512 127.0.0.1:37024 ESTABLISHED 16014/mongod +tcp 0 0 127.0.0.1:37022 127.0.0.1:43714 ESTABLISHED 4445/mongod +tcp 0 0 127.0.0.1:53016 127.0.0.1:37020 ESTABLISHED 12003/mongod +tcp 0 0 127.0.0.1:56144 127.0.0.1:37018 ESTABLISHED 34024/mongod +tcp 0 0 127.0.0.1:55256 127.0.0.1:37028 ESTABLISHED 4445/mongod +tcp 0 0 127.0.0.1:52158 127.0.0.1:31004 ESTABLISHED 46462/psmdb/percona +tcp 0 0 127.0.0.1:39028 127.0.0.1:37026 ESTABLISHED 8319/mongod +tcp 0 0 127.0.0.1:51202 127.0.0.1:37023 ESTABLISHED 40431/mongod +tcp 0 0 127.0.0.1:37024 127.0.0.1:42264 ESTABLISHED 15726/mongod +tcp 0 0 127.0.0.1:50494 127.0.0.1:31004 ESTABLISHED 45946/psmdb/percona +tcp 0 0 127.0.0.1:37018 127.0.0.1:55686 ESTABLISHED 17411/mongod +tcp 0 0 127.0.0.1:6679 127.0.0.1:32878 ESTABLISHED 15595/mongod +tcp 0 0 127.0.0.1:31007 127.0.0.1:46050 ESTABLISHED 45946/psmdb/percona +tcp 0 0 127.0.0.1:31004 127.0.0.1:53210 ESTABLISHED 48915/psmdb/percona +tcp 0 0 127.0.0.1:51562 127.0.0.1:31003 ESTABLISHED 47682/psmdb/percona +tcp 0 0 127.0.0.1:37025 127.0.0.1:53600 ESTABLISHED 1199/mongod +tcp 0 0 127.0.0.1:50548 127.0.0.1:31004 ESTABLISHED 957/psmdb/percona-s +tcp 0 0 10.10.8.141:10050 10.10.4.99:51644 TIME_WAIT - +tcp 0 0 127.0.0.1:50264 127.0.0.1:37026 ESTABLISHED 26684/mongos +tcp 0 0 127.0.0.1:2023 127.0.0.1:38530 ESTABLISHED 30550/mongod +tcp 0 0 127.0.0.1:37025 127.0.0.1:54270 ESTABLISHED 1199/mongod +tcp 0 0 127.0.0.1:31005 127.0.0.1:34610 ESTABLISHED 308/psmdb/percona-s +tcp 0 0 127.0.0.1:50342 127.0.0.1:37029 ESTABLISHED 26684/mongos +tcp 0 0 127.0.0.1:51230 127.0.0.1:37023 ESTABLISHED 15726/mongod +tcp 0 0 127.0.0.1:37019 127.0.0.1:33440 ESTABLISHED 23412/mongod +tcp 0 0 10.10.8.141:10050 10.10.4.99:51638 TIME_WAIT - +tcp 0 0 10.10.8.141:10050 10.10.4.99:50178 TIME_WAIT - +tcp 0 0 127.0.0.1:57116 127.0.0.1:37025 ESTABLISHED 16014/mongod +tcp 0 0 127.0.0.1:46728 127.0.0.1:37029 ESTABLISHED 6837/mongod +tcp 0 0 127.0.0.1:31005 127.0.0.1:38434 ESTABLISHED 308/psmdb/percona-s +tcp 0 0 127.0.0.1:33440 127.0.0.1:37019 ESTABLISHED 8319/mongod +tcp 0 0 127.0.0.1:46366 127.0.0.1:37025 ESTABLISHED 12003/mongod +tcp 0 0 10.10.8.141:10050 10.10.4.99:48848 TIME_WAIT - +tcp 0 0 10.10.8.141:10050 10.10.4.99:50724 TIME_WAIT - +tcp 0 0 127.0.0.1:31001 127.0.0.1:42994 ESTABLISHED 46462/psmdb/percona +tcp 0 0 127.0.0.1:37021 127.0.0.1:36376 ESTABLISHED 40431/mongod +tcp 0 0 10.10.8.141:10050 10.10.4.99:58758 TIME_WAIT - +tcp 0 0 127.0.0.1:39510 127.0.0.1:31005 ESTABLISHED 47682/psmdb/percona +tcp 0 0 127.0.0.1:37019 127.0.0.1:33374 ESTABLISHED 23412/mongod +tcp 0 0 127.0.0.1:37027 127.0.0.1:34870 ESTABLISHED 4362/mongod +tcp 0 0 127.0.0.1:37027 127.0.0.1:59674 ESTABLISHED 4362/mongod +tcp 0 0 10.10.8.141:10050 10.10.4.99:58772 TIME_WAIT - +tcp 0 0 127.0.0.1:53134 127.0.0.1:37020 ESTABLISHED 17411/mongod +tcp 0 0 127.0.0.1:37028 127.0.0.1:53650 ESTABLISHED 8319/mongod +tcp 0 0 127.0.0.1:46284 127.0.0.1:31006 ESTABLISHED 957/psmdb/percona-s +tcp 0 0 127.0.0.1:41834 127.0.0.1:31001 ESTABLISHED 47245/psmdb/percona +tcp 0 0 127.0.0.1:37020 127.0.0.1:53982 ESTABLISHED 34024/mongod +tcp 0 0 127.0.0.1:37020 127.0.0.1:46204 ESTABLISHED 34024/mongod +tcp 0 0 127.0.0.1:31005 127.0.0.1:35076 ESTABLISHED 308/psmdb/percona-s +tcp 0 0 127.0.0.1:51196 127.0.0.1:37023 ESTABLISHED 23412/mongod +tcp 0 0 127.0.0.1:37028 127.0.0.1:53422 ESTABLISHED 8319/mongod +tcp 0 0 127.0.0.1:48464 127.0.0.1:37026 ESTABLISHED 4362/mongod +tcp 0 0 10.10.8.141:10050 10.10.4.99:4286 ESTABLISHED 4321/zabbix_agentd: +tcp 0 0 127.0.0.1:35330 127.0.0.1:37019 ESTABLISHED 16014/mongod +tcp 0 0 127.0.0.1:37021 127.0.0.1:60114 ESTABLISHED 40431/mongod +tcp 0 0 127.0.0.1:31004 127.0.0.1:52158 ESTABLISHED 48915/psmdb/percona +tcp 0 0 127.0.0.1:37028 127.0.0.1:55256 ESTABLISHED 8319/mongod +tcp 0 0 127.0.0.1:36642 127.0.0.1:37027 ESTABLISHED 26684/mongos +tcp 0 0 127.0.0.1:35748 127.0.0.1:31005 ESTABLISHED 45946/psmdb/percona +tcp 0 0 127.0.0.1:37020 127.0.0.1:52486 ESTABLISHED 34024/mongod +tcp 0 0 127.0.0.1:39945 127.0.0.1:25149 ESTABLISHED 25072/mysqld +tcp 0 0 127.0.0.1:43792 127.0.0.1:37022 ESTABLISHED 16014/mongod +tcp 0 0 127.0.0.1:56146 127.0.0.1:37018 ESTABLISHED 23412/mongod +tcp 0 0 127.0.0.1:51674 127.0.0.1:37018 ESTABLISHED 12003/mongod +tcp 0 0 127.0.0.1:23128 127.0.0.1:49861 ESTABLISHED 24059/mysqld +tcp 0 0 127.0.0.1:37023 127.0.0.1:51212 ESTABLISHED 16014/mongod +tcp 0 0 127.0.0.1:53030 127.0.0.1:31003 ESTABLISHED 1453/psmdb/percona- +tcp 0 0 127.0.0.1:37019 127.0.0.1:34742 ESTABLISHED 23412/mongod +tcp 0 0 127.0.0.1:37029 127.0.0.1:45384 ESTABLISHED 12003/mongod +tcp 0 0 127.0.0.1:53554 127.0.0.1:37025 ESTABLISHED 1199/mongod +tcp 0 0 127.0.0.1:57544 127.0.0.1:37025 ESTABLISHED 26684/mongos +tcp 0 0 127.0.0.1:31007 127.0.0.1:43814 ESTABLISHED 45946/psmdb/percona +tcp 0 0 127.0.0.1:47982 127.0.0.1:31004 ESTABLISHED 45946/psmdb/percona +tcp 0 0 127.0.0.1:47164 127.0.0.1:6677 ESTABLISHED 13004/mongod +tcp 0 0 10.10.8.141:10050 10.10.4.99:50764 TIME_WAIT - +tcp 0 0 127.0.0.1:42272 127.0.0.1:31001 ESTABLISHED 47682/psmdb/percona +tcp 0 0 127.0.0.1:34742 127.0.0.1:37019 ESTABLISHED 4445/mongod +tcp 0 0 127.0.0.1:47527 127.0.0.1:25149 ESTABLISHED 43355/mysqld +tcp 0 0 127.0.0.1:51152 127.0.0.1:37023 ESTABLISHED 16014/mongod +tcp 0 0 127.0.0.1:31004 127.0.0.1:48316 ESTABLISHED 48915/psmdb/percona +tcp 0 0 127.0.0.1:49228 127.0.0.1:37029 ESTABLISHED 4445/mongod +tcp 0 0 127.0.0.1:38430 127.0.0.1:37022 ESTABLISHED 8319/mongod +tcp 0 0 127.0.0.1:37018 127.0.0.1:49090 ESTABLISHED 17411/mongod +tcp 0 0 127.0.0.1:37025 127.0.0.1:54564 ESTABLISHED 1199/mongod +tcp 0 0 127.0.0.1:37634 127.0.0.1:37021 ESTABLISHED 26684/mongos +tcp 0 0 127.0.0.1:34870 127.0.0.1:37027 ESTABLISHED 40431/mongod +tcp 0 0 127.0.0.1:37028 127.0.0.1:52410 ESTABLISHED 8319/mongod +tcp 0 0 127.0.0.1:31004 127.0.0.1:47654 ESTABLISHED 48915/psmdb/percona +tcp 0 0 127.0.0.1:53642 127.0.0.1:37028 ESTABLISHED 23412/mongod +tcp 0 0 127.0.0.1:60482 127.0.0.1:31002 ESTABLISHED 48915/psmdb/percona +tcp 0 0 127.0.0.1:42312 127.0.0.1:42312 TIME_WAIT - +tcp 0 0 127.0.0.1:60844 127.0.0.1:37027 ESTABLISHED 1199/mongod +tcp 0 0 172.17.0.1:52122 172.17.0.3:80 TIME_WAIT - +tcp 0 0 127.0.0.1:55524 127.0.0.1:37025 ESTABLISHED 34024/mongod +tcp 0 0 127.0.0.1:32960 127.0.0.1:37027 ESTABLISHED 6837/mongod +tcp 0 0 127.0.0.1:33384 127.0.0.1:37019 ESTABLISHED 6837/mongod +tcp 0 0 127.0.0.1:37018 127.0.0.1:56146 ESTABLISHED 17411/mongod +tcp 0 0 127.0.0.1:31002 127.0.0.1:59286 ESTABLISHED 47245/psmdb/percona +tcp 0 0 127.0.0.1:46376 127.0.0.1:37029 ESTABLISHED 1199/mongod +tcp 0 0 127.0.0.1:37027 127.0.0.1:47306 ESTABLISHED 4362/mongod +tcp 0 0 10.10.8.141:10050 10.10.4.99:51648 TIME_WAIT - +tcp 0 0 10.10.8.141:10050 10.10.4.99:52462 TIME_WAIT - +tcp 0 0 127.0.0.1:37029 127.0.0.1:49952 ESTABLISHED 12003/mongod +tcp 0 0 127.0.0.1:48322 127.0.0.1:37026 ESTABLISHED 15726/mongod +tcp 0 0 127.0.0.1:31004 127.0.0.1:48776 ESTABLISHED 48915/psmdb/percona +tcp 0 0 172.17.0.1:54354 172.17.0.3:80 TIME_WAIT - +tcp 0 0 127.0.0.1:36572 127.0.0.1:37027 ESTABLISHED 26684/mongos +tcp 0 0 127.0.0.1:33296 127.0.0.1:31002 ESTABLISHED 957/psmdb/percona-s +tcp 0 0 127.0.0.1:59084 127.0.0.1:2022 ESTABLISHED 33264/mongod +tcp 0 0 127.0.0.1:37028 127.0.0.1:52082 ESTABLISHED 8319/mongod +tcp 0 0 127.0.0.1:44154 127.0.0.1:37022 ESTABLISHED 16014/mongod +tcp 0 0 127.0.0.1:37025 127.0.0.1:46366 ESTABLISHED 1199/mongod +tcp 0 0 127.0.0.1:37023 127.0.0.1:51224 ESTABLISHED 16014/mongod +tcp 0 0 127.0.0.1:48316 127.0.0.1:31004 ESTABLISHED 308/psmdb/percona-s +tcp 0 0 127.0.0.1:37029 127.0.0.1:48346 ESTABLISHED 12003/mongod +tcp 0 0 127.0.0.1:49952 127.0.0.1:37029 ESTABLISHED 16014/mongod +tcp 0 0 10.10.8.141:10050 10.10.4.99:50768 TIME_WAIT - +tcp 0 0 127.0.0.1:37019 127.0.0.1:33960 ESTABLISHED 23412/mongod +tcp 0 0 127.0.0.1:31007 127.0.0.1:46482 ESTABLISHED 45946/psmdb/percona +tcp 0 0 127.0.0.1:54398 127.0.0.1:37025 ESTABLISHED 6837/mongod +tcp 0 0 127.0.0.1:31003 127.0.0.1:51712 ESTABLISHED 47682/psmdb/percona +tcp 0 0 127.0.0.1:46968 127.0.0.1:31006 ESTABLISHED 45946/psmdb/percona +tcp 0 0 127.0.0.1:50552 127.0.0.1:37029 ESTABLISHED 26684/mongos +tcp 0 0 127.0.0.1:56212 127.0.0.1:6677 ESTABLISHED 15595/mongod +tcp 0 0 127.0.0.1:46968 127.0.0.1:37026 ESTABLISHED 1199/mongod +tcp 0 0 127.0.0.1:37028 127.0.0.1:54686 ESTABLISHED 8319/mongod +tcp 0 0 127.0.0.1:38308 127.0.0.1:37021 ESTABLISHED 4362/mongod +tcp 0 0 127.0.0.1:31001 127.0.0.1:43250 ESTABLISHED 46462/psmdb/percona +tcp 0 0 127.0.0.1:36690 127.0.0.1:37029 ESTABLISHED 1199/mongod +tcp 0 0 127.0.0.1:43140 127.0.0.1:37024 ESTABLISHED 4362/mongod +tcp 0 0 10.10.8.141:10050 10.10.4.99:58778 TIME_WAIT - +tcp 0 0 127.0.0.1:36662 127.0.0.1:42003 ESTABLISHED 38838/vmagent +tcp 0 0 127.0.0.1:44988 127.0.0.1:31001 ESTABLISHED 47245/psmdb/percona +tcp 0 0 127.0.0.1:35018 127.0.0.1:31005 ESTABLISHED 957/psmdb/percona-s +tcp 0 0 127.0.0.1:52610 127.0.0.1:37020 ESTABLISHED 4362/mongod +tcp 0 0 127.0.0.1:43004 127.0.0.1:31007 ESTABLISHED 46462/psmdb/percona +tcp 0 0 127.0.0.1:53398 127.0.0.1:37020 ESTABLISHED 4445/mongod +tcp 0 0 127.0.0.1:37026 127.0.0.1:38908 ESTABLISHED 6837/mongod +tcp 0 0 127.0.0.1:51200 127.0.0.1:37023 ESTABLISHED 40431/mongod +tcp 0 0 127.0.0.1:31006 127.0.0.1:48296 ESTABLISHED 957/psmdb/percona-s +tcp 0 0 127.0.0.1:37023 127.0.0.1:51226 ESTABLISHED 16014/mongod +tcp 0 0 127.0.0.1:31001 127.0.0.1:43304 ESTABLISHED 46462/psmdb/percona +tcp 0 0 127.0.0.1:52474 127.0.0.1:37020 ESTABLISHED 8319/mongod +tcp 0 0 127.0.0.1:33734 127.0.0.1:37019 ESTABLISHED 34024/mongod +tcp 0 0 127.0.0.1:2023 127.0.0.1:57932 ESTABLISHED 30550/mongod +tcp 0 0 127.0.0.1:55410 127.0.0.1:37018 ESTABLISHED 34024/mongod +tcp 0 0 127.0.0.1:37028 127.0.0.1:51386 ESTABLISHED 8319/mongod +tcp 0 0 10.10.8.141:10050 10.10.4.99:51784 TIME_WAIT - +tcp 0 36 10.10.8.141:22 189.4.76.225:39133 ESTABLISHED 3846/sshd: roberto. +tcp 0 0 127.0.0.1:40974 127.0.0.1:37024 ESTABLISHED 1199/mongod +tcp 0 0 127.0.0.1:44552 127.0.0.1:37028 ESTABLISHED 1199/mongod +tcp 0 0 127.0.0.1:59846 127.0.0.1:37027 ESTABLISHED 15726/mongod +tcp 0 0 127.0.0.1:31001 127.0.0.1:41916 ESTABLISHED 46462/psmdb/percona +tcp 0 0 127.0.0.1:47912 127.0.0.1:31004 ESTABLISHED 308/psmdb/percona-s +tcp 0 0 127.0.0.1:37022 127.0.0.1:44860 ESTABLISHED 4445/mongod +tcp 0 0 127.0.0.1:41916 127.0.0.1:31001 ESTABLISHED 45946/psmdb/percona +tcp 0 0 127.0.0.1:51572 127.0.0.1:37028 TIME_WAIT - +tcp 0 0 127.0.0.1:44928 127.0.0.1:31001 ESTABLISHED 47245/psmdb/percona +tcp 0 0 127.0.0.1:37018 127.0.0.1:54988 ESTABLISHED 17411/mongod +tcp 0 0 127.0.0.1:31005 127.0.0.1:35126 ESTABLISHED 308/psmdb/percona-s +tcp 0 0 127.0.0.1:37025 127.0.0.1:58160 ESTABLISHED 1199/mongod +tcp 0 0 127.0.0.1:37020 127.0.0.1:52454 ESTABLISHED 34024/mongod +tcp 0 0 10.10.8.141:10050 10.10.4.99:49576 TIME_WAIT - +tcp 0 0 127.0.0.1:46352 127.0.0.1:31006 ESTABLISHED 308/psmdb/percona-s +tcp 0 0 172.17.0.1:50496 172.17.0.3:80 TIME_WAIT - +tcp 0 0 127.0.0.1:54864 127.0.0.1:37025 ESTABLISHED 23412/mongod +tcp 0 0 127.0.0.1:40556 127.0.0.1:2022 ESTABLISHED 30550/mongod +tcp 0 0 127.0.0.1:35370 127.0.0.1:37027 ESTABLISHED 17411/mongod +tcp 0 0 127.0.0.1:37019 127.0.0.1:33432 ESTABLISHED 23412/mongod +tcp 0 0 127.0.0.1:37025 127.0.0.1:53564 ESTABLISHED 1199/mongod +tcp 0 0 127.0.0.1:37027 127.0.0.1:36572 ESTABLISHED 4362/mongod +tcp 0 0 127.0.0.1:31001 127.0.0.1:44078 ESTABLISHED 46462/psmdb/percona +tcp 0 0 127.0.0.1:43690 127.0.0.1:37022 ESTABLISHED 12003/mongod +tcp 0 0 127.0.0.1:59286 127.0.0.1:31002 ESTABLISHED 47245/psmdb/percona +tcp 0 0 127.0.0.1:31006 127.0.0.1:46968 ESTABLISHED 957/psmdb/percona-s +tcp 0 0 127.0.0.1:37026 127.0.0.1:46960 ESTABLISHED 6837/mongod +tcp 0 0 127.0.0.1:37028 127.0.0.1:51244 ESTABLISHED 8319/mongod +tcp 0 0 127.0.0.1:6678 127.0.0.1:59368 ESTABLISHED 13004/mongod +tcp 0 0 10.10.8.141:10050 10.10.4.99:58756 TIME_WAIT - +tcp 0 0 127.0.0.1:51224 127.0.0.1:37023 ESTABLISHED 4362/mongod +tcp 0 0 127.0.0.1:42920 127.0.0.1:37024 ESTABLISHED 34024/mongod +tcp 0 0 127.0.0.1:39782 127.0.0.1:42001 TIME_WAIT - +tcp 0 0 127.0.0.1:43692 127.0.0.1:37022 ESTABLISHED 34024/mongod +tcp 0 0 127.0.0.1:46103 127.0.0.1:25151 ESTABLISHED 43355/mysqld +tcp 0 0 127.0.0.1:47270 127.0.0.1:6677 ESTABLISHED 15595/mongod +tcp 0 0 127.0.0.1:52970 127.0.0.1:31003 ESTABLISHED 957/psmdb/percona-s +tcp 0 0 127.0.0.1:56998 127.0.0.1:6677 ESTABLISHED 13004/mongod +tcp 0 0 127.0.0.1:37024 127.0.0.1:43140 ESTABLISHED 15726/mongod +tcp 0 0 127.0.0.1:54480 127.0.0.1:37018 ESTABLISHED 6837/mongod +tcp 0 0 10.10.8.141:10050 10.10.4.99:50756 TIME_WAIT - +tcp 0 0 127.0.0.1:51214 127.0.0.1:37023 ESTABLISHED 4445/mongod +tcp 0 0 127.0.0.1:31007 127.0.0.1:45244 ESTABLISHED 45946/psmdb/percona +tcp 0 0 127.0.0.1:37021 127.0.0.1:36360 ESTABLISHED 40431/mongod +tcp 0 0 10.10.8.141:10050 10.10.4.99:48614 TIME_WAIT - +tcp 0 0 127.0.0.1:6679 127.0.0.1:32986 ESTABLISHED 15595/mongod +tcp 0 0 127.0.0.1:54564 127.0.0.1:37025 ESTABLISHED 17411/mongod +tcp 0 0 127.0.0.1:2022 127.0.0.1:59064 ESTABLISHED 26510/mongod +tcp 0 0 127.0.0.1:37564 127.0.0.1:37021 ESTABLISHED 16014/mongod +tcp 0 0 10.10.8.141:48386 208.85.240.29:80 FIN_WAIT2 12430/VBoxHeadless +tcp 0 0 10.10.8.141:10050 10.10.4.99:60396 CLOSE_WAIT 4323/zabbix_agentd: +tcp 0 0 127.0.0.1:36360 127.0.0.1:37021 ESTABLISHED 12003/mongod +tcp 0 0 127.0.0.1:2022 127.0.0.1:39694 ESTABLISHED 26510/mongod +tcp 0 0 127.0.0.1:50794 127.0.0.1:31007 ESTABLISHED 47682/psmdb/percona +tcp 0 0 127.0.0.1:2022 127.0.0.1:59058 ESTABLISHED 26510/mongod +tcp 0 0 127.0.0.1:31003 127.0.0.1:51666 ESTABLISHED 47682/psmdb/percona +tcp 0 0 127.0.0.1:33432 127.0.0.1:37019 ESTABLISHED 15726/mongod +tcp 0 0 127.0.0.1:38472 127.0.0.1:2024 ESTABLISHED 33264/mongod +tcp 0 0 10.10.8.141:10050 10.10.4.99:51634 TIME_WAIT - +tcp 0 0 127.0.0.1:31004 127.0.0.1:48754 ESTABLISHED 48915/psmdb/percona +tcp 0 0 127.0.0.1:46050 127.0.0.1:31007 ESTABLISHED 957/psmdb/percona-s +tcp 0 0 127.0.0.1:37028 127.0.0.1:35952 ESTABLISHED 8319/mongod +tcp 0 0 127.0.0.1:2022 127.0.0.1:40558 ESTABLISHED 26510/mongod +tcp 0 0 127.0.0.1:31006 127.0.0.1:46376 ESTABLISHED 957/psmdb/percona-s +tcp 0 0 127.0.0.1:46730 127.0.0.1:37019 ESTABLISHED 4362/mongod +tcp 0 0 127.0.0.1:37028 127.0.0.1:52754 ESTABLISHED 8319/mongod +tcp 0 0 127.0.0.1:59320 127.0.0.1:31002 ESTABLISHED 46462/psmdb/percona +tcp 0 0 127.0.0.1:43550 127.0.0.1:37022 ESTABLISHED 40431/mongod +tcp 0 0 127.0.0.1:37021 127.0.0.1:38308 ESTABLISHED 40431/mongod +tcp 0 0 10.10.8.141:10050 10.10.4.99:51636 TIME_WAIT - +tcp 0 0 127.0.0.1:47166 127.0.0.1:6677 ESTABLISHED 13004/mongod +tcp 0 0 127.0.0.1:37019 127.0.0.1:35756 ESTABLISHED 23412/mongod +tcp 0 0 127.0.0.1:58160 127.0.0.1:37025 ESTABLISHED 8319/mongod +tcp 0 0 127.0.0.1:37028 127.0.0.1:51412 ESTABLISHED 8319/mongod +tcp 0 0 127.0.0.1:46992 127.0.0.1:37026 ESTABLISHED 15726/mongod +tcp 0 0 127.0.0.1:46480 127.0.0.1:31007 ESTABLISHED 46462/psmdb/percona +tcp 0 0 127.0.0.1:37027 127.0.0.1:32960 ESTABLISHED 4362/mongod +tcp 0 0 10.10.8.141:10050 10.10.4.99:49266 TIME_WAIT - +tcp 0 0 10.10.8.141:10050 10.10.4.99:58770 TIME_WAIT - +tcp 0 0 127.0.0.1:54374 127.0.0.1:37028 ESTABLISHED 34024/mongod +tcp 0 0 127.0.0.1:56110 127.0.0.1:37018 ESTABLISHED 23412/mongod +tcp 0 0 127.0.0.1:37024 127.0.0.1:43266 ESTABLISHED 15726/mongod +tcp 0 0 127.0.0.1:37028 127.0.0.1:56000 ESTABLISHED 8319/mongod +tcp 0 0 127.0.0.1:37022 127.0.0.1:45186 ESTABLISHED 4445/mongod +tcp 0 0 127.0.0.1:37025 127.0.0.1:57116 ESTABLISHED 1199/mongod +tcp 0 0 127.0.0.1:6679 127.0.0.1:41916 ESTABLISHED 15595/mongod +tcp 0 0 127.0.0.1:59368 127.0.0.1:6678 ESTABLISHED 15595/mongod +tcp 0 0 127.0.0.1:33586 127.0.0.1:37024 ESTABLISHED 4362/mongod +tcp 0 0 172.17.0.1:53596 172.17.0.3:80 TIME_WAIT - +tcp 0 0 127.0.0.1:37018 127.0.0.1:55558 ESTABLISHED 17411/mongod +tcp 0 0 127.0.0.1:52486 127.0.0.1:37020 ESTABLISHED 23412/mongod +tcp 0 0 127.0.0.1:52454 127.0.0.1:37020 ESTABLISHED 1199/mongod +tcp 0 0 127.0.0.1:47390 127.0.0.1:37029 ESTABLISHED 17411/mongod +tcp 0 0 127.0.0.1:47580 127.0.0.1:37026 ESTABLISHED 23412/mongod +tcp 0 0 127.0.0.1:31007 127.0.0.1:45116 ESTABLISHED 45946/psmdb/percona +tcp 0 0 127.0.0.1:52444 127.0.0.1:37020 ESTABLISHED 17411/mongod +tcp 0 0 10.10.8.141:674 10.10.8.124:2049 ESTABLISHED - +tcp 0 0 127.0.0.1:37027 127.0.0.1:59824 ESTABLISHED 4362/mongod +tcp 0 0 127.0.0.1:35952 127.0.0.1:37028 ESTABLISHED 26684/mongos +tcp 0 0 127.0.0.1:44078 127.0.0.1:31001 ESTABLISHED 957/psmdb/percona-s +tcp 0 0 127.0.0.1:31007 127.0.0.1:46480 ESTABLISHED 45946/psmdb/percona +tcp 0 0 127.0.0.1:37027 127.0.0.1:33534 ESTABLISHED 4362/mongod +tcp 0 0 127.0.0.1:18145 127.0.0.1:37088 ESTABLISHED 32035/mysqld +tcp 0 0 127.0.0.1:43492 127.0.0.1:37022 ESTABLISHED 15726/mongod +tcp 0 0 127.0.0.1:48776 127.0.0.1:31004 ESTABLISHED 957/psmdb/percona-s +tcp 0 0 127.0.0.1:45622 127.0.0.1:37023 ESTABLISHED 12003/mongod +tcp 0 0 127.0.0.1:39696 127.0.0.1:2022 ESTABLISHED 33264/mongod +tcp 0 0 127.0.0.1:37028 127.0.0.1:55980 ESTABLISHED 8319/mongod +tcp 0 0 127.0.0.1:37022 127.0.0.1:44824 ESTABLISHED 4445/mongod +tcp 0 0 127.0.0.1:37021 127.0.0.1:36328 ESTABLISHED 40431/mongod +tcp 0 0 127.0.0.1:31002 127.0.0.1:33388 ESTABLISHED 47245/psmdb/percona +tcp 0 0 127.0.0.1:31007 127.0.0.1:38032 ESTABLISHED 45946/psmdb/percona +tcp 0 0 127.0.0.1:37021 127.0.0.1:36268 ESTABLISHED 40431/mongod +tcp 0 0 127.0.0.1:37026 127.0.0.1:47580 ESTABLISHED 6837/mongod +tcp 0 0 127.0.0.1:37022 127.0.0.1:43544 ESTABLISHED 4445/mongod +tcp 0 0 127.0.0.1:50354 127.0.0.1:31006 ESTABLISHED 47245/psmdb/percona +tcp 0 0 127.0.0.1:37022 127.0.0.1:43698 ESTABLISHED 4445/mongod +tcp 0 0 127.0.0.1:37021 127.0.0.1:60198 ESTABLISHED 40431/mongod +tcp 0 0 127.0.0.1:47654 127.0.0.1:31004 ESTABLISHED 48915/psmdb/percona +tcp 0 0 127.0.0.1:31002 127.0.0.1:59736 ESTABLISHED 47245/psmdb/percona +tcp 0 0 10.10.8.141:10050 10.10.4.99:50332 TIME_WAIT - +tcp 0 0 127.0.0.1:60772 127.0.0.1:31002 ESTABLISHED 45946/psmdb/percona +tcp 0 0 127.0.0.1:37021 127.0.0.1:36620 ESTABLISHED 40431/mongod +tcp 0 0 127.0.0.1:37026 127.0.0.1:39028 ESTABLISHED 6837/mongod +tcp 0 0 127.0.0.1:37024 127.0.0.1:40714 ESTABLISHED 15726/mongod +tcp 0 0 127.0.0.1:54686 127.0.0.1:37028 ESTABLISHED 40431/mongod +tcp 0 0 127.0.0.1:2022 127.0.0.1:59084 ESTABLISHED 26510/mongod +tcp 0 0 127.0.0.1:40714 127.0.0.1:37024 ESTABLISHED 15726/mongod +tcp 0 0 127.0.0.1:46350 127.0.0.1:31006 ESTABLISHED 308/psmdb/percona-s +tcp 0 0 127.0.0.1:39900 127.0.0.1:2022 ESTABLISHED 30550/mongod +tcp 0 0 127.0.0.1:49090 127.0.0.1:37018 ESTABLISHED 8319/mongod +tcp 0 0 10.10.8.141:10050 10.10.4.99:49064 TIME_WAIT - +tcp 0 0 127.0.0.1:37028 127.0.0.1:53328 ESTABLISHED 8319/mongod +tcp 0 0 127.0.0.1:31001 127.0.0.1:41404 ESTABLISHED 46462/psmdb/percona +tcp 0 0 127.0.0.1:37028 127.0.0.1:51420 ESTABLISHED 8319/mongod +tcp 0 0 127.0.0.1:45914 127.0.0.1:37029 ESTABLISHED 8319/mongod +tcp 0 0 127.0.0.1:37018 127.0.0.1:55338 ESTABLISHED 17411/mongod +tcp 0 0 127.0.0.1:37026 127.0.0.1:48862 ESTABLISHED 6837/mongod +tcp 0 0 127.0.0.1:37029 127.0.0.1:57346 ESTABLISHED 12003/mongod +tcp 0 0 127.0.0.1:2024 127.0.0.1:38478 ESTABLISHED 33264/mongod +tcp 0 0 127.0.0.1:59674 127.0.0.1:37027 ESTABLISHED 8319/mongod +tcp 0 0 127.0.0.1:56528 127.0.0.1:37025 ESTABLISHED 4445/mongod +tcp 0 0 127.0.0.1:37020 127.0.0.1:37154 ESTABLISHED 34024/mongod +tcp 0 0 127.0.0.1:33534 127.0.0.1:37027 ESTABLISHED 17411/mongod +tcp 0 0 127.0.0.1:47314 127.0.0.1:2024 ESTABLISHED 26510/mongod +tcp 0 0 127.0.0.1:31005 127.0.0.1:39120 ESTABLISHED 308/psmdb/percona-s +tcp 0 0 127.0.0.1:31002 127.0.0.1:60482 ESTABLISHED 47245/psmdb/percona +tcp 0 0 127.0.0.1:37023 127.0.0.1:51200 ESTABLISHED 16014/mongod +tcp 0 0 10.10.8.141:10050 10.10.4.99:58774 TIME_WAIT - +tcp 0 0 127.0.0.1:55870 127.0.0.1:37025 ESTABLISHED 40431/mongod +tcp 0 0 127.0.0.1:37020 127.0.0.1:53134 ESTABLISHED 34024/mongod +tcp 0 0 127.0.0.1:37024 127.0.0.1:40744 ESTABLISHED 15726/mongod +tcp 0 0 127.0.0.1:37025 127.0.0.1:55744 ESTABLISHED 1199/mongod +tcp 0 0 127.0.0.1:52466 127.0.0.1:37020 ESTABLISHED 15726/mongod +tcp 0 0 127.0.0.1:37019 127.0.0.1:46730 ESTABLISHED 23412/mongod +tcp 0 0 127.0.0.1:56348 127.0.0.1:6677 ESTABLISHED 13004/mongod +tcp 0 0 127.0.0.1:37088 127.0.0.1:18145 ESTABLISHED 33495/mysqld +tcp 0 0 127.0.0.1:2022 127.0.0.1:39898 ESTABLISHED 26510/mongod +tcp 0 0 127.0.0.1:37024 127.0.0.1:41960 ESTABLISHED 15726/mongod +tcp 0 0 127.0.0.1:37022 127.0.0.1:43550 ESTABLISHED 4445/mongod +tcp 0 0 127.0.0.1:45384 127.0.0.1:37029 ESTABLISHED 15726/mongod +tcp 0 0 127.0.0.1:37026 127.0.0.1:47014 ESTABLISHED 6837/mongod +tcp 0 0 127.0.0.1:44904 127.0.0.1:31001 ESTABLISHED 47682/psmdb/percona +tcp 0 0 127.0.0.1:49244 127.0.0.1:37026 ESTABLISHED 4445/mongod +tcp 0 0 172.17.0.1:48208 172.17.0.3:443 ESTABLISHED 38838/vmagent +tcp 0 0 127.0.0.1:31004 127.0.0.1:52824 ESTABLISHED 48915/psmdb/percona +tcp 0 0 172.17.0.1:53598 172.17.0.3:80 TIME_WAIT - +tcp 0 0 127.0.0.1:51290 127.0.0.1:37023 ESTABLISHED 26684/mongos +tcp 0 0 127.0.0.1:37028 127.0.0.1:46508 ESTABLISHED 8319/mongod +tcp 0 0 127.0.0.1:31007 127.0.0.1:55752 ESTABLISHED 45946/psmdb/percona +tcp 0 0 127.0.0.1:37027 127.0.0.1:33844 ESTABLISHED 4362/mongod +tcp 0 0 127.0.0.1:37023 127.0.0.1:51230 ESTABLISHED 16014/mongod +tcp 0 0 127.0.0.1:37023 127.0.0.1:51220 ESTABLISHED 16014/mongod +tcp 0 0 127.0.0.1:43466 127.0.0.1:37022 ESTABLISHED 17411/mongod +tcp 0 0 127.0.0.1:37154 127.0.0.1:37020 ESTABLISHED 4362/mongod +tcp 0 0 127.0.0.1:44900 127.0.0.1:31001 ESTABLISHED 47682/psmdb/percona +tcp 0 0 127.0.0.1:37021 127.0.0.1:36894 ESTABLISHED 40431/mongod +tcp 0 0 127.0.0.1:37021 127.0.0.1:36322 ESTABLISHED 40431/mongod +tcp 0 0 127.0.0.1:47278 127.0.0.1:37026 ESTABLISHED 17411/mongod +tcp 0 0 127.0.0.1:31004 127.0.0.1:48836 ESTABLISHED 48915/psmdb/percona +tcp 0 0 127.0.0.1:2024 127.0.0.1:47314 ESTABLISHED 33264/mongod +tcp 0 0 127.0.0.1:43470 127.0.0.1:37022 ESTABLISHED 1199/mongod +tcp 0 0 127.0.0.1:33710 127.0.0.1:37024 ESTABLISHED 8319/mongod +tcp 0 0 127.0.0.1:37029 127.0.0.1:46116 ESTABLISHED 12003/mongod +tcp 0 0 127.0.0.1:37029 127.0.0.1:49228 ESTABLISHED 12003/mongod +tcp 0 0 127.0.0.1:48238 127.0.0.1:37026 ESTABLISHED 34024/mongod +tcp 0 0 127.0.0.1:47306 127.0.0.1:37027 ESTABLISHED 1199/mongod +tcp 0 0 10.10.8.141:10050 10.10.4.99:49796 TIME_WAIT - +tcp 0 0 10.10.8.141:10050 10.10.4.99:51650 TIME_WAIT - +tcp 0 0 127.0.0.1:39694 127.0.0.1:2022 ESTABLISHED 30550/mongod +tcp 0 0 127.0.0.1:43250 127.0.0.1:31001 ESTABLISHED 308/psmdb/percona-s +tcp 0 0 127.0.0.1:35126 127.0.0.1:31005 ESTABLISHED 1453/psmdb/percona- +tcp 0 0 127.0.0.1:53328 127.0.0.1:37028 ESTABLISHED 17411/mongod +tcp 0 0 127.0.0.1:6677 127.0.0.1:47272 ESTABLISHED 10216/mongod +tcp 0 0 127.0.0.1:37028 127.0.0.1:54374 ESTABLISHED 8319/mongod +tcp 0 0 127.0.0.1:40172 127.0.0.1:6678 ESTABLISHED 15595/mongod +tcp 0 0 127.0.0.1:37024 127.0.0.1:43928 ESTABLISHED 15726/mongod +tcp 0 0 10.10.8.141:10050 10.10.4.99:49424 TIME_WAIT - +tcp 0 0 127.0.0.1:37025 127.0.0.1:54398 ESTABLISHED 1199/mongod +tcp 0 0 10.10.8.141:10050 10.10.4.99:49832 TIME_WAIT - +tcp 0 0 127.0.0.1:34638 127.0.0.1:31005 ESTABLISHED 48915/psmdb/percona +tcp 0 0 172.17.0.1:39066 172.17.0.3:443 ESTABLISHED 38838/vmagent +tcp 0 0 127.0.0.1:37018 127.0.0.1:55958 ESTABLISHED 17411/mongod +tcp 0 0 127.0.0.1:31001 127.0.0.1:44780 ESTABLISHED 46462/psmdb/percona +tcp 0 0 127.0.0.1:41404 127.0.0.1:31001 ESTABLISHED 46462/psmdb/percona +tcp 0 0 127.0.0.1:42125 127.0.0.1:47186 ESTABLISHED 40417/mysqld +tcp 0 0 127.0.0.1:31004 127.0.0.1:47912 ESTABLISHED 48915/psmdb/percona +tcp 0 0 127.0.0.1:37028 127.0.0.1:54416 ESTABLISHED 8319/mongod +tcp 0 0 127.0.0.1:56354 127.0.0.1:6677 ESTABLISHED 15595/mongod +tcp 0 0 127.0.0.1:37019 127.0.0.1:34360 ESTABLISHED 23412/mongod +tcp 0 0 127.0.0.1:37024 127.0.0.1:41294 ESTABLISHED 15726/mongod +tcp 0 0 127.0.0.1:37028 127.0.0.1:56370 ESTABLISHED 8319/mongod +tcp 0 0 127.0.0.1:37020 127.0.0.1:52438 ESTABLISHED 34024/mongod +tcp 0 0 127.0.0.1:37018 127.0.0.1:51674 ESTABLISHED 17411/mongod +tcp 0 0 127.0.0.1:43266 127.0.0.1:37024 ESTABLISHED 40431/mongod +tcp 0 0 127.0.0.1:37018 127.0.0.1:56096 ESTABLISHED 17411/mongod +tcp 0 0 127.0.0.1:38908 127.0.0.1:37026 ESTABLISHED 4362/mongod +tcp 0 0 127.0.0.1:55310 127.0.0.1:37027 ESTABLISHED 40431/mongod +tcp 0 0 127.0.0.1:37026 127.0.0.1:49244 ESTABLISHED 6837/mongod +tcp 0 0 127.0.0.1:37025 127.0.0.1:56148 ESTABLISHED 1199/mongod +tcp 0 0 127.0.0.1:59252 127.0.0.1:6678 ESTABLISHED 13004/mongod +tcp 0 0 127.0.0.1:31002 127.0.0.1:33296 ESTABLISHED 47245/psmdb/percona +tcp 0 0 127.0.0.1:58814 127.0.0.1:37025 ESTABLISHED 6837/mongod +tcp 0 0 127.0.0.1:23128 127.0.0.1:58149 ESTABLISHED 24059/mysqld +tcp 0 0 127.0.0.1:37022 127.0.0.1:44224 ESTABLISHED 4445/mongod +tcp 0 0 127.0.0.1:37025 127.0.0.1:54402 ESTABLISHED 1199/mongod +tcp 0 0 127.0.0.1:42124 127.0.0.1:59738 ESTABLISHED 3928/mysqld +tcp 0 0 127.0.0.1:51964 127.0.0.1:37023 ESTABLISHED 4362/mongod +tcp 0 0 127.0.0.1:49704 127.0.0.1:31006 ESTABLISHED 46462/psmdb/percona +tcp 0 0 127.0.0.1:56096 127.0.0.1:37018 ESTABLISHED 8319/mongod +tcp 0 0 172.17.0.1:54352 172.17.0.3:80 TIME_WAIT - +tcp 0 0 127.0.0.1:59312 127.0.0.1:31002 ESTABLISHED 46462/psmdb/percona +tcp 0 0 10.10.8.141:10050 10.10.4.99:51652 TIME_WAIT - +tcp 0 0 127.0.0.1:52114 127.0.0.1:31003 ESTABLISHED 308/psmdb/percona-s +tcp 0 0 172.17.0.1:33382 172.17.0.3:443 ESTABLISHED 4049/pmm-agent +tcp 0 0 127.0.0.1:37026 127.0.0.1:50264 ESTABLISHED 6837/mongod +tcp 0 0 127.0.0.1:31005 127.0.0.1:34638 ESTABLISHED 308/psmdb/percona-s +tcp 0 0 172.17.0.1:50494 172.17.0.3:80 TIME_WAIT - +tcp 0 0 127.0.0.1:53982 127.0.0.1:37020 ESTABLISHED 16014/mongod +tcp 0 0 127.0.0.1:43544 127.0.0.1:37024 ESTABLISHED 12003/mongod +tcp 0 0 127.0.0.1:47508 127.0.0.1:2024 ESTABLISHED 30550/mongod +tcp 0 0 127.0.0.1:37022 127.0.0.1:43494 ESTABLISHED 4445/mongod +tcp 0 0 172.17.0.1:52850 172.17.0.3:80 TIME_WAIT - +tcp 0 0 127.0.0.1:32976 127.0.0.1:6679 ESTABLISHED 15595/mongod +tcp 0 0 127.0.0.1:41960 127.0.0.1:37024 ESTABLISHED 17411/mongod +tcp 0 0 127.0.0.1:57878 127.0.0.1:37028 ESTABLISHED 4362/mongod +tcp 0 0 127.0.0.1:37020 127.0.0.1:52596 ESTABLISHED 34024/mongod +tcp 0 0 127.0.0.1:2023 127.0.0.1:57920 ESTABLISHED 30550/mongod +tcp 0 0 127.0.0.1:37028 127.0.0.1:43272 ESTABLISHED 8319/mongod +tcp 0 0 127.0.0.1:34082 127.0.0.1:37019 ESTABLISHED 40431/mongod +tcp 0 0 127.0.0.1:37026 127.0.0.1:47000 ESTABLISHED 6837/mongod +tcp 0 0 127.0.0.1:37027 127.0.0.1:55310 ESTABLISHED 4362/mongod +tcp 0 0 127.0.0.1:31001 127.0.0.1:44904 ESTABLISHED 46462/psmdb/percona +tcp 0 0 127.0.0.1:44858 127.0.0.1:37022 ESTABLISHED 16014/mongod +tcp 0 0 127.0.0.1:36304 127.0.0.1:37021 ESTABLISHED 4362/mongod +tcp 0 0 127.0.0.1:37270 127.0.0.1:37027 ESTABLISHED 4445/mongod +tcp 0 0 127.0.0.1:59198 127.0.0.1:31007 ESTABLISHED 1453/psmdb/percona- +tcp 0 0 127.0.0.1:47014 127.0.0.1:37026 ESTABLISHED 8319/mongod +tcp 0 0 127.0.0.1:37020 127.0.0.1:53016 ESTABLISHED 34024/mongod +tcp 0 0 127.0.0.1:39898 127.0.0.1:2022 ESTABLISHED 33264/mongod +tcp 0 0 127.0.0.1:37024 127.0.0.1:33586 ESTABLISHED 15726/mongod +tcp 0 0 127.0.0.1:37024 127.0.0.1:41664 ESTABLISHED 15726/mongod +tcp 0 0 127.0.0.1:37027 127.0.0.1:59436 ESTABLISHED 4362/mongod +tcp 0 0 127.0.0.1:23130 127.0.0.1:42723 ESTABLISHED 23878/mysqld +tcp 0 0 127.0.0.1:48294 127.0.0.1:31006 ESTABLISHED 308/psmdb/percona-s +tcp 0 0 10.10.8.141:10050 10.10.4.99:58760 TIME_WAIT - +tcp 0 0 127.0.0.1:37019 127.0.0.1:33402 ESTABLISHED 23412/mongod +tcp 0 0 127.0.0.1:37022 127.0.0.1:46754 ESTABLISHED 4445/mongod +tcp 0 0 127.0.0.1:51412 127.0.0.1:37028 ESTABLISHED 15726/mongod +tcp 0 0 127.0.0.1:31002 127.0.0.1:60176 ESTABLISHED 47245/psmdb/percona +tcp 0 0 127.0.0.1:37018 127.0.0.1:54442 ESTABLISHED 17411/mongod +tcp 0 0 127.0.0.1:31006 127.0.0.1:46284 ESTABLISHED 957/psmdb/percona-s +tcp 0 0 127.0.0.1:46482 127.0.0.1:31007 ESTABLISHED 308/psmdb/percona-s +tcp 0 0 127.0.0.1:37021 127.0.0.1:37202 ESTABLISHED 40431/mongod +tcp 0 0 127.0.0.1:31002 127.0.0.1:60772 ESTABLISHED 47245/psmdb/percona +tcp 0 0 127.0.0.1:40558 127.0.0.1:2022 ESTABLISHED 33264/mongod +tcp 0 0 127.0.0.1:46140 127.0.0.1:31007 ESTABLISHED 1453/psmdb/percona- +tcp 0 0 127.0.0.1:43544 127.0.0.1:37022 ESTABLISHED 40431/mongod +tcp 0 0 127.0.0.1:37018 127.0.0.1:56110 ESTABLISHED 17411/mongod +tcp 0 0 127.0.0.1:50636 127.0.0.1:37018 ESTABLISHED 23412/mongod +tcp 0 0 127.0.0.1:31001 127.0.0.1:42408 ESTABLISHED 46462/psmdb/percona +tcp 0 0 127.0.0.1:37020 127.0.0.1:54416 ESTABLISHED 34024/mongod +tcp 0 0 10.10.8.141:38860 35.164.176.181:443 ESTABLISHED 3808/datacollector +tcp 0 0 127.0.0.1:57000 127.0.0.1:6677 ESTABLISHED 15595/mongod +tcp 0 0 127.0.0.1:37027 127.0.0.1:34582 ESTABLISHED 4362/mongod +tcp 0 0 127.0.0.1:37025 127.0.0.1:55870 ESTABLISHED 1199/mongod +tcp 0 0 127.0.0.1:40944 127.0.0.1:37024 ESTABLISHED 1199/mongod +tcp 0 0 127.0.0.1:6677 127.0.0.1:47264 ESTABLISHED 10216/mongod +tcp 0 0 127.0.0.1:37018 127.0.0.1:54480 ESTABLISHED 17411/mongod +tcp 0 0 127.0.0.1:37018 127.0.0.1:54678 ESTABLISHED 17411/mongod +tcp 0 0 127.0.0.1:37027 127.0.0.1:56486 ESTABLISHED 4362/mongod +tcp 0 0 127.0.0.1:37022 127.0.0.1:43466 ESTABLISHED 4445/mongod +tcp 0 0 127.0.0.1:46366 127.0.0.1:31006 ESTABLISHED 1453/psmdb/percona- +tcp 0 0 127.0.0.1:2024 127.0.0.1:38472 ESTABLISHED 33264/mongod +tcp 0 0 127.0.0.1:37022 127.0.0.1:43464 ESTABLISHED 4445/mongod +tcp 0 0 127.0.0.1:6677 127.0.0.1:57000 ESTABLISHED 10216/mongod +tcp 0 0 127.0.0.1:37023 127.0.0.1:51196 ESTABLISHED 16014/mongod +tcp 0 0 127.0.0.1:37027 127.0.0.1:35464 ESTABLISHED 4362/mongod +tcp 0 0 127.0.0.1:56926 127.0.0.1:37018 ESTABLISHED 16014/mongod +tcp 0 0 127.0.0.1:2022 127.0.0.1:39696 ESTABLISHED 26510/mongod +tcp 0 0 127.0.0.1:36182 127.0.0.1:37027 ESTABLISHED 16014/mongod +tcp 0 0 127.0.0.1:53564 127.0.0.1:37025 ESTABLISHED 15726/mongod +tcp 0 0 127.0.0.1:51420 127.0.0.1:37028 ESTABLISHED 15726/mongod +tcp 0 0 127.0.0.1:50770 127.0.0.1:31004 ESTABLISHED 957/psmdb/percona-s +tcp 0 0 127.0.0.1:6677 127.0.0.1:47164 ESTABLISHED 10216/mongod +tcp 0 0 127.0.0.1:52180 127.0.0.1:31003 ESTABLISHED 45946/psmdb/percona +tcp 0 0 127.0.0.1:40068 127.0.0.1:6678 ESTABLISHED 10216/mongod +tcp 0 0 127.0.0.1:37019 127.0.0.1:33418 ESTABLISHED 23412/mongod +tcp 0 0 127.0.0.1:31004 127.0.0.1:50494 ESTABLISHED 48915/psmdb/percona +tcp 0 0 127.0.0.1:55526 127.0.0.1:37025 ESTABLISHED 15726/mongod +tcp 0 0 127.0.0.1:31006 127.0.0.1:46350 ESTABLISHED 957/psmdb/percona-s +tcp 0 0 127.0.0.1:31001 127.0.0.1:41816 ESTABLISHED 46462/psmdb/percona +tcp 0 0 127.0.0.1:6678 127.0.0.1:40172 ESTABLISHED 13004/mongod +tcp 0 0 127.0.0.1:31002 127.0.0.1:59312 ESTABLISHED 47245/psmdb/percona +tcp 0 0 127.0.0.1:37022 127.0.0.1:43692 ESTABLISHED 4445/mongod +tcp 0 0 127.0.0.1:52460 127.0.0.1:37020 ESTABLISHED 34024/mongod +tcp 0 0 10.10.8.141:10050 10.10.4.99:49568 TIME_WAIT - +tcp 0 0 127.0.0.1:37018 127.0.0.1:56926 ESTABLISHED 17411/mongod +tcp 0 0 127.0.0.1:31001 127.0.0.1:44900 ESTABLISHED 46462/psmdb/percona +tcp 0 0 127.0.0.1:2022 127.0.0.1:39900 ESTABLISHED 26510/mongod +tcp 0 0 127.0.0.1:57900 127.0.0.1:2023 ESTABLISHED 30550/mongod +tcp 0 0 127.0.0.1:38452 127.0.0.1:2024 ESTABLISHED 30550/mongod +tcp 0 0 10.10.8.141:10050 10.10.4.99:49178 TIME_WAIT - +tcp 0 0 127.0.0.1:36268 127.0.0.1:37021 ESTABLISHED 40431/mongod +tcp 0 0 127.0.0.1:42723 127.0.0.1:23130 ESTABLISHED 40649/mysqld +tcp 0 0 127.0.0.1:37026 127.0.0.1:48320 ESTABLISHED 6837/mongod +tcp 0 0 127.0.0.1:44824 127.0.0.1:37022 ESTABLISHED 4362/mongod +tcp 0 0 127.0.0.1:54270 127.0.0.1:37025 ESTABLISHED 6837/mongod +tcp 0 0 127.0.0.1:43714 127.0.0.1:37022 ESTABLISHED 6837/mongod +tcp 0 0 127.0.0.1:37021 127.0.0.1:37634 ESTABLISHED 40431/mongod +tcp 0 0 127.0.0.1:52824 127.0.0.1:31004 ESTABLISHED 47245/psmdb/percona +tcp 0 0 127.0.0.1:37022 127.0.0.1:44864 ESTABLISHED 4445/mongod +tcp 0 0 127.0.0.1:37024 127.0.0.1:43544 ESTABLISHED 15726/mongod +tcp 0 0 127.0.0.1:37023 127.0.0.1:51194 ESTABLISHED 16014/mongod +tcp 0 0 127.0.0.1:31003 127.0.0.1:52180 ESTABLISHED 47682/psmdb/percona +tcp 0 0 127.0.0.1:47276 127.0.0.1:6677 ESTABLISHED 15595/mongod +tcp 0 0 127.0.0.1:37018 127.0.0.1:56144 ESTABLISHED 17411/mongod +tcp 0 0 127.0.0.1:47614 127.0.0.1:37029 ESTABLISHED 23412/mongod +tcp 0 0 127.0.0.1:6678 127.0.0.1:40068 ESTABLISHED 13004/mongod +tcp 0 0 127.0.0.1:37019 127.0.0.1:34082 ESTABLISHED 23412/mongod +tcp 0 0 127.0.0.1:56148 127.0.0.1:37025 ESTABLISHED 12003/mongod +tcp 0 0 127.0.0.1:46754 127.0.0.1:37022 ESTABLISHED 40431/mongod +tcp 0 0 127.0.0.1:43698 127.0.0.1:37022 ESTABLISHED 23412/mongod +tcp 0 0 127.0.0.1:31006 127.0.0.1:46352 ESTABLISHED 957/psmdb/percona-s +tcp 0 0 127.0.0.1:56370 127.0.0.1:37028 ESTABLISHED 26684/mongos +tcp 0 0 172.17.0.1:51282 172.17.0.3:80 TIME_WAIT - +tcp 0 0 127.0.0.1:37024 127.0.0.1:42920 ESTABLISHED 15726/mongod +tcp 0 0 127.0.0.1:51386 127.0.0.1:37028 ESTABLISHED 12003/mongod +tcp 0 0 127.0.0.1:51666 127.0.0.1:31003 ESTABLISHED 47245/psmdb/percona +tcp 0 0 127.0.0.1:42001 127.0.0.1:49540 ESTABLISHED 38838/vmagent +tcp 0 0 127.0.0.1:31007 127.0.0.1:59198 ESTABLISHED 45946/psmdb/percona +tcp 0 0 127.0.0.1:51212 127.0.0.1:37023 ESTABLISHED 6837/mongod +tcp 0 0 127.0.0.1:42104 127.0.0.1:37027 ESTABLISHED 16014/mongod +tcp 0 0 127.0.0.1:37023 127.0.0.1:51152 ESTABLISHED 16014/mongod +tcp 0 0 127.0.0.1:51192 127.0.0.1:37023 ESTABLISHED 12003/mongod +tcp 0 0 127.0.0.1:47156 127.0.0.1:6677 ESTABLISHED 13004/mongod +tcp 0 0 127.0.0.1:37020 127.0.0.1:52444 ESTABLISHED 34024/mongod +tcp 0 0 127.0.0.1:6678 127.0.0.1:59252 ESTABLISHED 13004/mongod +tcp 0 0 127.0.0.1:36322 127.0.0.1:37021 ESTABLISHED 15726/mongod +tcp 0 0 127.0.0.1:31001 127.0.0.1:45834 ESTABLISHED 46462/psmdb/percona +tcp 0 0 127.0.0.1:33374 127.0.0.1:37019 ESTABLISHED 23412/mongod +tcp 0 0 127.0.0.1:31003 127.0.0.1:51562 ESTABLISHED 47682/psmdb/percona +tcp 0 0 127.0.0.1:37025 127.0.0.1:46114 ESTABLISHED 1199/mongod +tcp 0 0 127.0.0.1:51220 127.0.0.1:37023 ESTABLISHED 17411/mongod +tcp 0 0 127.0.0.1:48346 127.0.0.1:37029 ESTABLISHED 34024/mongod +tcp 0 0 10.10.8.141:10050 10.10.4.99:51642 TIME_WAIT - +tcp 0 0 127.0.0.1:59436 127.0.0.1:37027 ESTABLISHED 23412/mongod +tcp 0 0 127.0.0.1:37023 127.0.0.1:51222 ESTABLISHED 16014/mongod +tcp 0 0 10.10.8.141:10050 10.10.4.99:47544 TIME_WAIT - +tcp 0 0 127.0.0.1:6677 127.0.0.1:47162 ESTABLISHED 10216/mongod +tcp 0 0 127.0.0.1:37022 127.0.0.1:43474 ESTABLISHED 4445/mongod +tcp 0 0 10.10.8.141:10050 10.10.4.99:49638 TIME_WAIT - +tcp 0 0 10.10.8.141:10050 10.10.4.99:49240 TIME_WAIT - +tcp 0 0 127.0.0.1:37028 127.0.0.1:54668 ESTABLISHED 8319/mongod +tcp 0 0 10.10.8.141:10050 10.10.4.99:48516 TIME_WAIT - +tcp 0 0 127.0.0.1:45532 127.0.0.1:37023 ESTABLISHED 8319/mongod +tcp 0 0 127.0.0.1:31001 127.0.0.1:44928 ESTABLISHED 46462/psmdb/percona +tcp 0 0 127.0.0.1:41916 127.0.0.1:6679 ESTABLISHED 10216/mongod +tcp 0 0 127.0.0.1:31003 127.0.0.1:52114 ESTABLISHED 47682/psmdb/percona +tcp 0 0 127.0.0.1:37022 127.0.0.1:44842 ESTABLISHED 4445/mongod +tcp 0 0 127.0.0.1:37025 127.0.0.1:55526 ESTABLISHED 1199/mongod +tcp 0 0 127.0.0.1:2024 127.0.0.1:38462 ESTABLISHED 33264/mongod +tcp 0 0 127.0.0.1:60114 127.0.0.1:37021 ESTABLISHED 8319/mongod +tcp 0 0 127.0.0.1:36894 127.0.0.1:37021 ESTABLISHED 4445/mongod +tcp 0 0 127.0.0.1:43464 127.0.0.1:37022 ESTABLISHED 4445/mongod +tcp 0 0 127.0.0.1:31001 127.0.0.1:41834 ESTABLISHED 46462/psmdb/percona +tcp 0 0 127.0.0.1:44862 127.0.0.1:37022 ESTABLISHED 40431/mongod +tcp 0 0 127.0.0.1:35464 127.0.0.1:37027 ESTABLISHED 4445/mongod +tcp 0 0 127.0.0.1:59090 127.0.0.1:2022 ESTABLISHED 33264/mongod +tcp 0 0 127.0.0.1:40744 127.0.0.1:37024 ESTABLISHED 8319/mongod +tcp 0 0 127.0.0.1:36298 127.0.0.1:37021 ESTABLISHED 1199/mongod +tcp 0 0 127.0.0.1:2022 127.0.0.1:59068 ESTABLISHED 26510/mongod +tcp 0 0 127.0.0.1:37023 127.0.0.1:45622 ESTABLISHED 16014/mongod +tcp 0 0 10.10.8.141:10050 10.10.4.99:58764 TIME_WAIT - +tcp 0 0 127.0.0.1:59058 127.0.0.1:2022 ESTABLISHED 30550/mongod +tcp 0 0 127.0.0.1:60176 127.0.0.1:31002 ESTABLISHED 47682/psmdb/percona +tcp 0 0 127.0.0.1:37020 127.0.0.1:52738 ESTABLISHED 34024/mongod +tcp 0 0 127.0.0.1:58326 127.0.0.1:37019 ESTABLISHED 12003/mongod +tcp 0 0 127.0.0.1:43474 127.0.0.1:37022 ESTABLISHED 4362/mongod +tcp 0 0 127.0.0.1:55784 127.0.0.1:37019 ESTABLISHED 8319/mongod +tcp 0 0 127.0.0.1:31003 127.0.0.1:53056 ESTABLISHED 47682/psmdb/percona +tcp 0 0 127.0.0.1:37028 127.0.0.1:53642 ESTABLISHED 8319/mongod +tcp 0 0 127.0.0.1:54416 127.0.0.1:37020 ESTABLISHED 26684/mongos +tcp 0 0 127.0.0.1:54512 127.0.0.1:37018 ESTABLISHED 1199/mongod +tcp 0 0 127.0.0.1:37028 127.0.0.1:52038 ESTABLISHED 8319/mongod +tcp 0 0 127.0.0.1:37027 127.0.0.1:35370 ESTABLISHED 4362/mongod +tcp 0 0 127.0.0.1:37019 127.0.0.1:35330 ESTABLISHED 23412/mongod +tcp 0 0 127.0.0.1:46204 127.0.0.1:37020 ESTABLISHED 8319/mongod +tcp 0 0 127.0.0.1:37022 127.0.0.1:44154 ESTABLISHED 4445/mongod +tcp 0 0 127.0.0.1:37020 127.0.0.1:53398 ESTABLISHED 34024/mongod +tcp 0 0 172.17.0.1:52120 172.17.0.3:80 TIME_WAIT - +tcp 0 0 127.0.0.1:43928 127.0.0.1:37024 ESTABLISHED 4445/mongod +tcp 0 0 127.0.0.1:31007 127.0.0.1:50794 ESTABLISHED 45946/psmdb/percona +tcp 0 0 127.0.0.1:59064 127.0.0.1:2022 ESTABLISHED 30550/mongod +tcp 0 0 127.0.0.1:44780 127.0.0.1:31001 ESTABLISHED 45946/psmdb/percona +tcp 0 0 127.0.0.1:34640 127.0.0.1:31005 ESTABLISHED 48915/psmdb/percona +tcp 0 0 127.0.0.1:47264 127.0.0.1:6677 ESTABLISHED 15595/mongod +tcp 0 0 127.0.0.1:51194 127.0.0.1:37023 ESTABLISHED 34024/mongod +tcp 0 0 10.10.8.141:10050 10.10.4.99:51654 TIME_WAIT - +tcp 0 0 127.0.0.1:25149 127.0.0.1:39945 ESTABLISHED 4242/mysqld +tcp 0 0 127.0.0.1:53588 127.0.0.1:37025 ESTABLISHED 15726/mongod +tcp 0 0 127.0.0.1:37021 127.0.0.1:36286 ESTABLISHED 40431/mongod +tcp 0 0 127.0.0.1:37029 127.0.0.1:48634 ESTABLISHED 12003/mongod +tcp 0 0 127.0.0.1:36328 127.0.0.1:37021 ESTABLISHED 8319/mongod +tcp 0 0 127.0.0.1:37029 127.0.0.1:45914 ESTABLISHED 12003/mongod +tcp 0 0 127.0.0.1:37029 127.0.0.1:41288 ESTABLISHED 12003/mongod +tcp 0 0 127.0.0.1:37029 127.0.0.1:49254 ESTABLISHED 12003/mongod +tcp 0 0 127.0.0.1:6677 127.0.0.1:47270 ESTABLISHED 10216/mongod +tcp 0 0 127.0.0.1:44860 127.0.0.1:37022 ESTABLISHED 40431/mongod +tcp 0 0 127.0.0.1:6677 127.0.0.1:56210 ESTABLISHED 10216/mongod +tcp 0 0 127.0.0.1:37026 127.0.0.1:47278 ESTABLISHED 6837/mongod +tcp 0 0 127.0.0.1:37021 127.0.0.1:36370 ESTABLISHED 40431/mongod +tcp 0 0 127.0.0.1:37025 127.0.0.1:54864 ESTABLISHED 1199/mongod +tcp 0 0 127.0.0.1:59736 127.0.0.1:31002 ESTABLISHED 47682/psmdb/percona +tcp 0 0 127.0.0.1:46246 127.0.0.1:37025 ESTABLISHED 8319/mongod +tcp 0 0 127.0.0.1:50498 127.0.0.1:31004 ESTABLISHED 308/psmdb/percona-s +tcp 0 0 127.0.0.1:6677 127.0.0.1:47156 ESTABLISHED 10216/mongod +tcp 0 0 127.0.0.1:51668 127.0.0.1:31003 ESTABLISHED 47245/psmdb/percona +tcp 0 0 127.0.0.1:52410 127.0.0.1:37028 ESTABLISHED 1199/mongod +tcp 0 0 127.0.0.1:53056 127.0.0.1:31003 ESTABLISHED 46462/psmdb/percona +tcp 0 0 127.0.0.1:37022 127.0.0.1:44858 ESTABLISHED 4445/mongod +tcp 0 0 127.0.0.1:37026 127.0.0.1:49830 ESTABLISHED 6837/mongod +tcp 0 0 127.0.0.1:37018 127.0.0.1:54446 ESTABLISHED 17411/mongod +tcp 0 0 127.0.0.1:54442 127.0.0.1:37018 ESTABLISHED 15726/mongod +tcp 0 0 127.0.0.1:45186 127.0.0.1:37022 ESTABLISHED 16014/mongod +tcp 0 0 127.0.0.1:45116 127.0.0.1:31007 ESTABLISHED 957/psmdb/percona-s +tcp 0 0 127.0.0.1:43494 127.0.0.1:37022 ESTABLISHED 8319/mongod +tcp 0 0 127.0.0.1:55744 127.0.0.1:37025 ESTABLISHED 4362/mongod +tcp 0 0 127.0.0.1:37021 127.0.0.1:37564 ESTABLISHED 40431/mongod +tcp 0 0 127.0.0.1:44864 127.0.0.1:37022 ESTABLISHED 16014/mongod +tcp 0 0 127.0.0.1:31003 127.0.0.1:52970 ESTABLISHED 47682/psmdb/percona +tcp 0 0 127.0.0.1:37023 127.0.0.1:51202 ESTABLISHED 16014/mongod +tcp 0 0 127.0.0.1:59360 127.0.0.1:6678 ESTABLISHED 15595/mongod +tcp 0 0 127.0.0.1:6679 127.0.0.1:32868 ESTABLISHED 15595/mongod +tcp 0 0 127.0.0.1:43814 127.0.0.1:31007 ESTABLISHED 47245/psmdb/percona +tcp 0 0 172.17.0.1:52848 172.17.0.3:80 TIME_WAIT - +tcp 0 0 127.0.0.1:37023 127.0.0.1:51192 ESTABLISHED 16014/mongod +tcp 0 0 127.0.0.1:55558 127.0.0.1:37018 ESTABLISHED 4362/mongod +tcp 0 0 127.0.0.1:54424 127.0.0.1:37018 ESTABLISHED 17411/mongod +tcp 0 0 127.0.0.1:57358 127.0.0.1:37018 ESTABLISHED 26684/mongos +tcp 0 0 127.0.0.1:50496 127.0.0.1:31004 ESTABLISHED 957/psmdb/percona-s +tcp 0 0 127.0.0.1:37028 127.0.0.1:44552 ESTABLISHED 8319/mongod +tcp 0 0 127.0.0.1:6677 127.0.0.1:56998 ESTABLISHED 10216/mongod +tcp 0 0 127.0.0.1:47186 127.0.0.1:42125 ESTABLISHED 34621/mysqld +tcp 0 0 127.0.0.1:6679 127.0.0.1:42016 ESTABLISHED 15595/mongod +tcp 0 0 127.0.0.1:37020 127.0.0.1:52466 ESTABLISHED 34024/mongod +tcp 0 0 127.0.0.1:48320 127.0.0.1:37026 ESTABLISHED 15726/mongod +tcp 0 0 127.0.0.1:37022 127.0.0.1:38430 ESTABLISHED 4445/mongod +tcp 0 0 127.0.0.1:37027 127.0.0.1:34566 ESTABLISHED 4362/mongod +tcp 0 0 127.0.0.1:60718 127.0.0.1:31002 ESTABLISHED 308/psmdb/percona-s +tcp 0 0 127.0.0.1:37021 127.0.0.1:36304 ESTABLISHED 40431/mongod +tcp 0 0 127.0.0.1:47162 127.0.0.1:6677 ESTABLISHED 13004/mongod +tcp 0 0 127.0.0.1:35076 127.0.0.1:31005 ESTABLISHED 957/psmdb/percona-s +tcp 0 0 127.0.0.1:31004 127.0.0.1:50496 ESTABLISHED 48915/psmdb/percona +tcp 0 0 127.0.0.1:31007 127.0.0.1:44266 ESTABLISHED 45946/psmdb/percona +tcp 0 0 127.0.0.1:44946 127.0.0.1:37024 ESTABLISHED 26684/mongos +tcp 0 0 127.0.0.1:56340 127.0.0.1:37018 ESTABLISHED 4445/mongod +tcp 0 0 127.0.0.1:31004 127.0.0.1:50770 ESTABLISHED 48915/psmdb/percona +tcp 0 0 127.0.0.1:52038 127.0.0.1:37028 ESTABLISHED 12003/mongod +tcp 0 0 127.0.0.1:47272 127.0.0.1:6677 ESTABLISHED 15595/mongod +tcp 0 0 127.0.0.1:37029 127.0.0.1:50342 ESTABLISHED 12003/mongod +tcp 0 0 127.0.0.1:37023 127.0.0.1:51214 ESTABLISHED 16014/mongod +tcp 0 0 10.10.8.141:10050 10.10.4.99:51646 TIME_WAIT - +tcp 0 0 127.0.0.1:2022 127.0.0.1:40556 ESTABLISHED 26510/mongod +tcp 0 0 10.10.8.141:10050 10.10.4.99:48916 TIME_WAIT - +tcp 0 0 10.10.8.141:22 186.48.240.119:59912 ESTABLISHED 16674/sshd: marcos. +tcp 0 0 127.0.0.1:41610 127.0.0.1:37029 ESTABLISHED 23412/mongod +tcp 0 0 127.0.0.1:37019 127.0.0.1:33384 ESTABLISHED 23412/mongod +tcp 0 0 10.10.8.141:10050 10.10.4.99:48586 TIME_WAIT - +tcp 0 0 10.10.8.141:10050 10.10.4.99:58766 TIME_WAIT - +tcp 0 0 127.0.0.1:56160 127.0.0.1:37018 ESTABLISHED 34024/mongod +tcp 0 0 127.0.0.1:32986 127.0.0.1:6679 ESTABLISHED 15595/mongod +tcp 0 0 127.0.0.1:31003 127.0.0.1:53030 ESTABLISHED 47682/psmdb/percona +tcp 0 0 127.0.0.1:37019 127.0.0.1:33734 ESTABLISHED 23412/mongod +tcp 0 0 127.0.0.1:37025 127.0.0.1:53894 ESTABLISHED 1199/mongod +tcp 0 0 127.0.0.1:37029 127.0.0.1:46728 ESTABLISHED 12003/mongod +tcp 0 0 127.0.0.1:53600 127.0.0.1:37025 ESTABLISHED 8319/mongod +tcp 0 0 10.10.8.141:22 49.206.39.19:16885 ESTABLISHED 18371/sshd: jobin.a +tcp 0 0 127.0.0.1:37029 127.0.0.1:36690 ESTABLISHED 12003/mongod +tcp 0 0 127.0.0.1:37019 127.0.0.1:33398 ESTABLISHED 23412/mongod +tcp 0 0 127.0.0.1:41294 127.0.0.1:37024 ESTABLISHED 6837/mongod +tcp 0 0 127.0.0.1:51712 127.0.0.1:31003 ESTABLISHED 46462/psmdb/percona +tcp 0 0 127.0.0.1:42994 127.0.0.1:31001 ESTABLISHED 48915/psmdb/percona +tcp 0 0 127.0.0.1:25151 127.0.0.1:46103 ESTABLISHED 25072/mysqld +tcp 0 0 127.0.0.1:53894 127.0.0.1:37025 ESTABLISHED 6837/mongod +tcp 0 0 127.0.0.1:34582 127.0.0.1:37027 ESTABLISHED 34024/mongod +tcp 0 0 127.0.0.1:37018 127.0.0.1:56160 ESTABLISHED 17411/mongod +tcp 0 0 127.0.0.1:34566 127.0.0.1:37027 ESTABLISHED 15726/mongod +tcp 0 0 127.0.0.1:47000 127.0.0.1:37026 ESTABLISHED 1199/mongod +tcp 0 0 127.0.0.1:38724 127.0.0.1:2023 ESTABLISHED 33264/mongod +tcp 0 0 127.0.0.1:42408 127.0.0.1:31001 ESTABLISHED 47682/psmdb/percona +tcp 0 0 10.10.8.141:54806 34.83.110.184:443 ESTABLISHED 2305/filebeat +tcp 0 0 127.0.0.1:49540 127.0.0.1:42001 ESTABLISHED 38838/vmagent +tcp 0 0 127.0.0.1:60198 127.0.0.1:37021 ESTABLISHED 12003/mongod +tcp 0 0 127.0.0.1:31006 127.0.0.1:50354 ESTABLISHED 957/psmdb/percona-s +tcp 0 0 127.0.0.1:31006 127.0.0.1:48294 ESTABLISHED 957/psmdb/percona-s +tcp 0 0 127.0.0.1:37019 127.0.0.1:55784 ESTABLISHED 23412/mongod +tcp 0 0 127.0.0.1:33844 127.0.0.1:37027 ESTABLISHED 23412/mongod +tcp 0 0 127.0.0.1:31002 127.0.0.1:59320 ESTABLISHED 47245/psmdb/percona +tcp 0 0 127.0.0.1:37029 127.0.0.1:47390 ESTABLISHED 12003/mongod +tcp 0 0 127.0.0.1:56210 127.0.0.1:6677 ESTABLISHED 13004/mongod +tcp 1 0 10.10.8.141:10050 10.10.4.99:58782 CLOSE_WAIT 4322/zabbix_agentd: +tcp 0 0 127.0.0.1:37029 127.0.0.1:50552 ESTABLISHED 12003/mongod +tcp 0 0 127.0.0.1:2023 127.0.0.1:57900 ESTABLISHED 30550/mongod +tcp 0 0 127.0.0.1:31007 127.0.0.1:43004 ESTABLISHED 45946/psmdb/percona +tcp 0 0 127.0.0.1:49830 127.0.0.1:37026 ESTABLISHED 16014/mongod +tcp 0 0 127.0.0.1:31005 127.0.0.1:35018 ESTABLISHED 308/psmdb/percona-s +tcp 0 0 127.0.0.1:37029 127.0.0.1:45362 ESTABLISHED 12003/mongod +tcp 0 0 127.0.0.1:31006 127.0.0.1:46374 ESTABLISHED 957/psmdb/percona-s +tcp 0 0 127.0.0.1:37020 127.0.0.1:52460 ESTABLISHED 34024/mongod +tcp 0 0 10.10.8.141:10050 10.10.4.99:51640 TIME_WAIT - +tcp 0 0 127.0.0.1:38530 127.0.0.1:2023 ESTABLISHED 26510/mongod +tcp 0 0 127.0.0.1:37023 127.0.0.1:45532 ESTABLISHED 16014/mongod +tcp 0 0 127.0.0.1:2022 127.0.0.1:59090 ESTABLISHED 26510/mongod +tcp 0 0 127.0.0.1:36882 127.0.0.1:42003 ESTABLISHED 38838/vmagent +tcp 0 0 127.0.0.1:44224 127.0.0.1:37022 ESTABLISHED 26684/mongos +tcp 0 0 127.0.0.1:41816 127.0.0.1:31001 ESTABLISHED 47245/psmdb/percona +tcp 0 0 127.0.0.1:37018 127.0.0.1:56178 ESTABLISHED 17411/mongod +tcp 0 0 127.0.0.1:59078 127.0.0.1:2022 ESTABLISHED 33264/mongod +tcp 0 0 127.0.0.1:37020 127.0.0.1:48752 ESTABLISHED 34024/mongod +tcp 0 0 127.0.0.1:51882 127.0.0.1:31003 ESTABLISHED 48915/psmdb/percona +tcp 0 0 127.0.0.1:56486 127.0.0.1:37027 ESTABLISHED 6837/mongod +tcp 0 0 127.0.0.1:33398 127.0.0.1:37019 ESTABLISHED 17411/mongod +tcp 0 0 127.0.0.1:37027 127.0.0.1:60844 ESTABLISHED 4362/mongod +tcp 0 0 127.0.0.1:45362 127.0.0.1:37029 ESTABLISHED 4362/mongod +tcp 0 0 127.0.0.1:37027 127.0.0.1:36642 ESTABLISHED 4362/mongod +tcp 0 0 127.0.0.1:37026 127.0.0.1:46968 ESTABLISHED 6837/mongod +tcp 0 0 127.0.0.1:46374 127.0.0.1:31006 ESTABLISHED 48915/psmdb/percona +tcp 0 0 127.0.0.1:31004 127.0.0.1:50548 ESTABLISHED 48915/psmdb/percona +tcp 0 0 127.0.0.1:36286 127.0.0.1:37021 ESTABLISHED 6837/mongod +tcp 0 0 127.0.0.1:6679 127.0.0.1:32976 ESTABLISHED 15595/mongod +tcp 0 0 127.0.0.1:2022 127.0.0.1:59086 ESTABLISHED 26510/mongod +tcp 0 0 127.0.0.1:37022 127.0.0.1:44862 ESTABLISHED 4445/mongod +tcp 0 0 127.0.0.1:39922 127.0.0.1:42003 ESTABLISHED 38838/vmagent +tcp 0 0 127.0.0.1:37022 127.0.0.1:43492 ESTABLISHED 4445/mongod +tcp 0 0 10.10.8.141:10050 10.10.4.99:58762 TIME_WAIT - +tcp 0 0 127.0.0.1:31002 127.0.0.1:60718 ESTABLISHED 47245/psmdb/percona +tcp 0 0 127.0.0.1:52788 127.0.0.1:37028 ESTABLISHED 6837/mongod +tcp 0 0 127.0.0.1:31006 127.0.0.1:46366 ESTABLISHED 957/psmdb/percona-s +tcp 0 0 127.0.0.1:37027 127.0.0.1:36182 ESTABLISHED 4362/mongod +tcp 0 0 127.0.0.1:37018 127.0.0.1:50636 ESTABLISHED 17411/mongod +tcp 0 0 127.0.0.1:36620 127.0.0.1:37021 ESTABLISHED 4445/mongod +tcp 0 0 127.0.0.1:55752 127.0.0.1:31007 ESTABLISHED 47245/psmdb/percona +tcp 0 0 127.0.0.1:48752 127.0.0.1:37020 ESTABLISHED 12003/mongod +tcp 0 0 127.0.0.1:56000 127.0.0.1:37028 ESTABLISHED 16014/mongod +tcp 0 0 127.0.0.1:37025 127.0.0.1:53588 ESTABLISHED 1199/mongod +tcp 0 0 127.0.0.1:57932 127.0.0.1:2023 ESTABLISHED 33264/mongod +tcp 0 0 127.0.0.1:43910 127.0.0.1:31007 ESTABLISHED 45946/psmdb/percona +tcp 0 0 127.0.0.1:44164 127.0.0.1:31001 ESTABLISHED 1453/psmdb/percona- +tcp 0 0 127.0.0.1:31007 127.0.0.1:44992 ESTABLISHED 45946/psmdb/percona +tcp 0 0 127.0.0.1:36292 127.0.0.1:37021 ESTABLISHED 17411/mongod +tcp 0 0 127.0.0.1:37020 127.0.0.1:52474 ESTABLISHED 34024/mongod +tcp 0 0 127.0.0.1:33808 127.0.0.1:37019 ESTABLISHED 34024/mongod +tcp 0 0 127.0.0.1:44266 127.0.0.1:31007 ESTABLISHED 47682/psmdb/percona +tcp 0 0 127.0.0.1:49861 127.0.0.1:23128 ESTABLISHED 40649/mysqld +tcp 0 0 127.0.0.1:6677 127.0.0.1:56348 ESTABLISHED 10216/mongod +tcp 0 0 10.10.8.141:10050 10.10.4.99:49806 TIME_WAIT - +tcp 0 0 127.0.0.1:59738 127.0.0.1:42124 ESTABLISHED 40417/mysqld +tcp 0 0 127.0.0.1:52438 127.0.0.1:37020 ESTABLISHED 23412/mongod +tcp 0 0 127.0.0.1:37027 127.0.0.1:42104 ESTABLISHED 4362/mongod +tcp 0 0 127.0.0.1:52524 127.0.0.1:37029 ESTABLISHED 40431/mongod +tcp 0 0 127.0.0.1:53422 127.0.0.1:37028 ESTABLISHED 17411/mongod +tcp 0 0 127.0.0.1:46116 127.0.0.1:37029 ESTABLISHED 6837/mongod +tcp 0 0 127.0.0.1:37026 127.0.0.1:48238 ESTABLISHED 6837/mongod +tcp 0 0 127.0.0.1:42264 127.0.0.1:37024 ESTABLISHED 23412/mongod +tcp 0 0 127.0.0.1:42016 127.0.0.1:6679 ESTABLISHED 13004/mongod +tcp 0 0 127.0.0.1:37023 127.0.0.1:51290 ESTABLISHED 16014/mongod +tcp 0 0 127.0.0.1:41288 127.0.0.1:37029 ESTABLISHED 16014/mongod +tcp 0 0 127.0.0.1:37026 127.0.0.1:47004 ESTABLISHED 6837/mongod +tcp 0 0 127.0.0.1:31004 127.0.0.1:50498 ESTABLISHED 48915/psmdb/percona +tcp 0 0 127.0.0.1:37019 127.0.0.1:33808 ESTABLISHED 23412/mongod +tcp 0 0 127.0.0.1:51204 127.0.0.1:37023 ESTABLISHED 8319/mongod +tcp 0 0 127.0.0.1:39120 127.0.0.1:31005 ESTABLISHED 47245/psmdb/percona +tcp 0 0 10.10.8.141:22 186.48.240.119:59945 ESTABLISHED 22678/sshd: marcos. +tcp 0 0 127.0.0.1:2023 127.0.0.1:57910 ESTABLISHED 30550/mongod +tcp 0 0 127.0.0.1:31003 127.0.0.1:51668 ESTABLISHED 47682/psmdb/percona +tcp 0 0 127.0.0.1:53210 127.0.0.1:31004 ESTABLISHED 47682/psmdb/percona +tcp 0 0 127.0.0.1:37020 127.0.0.1:52610 ESTABLISHED 34024/mongod +tcp 0 0 127.0.0.1:31004 127.0.0.1:47982 ESTABLISHED 48915/psmdb/percona +tcp 0 0 127.0.0.1:31007 127.0.0.1:46140 ESTABLISHED 45946/psmdb/percona +tcp 0 0 127.0.0.1:37027 127.0.0.1:37270 ESTABLISHED 4362/mongod +tcp 0 0 127.0.0.1:37023 127.0.0.1:51204 ESTABLISHED 16014/mongod +tcp 0 0 127.0.0.1:31003 127.0.0.1:51882 ESTABLISHED 47682/psmdb/percona +tcp 0 0 127.0.0.1:31005 127.0.0.1:34640 ESTABLISHED 308/psmdb/percona-s +tcp 0 0 127.0.0.1:37024 127.0.0.1:40974 ESTABLISHED 15726/mongod +tcp 0 0 127.0.0.1:6677 127.0.0.1:56212 ESTABLISHED 10216/mongod +tcp 0 0 10.10.8.141:10050 10.10.4.99:50772 TIME_WAIT - +tcp 0 0 127.0.0.1:37023 127.0.0.1:51964 ESTABLISHED 16014/mongod +tcp 0 0 127.0.0.1:31006 127.0.0.1:50730 ESTABLISHED 957/psmdb/percona-s +tcp 0 0 127.0.0.1:31007 127.0.0.1:43910 ESTABLISHED 45946/psmdb/percona +tcp 0 0 127.0.0.1:2024 127.0.0.1:47508 ESTABLISHED 33264/mongod +tcp 0 0 127.0.0.1:37024 127.0.0.1:40944 ESTABLISHED 15726/mongod +tcp 0 0 10.10.8.141:10050 10.10.4.99:58776 TIME_WAIT - +tcp 0 0 127.0.0.1:37021 127.0.0.1:36298 ESTABLISHED 40431/mongod +tcp 0 0 127.0.0.1:39104 127.0.0.1:37026 ESTABLISHED 12003/mongod +tcp 0 0 127.0.0.1:54988 127.0.0.1:37018 ESTABLISHED 23412/mongod +tcp 0 0 127.0.0.1:59262 127.0.0.1:6678 ESTABLISHED 13004/mongod +tcp 0 0 127.0.0.1:52082 127.0.0.1:37028 ESTABLISHED 4362/mongod +tcp 0 0 127.0.0.1:33778 127.0.0.1:37024 ESTABLISHED 12003/mongod +tcp 0 0 127.0.0.1:55980 127.0.0.1:37028 ESTABLISHED 16014/mongod +tcp 0 0 127.0.0.1:31007 127.0.0.1:43920 ESTABLISHED 45946/psmdb/percona +tcp 0 0 127.0.0.1:37018 127.0.0.1:55410 ESTABLISHED 17411/mongod +tcp 0 0 127.0.0.1:48590 127.0.0.1:37026 ESTABLISHED 40431/mongod +tcp 0 0 127.0.0.1:36370 127.0.0.1:37021 ESTABLISHED 34024/mongod +tcp 0 0 127.0.0.1:46960 127.0.0.1:37026 ESTABLISHED 6837/mongod +tcp 0 0 127.0.0.1:2022 127.0.0.1:59066 ESTABLISHED 26510/mongod +tcp 0 0 127.0.0.1:51222 127.0.0.1:37023 ESTABLISHED 1199/mongod +tcp 0 0 127.0.0.1:54336 127.0.0.1:37027 ESTABLISHED 34024/mongod +tcp 0 0 127.0.0.1:51244 127.0.0.1:37028 ESTABLISHED 4362/mongod +tcp 0 0 127.0.0.1:36002 127.0.0.1:37029 ESTABLISHED 15726/mongod +tcp 0 0 127.0.0.1:54678 127.0.0.1:37018 ESTABLISHED 23412/mongod +tcp 0 0 127.0.0.1:46508 127.0.0.1:37028 ESTABLISHED 12003/mongod +tcp 0 0 127.0.0.1:37018 127.0.0.1:40024 ESTABLISHED 17411/mongod +tcp 0 0 127.0.0.1:37029 127.0.0.1:52524 ESTABLISHED 12003/mongod +tcp 0 0 127.0.0.1:38434 127.0.0.1:31005 ESTABLISHED 46462/psmdb/percona +tcp 0 0 127.0.0.1:34610 127.0.0.1:31005 ESTABLISHED 308/psmdb/percona-s +tcp 0 0 127.0.0.1:57346 127.0.0.1:37029 ESTABLISHED 34024/mongod +tcp 0 0 127.0.0.1:37029 127.0.0.1:41610 ESTABLISHED 12003/mongod +tcp6 0 0 :::35023 :::* LISTEN 4242/mysqld +tcp6 0 0 :::57007 :::* LISTEN 28054/mysqld +tcp6 0 0 :::111 :::* LISTEN 3368/rpcbind +tcp6 0 0 :::35024 :::* LISTEN 25072/mysqld +tcp6 0 0 :::80 :::* LISTEN 6523/docker-proxy +tcp6 0 0 :::35025 :::* LISTEN 43355/mysqld +tcp6 0 0 :::28145 :::* LISTEN 32035/mysqld +tcp6 0 0 :::28146 :::* LISTEN 32760/mysqld +tcp6 0 0 :::28147 :::* LISTEN 33495/mysqld +tcp6 0 0 :::42003 :::* LISTEN 38812/mysqld_export +tcp6 0 0 fd42:923c:651f:6840::53 :::* LISTEN 43617/dnsmasq +tcp6 0 0 fe80::216:3eff:fec9::53 :::* LISTEN 43617/dnsmasq +tcp6 0 0 :::22 :::* LISTEN 4081/sshd +tcp6 0 0 ::1:631 :::* LISTEN 4041/cupsd +tcp6 0 0 :::3000 :::* LISTEN 313/grafana-server +tcp6 0 0 :::8123 :::* LISTEN 34941/docker-proxy +tcp6 0 0 :::443 :::* LISTEN 6342/docker-proxy +tcp6 0 0 :::10050 :::* LISTEN 4086/zabbix_agentd +tcp6 0 0 :::33060 :::* LISTEN 4912/mysqld +tcp6 0 0 :::9256 :::* LISTEN 3370/process-export +tcp6 0 0 :::3306 :::* LISTEN 4912/mysqld +tcp6 0 0 :::49163 :::* LISTEN 42287/docker-proxy +tcp6 0 0 :::18028 :::* LISTEN 16683/mysqld +tcp6 0 0 :::44045 :::* LISTEN 30552/mysqld +tcp6 0 0 :::18029 :::* LISTEN 30603/mysqld +tcp6 0 0 127.0.0.1:42003 127.0.0.1:39922 ESTABLISHED 38812/mysqld_export +tcp6 0 0 127.0.0.1:42003 127.0.0.1:36662 ESTABLISHED 38812/mysqld_export +tcp6 0 0 127.0.0.1:42003 127.0.0.1:36882 ESTABLISHED 38812/mysqld_export diff --git a/t/pt-summary/samples/Linux/007/network_devices b/t/pt-summary/samples/Linux/007/network_devices new file mode 100644 index 00000000..b8d4341f --- /dev/null +++ b/t/pt-summary/samples/Linux/007/network_devices @@ -0,0 +1,289 @@ +Settings for bond0: + Supported ports: [ ] + Supported link modes: Not reported + Supported pause frame use: No + Supports auto-negotiation: No + Supported FEC modes: Not reported + Advertised link modes: Not reported + Advertised pause frame use: No + Advertised auto-negotiation: No + Advertised FEC modes: Not reported + Speed: 1000Mb/s + Duplex: Full + Port: Other + PHYAD: 0 + Transceiver: internal + Auto-negotiation: off + Link detected: yes +Settings for br-294661236c88: + Link detected: no +Settings for br-5f8d81e2374e: + Link detected: no +Settings for docker0: + Link detected: yes +Settings for em1: + Supported ports: [ TP ] + Supported link modes: 10baseT/Half 10baseT/Full + 100baseT/Half 100baseT/Full + 1000baseT/Half 1000baseT/Full + Supported pause frame use: No + Supports auto-negotiation: Yes + Supported FEC modes: Not reported + Advertised link modes: 10baseT/Half 10baseT/Full + 100baseT/Half 100baseT/Full + 1000baseT/Half 1000baseT/Full + Advertised pause frame use: Symmetric + Advertised auto-negotiation: Yes + Advertised FEC modes: Not reported + Link partner advertised link modes: 100baseT/Full + 1000baseT/Full + Link partner advertised pause frame use: Symmetric Receive-only + Link partner advertised auto-negotiation: Yes + Link partner advertised FEC modes: Not reported + Speed: 1000Mb/s + Duplex: Full + Port: Twisted Pair + PHYAD: 1 + Transceiver: internal + Auto-negotiation: on + MDI-X: on + Supports Wake-on: g + Wake-on: d + Current message level: 0x000000ff (255) + drv probe link timer ifdown ifup rx_err tx_err + Link detected: yes +Settings for em2: + Supported ports: [ TP ] + Supported link modes: 10baseT/Half 10baseT/Full + 100baseT/Half 100baseT/Full + 1000baseT/Half 1000baseT/Full + Supported pause frame use: No + Supports auto-negotiation: Yes + Supported FEC modes: Not reported + Advertised link modes: 10baseT/Half 10baseT/Full + 100baseT/Half 100baseT/Full + 1000baseT/Half 1000baseT/Full + Advertised pause frame use: Symmetric + Advertised auto-negotiation: Yes + Advertised FEC modes: Not reported + Link partner advertised link modes: 100baseT/Full + 1000baseT/Full + Link partner advertised pause frame use: Symmetric Receive-only + Link partner advertised auto-negotiation: Yes + Link partner advertised FEC modes: Not reported + Speed: 1000Mb/s + Duplex: Full + Port: Twisted Pair + PHYAD: 2 + Transceiver: internal + Auto-negotiation: on + MDI-X: off + Supports Wake-on: g + Wake-on: d + Current message level: 0x000000ff (255) + drv probe link timer ifdown ifup rx_err tx_err + Link detected: yes +Settings for lxdbr0: + Link detected: yes +Settings for vboxnet0: + Supported ports: [ ] + Supported link modes: Not reported + Supported pause frame use: No + Supports auto-negotiation: No + Supported FEC modes: Not reported + Advertised link modes: Not reported + Advertised pause frame use: No + Advertised auto-negotiation: No + Advertised FEC modes: Not reported + Speed: 10Mb/s + Duplex: Full + Port: Twisted Pair + PHYAD: 0 + Transceiver: internal + Auto-negotiation: off + MDI-X: Unknown + Link detected: no +Settings for vboxnet12: + Supported ports: [ ] + Supported link modes: Not reported + Supported pause frame use: No + Supports auto-negotiation: No + Supported FEC modes: Not reported + Advertised link modes: Not reported + Advertised pause frame use: No + Advertised auto-negotiation: No + Advertised FEC modes: Not reported + Speed: 10Mb/s + Duplex: Full + Port: Twisted Pair + PHYAD: 0 + Transceiver: internal + Auto-negotiation: off + MDI-X: Unknown + Link detected: no +Settings for vboxnet18: + Supported ports: [ ] + Supported link modes: Not reported + Supported pause frame use: No + Supports auto-negotiation: No + Supported FEC modes: Not reported + Advertised link modes: Not reported + Advertised pause frame use: No + Advertised auto-negotiation: No + Advertised FEC modes: Not reported + Speed: 10Mb/s + Duplex: Full + Port: Twisted Pair + PHYAD: 0 + Transceiver: internal + Auto-negotiation: off + MDI-X: Unknown + Link detected: no +Settings for vboxnet19: + Supported ports: [ ] + Supported link modes: Not reported + Supported pause frame use: No + Supports auto-negotiation: No + Supported FEC modes: Not reported + Advertised link modes: Not reported + Advertised pause frame use: No + Advertised auto-negotiation: No + Advertised FEC modes: Not reported + Speed: 10Mb/s + Duplex: Full + Port: Twisted Pair + PHYAD: 0 + Transceiver: internal + Auto-negotiation: off + MDI-X: Unknown + Link detected: no +Settings for vboxnet20: + Supported ports: [ ] + Supported link modes: Not reported + Supported pause frame use: No + Supports auto-negotiation: No + Supported FEC modes: Not reported + Advertised link modes: Not reported + Advertised pause frame use: No + Advertised auto-negotiation: No + Advertised FEC modes: Not reported + Speed: 10Mb/s + Duplex: Full + Port: Twisted Pair + PHYAD: 0 + Transceiver: internal + Auto-negotiation: off + MDI-X: Unknown + Link detected: no +Settings for vboxnet21: + Supported ports: [ ] + Supported link modes: Not reported + Supported pause frame use: No + Supports auto-negotiation: No + Supported FEC modes: Not reported + Advertised link modes: Not reported + Advertised pause frame use: No + Advertised auto-negotiation: No + Advertised FEC modes: Not reported + Speed: 10Mb/s + Duplex: Full + Port: Twisted Pair + PHYAD: 0 + Transceiver: internal + Auto-negotiation: off + MDI-X: Unknown + Link detected: no +Settings for vboxnet24: + Supported ports: [ ] + Supported link modes: Not reported + Supported pause frame use: No + Supports auto-negotiation: No + Supported FEC modes: Not reported + Advertised link modes: Not reported + Advertised pause frame use: No + Advertised auto-negotiation: No + Advertised FEC modes: Not reported + Speed: 10Mb/s + Duplex: Full + Port: Twisted Pair + PHYAD: 0 + Transceiver: internal + Auto-negotiation: off + MDI-X: Unknown + Link detected: no +Settings for vboxnet25: + Supported ports: [ ] + Supported link modes: Not reported + Supported pause frame use: No + Supports auto-negotiation: No + Supported FEC modes: Not reported + Advertised link modes: Not reported + Advertised pause frame use: No + Advertised auto-negotiation: No + Advertised FEC modes: Not reported + Speed: 10Mb/s + Duplex: Full + Port: Twisted Pair + PHYAD: 0 + Transceiver: internal + Auto-negotiation: off + MDI-X: Unknown + Link detected: no +Settings for vboxnet3: + Supported ports: [ ] + Supported link modes: Not reported + Supported pause frame use: No + Supports auto-negotiation: No + Supported FEC modes: Not reported + Advertised link modes: Not reported + Advertised pause frame use: No + Advertised auto-negotiation: No + Advertised FEC modes: Not reported + Speed: 10Mb/s + Duplex: Full + Port: Twisted Pair + PHYAD: 0 + Transceiver: internal + Auto-negotiation: off + MDI-X: Unknown + Link detected: no +Settings for vboxnet4: + Supported ports: [ ] + Supported link modes: Not reported + Supported pause frame use: No + Supports auto-negotiation: No + Supported FEC modes: Not reported + Advertised link modes: Not reported + Advertised pause frame use: No + Advertised auto-negotiation: No + Advertised FEC modes: Not reported + Speed: 10Mb/s + Duplex: Full + Port: Twisted Pair + PHYAD: 0 + Transceiver: internal + Auto-negotiation: off + MDI-X: Unknown + Link detected: no +Settings for virbr0: + Link detected: no +Settings for virbr0-nic: + Supported ports: [ ] + Supported link modes: Not reported + Supported pause frame use: No + Supports auto-negotiation: No + Supported FEC modes: Not reported + Advertised link modes: Not reported + Advertised pause frame use: No + Advertised auto-negotiation: No + Advertised FEC modes: Not reported + Speed: 10Mb/s + Duplex: Full + Port: Twisted Pair + PHYAD: 0 + Transceiver: internal + Auto-negotiation: off + MDI-X: Unknown + Current message level: 0xffffffa1 (-95) + drv ifup tx_err tx_queued intr tx_done rx_status pktdata hw wol 0xffff8000 + Link detected: no diff --git a/t/pt-summary/samples/Linux/007/notable_procs b/t/pt-summary/samples/Linux/007/notable_procs new file mode 100644 index 00000000..4fe27972 --- /dev/null +++ b/t/pt-summary/samples/Linux/007/notable_procs @@ -0,0 +1,6 @@ + PID OOM COMMAND + 2061 +0 sshd +42899 -17 sshd +44001 -17 sshd +44034 -17 sshd +48761 -17 sshd diff --git a/t/pt-summary/samples/Linux/007/numactl b/t/pt-summary/samples/Linux/007/numactl new file mode 100644 index 00000000..ba86d787 --- /dev/null +++ b/t/pt-summary/samples/Linux/007/numactl @@ -0,0 +1,17 @@ +available: 2 nodes (0-1) +node 0 cpus: 0 2 4 6 8 10 12 14 16 18 20 22 +node 0 size: 96614 MB +node 0 free: 53769 MB +node 1 cpus: 1 3 5 7 9 11 13 15 17 19 21 23 +node 1 size: 96762 MB +node 1 free: 20083 MB +node distances: +node 0 1 + 0: 10 20 + 1: 20 10 +policy: default +preferred node: current +physcpubind: 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 +cpubind: 0 1 +nodebind: 0 1 +membind: 0 1 diff --git a/t/pt-summary/samples/Linux/007/partitioning b/t/pt-summary/samples/Linux/007/partitioning new file mode 100644 index 00000000..0b553f35 --- /dev/null +++ b/t/pt-summary/samples/Linux/007/partitioning @@ -0,0 +1,98 @@ + +Disk /dev/dm-0: 3032.2 GB, 3032246910976 bytes, 5922357248 sectors +Units = sectors of 1 * 512 = 512 bytes +Sector size (logical/physical): 512 bytes / 512 bytes +I/O size (minimum/optimal): 512 bytes / 512 bytes + + +Disk /dev/dm-1: 37.6 GB, 37580963840 bytes, 73400320 sectors +Units = sectors of 1 * 512 = 512 bytes +Sector size (logical/physical): 512 bytes / 512 bytes +I/O size (minimum/optimal): 512 bytes / 512 bytes + + +Disk /dev/dm-2: 10.7 GB, 10737418240 bytes, 20971520 sectors +Units = sectors of 1 * 512 = 512 bytes +Sector size (logical/physical): 512 bytes / 512 bytes +I/O size (minimum/optimal): 512 bytes / 512 bytes + + +Disk /dev/dm-3: 107.4 GB, 107374182400 bytes, 209715200 sectors +Units = sectors of 1 * 512 = 512 bytes +Sector size (logical/physical): 512 bytes / 512 bytes +I/O size (minimum/optimal): 512 bytes / 512 bytes + + +Disk /dev/dm-4: 107.4 GB, 107374182400 bytes, 209715200 sectors +Units = sectors of 1 * 512 = 512 bytes +Sector size (logical/physical): 512 bytes / 512 bytes +I/O size (minimum/optimal): 512 bytes / 512 bytes + + +Disk /dev/dm-5: 6000.1 GB, 6000065118208 bytes, 11718877184 sectors +Units = sectors of 1 * 512 = 512 bytes +Sector size (logical/physical): 512 bytes / 512 bytes +I/O size (minimum/optimal): 512 bytes / 512 bytes + + +Disk /dev/dm-6: 107.4 GB, 107372085248 bytes, 209711104 sectors +Units = sectors of 1 * 512 = 512 bytes +Sector size (logical/physical): 512 bytes / 512 bytes +I/O size (minimum/optimal): 512 bytes / 512 bytes + + +Disk /dev/dm-7: 3032.2 GB, 3032244813824 bytes, 5922353152 sectors +Units = sectors of 1 * 512 = 512 bytes +Sector size (logical/physical): 512 bytes / 512 bytes +I/O size (minimum/optimal): 512 bytes / 512 bytes + + +Disk /dev/nvme0n1: 400.1 GB, 400088457216 bytes, 781422768 sectors +Units = sectors of 1 * 512 = 512 bytes +Sector size (logical/physical): 512 bytes / 512 bytes +I/O size (minimum/optimal): 512 bytes / 512 bytes + + +Disk /dev/nvme1n1: 400.1 GB, 400088457216 bytes, 781422768 sectors +Units = sectors of 1 * 512 = 512 bytes +Sector size (logical/physical): 512 bytes / 512 bytes +I/O size (minimum/optimal): 512 bytes / 512 bytes + + +Disk /dev/sda: 499.6 GB, 499558383616 bytes, 975699968 sectors +Units = sectors of 1 * 512 = 512 bytes +Sector size (logical/physical): 512 bytes / 512 bytes +I/O size (minimum/optimal): 512 bytes / 512 bytes +Disk label type: gpt +Disk identifier: 28DFB3B2-EBDC-4E03-A51F-71850B1FE388 + + +# Start End Size Type Name + 1 2048 391167 190M EFI System EFI System Partition + 2 391168 2488319 1G Microsoft basic + 3 2488320 317061119 150G Microsoft basic + 4 317061120 325449727 4G Linux swap + 5 325449728 975697919 310.1G Microsoft basic + +Disk /dev/sdb: 3999.7 GB, 3999688294400 bytes, 7811891200 sectors +Units = sectors of 1 * 512 = 512 bytes +Sector size (logical/physical): 512 bytes / 512 bytes +I/O size (minimum/optimal): 512 bytes / 512 bytes +Disk label type: gpt +Disk identifier: 19C86533-0E7A-384A-9ED9-C67C8F8A5CAB + + +# Start End Size Type Name + 1 2048 195311615 93.1G Microsoft basic + 2 195311616 7811889151 3.6T Linux LVM + +Disk /dev/sdc: 6000.1 GB, 6000069312512 bytes, 11718885376 sectors +Units = sectors of 1 * 512 = 512 bytes +Sector size (logical/physical): 512 bytes / 512 bytes +I/O size (minimum/optimal): 512 bytes / 512 bytes +Disk label type: gpt +Disk identifier: D74F6077-C26D-4331-A5A9-81F5B8983794 + + +# Start End Size Type Name + 1 2048 11718883327 5.5T Linux filesyste primary diff --git a/t/pt-summary/samples/Linux/007/proc_cpuinfo_copy b/t/pt-summary/samples/Linux/007/proc_cpuinfo_copy new file mode 100644 index 00000000..a92deb8a --- /dev/null +++ b/t/pt-summary/samples/Linux/007/proc_cpuinfo_copy @@ -0,0 +1,648 @@ +processor : 0 +vendor_id : GenuineIntel +cpu family : 6 +model : 45 +model name : Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz +stepping : 7 +microcode : 0x71a +cpu MHz : 2389.942 +cache size : 15360 KB +physical id : 0 +siblings : 12 +core id : 0 +cpu cores : 6 +apicid : 0 +initial apicid : 0 +fpu : yes +fpu_exception : yes +cpuid level : 13 +wp : yes +flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm pti tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts +bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds +bogomips : 4399.90 +clflush size : 64 +cache_alignment : 64 +address sizes : 46 bits physical, 48 bits virtual +power management: + +processor : 1 +vendor_id : GenuineIntel +cpu family : 6 +model : 45 +model name : Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz +stepping : 7 +microcode : 0x71a +cpu MHz : 1780.690 +cache size : 15360 KB +physical id : 1 +siblings : 12 +core id : 0 +cpu cores : 6 +apicid : 32 +initial apicid : 32 +fpu : yes +fpu_exception : yes +cpuid level : 13 +wp : yes +flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm pti tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts +bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds +bogomips : 4443.72 +clflush size : 64 +cache_alignment : 64 +address sizes : 46 bits physical, 48 bits virtual +power management: + +processor : 2 +vendor_id : GenuineIntel +cpu family : 6 +model : 45 +model name : Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz +stepping : 7 +microcode : 0x71a +cpu MHz : 2345.087 +cache size : 15360 KB +physical id : 0 +siblings : 12 +core id : 1 +cpu cores : 6 +apicid : 2 +initial apicid : 2 +fpu : yes +fpu_exception : yes +cpuid level : 13 +wp : yes +flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm pti tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts +bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds +bogomips : 4399.90 +clflush size : 64 +cache_alignment : 64 +address sizes : 46 bits physical, 48 bits virtual +power management: + +processor : 3 +vendor_id : GenuineIntel +cpu family : 6 +model : 45 +model name : Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz +stepping : 7 +microcode : 0x71a +cpu MHz : 1604.659 +cache size : 15360 KB +physical id : 1 +siblings : 12 +core id : 1 +cpu cores : 6 +apicid : 34 +initial apicid : 34 +fpu : yes +fpu_exception : yes +cpuid level : 13 +wp : yes +flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm pti tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts +bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds +bogomips : 4443.72 +clflush size : 64 +cache_alignment : 64 +address sizes : 46 bits physical, 48 bits virtual +power management: + +processor : 4 +vendor_id : GenuineIntel +cpu family : 6 +model : 45 +model name : Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz +stepping : 7 +microcode : 0x71a +cpu MHz : 2385.594 +cache size : 15360 KB +physical id : 0 +siblings : 12 +core id : 2 +cpu cores : 6 +apicid : 4 +initial apicid : 4 +fpu : yes +fpu_exception : yes +cpuid level : 13 +wp : yes +flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm pti tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts +bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds +bogomips : 4399.90 +clflush size : 64 +cache_alignment : 64 +address sizes : 46 bits physical, 48 bits virtual +power management: + +processor : 5 +vendor_id : GenuineIntel +cpu family : 6 +model : 45 +model name : Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz +stepping : 7 +microcode : 0x71a +cpu MHz : 1620.505 +cache size : 15360 KB +physical id : 1 +siblings : 12 +core id : 2 +cpu cores : 6 +apicid : 36 +initial apicid : 36 +fpu : yes +fpu_exception : yes +cpuid level : 13 +wp : yes +flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm pti tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts +bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds +bogomips : 4443.72 +clflush size : 64 +cache_alignment : 64 +address sizes : 46 bits physical, 48 bits virtual +power management: + +processor : 6 +vendor_id : GenuineIntel +cpu family : 6 +model : 45 +model name : Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz +stepping : 7 +microcode : 0x71a +cpu MHz : 2307.331 +cache size : 15360 KB +physical id : 0 +siblings : 12 +core id : 3 +cpu cores : 6 +apicid : 6 +initial apicid : 6 +fpu : yes +fpu_exception : yes +cpuid level : 13 +wp : yes +flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm pti tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts +bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds +bogomips : 4399.90 +clflush size : 64 +cache_alignment : 64 +address sizes : 46 bits physical, 48 bits virtual +power management: + +processor : 7 +vendor_id : GenuineIntel +cpu family : 6 +model : 45 +model name : Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz +stepping : 7 +microcode : 0x71a +cpu MHz : 1456.632 +cache size : 15360 KB +physical id : 1 +siblings : 12 +core id : 3 +cpu cores : 6 +apicid : 38 +initial apicid : 38 +fpu : yes +fpu_exception : yes +cpuid level : 13 +wp : yes +flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm pti tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts +bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds +bogomips : 4443.72 +clflush size : 64 +cache_alignment : 64 +address sizes : 46 bits physical, 48 bits virtual +power management: + +processor : 8 +vendor_id : GenuineIntel +cpu family : 6 +model : 45 +model name : Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz +stepping : 7 +microcode : 0x71a +cpu MHz : 2211.704 +cache size : 15360 KB +physical id : 0 +siblings : 12 +core id : 4 +cpu cores : 6 +apicid : 8 +initial apicid : 8 +fpu : yes +fpu_exception : yes +cpuid level : 13 +wp : yes +flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm pti tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts +bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds +bogomips : 4399.90 +clflush size : 64 +cache_alignment : 64 +address sizes : 46 bits physical, 48 bits virtual +power management: + +processor : 9 +vendor_id : GenuineIntel +cpu family : 6 +model : 45 +model name : Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz +stepping : 7 +microcode : 0x71a +cpu MHz : 1649.961 +cache size : 15360 KB +physical id : 1 +siblings : 12 +core id : 4 +cpu cores : 6 +apicid : 40 +initial apicid : 40 +fpu : yes +fpu_exception : yes +cpuid level : 13 +wp : yes +flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm pti tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts +bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds +bogomips : 4443.72 +clflush size : 64 +cache_alignment : 64 +address sizes : 46 bits physical, 48 bits virtual +power management: + +processor : 10 +vendor_id : GenuineIntel +cpu family : 6 +model : 45 +model name : Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz +stepping : 7 +microcode : 0x71a +cpu MHz : 2265.713 +cache size : 15360 KB +physical id : 0 +siblings : 12 +core id : 5 +cpu cores : 6 +apicid : 10 +initial apicid : 10 +fpu : yes +fpu_exception : yes +cpuid level : 13 +wp : yes +flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm pti tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts +bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds +bogomips : 4399.90 +clflush size : 64 +cache_alignment : 64 +address sizes : 46 bits physical, 48 bits virtual +power management: + +processor : 11 +vendor_id : GenuineIntel +cpu family : 6 +model : 45 +model name : Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz +stepping : 7 +microcode : 0x71a +cpu MHz : 1544.334 +cache size : 15360 KB +physical id : 1 +siblings : 12 +core id : 5 +cpu cores : 6 +apicid : 42 +initial apicid : 42 +fpu : yes +fpu_exception : yes +cpuid level : 13 +wp : yes +flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm pti tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts +bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds +bogomips : 4443.72 +clflush size : 64 +cache_alignment : 64 +address sizes : 46 bits physical, 48 bits virtual +power management: + +processor : 12 +vendor_id : GenuineIntel +cpu family : 6 +model : 45 +model name : Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz +stepping : 7 +microcode : 0x71a +cpu MHz : 2194.581 +cache size : 15360 KB +physical id : 0 +siblings : 12 +core id : 0 +cpu cores : 6 +apicid : 1 +initial apicid : 1 +fpu : yes +fpu_exception : yes +cpuid level : 13 +wp : yes +flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm pti tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts +bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds +bogomips : 4399.90 +clflush size : 64 +cache_alignment : 64 +address sizes : 46 bits physical, 48 bits virtual +power management: + +processor : 13 +vendor_id : GenuineIntel +cpu family : 6 +model : 45 +model name : Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz +stepping : 7 +microcode : 0x71a +cpu MHz : 1525.616 +cache size : 15360 KB +physical id : 1 +siblings : 12 +core id : 0 +cpu cores : 6 +apicid : 33 +initial apicid : 33 +fpu : yes +fpu_exception : yes +cpuid level : 13 +wp : yes +flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm pti tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts +bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds +bogomips : 4443.72 +clflush size : 64 +cache_alignment : 64 +address sizes : 46 bits physical, 48 bits virtual +power management: + +processor : 14 +vendor_id : GenuineIntel +cpu family : 6 +model : 45 +model name : Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz +stepping : 7 +microcode : 0x71a +cpu MHz : 2320.030 +cache size : 15360 KB +physical id : 0 +siblings : 12 +core id : 1 +cpu cores : 6 +apicid : 3 +initial apicid : 3 +fpu : yes +fpu_exception : yes +cpuid level : 13 +wp : yes +flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm pti tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts +bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds +bogomips : 4399.90 +clflush size : 64 +cache_alignment : 64 +address sizes : 46 bits physical, 48 bits virtual +power management: + +processor : 15 +vendor_id : GenuineIntel +cpu family : 6 +model : 45 +model name : Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz +stepping : 7 +microcode : 0x71a +cpu MHz : 1494.384 +cache size : 15360 KB +physical id : 1 +siblings : 12 +core id : 1 +cpu cores : 6 +apicid : 35 +initial apicid : 35 +fpu : yes +fpu_exception : yes +cpuid level : 13 +wp : yes +flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm pti tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts +bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds +bogomips : 4443.72 +clflush size : 64 +cache_alignment : 64 +address sizes : 46 bits physical, 48 bits virtual +power management: + +processor : 16 +vendor_id : GenuineIntel +cpu family : 6 +model : 45 +model name : Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz +stepping : 7 +microcode : 0x71a +cpu MHz : 2246.397 +cache size : 15360 KB +physical id : 0 +siblings : 12 +core id : 2 +cpu cores : 6 +apicid : 5 +initial apicid : 5 +fpu : yes +fpu_exception : yes +cpuid level : 13 +wp : yes +flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm pti tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts +bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds +bogomips : 4399.90 +clflush size : 64 +cache_alignment : 64 +address sizes : 46 bits physical, 48 bits virtual +power management: + +processor : 17 +vendor_id : GenuineIntel +cpu family : 6 +model : 45 +model name : Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz +stepping : 7 +microcode : 0x71a +cpu MHz : 1667.597 +cache size : 15360 KB +physical id : 1 +siblings : 12 +core id : 2 +cpu cores : 6 +apicid : 37 +initial apicid : 37 +fpu : yes +fpu_exception : yes +cpuid level : 13 +wp : yes +flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm pti tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts +bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds +bogomips : 4443.72 +clflush size : 64 +cache_alignment : 64 +address sizes : 46 bits physical, 48 bits virtual +power management: + +processor : 18 +vendor_id : GenuineIntel +cpu family : 6 +model : 45 +model name : Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz +stepping : 7 +microcode : 0x71a +cpu MHz : 2452.398 +cache size : 15360 KB +physical id : 0 +siblings : 12 +core id : 3 +cpu cores : 6 +apicid : 7 +initial apicid : 7 +fpu : yes +fpu_exception : yes +cpuid level : 13 +wp : yes +flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm pti tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts +bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds +bogomips : 4399.90 +clflush size : 64 +cache_alignment : 64 +address sizes : 46 bits physical, 48 bits virtual +power management: + +processor : 19 +vendor_id : GenuineIntel +cpu family : 6 +model : 45 +model name : Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz +stepping : 7 +microcode : 0x71a +cpu MHz : 1580.156 +cache size : 15360 KB +physical id : 1 +siblings : 12 +core id : 3 +cpu cores : 6 +apicid : 39 +initial apicid : 39 +fpu : yes +fpu_exception : yes +cpuid level : 13 +wp : yes +flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm pti tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts +bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds +bogomips : 4443.72 +clflush size : 64 +cache_alignment : 64 +address sizes : 46 bits physical, 48 bits virtual +power management: + +processor : 20 +vendor_id : GenuineIntel +cpu family : 6 +model : 45 +model name : Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz +stepping : 7 +microcode : 0x71a +cpu MHz : 2084.880 +cache size : 15360 KB +physical id : 0 +siblings : 12 +core id : 4 +cpu cores : 6 +apicid : 9 +initial apicid : 9 +fpu : yes +fpu_exception : yes +cpuid level : 13 +wp : yes +flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm pti tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts +bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds +bogomips : 4399.90 +clflush size : 64 +cache_alignment : 64 +address sizes : 46 bits physical, 48 bits virtual +power management: + +processor : 21 +vendor_id : GenuineIntel +cpu family : 6 +model : 45 +model name : Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz +stepping : 7 +microcode : 0x71a +cpu MHz : 1522.090 +cache size : 15360 KB +physical id : 1 +siblings : 12 +core id : 4 +cpu cores : 6 +apicid : 41 +initial apicid : 41 +fpu : yes +fpu_exception : yes +cpuid level : 13 +wp : yes +flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm pti tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts +bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds +bogomips : 4443.72 +clflush size : 64 +cache_alignment : 64 +address sizes : 46 bits physical, 48 bits virtual +power management: + +processor : 22 +vendor_id : GenuineIntel +cpu family : 6 +model : 45 +model name : Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz +stepping : 7 +microcode : 0x71a +cpu MHz : 2109.796 +cache size : 15360 KB +physical id : 0 +siblings : 12 +core id : 5 +cpu cores : 6 +apicid : 11 +initial apicid : 11 +fpu : yes +fpu_exception : yes +cpuid level : 13 +wp : yes +flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm pti tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts +bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds +bogomips : 4399.90 +clflush size : 64 +cache_alignment : 64 +address sizes : 46 bits physical, 48 bits virtual +power management: + +processor : 23 +vendor_id : GenuineIntel +cpu family : 6 +model : 45 +model name : Intel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz +stepping : 7 +microcode : 0x71a +cpu MHz : 1348.923 +cache size : 15360 KB +physical id : 1 +siblings : 12 +core id : 5 +cpu cores : 6 +apicid : 43 +initial apicid : 43 +fpu : yes +fpu_exception : yes +cpuid level : 13 +wp : yes +flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx lahf_lm pti tpr_shadow vnmi flexpriority ept vpid xsaveopt dtherm ida arat pln pts +bugs : cpu_meltdown spectre_v1 spectre_v2 spec_store_bypass l1tf mds +bogomips : 4443.72 +clflush size : 64 +cache_alignment : 64 +address sizes : 46 bits physical, 48 bits virtual +power management: + diff --git a/t/pt-summary/samples/Linux/007/processes b/t/pt-summary/samples/Linux/007/processes new file mode 100644 index 00000000..90971149 --- /dev/null +++ b/t/pt-summary/samples/Linux/007/processes @@ -0,0 +1,10 @@ + PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND +21837 root 20 0 118472 5284 1912 R 76.9 0.0 6876:45 bash +22324 root 20 0 118472 5256 1912 R 76.9 0.0 6930:46 bash +27315 root 20 0 173656 6052 4560 R 15.4 0.0 0:00.07 top +30550 deepak.+ 20 0 1832784 106312 35024 S 7.7 0.1 7:24.20 mongod + 11 root 20 0 0 0 0 I 3.8 0.0 218:16.07 rcu_sched + 313 grafana 20 0 2853776 44376 15448 S 3.8 0.0 58:38.07 grafana-se+ + 4362 viniciu+ 20 0 2056504 198048 33000 S 3.8 0.1 66:13.66 mongod + 6837 viniciu+ 20 0 2020216 124284 33192 S 3.8 0.1 55:09.11 mongod + 7827 mydba 20 0 2329572 680728 11272 S 3.8 0.3 1644:16 victoriame+ diff --git a/t/pt-summary/samples/Linux/007/summary b/t/pt-summary/samples/Linux/007/summary new file mode 100644 index 00000000..35de62d4 --- /dev/null +++ b/t/pt-summary/samples/Linux/007/summary @@ -0,0 +1,39 @@ +platform Linux +hostname bm-support01.bm.int.percona.com +kernel 5.1.7-1.el7.elrepo.x86_64 +release CentOS Linux release 7.9.2009 (Core) +CPU_ARCH 64-bit +OS_ARCH 64-bit +virt No virtualization detected +vendor Dell Inc. +system Dell Inc.; PowerEdge R520; vNot Specified (Rack Mount Chassis) +servicetag 6J6X9Y1 +compiler GNU CC version 4.8.5 20150623 (Red Hat 4.8.5-44). +rss 24584511488 +raid_controller Broadcom / LSI MegaRAID SAS 2208 [Thunderbolt] (rev 05) +threading NPTL 2.17 +getenforce Enforcing +swappiness 1 +dirtypolicy 20, 10 +dirtystatus 0, 0 +numa-available 2 +numa-policy default +numa-preferred-node current +internal::disks dm-0 dm-1 dm-2 dm-3 dm-4 dm-5 dm-6 dm-7 nvme0n1 nvme1n1 sda sdb sdc sr0 +internal::dm-0 128 +internal::dm-1 128 +internal::dm-2 128 +internal::dm-3 128 +internal::dm-4 128 +internal::dm-5 128 +internal::dm-6 128 +internal::dm-7 128 +internal::nvme0n1 [none] 1023 +internal::nvme1n1 [none] 1023 +internal::sda [mq-deadline] 256 +internal::sdb [mq-deadline] 256 +internal::sdc [mq-deadline] 256 +internal::sr0 [mq-deadline] 64 +dentry-state 10194137 9907146 45 0 2973650 0 +file-nr 27248 0 19768804 +inode-nr 8232199 1009287 diff --git a/t/pt-summary/samples/Linux/007/sysctl b/t/pt-summary/samples/Linux/007/sysctl new file mode 100644 index 00000000..5a590209 --- /dev/null +++ b/t/pt-summary/samples/Linux/007/sysctl @@ -0,0 +1,7388 @@ +abi.vsyscall32 = 1 +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: 24 +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.mac_hid.mouse_button2_keycode = 97 +dev.mac_hid.mouse_button3_keycode = 100 +dev.mac_hid.mouse_button_emulation = 0 +dev.raid.speed_limit_max = 200000 +dev.raid.speed_limit_min = 1000 +dev.scsi.logging_level = 0 +dev.tty.ldisc_autoload = 1 +fs.aio-max-nr = 524288 +fs.aio-nr = 84632 +fs.binfmt_misc.jexec = enabled +fs.binfmt_misc.jexec = interpreter /usr/java/default/lib/jexec +fs.binfmt_misc.jexec = flags: +fs.binfmt_misc.jexec = offset 0 +fs.binfmt_misc.jexec = magic 504b0304 +fs.binfmt_misc.kshcomp = enabled +fs.binfmt_misc.kshcomp = interpreter /bin/ksh93 +fs.binfmt_misc.kshcomp = flags: +fs.binfmt_misc.kshcomp = offset 0 +fs.binfmt_misc.kshcomp = magic 0b1308 +fs.binfmt_misc.status = enabled +fs.dentry-state = 10194098 9907099 45 0 2973650 0 +fs.dir-notify-enable = 1 +fs.epoll.max_user_watches = 40549130 +fs.file-max = 19768804 +fs.file-nr = 27248 0 19768804 +fs.inode-nr = 8232160 1009287 +fs.inode-state = 8232160 1009287 0 0 0 0 0 +fs.inotify.max_queued_events = 16384 +fs.inotify.max_user_instances = 1024 +fs.inotify.max_user_watches = 65535 +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.nfs.idmap_cache_timeout = 600 +fs.nfs.nfs_callback_tcpport = 0 +fs.nfs.nfs_congestion_kb = 262144 +fs.nfs.nfs_mountpoint_timeout = 500 +fs.nfs.nlm_grace_period = 0 +fs.nfs.nlm_tcpport = 0 +fs.nfs.nlm_timeout = 10 +fs.nfs.nlm_udpport = 0 +fs.nfs.nsm_local_state = 0 +fs.nfs.nsm_use_hostnames = 0 +fs.nr_open = 1048576 +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 = 2260 +fs.quota.warnings = 1 +fs.quota.writes = 0 +fs.suid_dumpable = 0 +fs.xfs.error_level = 3 +fs.xfs.filestream_centisecs = 3000 +fs.xfs.inherit_noatime = 1 +fs.xfs.inherit_nodefrag = 1 +fs.xfs.inherit_nodump = 1 +fs.xfs.inherit_nosymlinks = 0 +fs.xfs.inherit_sync = 1 +fs.xfs.irix_sgid_inherit = 0 +fs.xfs.irix_symlink_mode = 0 +fs.xfs.panic_mask = 0 +fs.xfs.rotorstep = 1 +fs.xfs.speculative_cow_prealloc_lifetime = 1800 +fs.xfs.speculative_prealloc_lifetime = 300 +fs.xfs.stats_clear = 0 +fs.xfs.xfssyncd_centisecs = 3000 +fscache.object_max_active = 48 +fscache.operation_max_active = 24 +kernel.acct = 4 2 30 +kernel.acpi_video_flags = 0 +kernel.auto_msgmni = 0 +kernel.bootloader_type = 6 +kernel.bootloader_version = 38 +kernel.bpf_stats_enabled = 0 +kernel.cad_pid = 1 +kernel.cap_last_cap = 37 +kernel.core_pattern = core +kernel.core_pipe_limit = 0 +kernel.core_uses_pid = 1 +kernel.ctrl-alt-del = 0 +kernel.dmesg_restrict = 0 +kernel.domainname = int.percona.com +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 = bm-support01.bm.int.percona.com +kernel.hotplug = +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.kexec_load_disabled = 0 +kernel.keys.gc_delay = 300 +kernel.keys.maxbytes = 20000 +kernel.keys.maxkeys = 2000 +kernel.keys.persistent_keyring_expiry = 259200 +kernel.keys.root_maxbytes = 25000000 +kernel.keys.root_maxkeys = 1000000 +kernel.kptr_restrict = 1 +kernel.max_lock_depth = 1024 +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 = 1 +kernel.ns_last_pid = 22571 +kernel.numa_balancing = 1 +kernel.numa_balancing_scan_delay_ms = 1000 +kernel.numa_balancing_scan_period_max_ms = 60000 +kernel.numa_balancing_scan_period_min_ms = 1000 +kernel.numa_balancing_scan_size_mb = 256 +kernel.osrelease = 5.1.7-1.el7.elrepo.x86_64 +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_stackoverflow = 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 = 19000 +kernel.perf_event_max_stack = 127 +kernel.perf_event_mlock_kb = 516 +kernel.perf_event_paranoid = 1 +kernel.pid_max = 49152 +kernel.poweroff_cmd = /sbin/poweroff +kernel.print-fatal-signals = 0 +kernel.printk = 4 4 1 7 +kernel.printk_delay = 0 +kernel.printk_devkmsg = ratelimit +kernel.printk_ratelimit = 5 +kernel.printk_ratelimit_burst = 10 +kernel.pty.max = 4096 +kernel.pty.nr = 42 +kernel.pty.reserve = 1024 +kernel.random.boot_id = 27de94d0-7607-4c02-a014-0a031a685ad9 +kernel.random.entropy_avail = 3882 +kernel.random.poolsize = 4096 +kernel.random.read_wakeup_threshold = 64 +kernel.random.urandom_min_reseed_secs = 60 +kernel.random.uuid = 053df473-9719-4ff4-b0ea-1035e2842508 +kernel.random.write_wakeup_threshold = 896 +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_domain.cpu0.domain0.busy_factor = 32 +kernel.sched_domain.cpu0.domain0.busy_idx = 0 +kernel.sched_domain.cpu0.domain0.cache_nice_tries = 0 +kernel.sched_domain.cpu0.domain0.flags = 4783 +kernel.sched_domain.cpu0.domain0.forkexec_idx = 0 +kernel.sched_domain.cpu0.domain0.idle_idx = 0 +kernel.sched_domain.cpu0.domain0.imbalance_pct = 110 +kernel.sched_domain.cpu0.domain0.max_interval = 4 +kernel.sched_domain.cpu0.domain0.max_newidle_lb_cost = 13791 +kernel.sched_domain.cpu0.domain0.min_interval = 2 +kernel.sched_domain.cpu0.domain0.name = SMT +kernel.sched_domain.cpu0.domain0.newidle_idx = 0 +kernel.sched_domain.cpu0.domain0.wake_idx = 0 +kernel.sched_domain.cpu0.domain1.busy_factor = 32 +kernel.sched_domain.cpu0.domain1.busy_idx = 2 +kernel.sched_domain.cpu0.domain1.cache_nice_tries = 1 +kernel.sched_domain.cpu0.domain1.flags = 4655 +kernel.sched_domain.cpu0.domain1.forkexec_idx = 0 +kernel.sched_domain.cpu0.domain1.idle_idx = 0 +kernel.sched_domain.cpu0.domain1.imbalance_pct = 117 +kernel.sched_domain.cpu0.domain1.max_interval = 24 +kernel.sched_domain.cpu0.domain1.max_newidle_lb_cost = 58755 +kernel.sched_domain.cpu0.domain1.min_interval = 12 +kernel.sched_domain.cpu0.domain1.name = MC +kernel.sched_domain.cpu0.domain1.newidle_idx = 0 +kernel.sched_domain.cpu0.domain1.wake_idx = 0 +kernel.sched_domain.cpu0.domain2.busy_factor = 32 +kernel.sched_domain.cpu0.domain2.busy_idx = 3 +kernel.sched_domain.cpu0.domain2.cache_nice_tries = 2 +kernel.sched_domain.cpu0.domain2.flags = 25647 +kernel.sched_domain.cpu0.domain2.forkexec_idx = 0 +kernel.sched_domain.cpu0.domain2.idle_idx = 2 +kernel.sched_domain.cpu0.domain2.imbalance_pct = 125 +kernel.sched_domain.cpu0.domain2.max_interval = 48 +kernel.sched_domain.cpu0.domain2.max_newidle_lb_cost = 75878 +kernel.sched_domain.cpu0.domain2.min_interval = 24 +kernel.sched_domain.cpu0.domain2.name = NUMA +kernel.sched_domain.cpu0.domain2.newidle_idx = 0 +kernel.sched_domain.cpu0.domain2.wake_idx = 0 +kernel.sched_domain.cpu1.domain0.busy_factor = 32 +kernel.sched_domain.cpu1.domain0.busy_idx = 0 +kernel.sched_domain.cpu1.domain0.cache_nice_tries = 0 +kernel.sched_domain.cpu1.domain0.flags = 4783 +kernel.sched_domain.cpu1.domain0.forkexec_idx = 0 +kernel.sched_domain.cpu1.domain0.idle_idx = 0 +kernel.sched_domain.cpu1.domain0.imbalance_pct = 110 +kernel.sched_domain.cpu1.domain0.max_interval = 4 +kernel.sched_domain.cpu1.domain0.max_newidle_lb_cost = 33981 +kernel.sched_domain.cpu1.domain0.min_interval = 2 +kernel.sched_domain.cpu1.domain0.name = SMT +kernel.sched_domain.cpu1.domain0.newidle_idx = 0 +kernel.sched_domain.cpu1.domain0.wake_idx = 0 +kernel.sched_domain.cpu1.domain1.busy_factor = 32 +kernel.sched_domain.cpu1.domain1.busy_idx = 2 +kernel.sched_domain.cpu1.domain1.cache_nice_tries = 1 +kernel.sched_domain.cpu1.domain1.flags = 4655 +kernel.sched_domain.cpu1.domain1.forkexec_idx = 0 +kernel.sched_domain.cpu1.domain1.idle_idx = 0 +kernel.sched_domain.cpu1.domain1.imbalance_pct = 117 +kernel.sched_domain.cpu1.domain1.max_interval = 24 +kernel.sched_domain.cpu1.domain1.max_newidle_lb_cost = 52375 +kernel.sched_domain.cpu1.domain1.min_interval = 12 +kernel.sched_domain.cpu1.domain1.name = MC +kernel.sched_domain.cpu1.domain1.newidle_idx = 0 +kernel.sched_domain.cpu1.domain1.wake_idx = 0 +kernel.sched_domain.cpu1.domain2.busy_factor = 32 +kernel.sched_domain.cpu1.domain2.busy_idx = 3 +kernel.sched_domain.cpu1.domain2.cache_nice_tries = 2 +kernel.sched_domain.cpu1.domain2.flags = 25647 +kernel.sched_domain.cpu1.domain2.forkexec_idx = 0 +kernel.sched_domain.cpu1.domain2.idle_idx = 2 +kernel.sched_domain.cpu1.domain2.imbalance_pct = 125 +kernel.sched_domain.cpu1.domain2.max_interval = 48 +kernel.sched_domain.cpu1.domain2.max_newidle_lb_cost = 88506 +kernel.sched_domain.cpu1.domain2.min_interval = 24 +kernel.sched_domain.cpu1.domain2.name = NUMA +kernel.sched_domain.cpu1.domain2.newidle_idx = 0 +kernel.sched_domain.cpu1.domain2.wake_idx = 0 +kernel.sched_domain.cpu10.domain0.busy_factor = 32 +kernel.sched_domain.cpu10.domain0.busy_idx = 0 +kernel.sched_domain.cpu10.domain0.cache_nice_tries = 0 +kernel.sched_domain.cpu10.domain0.flags = 4783 +kernel.sched_domain.cpu10.domain0.forkexec_idx = 0 +kernel.sched_domain.cpu10.domain0.idle_idx = 0 +kernel.sched_domain.cpu10.domain0.imbalance_pct = 110 +kernel.sched_domain.cpu10.domain0.max_interval = 4 +kernel.sched_domain.cpu10.domain0.max_newidle_lb_cost = 17852 +kernel.sched_domain.cpu10.domain0.min_interval = 2 +kernel.sched_domain.cpu10.domain0.name = SMT +kernel.sched_domain.cpu10.domain0.newidle_idx = 0 +kernel.sched_domain.cpu10.domain0.wake_idx = 0 +kernel.sched_domain.cpu10.domain1.busy_factor = 32 +kernel.sched_domain.cpu10.domain1.busy_idx = 2 +kernel.sched_domain.cpu10.domain1.cache_nice_tries = 1 +kernel.sched_domain.cpu10.domain1.flags = 4655 +kernel.sched_domain.cpu10.domain1.forkexec_idx = 0 +kernel.sched_domain.cpu10.domain1.idle_idx = 0 +kernel.sched_domain.cpu10.domain1.imbalance_pct = 117 +kernel.sched_domain.cpu10.domain1.max_interval = 24 +kernel.sched_domain.cpu10.domain1.max_newidle_lb_cost = 63380 +kernel.sched_domain.cpu10.domain1.min_interval = 12 +kernel.sched_domain.cpu10.domain1.name = MC +kernel.sched_domain.cpu10.domain1.newidle_idx = 0 +kernel.sched_domain.cpu10.domain1.wake_idx = 0 +kernel.sched_domain.cpu10.domain2.busy_factor = 32 +kernel.sched_domain.cpu10.domain2.busy_idx = 3 +kernel.sched_domain.cpu10.domain2.cache_nice_tries = 2 +kernel.sched_domain.cpu10.domain2.flags = 25647 +kernel.sched_domain.cpu10.domain2.forkexec_idx = 0 +kernel.sched_domain.cpu10.domain2.idle_idx = 2 +kernel.sched_domain.cpu10.domain2.imbalance_pct = 125 +kernel.sched_domain.cpu10.domain2.max_interval = 48 +kernel.sched_domain.cpu10.domain2.max_newidle_lb_cost = 73372 +kernel.sched_domain.cpu10.domain2.min_interval = 24 +kernel.sched_domain.cpu10.domain2.name = NUMA +kernel.sched_domain.cpu10.domain2.newidle_idx = 0 +kernel.sched_domain.cpu10.domain2.wake_idx = 0 +kernel.sched_domain.cpu11.domain0.busy_factor = 32 +kernel.sched_domain.cpu11.domain0.busy_idx = 0 +kernel.sched_domain.cpu11.domain0.cache_nice_tries = 0 +kernel.sched_domain.cpu11.domain0.flags = 4783 +kernel.sched_domain.cpu11.domain0.forkexec_idx = 0 +kernel.sched_domain.cpu11.domain0.idle_idx = 0 +kernel.sched_domain.cpu11.domain0.imbalance_pct = 110 +kernel.sched_domain.cpu11.domain0.max_interval = 4 +kernel.sched_domain.cpu11.domain0.max_newidle_lb_cost = 19388 +kernel.sched_domain.cpu11.domain0.min_interval = 2 +kernel.sched_domain.cpu11.domain0.name = SMT +kernel.sched_domain.cpu11.domain0.newidle_idx = 0 +kernel.sched_domain.cpu11.domain0.wake_idx = 0 +kernel.sched_domain.cpu11.domain1.busy_factor = 32 +kernel.sched_domain.cpu11.domain1.busy_idx = 2 +kernel.sched_domain.cpu11.domain1.cache_nice_tries = 1 +kernel.sched_domain.cpu11.domain1.flags = 4655 +kernel.sched_domain.cpu11.domain1.forkexec_idx = 0 +kernel.sched_domain.cpu11.domain1.idle_idx = 0 +kernel.sched_domain.cpu11.domain1.imbalance_pct = 117 +kernel.sched_domain.cpu11.domain1.max_interval = 24 +kernel.sched_domain.cpu11.domain1.max_newidle_lb_cost = 52364 +kernel.sched_domain.cpu11.domain1.min_interval = 12 +kernel.sched_domain.cpu11.domain1.name = MC +kernel.sched_domain.cpu11.domain1.newidle_idx = 0 +kernel.sched_domain.cpu11.domain1.wake_idx = 0 +kernel.sched_domain.cpu11.domain2.busy_factor = 32 +kernel.sched_domain.cpu11.domain2.busy_idx = 3 +kernel.sched_domain.cpu11.domain2.cache_nice_tries = 2 +kernel.sched_domain.cpu11.domain2.flags = 25647 +kernel.sched_domain.cpu11.domain2.forkexec_idx = 0 +kernel.sched_domain.cpu11.domain2.idle_idx = 2 +kernel.sched_domain.cpu11.domain2.imbalance_pct = 125 +kernel.sched_domain.cpu11.domain2.max_interval = 48 +kernel.sched_domain.cpu11.domain2.max_newidle_lb_cost = 75815 +kernel.sched_domain.cpu11.domain2.min_interval = 24 +kernel.sched_domain.cpu11.domain2.name = NUMA +kernel.sched_domain.cpu11.domain2.newidle_idx = 0 +kernel.sched_domain.cpu11.domain2.wake_idx = 0 +kernel.sched_domain.cpu12.domain0.busy_factor = 32 +kernel.sched_domain.cpu12.domain0.busy_idx = 0 +kernel.sched_domain.cpu12.domain0.cache_nice_tries = 0 +kernel.sched_domain.cpu12.domain0.flags = 4783 +kernel.sched_domain.cpu12.domain0.forkexec_idx = 0 +kernel.sched_domain.cpu12.domain0.idle_idx = 0 +kernel.sched_domain.cpu12.domain0.imbalance_pct = 110 +kernel.sched_domain.cpu12.domain0.max_interval = 4 +kernel.sched_domain.cpu12.domain0.max_newidle_lb_cost = 16694 +kernel.sched_domain.cpu12.domain0.min_interval = 2 +kernel.sched_domain.cpu12.domain0.name = SMT +kernel.sched_domain.cpu12.domain0.newidle_idx = 0 +kernel.sched_domain.cpu12.domain0.wake_idx = 0 +kernel.sched_domain.cpu12.domain1.busy_factor = 32 +kernel.sched_domain.cpu12.domain1.busy_idx = 2 +kernel.sched_domain.cpu12.domain1.cache_nice_tries = 1 +kernel.sched_domain.cpu12.domain1.flags = 4655 +kernel.sched_domain.cpu12.domain1.forkexec_idx = 0 +kernel.sched_domain.cpu12.domain1.idle_idx = 0 +kernel.sched_domain.cpu12.domain1.imbalance_pct = 117 +kernel.sched_domain.cpu12.domain1.max_interval = 24 +kernel.sched_domain.cpu12.domain1.max_newidle_lb_cost = 48710 +kernel.sched_domain.cpu12.domain1.min_interval = 12 +kernel.sched_domain.cpu12.domain1.name = MC +kernel.sched_domain.cpu12.domain1.newidle_idx = 0 +kernel.sched_domain.cpu12.domain1.wake_idx = 0 +kernel.sched_domain.cpu12.domain2.busy_factor = 32 +kernel.sched_domain.cpu12.domain2.busy_idx = 3 +kernel.sched_domain.cpu12.domain2.cache_nice_tries = 2 +kernel.sched_domain.cpu12.domain2.flags = 25647 +kernel.sched_domain.cpu12.domain2.forkexec_idx = 0 +kernel.sched_domain.cpu12.domain2.idle_idx = 2 +kernel.sched_domain.cpu12.domain2.imbalance_pct = 125 +kernel.sched_domain.cpu12.domain2.max_interval = 48 +kernel.sched_domain.cpu12.domain2.max_newidle_lb_cost = 98399 +kernel.sched_domain.cpu12.domain2.min_interval = 24 +kernel.sched_domain.cpu12.domain2.name = NUMA +kernel.sched_domain.cpu12.domain2.newidle_idx = 0 +kernel.sched_domain.cpu12.domain2.wake_idx = 0 +kernel.sched_domain.cpu13.domain0.busy_factor = 32 +kernel.sched_domain.cpu13.domain0.busy_idx = 0 +kernel.sched_domain.cpu13.domain0.cache_nice_tries = 0 +kernel.sched_domain.cpu13.domain0.flags = 4783 +kernel.sched_domain.cpu13.domain0.forkexec_idx = 0 +kernel.sched_domain.cpu13.domain0.idle_idx = 0 +kernel.sched_domain.cpu13.domain0.imbalance_pct = 110 +kernel.sched_domain.cpu13.domain0.max_interval = 4 +kernel.sched_domain.cpu13.domain0.max_newidle_lb_cost = 21102 +kernel.sched_domain.cpu13.domain0.min_interval = 2 +kernel.sched_domain.cpu13.domain0.name = SMT +kernel.sched_domain.cpu13.domain0.newidle_idx = 0 +kernel.sched_domain.cpu13.domain0.wake_idx = 0 +kernel.sched_domain.cpu13.domain1.busy_factor = 32 +kernel.sched_domain.cpu13.domain1.busy_idx = 2 +kernel.sched_domain.cpu13.domain1.cache_nice_tries = 1 +kernel.sched_domain.cpu13.domain1.flags = 4655 +kernel.sched_domain.cpu13.domain1.forkexec_idx = 0 +kernel.sched_domain.cpu13.domain1.idle_idx = 0 +kernel.sched_domain.cpu13.domain1.imbalance_pct = 117 +kernel.sched_domain.cpu13.domain1.max_interval = 24 +kernel.sched_domain.cpu13.domain1.max_newidle_lb_cost = 47142 +kernel.sched_domain.cpu13.domain1.min_interval = 12 +kernel.sched_domain.cpu13.domain1.name = MC +kernel.sched_domain.cpu13.domain1.newidle_idx = 0 +kernel.sched_domain.cpu13.domain1.wake_idx = 0 +kernel.sched_domain.cpu13.domain2.busy_factor = 32 +kernel.sched_domain.cpu13.domain2.busy_idx = 3 +kernel.sched_domain.cpu13.domain2.cache_nice_tries = 2 +kernel.sched_domain.cpu13.domain2.flags = 25647 +kernel.sched_domain.cpu13.domain2.forkexec_idx = 0 +kernel.sched_domain.cpu13.domain2.idle_idx = 2 +kernel.sched_domain.cpu13.domain2.imbalance_pct = 125 +kernel.sched_domain.cpu13.domain2.max_interval = 48 +kernel.sched_domain.cpu13.domain2.max_newidle_lb_cost = 97239 +kernel.sched_domain.cpu13.domain2.min_interval = 24 +kernel.sched_domain.cpu13.domain2.name = NUMA +kernel.sched_domain.cpu13.domain2.newidle_idx = 0 +kernel.sched_domain.cpu13.domain2.wake_idx = 0 +kernel.sched_domain.cpu14.domain0.busy_factor = 32 +kernel.sched_domain.cpu14.domain0.busy_idx = 0 +kernel.sched_domain.cpu14.domain0.cache_nice_tries = 0 +kernel.sched_domain.cpu14.domain0.flags = 4783 +kernel.sched_domain.cpu14.domain0.forkexec_idx = 0 +kernel.sched_domain.cpu14.domain0.idle_idx = 0 +kernel.sched_domain.cpu14.domain0.imbalance_pct = 110 +kernel.sched_domain.cpu14.domain0.max_interval = 4 +kernel.sched_domain.cpu14.domain0.max_newidle_lb_cost = 24104 +kernel.sched_domain.cpu14.domain0.min_interval = 2 +kernel.sched_domain.cpu14.domain0.name = SMT +kernel.sched_domain.cpu14.domain0.newidle_idx = 0 +kernel.sched_domain.cpu14.domain0.wake_idx = 0 +kernel.sched_domain.cpu14.domain1.busy_factor = 32 +kernel.sched_domain.cpu14.domain1.busy_idx = 2 +kernel.sched_domain.cpu14.domain1.cache_nice_tries = 1 +kernel.sched_domain.cpu14.domain1.flags = 4655 +kernel.sched_domain.cpu14.domain1.forkexec_idx = 0 +kernel.sched_domain.cpu14.domain1.idle_idx = 0 +kernel.sched_domain.cpu14.domain1.imbalance_pct = 117 +kernel.sched_domain.cpu14.domain1.max_interval = 24 +kernel.sched_domain.cpu14.domain1.max_newidle_lb_cost = 71301 +kernel.sched_domain.cpu14.domain1.min_interval = 12 +kernel.sched_domain.cpu14.domain1.name = MC +kernel.sched_domain.cpu14.domain1.newidle_idx = 0 +kernel.sched_domain.cpu14.domain1.wake_idx = 0 +kernel.sched_domain.cpu14.domain2.busy_factor = 32 +kernel.sched_domain.cpu14.domain2.busy_idx = 3 +kernel.sched_domain.cpu14.domain2.cache_nice_tries = 2 +kernel.sched_domain.cpu14.domain2.flags = 25647 +kernel.sched_domain.cpu14.domain2.forkexec_idx = 0 +kernel.sched_domain.cpu14.domain2.idle_idx = 2 +kernel.sched_domain.cpu14.domain2.imbalance_pct = 125 +kernel.sched_domain.cpu14.domain2.max_interval = 48 +kernel.sched_domain.cpu14.domain2.max_newidle_lb_cost = 79464 +kernel.sched_domain.cpu14.domain2.min_interval = 24 +kernel.sched_domain.cpu14.domain2.name = NUMA +kernel.sched_domain.cpu14.domain2.newidle_idx = 0 +kernel.sched_domain.cpu14.domain2.wake_idx = 0 +kernel.sched_domain.cpu15.domain0.busy_factor = 32 +kernel.sched_domain.cpu15.domain0.busy_idx = 0 +kernel.sched_domain.cpu15.domain0.cache_nice_tries = 0 +kernel.sched_domain.cpu15.domain0.flags = 4783 +kernel.sched_domain.cpu15.domain0.forkexec_idx = 0 +kernel.sched_domain.cpu15.domain0.idle_idx = 0 +kernel.sched_domain.cpu15.domain0.imbalance_pct = 110 +kernel.sched_domain.cpu15.domain0.max_interval = 4 +kernel.sched_domain.cpu15.domain0.max_newidle_lb_cost = 18187 +kernel.sched_domain.cpu15.domain0.min_interval = 2 +kernel.sched_domain.cpu15.domain0.name = SMT +kernel.sched_domain.cpu15.domain0.newidle_idx = 0 +kernel.sched_domain.cpu15.domain0.wake_idx = 0 +kernel.sched_domain.cpu15.domain1.busy_factor = 32 +kernel.sched_domain.cpu15.domain1.busy_idx = 2 +kernel.sched_domain.cpu15.domain1.cache_nice_tries = 1 +kernel.sched_domain.cpu15.domain1.flags = 4655 +kernel.sched_domain.cpu15.domain1.forkexec_idx = 0 +kernel.sched_domain.cpu15.domain1.idle_idx = 0 +kernel.sched_domain.cpu15.domain1.imbalance_pct = 117 +kernel.sched_domain.cpu15.domain1.max_interval = 24 +kernel.sched_domain.cpu15.domain1.max_newidle_lb_cost = 44464 +kernel.sched_domain.cpu15.domain1.min_interval = 12 +kernel.sched_domain.cpu15.domain1.name = MC +kernel.sched_domain.cpu15.domain1.newidle_idx = 0 +kernel.sched_domain.cpu15.domain1.wake_idx = 0 +kernel.sched_domain.cpu15.domain2.busy_factor = 32 +kernel.sched_domain.cpu15.domain2.busy_idx = 3 +kernel.sched_domain.cpu15.domain2.cache_nice_tries = 2 +kernel.sched_domain.cpu15.domain2.flags = 25647 +kernel.sched_domain.cpu15.domain2.forkexec_idx = 0 +kernel.sched_domain.cpu15.domain2.idle_idx = 2 +kernel.sched_domain.cpu15.domain2.imbalance_pct = 125 +kernel.sched_domain.cpu15.domain2.max_interval = 48 +kernel.sched_domain.cpu15.domain2.max_newidle_lb_cost = 90440 +kernel.sched_domain.cpu15.domain2.min_interval = 24 +kernel.sched_domain.cpu15.domain2.name = NUMA +kernel.sched_domain.cpu15.domain2.newidle_idx = 0 +kernel.sched_domain.cpu15.domain2.wake_idx = 0 +kernel.sched_domain.cpu16.domain0.busy_factor = 32 +kernel.sched_domain.cpu16.domain0.busy_idx = 0 +kernel.sched_domain.cpu16.domain0.cache_nice_tries = 0 +kernel.sched_domain.cpu16.domain0.flags = 4783 +kernel.sched_domain.cpu16.domain0.forkexec_idx = 0 +kernel.sched_domain.cpu16.domain0.idle_idx = 0 +kernel.sched_domain.cpu16.domain0.imbalance_pct = 110 +kernel.sched_domain.cpu16.domain0.max_interval = 4 +kernel.sched_domain.cpu16.domain0.max_newidle_lb_cost = 13804 +kernel.sched_domain.cpu16.domain0.min_interval = 2 +kernel.sched_domain.cpu16.domain0.name = SMT +kernel.sched_domain.cpu16.domain0.newidle_idx = 0 +kernel.sched_domain.cpu16.domain0.wake_idx = 0 +kernel.sched_domain.cpu16.domain1.busy_factor = 32 +kernel.sched_domain.cpu16.domain1.busy_idx = 2 +kernel.sched_domain.cpu16.domain1.cache_nice_tries = 1 +kernel.sched_domain.cpu16.domain1.flags = 4655 +kernel.sched_domain.cpu16.domain1.forkexec_idx = 0 +kernel.sched_domain.cpu16.domain1.idle_idx = 0 +kernel.sched_domain.cpu16.domain1.imbalance_pct = 117 +kernel.sched_domain.cpu16.domain1.max_interval = 24 +kernel.sched_domain.cpu16.domain1.max_newidle_lb_cost = 91951 +kernel.sched_domain.cpu16.domain1.min_interval = 12 +kernel.sched_domain.cpu16.domain1.name = MC +kernel.sched_domain.cpu16.domain1.newidle_idx = 0 +kernel.sched_domain.cpu16.domain1.wake_idx = 0 +kernel.sched_domain.cpu16.domain2.busy_factor = 32 +kernel.sched_domain.cpu16.domain2.busy_idx = 3 +kernel.sched_domain.cpu16.domain2.cache_nice_tries = 2 +kernel.sched_domain.cpu16.domain2.flags = 25647 +kernel.sched_domain.cpu16.domain2.forkexec_idx = 0 +kernel.sched_domain.cpu16.domain2.idle_idx = 2 +kernel.sched_domain.cpu16.domain2.imbalance_pct = 125 +kernel.sched_domain.cpu16.domain2.max_interval = 48 +kernel.sched_domain.cpu16.domain2.max_newidle_lb_cost = 94425 +kernel.sched_domain.cpu16.domain2.min_interval = 24 +kernel.sched_domain.cpu16.domain2.name = NUMA +kernel.sched_domain.cpu16.domain2.newidle_idx = 0 +kernel.sched_domain.cpu16.domain2.wake_idx = 0 +kernel.sched_domain.cpu17.domain0.busy_factor = 32 +kernel.sched_domain.cpu17.domain0.busy_idx = 0 +kernel.sched_domain.cpu17.domain0.cache_nice_tries = 0 +kernel.sched_domain.cpu17.domain0.flags = 4783 +kernel.sched_domain.cpu17.domain0.forkexec_idx = 0 +kernel.sched_domain.cpu17.domain0.idle_idx = 0 +kernel.sched_domain.cpu17.domain0.imbalance_pct = 110 +kernel.sched_domain.cpu17.domain0.max_interval = 4 +kernel.sched_domain.cpu17.domain0.max_newidle_lb_cost = 26425 +kernel.sched_domain.cpu17.domain0.min_interval = 2 +kernel.sched_domain.cpu17.domain0.name = SMT +kernel.sched_domain.cpu17.domain0.newidle_idx = 0 +kernel.sched_domain.cpu17.domain0.wake_idx = 0 +kernel.sched_domain.cpu17.domain1.busy_factor = 32 +kernel.sched_domain.cpu17.domain1.busy_idx = 2 +kernel.sched_domain.cpu17.domain1.cache_nice_tries = 1 +kernel.sched_domain.cpu17.domain1.flags = 4655 +kernel.sched_domain.cpu17.domain1.forkexec_idx = 0 +kernel.sched_domain.cpu17.domain1.idle_idx = 0 +kernel.sched_domain.cpu17.domain1.imbalance_pct = 117 +kernel.sched_domain.cpu17.domain1.max_interval = 24 +kernel.sched_domain.cpu17.domain1.max_newidle_lb_cost = 43878 +kernel.sched_domain.cpu17.domain1.min_interval = 12 +kernel.sched_domain.cpu17.domain1.name = MC +kernel.sched_domain.cpu17.domain1.newidle_idx = 0 +kernel.sched_domain.cpu17.domain1.wake_idx = 0 +kernel.sched_domain.cpu17.domain2.busy_factor = 32 +kernel.sched_domain.cpu17.domain2.busy_idx = 3 +kernel.sched_domain.cpu17.domain2.cache_nice_tries = 2 +kernel.sched_domain.cpu17.domain2.flags = 25647 +kernel.sched_domain.cpu17.domain2.forkexec_idx = 0 +kernel.sched_domain.cpu17.domain2.idle_idx = 2 +kernel.sched_domain.cpu17.domain2.imbalance_pct = 125 +kernel.sched_domain.cpu17.domain2.max_interval = 48 +kernel.sched_domain.cpu17.domain2.max_newidle_lb_cost = 89641 +kernel.sched_domain.cpu17.domain2.min_interval = 24 +kernel.sched_domain.cpu17.domain2.name = NUMA +kernel.sched_domain.cpu17.domain2.newidle_idx = 0 +kernel.sched_domain.cpu17.domain2.wake_idx = 0 +kernel.sched_domain.cpu18.domain0.busy_factor = 32 +kernel.sched_domain.cpu18.domain0.busy_idx = 0 +kernel.sched_domain.cpu18.domain0.cache_nice_tries = 0 +kernel.sched_domain.cpu18.domain0.flags = 4783 +kernel.sched_domain.cpu18.domain0.forkexec_idx = 0 +kernel.sched_domain.cpu18.domain0.idle_idx = 0 +kernel.sched_domain.cpu18.domain0.imbalance_pct = 110 +kernel.sched_domain.cpu18.domain0.max_interval = 4 +kernel.sched_domain.cpu18.domain0.max_newidle_lb_cost = 15745 +kernel.sched_domain.cpu18.domain0.min_interval = 2 +kernel.sched_domain.cpu18.domain0.name = SMT +kernel.sched_domain.cpu18.domain0.newidle_idx = 0 +kernel.sched_domain.cpu18.domain0.wake_idx = 0 +kernel.sched_domain.cpu18.domain1.busy_factor = 32 +kernel.sched_domain.cpu18.domain1.busy_idx = 2 +kernel.sched_domain.cpu18.domain1.cache_nice_tries = 1 +kernel.sched_domain.cpu18.domain1.flags = 4655 +kernel.sched_domain.cpu18.domain1.forkexec_idx = 0 +kernel.sched_domain.cpu18.domain1.idle_idx = 0 +kernel.sched_domain.cpu18.domain1.imbalance_pct = 117 +kernel.sched_domain.cpu18.domain1.max_interval = 24 +kernel.sched_domain.cpu18.domain1.max_newidle_lb_cost = 39026 +kernel.sched_domain.cpu18.domain1.min_interval = 12 +kernel.sched_domain.cpu18.domain1.name = MC +kernel.sched_domain.cpu18.domain1.newidle_idx = 0 +kernel.sched_domain.cpu18.domain1.wake_idx = 0 +kernel.sched_domain.cpu18.domain2.busy_factor = 32 +kernel.sched_domain.cpu18.domain2.busy_idx = 3 +kernel.sched_domain.cpu18.domain2.cache_nice_tries = 2 +kernel.sched_domain.cpu18.domain2.flags = 25647 +kernel.sched_domain.cpu18.domain2.forkexec_idx = 0 +kernel.sched_domain.cpu18.domain2.idle_idx = 2 +kernel.sched_domain.cpu18.domain2.imbalance_pct = 125 +kernel.sched_domain.cpu18.domain2.max_interval = 48 +kernel.sched_domain.cpu18.domain2.max_newidle_lb_cost = 104389 +kernel.sched_domain.cpu18.domain2.min_interval = 24 +kernel.sched_domain.cpu18.domain2.name = NUMA +kernel.sched_domain.cpu18.domain2.newidle_idx = 0 +kernel.sched_domain.cpu18.domain2.wake_idx = 0 +kernel.sched_domain.cpu19.domain0.busy_factor = 32 +kernel.sched_domain.cpu19.domain0.busy_idx = 0 +kernel.sched_domain.cpu19.domain0.cache_nice_tries = 0 +kernel.sched_domain.cpu19.domain0.flags = 4783 +kernel.sched_domain.cpu19.domain0.forkexec_idx = 0 +kernel.sched_domain.cpu19.domain0.idle_idx = 0 +kernel.sched_domain.cpu19.domain0.imbalance_pct = 110 +kernel.sched_domain.cpu19.domain0.max_interval = 4 +kernel.sched_domain.cpu19.domain0.max_newidle_lb_cost = 22736 +kernel.sched_domain.cpu19.domain0.min_interval = 2 +kernel.sched_domain.cpu19.domain0.name = SMT +kernel.sched_domain.cpu19.domain0.newidle_idx = 0 +kernel.sched_domain.cpu19.domain0.wake_idx = 0 +kernel.sched_domain.cpu19.domain1.busy_factor = 32 +kernel.sched_domain.cpu19.domain1.busy_idx = 2 +kernel.sched_domain.cpu19.domain1.cache_nice_tries = 1 +kernel.sched_domain.cpu19.domain1.flags = 4655 +kernel.sched_domain.cpu19.domain1.forkexec_idx = 0 +kernel.sched_domain.cpu19.domain1.idle_idx = 0 +kernel.sched_domain.cpu19.domain1.imbalance_pct = 117 +kernel.sched_domain.cpu19.domain1.max_interval = 24 +kernel.sched_domain.cpu19.domain1.max_newidle_lb_cost = 54619 +kernel.sched_domain.cpu19.domain1.min_interval = 12 +kernel.sched_domain.cpu19.domain1.name = MC +kernel.sched_domain.cpu19.domain1.newidle_idx = 0 +kernel.sched_domain.cpu19.domain1.wake_idx = 0 +kernel.sched_domain.cpu19.domain2.busy_factor = 32 +kernel.sched_domain.cpu19.domain2.busy_idx = 3 +kernel.sched_domain.cpu19.domain2.cache_nice_tries = 2 +kernel.sched_domain.cpu19.domain2.flags = 25647 +kernel.sched_domain.cpu19.domain2.forkexec_idx = 0 +kernel.sched_domain.cpu19.domain2.idle_idx = 2 +kernel.sched_domain.cpu19.domain2.imbalance_pct = 125 +kernel.sched_domain.cpu19.domain2.max_interval = 48 +kernel.sched_domain.cpu19.domain2.max_newidle_lb_cost = 114495 +kernel.sched_domain.cpu19.domain2.min_interval = 24 +kernel.sched_domain.cpu19.domain2.name = NUMA +kernel.sched_domain.cpu19.domain2.newidle_idx = 0 +kernel.sched_domain.cpu19.domain2.wake_idx = 0 +kernel.sched_domain.cpu2.domain0.busy_factor = 32 +kernel.sched_domain.cpu2.domain0.busy_idx = 0 +kernel.sched_domain.cpu2.domain0.cache_nice_tries = 0 +kernel.sched_domain.cpu2.domain0.flags = 4783 +kernel.sched_domain.cpu2.domain0.forkexec_idx = 0 +kernel.sched_domain.cpu2.domain0.idle_idx = 0 +kernel.sched_domain.cpu2.domain0.imbalance_pct = 110 +kernel.sched_domain.cpu2.domain0.max_interval = 4 +kernel.sched_domain.cpu2.domain0.max_newidle_lb_cost = 19041 +kernel.sched_domain.cpu2.domain0.min_interval = 2 +kernel.sched_domain.cpu2.domain0.name = SMT +kernel.sched_domain.cpu2.domain0.newidle_idx = 0 +kernel.sched_domain.cpu2.domain0.wake_idx = 0 +kernel.sched_domain.cpu2.domain1.busy_factor = 32 +kernel.sched_domain.cpu2.domain1.busy_idx = 2 +kernel.sched_domain.cpu2.domain1.cache_nice_tries = 1 +kernel.sched_domain.cpu2.domain1.flags = 4655 +kernel.sched_domain.cpu2.domain1.forkexec_idx = 0 +kernel.sched_domain.cpu2.domain1.idle_idx = 0 +kernel.sched_domain.cpu2.domain1.imbalance_pct = 117 +kernel.sched_domain.cpu2.domain1.max_interval = 24 +kernel.sched_domain.cpu2.domain1.max_newidle_lb_cost = 52701 +kernel.sched_domain.cpu2.domain1.min_interval = 12 +kernel.sched_domain.cpu2.domain1.name = MC +kernel.sched_domain.cpu2.domain1.newidle_idx = 0 +kernel.sched_domain.cpu2.domain1.wake_idx = 0 +kernel.sched_domain.cpu2.domain2.busy_factor = 32 +kernel.sched_domain.cpu2.domain2.busy_idx = 3 +kernel.sched_domain.cpu2.domain2.cache_nice_tries = 2 +kernel.sched_domain.cpu2.domain2.flags = 25647 +kernel.sched_domain.cpu2.domain2.forkexec_idx = 0 +kernel.sched_domain.cpu2.domain2.idle_idx = 2 +kernel.sched_domain.cpu2.domain2.imbalance_pct = 125 +kernel.sched_domain.cpu2.domain2.max_interval = 48 +kernel.sched_domain.cpu2.domain2.max_newidle_lb_cost = 90112 +kernel.sched_domain.cpu2.domain2.min_interval = 24 +kernel.sched_domain.cpu2.domain2.name = NUMA +kernel.sched_domain.cpu2.domain2.newidle_idx = 0 +kernel.sched_domain.cpu2.domain2.wake_idx = 0 +kernel.sched_domain.cpu20.domain0.busy_factor = 32 +kernel.sched_domain.cpu20.domain0.busy_idx = 0 +kernel.sched_domain.cpu20.domain0.cache_nice_tries = 0 +kernel.sched_domain.cpu20.domain0.flags = 4783 +kernel.sched_domain.cpu20.domain0.forkexec_idx = 0 +kernel.sched_domain.cpu20.domain0.idle_idx = 0 +kernel.sched_domain.cpu20.domain0.imbalance_pct = 110 +kernel.sched_domain.cpu20.domain0.max_interval = 4 +kernel.sched_domain.cpu20.domain0.max_newidle_lb_cost = 15872 +kernel.sched_domain.cpu20.domain0.min_interval = 2 +kernel.sched_domain.cpu20.domain0.name = SMT +kernel.sched_domain.cpu20.domain0.newidle_idx = 0 +kernel.sched_domain.cpu20.domain0.wake_idx = 0 +kernel.sched_domain.cpu20.domain1.busy_factor = 32 +kernel.sched_domain.cpu20.domain1.busy_idx = 2 +kernel.sched_domain.cpu20.domain1.cache_nice_tries = 1 +kernel.sched_domain.cpu20.domain1.flags = 4655 +kernel.sched_domain.cpu20.domain1.forkexec_idx = 0 +kernel.sched_domain.cpu20.domain1.idle_idx = 0 +kernel.sched_domain.cpu20.domain1.imbalance_pct = 117 +kernel.sched_domain.cpu20.domain1.max_interval = 24 +kernel.sched_domain.cpu20.domain1.max_newidle_lb_cost = 58129 +kernel.sched_domain.cpu20.domain1.min_interval = 12 +kernel.sched_domain.cpu20.domain1.name = MC +kernel.sched_domain.cpu20.domain1.newidle_idx = 0 +kernel.sched_domain.cpu20.domain1.wake_idx = 0 +kernel.sched_domain.cpu20.domain2.busy_factor = 32 +kernel.sched_domain.cpu20.domain2.busy_idx = 3 +kernel.sched_domain.cpu20.domain2.cache_nice_tries = 2 +kernel.sched_domain.cpu20.domain2.flags = 25647 +kernel.sched_domain.cpu20.domain2.forkexec_idx = 0 +kernel.sched_domain.cpu20.domain2.idle_idx = 2 +kernel.sched_domain.cpu20.domain2.imbalance_pct = 125 +kernel.sched_domain.cpu20.domain2.max_interval = 48 +kernel.sched_domain.cpu20.domain2.max_newidle_lb_cost = 75898 +kernel.sched_domain.cpu20.domain2.min_interval = 24 +kernel.sched_domain.cpu20.domain2.name = NUMA +kernel.sched_domain.cpu20.domain2.newidle_idx = 0 +kernel.sched_domain.cpu20.domain2.wake_idx = 0 +kernel.sched_domain.cpu21.domain0.busy_factor = 32 +kernel.sched_domain.cpu21.domain0.busy_idx = 0 +kernel.sched_domain.cpu21.domain0.cache_nice_tries = 0 +kernel.sched_domain.cpu21.domain0.flags = 4783 +kernel.sched_domain.cpu21.domain0.forkexec_idx = 0 +kernel.sched_domain.cpu21.domain0.idle_idx = 0 +kernel.sched_domain.cpu21.domain0.imbalance_pct = 110 +kernel.sched_domain.cpu21.domain0.max_interval = 4 +kernel.sched_domain.cpu21.domain0.max_newidle_lb_cost = 19857 +kernel.sched_domain.cpu21.domain0.min_interval = 2 +kernel.sched_domain.cpu21.domain0.name = SMT +kernel.sched_domain.cpu21.domain0.newidle_idx = 0 +kernel.sched_domain.cpu21.domain0.wake_idx = 0 +kernel.sched_domain.cpu21.domain1.busy_factor = 32 +kernel.sched_domain.cpu21.domain1.busy_idx = 2 +kernel.sched_domain.cpu21.domain1.cache_nice_tries = 1 +kernel.sched_domain.cpu21.domain1.flags = 4655 +kernel.sched_domain.cpu21.domain1.forkexec_idx = 0 +kernel.sched_domain.cpu21.domain1.idle_idx = 0 +kernel.sched_domain.cpu21.domain1.imbalance_pct = 117 +kernel.sched_domain.cpu21.domain1.max_interval = 24 +kernel.sched_domain.cpu21.domain1.max_newidle_lb_cost = 61577 +kernel.sched_domain.cpu21.domain1.min_interval = 12 +kernel.sched_domain.cpu21.domain1.name = MC +kernel.sched_domain.cpu21.domain1.newidle_idx = 0 +kernel.sched_domain.cpu21.domain1.wake_idx = 0 +kernel.sched_domain.cpu21.domain2.busy_factor = 32 +kernel.sched_domain.cpu21.domain2.busy_idx = 3 +kernel.sched_domain.cpu21.domain2.cache_nice_tries = 2 +kernel.sched_domain.cpu21.domain2.flags = 25647 +kernel.sched_domain.cpu21.domain2.forkexec_idx = 0 +kernel.sched_domain.cpu21.domain2.idle_idx = 2 +kernel.sched_domain.cpu21.domain2.imbalance_pct = 125 +kernel.sched_domain.cpu21.domain2.max_interval = 48 +kernel.sched_domain.cpu21.domain2.max_newidle_lb_cost = 105554 +kernel.sched_domain.cpu21.domain2.min_interval = 24 +kernel.sched_domain.cpu21.domain2.name = NUMA +kernel.sched_domain.cpu21.domain2.newidle_idx = 0 +kernel.sched_domain.cpu21.domain2.wake_idx = 0 +kernel.sched_domain.cpu22.domain0.busy_factor = 32 +kernel.sched_domain.cpu22.domain0.busy_idx = 0 +kernel.sched_domain.cpu22.domain0.cache_nice_tries = 0 +kernel.sched_domain.cpu22.domain0.flags = 4783 +kernel.sched_domain.cpu22.domain0.forkexec_idx = 0 +kernel.sched_domain.cpu22.domain0.idle_idx = 0 +kernel.sched_domain.cpu22.domain0.imbalance_pct = 110 +kernel.sched_domain.cpu22.domain0.max_interval = 4 +kernel.sched_domain.cpu22.domain0.max_newidle_lb_cost = 15014 +kernel.sched_domain.cpu22.domain0.min_interval = 2 +kernel.sched_domain.cpu22.domain0.name = SMT +kernel.sched_domain.cpu22.domain0.newidle_idx = 0 +kernel.sched_domain.cpu22.domain0.wake_idx = 0 +kernel.sched_domain.cpu22.domain1.busy_factor = 32 +kernel.sched_domain.cpu22.domain1.busy_idx = 2 +kernel.sched_domain.cpu22.domain1.cache_nice_tries = 1 +kernel.sched_domain.cpu22.domain1.flags = 4655 +kernel.sched_domain.cpu22.domain1.forkexec_idx = 0 +kernel.sched_domain.cpu22.domain1.idle_idx = 0 +kernel.sched_domain.cpu22.domain1.imbalance_pct = 117 +kernel.sched_domain.cpu22.domain1.max_interval = 24 +kernel.sched_domain.cpu22.domain1.max_newidle_lb_cost = 56562 +kernel.sched_domain.cpu22.domain1.min_interval = 12 +kernel.sched_domain.cpu22.domain1.name = MC +kernel.sched_domain.cpu22.domain1.newidle_idx = 0 +kernel.sched_domain.cpu22.domain1.wake_idx = 0 +kernel.sched_domain.cpu22.domain2.busy_factor = 32 +kernel.sched_domain.cpu22.domain2.busy_idx = 3 +kernel.sched_domain.cpu22.domain2.cache_nice_tries = 2 +kernel.sched_domain.cpu22.domain2.flags = 25647 +kernel.sched_domain.cpu22.domain2.forkexec_idx = 0 +kernel.sched_domain.cpu22.domain2.idle_idx = 2 +kernel.sched_domain.cpu22.domain2.imbalance_pct = 125 +kernel.sched_domain.cpu22.domain2.max_interval = 48 +kernel.sched_domain.cpu22.domain2.max_newidle_lb_cost = 69755 +kernel.sched_domain.cpu22.domain2.min_interval = 24 +kernel.sched_domain.cpu22.domain2.name = NUMA +kernel.sched_domain.cpu22.domain2.newidle_idx = 0 +kernel.sched_domain.cpu22.domain2.wake_idx = 0 +kernel.sched_domain.cpu23.domain0.busy_factor = 32 +kernel.sched_domain.cpu23.domain0.busy_idx = 0 +kernel.sched_domain.cpu23.domain0.cache_nice_tries = 0 +kernel.sched_domain.cpu23.domain0.flags = 4783 +kernel.sched_domain.cpu23.domain0.forkexec_idx = 0 +kernel.sched_domain.cpu23.domain0.idle_idx = 0 +kernel.sched_domain.cpu23.domain0.imbalance_pct = 110 +kernel.sched_domain.cpu23.domain0.max_interval = 4 +kernel.sched_domain.cpu23.domain0.max_newidle_lb_cost = 15899 +kernel.sched_domain.cpu23.domain0.min_interval = 2 +kernel.sched_domain.cpu23.domain0.name = SMT +kernel.sched_domain.cpu23.domain0.newidle_idx = 0 +kernel.sched_domain.cpu23.domain0.wake_idx = 0 +kernel.sched_domain.cpu23.domain1.busy_factor = 32 +kernel.sched_domain.cpu23.domain1.busy_idx = 2 +kernel.sched_domain.cpu23.domain1.cache_nice_tries = 1 +kernel.sched_domain.cpu23.domain1.flags = 4655 +kernel.sched_domain.cpu23.domain1.forkexec_idx = 0 +kernel.sched_domain.cpu23.domain1.idle_idx = 0 +kernel.sched_domain.cpu23.domain1.imbalance_pct = 117 +kernel.sched_domain.cpu23.domain1.max_interval = 24 +kernel.sched_domain.cpu23.domain1.max_newidle_lb_cost = 51895 +kernel.sched_domain.cpu23.domain1.min_interval = 12 +kernel.sched_domain.cpu23.domain1.name = MC +kernel.sched_domain.cpu23.domain1.newidle_idx = 0 +kernel.sched_domain.cpu23.domain1.wake_idx = 0 +kernel.sched_domain.cpu23.domain2.busy_factor = 32 +kernel.sched_domain.cpu23.domain2.busy_idx = 3 +kernel.sched_domain.cpu23.domain2.cache_nice_tries = 2 +kernel.sched_domain.cpu23.domain2.flags = 25647 +kernel.sched_domain.cpu23.domain2.forkexec_idx = 0 +kernel.sched_domain.cpu23.domain2.idle_idx = 2 +kernel.sched_domain.cpu23.domain2.imbalance_pct = 125 +kernel.sched_domain.cpu23.domain2.max_interval = 48 +kernel.sched_domain.cpu23.domain2.max_newidle_lb_cost = 106236 +kernel.sched_domain.cpu23.domain2.min_interval = 24 +kernel.sched_domain.cpu23.domain2.name = NUMA +kernel.sched_domain.cpu23.domain2.newidle_idx = 0 +kernel.sched_domain.cpu23.domain2.wake_idx = 0 +kernel.sched_domain.cpu3.domain0.busy_factor = 32 +kernel.sched_domain.cpu3.domain0.busy_idx = 0 +kernel.sched_domain.cpu3.domain0.cache_nice_tries = 0 +kernel.sched_domain.cpu3.domain0.flags = 4783 +kernel.sched_domain.cpu3.domain0.forkexec_idx = 0 +kernel.sched_domain.cpu3.domain0.idle_idx = 0 +kernel.sched_domain.cpu3.domain0.imbalance_pct = 110 +kernel.sched_domain.cpu3.domain0.max_interval = 4 +kernel.sched_domain.cpu3.domain0.max_newidle_lb_cost = 23640 +kernel.sched_domain.cpu3.domain0.min_interval = 2 +kernel.sched_domain.cpu3.domain0.name = SMT +kernel.sched_domain.cpu3.domain0.newidle_idx = 0 +kernel.sched_domain.cpu3.domain0.wake_idx = 0 +kernel.sched_domain.cpu3.domain1.busy_factor = 32 +kernel.sched_domain.cpu3.domain1.busy_idx = 2 +kernel.sched_domain.cpu3.domain1.cache_nice_tries = 1 +kernel.sched_domain.cpu3.domain1.flags = 4655 +kernel.sched_domain.cpu3.domain1.forkexec_idx = 0 +kernel.sched_domain.cpu3.domain1.idle_idx = 0 +kernel.sched_domain.cpu3.domain1.imbalance_pct = 117 +kernel.sched_domain.cpu3.domain1.max_interval = 24 +kernel.sched_domain.cpu3.domain1.max_newidle_lb_cost = 59886 +kernel.sched_domain.cpu3.domain1.min_interval = 12 +kernel.sched_domain.cpu3.domain1.name = MC +kernel.sched_domain.cpu3.domain1.newidle_idx = 0 +kernel.sched_domain.cpu3.domain1.wake_idx = 0 +kernel.sched_domain.cpu3.domain2.busy_factor = 32 +kernel.sched_domain.cpu3.domain2.busy_idx = 3 +kernel.sched_domain.cpu3.domain2.cache_nice_tries = 2 +kernel.sched_domain.cpu3.domain2.flags = 25647 +kernel.sched_domain.cpu3.domain2.forkexec_idx = 0 +kernel.sched_domain.cpu3.domain2.idle_idx = 2 +kernel.sched_domain.cpu3.domain2.imbalance_pct = 125 +kernel.sched_domain.cpu3.domain2.max_interval = 48 +kernel.sched_domain.cpu3.domain2.max_newidle_lb_cost = 92093 +kernel.sched_domain.cpu3.domain2.min_interval = 24 +kernel.sched_domain.cpu3.domain2.name = NUMA +kernel.sched_domain.cpu3.domain2.newidle_idx = 0 +kernel.sched_domain.cpu3.domain2.wake_idx = 0 +kernel.sched_domain.cpu4.domain0.busy_factor = 32 +kernel.sched_domain.cpu4.domain0.busy_idx = 0 +kernel.sched_domain.cpu4.domain0.cache_nice_tries = 0 +kernel.sched_domain.cpu4.domain0.flags = 4783 +kernel.sched_domain.cpu4.domain0.forkexec_idx = 0 +kernel.sched_domain.cpu4.domain0.idle_idx = 0 +kernel.sched_domain.cpu4.domain0.imbalance_pct = 110 +kernel.sched_domain.cpu4.domain0.max_interval = 4 +kernel.sched_domain.cpu4.domain0.max_newidle_lb_cost = 13647 +kernel.sched_domain.cpu4.domain0.min_interval = 2 +kernel.sched_domain.cpu4.domain0.name = SMT +kernel.sched_domain.cpu4.domain0.newidle_idx = 0 +kernel.sched_domain.cpu4.domain0.wake_idx = 0 +kernel.sched_domain.cpu4.domain1.busy_factor = 32 +kernel.sched_domain.cpu4.domain1.busy_idx = 2 +kernel.sched_domain.cpu4.domain1.cache_nice_tries = 1 +kernel.sched_domain.cpu4.domain1.flags = 4655 +kernel.sched_domain.cpu4.domain1.forkexec_idx = 0 +kernel.sched_domain.cpu4.domain1.idle_idx = 0 +kernel.sched_domain.cpu4.domain1.imbalance_pct = 117 +kernel.sched_domain.cpu4.domain1.max_interval = 24 +kernel.sched_domain.cpu4.domain1.max_newidle_lb_cost = 52838 +kernel.sched_domain.cpu4.domain1.min_interval = 12 +kernel.sched_domain.cpu4.domain1.name = MC +kernel.sched_domain.cpu4.domain1.newidle_idx = 0 +kernel.sched_domain.cpu4.domain1.wake_idx = 0 +kernel.sched_domain.cpu4.domain2.busy_factor = 32 +kernel.sched_domain.cpu4.domain2.busy_idx = 3 +kernel.sched_domain.cpu4.domain2.cache_nice_tries = 2 +kernel.sched_domain.cpu4.domain2.flags = 25647 +kernel.sched_domain.cpu4.domain2.forkexec_idx = 0 +kernel.sched_domain.cpu4.domain2.idle_idx = 2 +kernel.sched_domain.cpu4.domain2.imbalance_pct = 125 +kernel.sched_domain.cpu4.domain2.max_interval = 48 +kernel.sched_domain.cpu4.domain2.max_newidle_lb_cost = 76955 +kernel.sched_domain.cpu4.domain2.min_interval = 24 +kernel.sched_domain.cpu4.domain2.name = NUMA +kernel.sched_domain.cpu4.domain2.newidle_idx = 0 +kernel.sched_domain.cpu4.domain2.wake_idx = 0 +kernel.sched_domain.cpu5.domain0.busy_factor = 32 +kernel.sched_domain.cpu5.domain0.busy_idx = 0 +kernel.sched_domain.cpu5.domain0.cache_nice_tries = 0 +kernel.sched_domain.cpu5.domain0.flags = 4783 +kernel.sched_domain.cpu5.domain0.forkexec_idx = 0 +kernel.sched_domain.cpu5.domain0.idle_idx = 0 +kernel.sched_domain.cpu5.domain0.imbalance_pct = 110 +kernel.sched_domain.cpu5.domain0.max_interval = 4 +kernel.sched_domain.cpu5.domain0.max_newidle_lb_cost = 17661 +kernel.sched_domain.cpu5.domain0.min_interval = 2 +kernel.sched_domain.cpu5.domain0.name = SMT +kernel.sched_domain.cpu5.domain0.newidle_idx = 0 +kernel.sched_domain.cpu5.domain0.wake_idx = 0 +kernel.sched_domain.cpu5.domain1.busy_factor = 32 +kernel.sched_domain.cpu5.domain1.busy_idx = 2 +kernel.sched_domain.cpu5.domain1.cache_nice_tries = 1 +kernel.sched_domain.cpu5.domain1.flags = 4655 +kernel.sched_domain.cpu5.domain1.forkexec_idx = 0 +kernel.sched_domain.cpu5.domain1.idle_idx = 0 +kernel.sched_domain.cpu5.domain1.imbalance_pct = 117 +kernel.sched_domain.cpu5.domain1.max_interval = 24 +kernel.sched_domain.cpu5.domain1.max_newidle_lb_cost = 56759 +kernel.sched_domain.cpu5.domain1.min_interval = 12 +kernel.sched_domain.cpu5.domain1.name = MC +kernel.sched_domain.cpu5.domain1.newidle_idx = 0 +kernel.sched_domain.cpu5.domain1.wake_idx = 0 +kernel.sched_domain.cpu5.domain2.busy_factor = 32 +kernel.sched_domain.cpu5.domain2.busy_idx = 3 +kernel.sched_domain.cpu5.domain2.cache_nice_tries = 2 +kernel.sched_domain.cpu5.domain2.flags = 25647 +kernel.sched_domain.cpu5.domain2.forkexec_idx = 0 +kernel.sched_domain.cpu5.domain2.idle_idx = 2 +kernel.sched_domain.cpu5.domain2.imbalance_pct = 125 +kernel.sched_domain.cpu5.domain2.max_interval = 48 +kernel.sched_domain.cpu5.domain2.max_newidle_lb_cost = 95409 +kernel.sched_domain.cpu5.domain2.min_interval = 24 +kernel.sched_domain.cpu5.domain2.name = NUMA +kernel.sched_domain.cpu5.domain2.newidle_idx = 0 +kernel.sched_domain.cpu5.domain2.wake_idx = 0 +kernel.sched_domain.cpu6.domain0.busy_factor = 32 +kernel.sched_domain.cpu6.domain0.busy_idx = 0 +kernel.sched_domain.cpu6.domain0.cache_nice_tries = 0 +kernel.sched_domain.cpu6.domain0.flags = 4783 +kernel.sched_domain.cpu6.domain0.forkexec_idx = 0 +kernel.sched_domain.cpu6.domain0.idle_idx = 0 +kernel.sched_domain.cpu6.domain0.imbalance_pct = 110 +kernel.sched_domain.cpu6.domain0.max_interval = 4 +kernel.sched_domain.cpu6.domain0.max_newidle_lb_cost = 22858 +kernel.sched_domain.cpu6.domain0.min_interval = 2 +kernel.sched_domain.cpu6.domain0.name = SMT +kernel.sched_domain.cpu6.domain0.newidle_idx = 0 +kernel.sched_domain.cpu6.domain0.wake_idx = 0 +kernel.sched_domain.cpu6.domain1.busy_factor = 32 +kernel.sched_domain.cpu6.domain1.busy_idx = 2 +kernel.sched_domain.cpu6.domain1.cache_nice_tries = 1 +kernel.sched_domain.cpu6.domain1.flags = 4655 +kernel.sched_domain.cpu6.domain1.forkexec_idx = 0 +kernel.sched_domain.cpu6.domain1.idle_idx = 0 +kernel.sched_domain.cpu6.domain1.imbalance_pct = 117 +kernel.sched_domain.cpu6.domain1.max_interval = 24 +kernel.sched_domain.cpu6.domain1.max_newidle_lb_cost = 47643 +kernel.sched_domain.cpu6.domain1.min_interval = 12 +kernel.sched_domain.cpu6.domain1.name = MC +kernel.sched_domain.cpu6.domain1.newidle_idx = 0 +kernel.sched_domain.cpu6.domain1.wake_idx = 0 +kernel.sched_domain.cpu6.domain2.busy_factor = 32 +kernel.sched_domain.cpu6.domain2.busy_idx = 3 +kernel.sched_domain.cpu6.domain2.cache_nice_tries = 2 +kernel.sched_domain.cpu6.domain2.flags = 25647 +kernel.sched_domain.cpu6.domain2.forkexec_idx = 0 +kernel.sched_domain.cpu6.domain2.idle_idx = 2 +kernel.sched_domain.cpu6.domain2.imbalance_pct = 125 +kernel.sched_domain.cpu6.domain2.max_interval = 48 +kernel.sched_domain.cpu6.domain2.max_newidle_lb_cost = 87229 +kernel.sched_domain.cpu6.domain2.min_interval = 24 +kernel.sched_domain.cpu6.domain2.name = NUMA +kernel.sched_domain.cpu6.domain2.newidle_idx = 0 +kernel.sched_domain.cpu6.domain2.wake_idx = 0 +kernel.sched_domain.cpu7.domain0.busy_factor = 32 +kernel.sched_domain.cpu7.domain0.busy_idx = 0 +kernel.sched_domain.cpu7.domain0.cache_nice_tries = 0 +kernel.sched_domain.cpu7.domain0.flags = 4783 +kernel.sched_domain.cpu7.domain0.forkexec_idx = 0 +kernel.sched_domain.cpu7.domain0.idle_idx = 0 +kernel.sched_domain.cpu7.domain0.imbalance_pct = 110 +kernel.sched_domain.cpu7.domain0.max_interval = 4 +kernel.sched_domain.cpu7.domain0.max_newidle_lb_cost = 20582 +kernel.sched_domain.cpu7.domain0.min_interval = 2 +kernel.sched_domain.cpu7.domain0.name = SMT +kernel.sched_domain.cpu7.domain0.newidle_idx = 0 +kernel.sched_domain.cpu7.domain0.wake_idx = 0 +kernel.sched_domain.cpu7.domain1.busy_factor = 32 +kernel.sched_domain.cpu7.domain1.busy_idx = 2 +kernel.sched_domain.cpu7.domain1.cache_nice_tries = 1 +kernel.sched_domain.cpu7.domain1.flags = 4655 +kernel.sched_domain.cpu7.domain1.forkexec_idx = 0 +kernel.sched_domain.cpu7.domain1.idle_idx = 0 +kernel.sched_domain.cpu7.domain1.imbalance_pct = 117 +kernel.sched_domain.cpu7.domain1.max_interval = 24 +kernel.sched_domain.cpu7.domain1.max_newidle_lb_cost = 58206 +kernel.sched_domain.cpu7.domain1.min_interval = 12 +kernel.sched_domain.cpu7.domain1.name = MC +kernel.sched_domain.cpu7.domain1.newidle_idx = 0 +kernel.sched_domain.cpu7.domain1.wake_idx = 0 +kernel.sched_domain.cpu7.domain2.busy_factor = 32 +kernel.sched_domain.cpu7.domain2.busy_idx = 3 +kernel.sched_domain.cpu7.domain2.cache_nice_tries = 2 +kernel.sched_domain.cpu7.domain2.flags = 25647 +kernel.sched_domain.cpu7.domain2.forkexec_idx = 0 +kernel.sched_domain.cpu7.domain2.idle_idx = 2 +kernel.sched_domain.cpu7.domain2.imbalance_pct = 125 +kernel.sched_domain.cpu7.domain2.max_interval = 48 +kernel.sched_domain.cpu7.domain2.max_newidle_lb_cost = 92796 +kernel.sched_domain.cpu7.domain2.min_interval = 24 +kernel.sched_domain.cpu7.domain2.name = NUMA +kernel.sched_domain.cpu7.domain2.newidle_idx = 0 +kernel.sched_domain.cpu7.domain2.wake_idx = 0 +kernel.sched_domain.cpu8.domain0.busy_factor = 32 +kernel.sched_domain.cpu8.domain0.busy_idx = 0 +kernel.sched_domain.cpu8.domain0.cache_nice_tries = 0 +kernel.sched_domain.cpu8.domain0.flags = 4783 +kernel.sched_domain.cpu8.domain0.forkexec_idx = 0 +kernel.sched_domain.cpu8.domain0.idle_idx = 0 +kernel.sched_domain.cpu8.domain0.imbalance_pct = 110 +kernel.sched_domain.cpu8.domain0.max_interval = 4 +kernel.sched_domain.cpu8.domain0.max_newidle_lb_cost = 20418 +kernel.sched_domain.cpu8.domain0.min_interval = 2 +kernel.sched_domain.cpu8.domain0.name = SMT +kernel.sched_domain.cpu8.domain0.newidle_idx = 0 +kernel.sched_domain.cpu8.domain0.wake_idx = 0 +kernel.sched_domain.cpu8.domain1.busy_factor = 32 +kernel.sched_domain.cpu8.domain1.busy_idx = 2 +kernel.sched_domain.cpu8.domain1.cache_nice_tries = 1 +kernel.sched_domain.cpu8.domain1.flags = 4655 +kernel.sched_domain.cpu8.domain1.forkexec_idx = 0 +kernel.sched_domain.cpu8.domain1.idle_idx = 0 +kernel.sched_domain.cpu8.domain1.imbalance_pct = 117 +kernel.sched_domain.cpu8.domain1.max_interval = 24 +kernel.sched_domain.cpu8.domain1.max_newidle_lb_cost = 56916 +kernel.sched_domain.cpu8.domain1.min_interval = 12 +kernel.sched_domain.cpu8.domain1.name = MC +kernel.sched_domain.cpu8.domain1.newidle_idx = 0 +kernel.sched_domain.cpu8.domain1.wake_idx = 0 +kernel.sched_domain.cpu8.domain2.busy_factor = 32 +kernel.sched_domain.cpu8.domain2.busy_idx = 3 +kernel.sched_domain.cpu8.domain2.cache_nice_tries = 2 +kernel.sched_domain.cpu8.domain2.flags = 25647 +kernel.sched_domain.cpu8.domain2.forkexec_idx = 0 +kernel.sched_domain.cpu8.domain2.idle_idx = 2 +kernel.sched_domain.cpu8.domain2.imbalance_pct = 125 +kernel.sched_domain.cpu8.domain2.max_interval = 48 +kernel.sched_domain.cpu8.domain2.max_newidle_lb_cost = 86659 +kernel.sched_domain.cpu8.domain2.min_interval = 24 +kernel.sched_domain.cpu8.domain2.name = NUMA +kernel.sched_domain.cpu8.domain2.newidle_idx = 0 +kernel.sched_domain.cpu8.domain2.wake_idx = 0 +kernel.sched_domain.cpu9.domain0.busy_factor = 32 +kernel.sched_domain.cpu9.domain0.busy_idx = 0 +kernel.sched_domain.cpu9.domain0.cache_nice_tries = 0 +kernel.sched_domain.cpu9.domain0.flags = 4783 +kernel.sched_domain.cpu9.domain0.forkexec_idx = 0 +kernel.sched_domain.cpu9.domain0.idle_idx = 0 +kernel.sched_domain.cpu9.domain0.imbalance_pct = 110 +kernel.sched_domain.cpu9.domain0.max_interval = 4 +kernel.sched_domain.cpu9.domain0.max_newidle_lb_cost = 14095 +kernel.sched_domain.cpu9.domain0.min_interval = 2 +kernel.sched_domain.cpu9.domain0.name = SMT +kernel.sched_domain.cpu9.domain0.newidle_idx = 0 +kernel.sched_domain.cpu9.domain0.wake_idx = 0 +kernel.sched_domain.cpu9.domain1.busy_factor = 32 +kernel.sched_domain.cpu9.domain1.busy_idx = 2 +kernel.sched_domain.cpu9.domain1.cache_nice_tries = 1 +kernel.sched_domain.cpu9.domain1.flags = 4655 +kernel.sched_domain.cpu9.domain1.forkexec_idx = 0 +kernel.sched_domain.cpu9.domain1.idle_idx = 0 +kernel.sched_domain.cpu9.domain1.imbalance_pct = 117 +kernel.sched_domain.cpu9.domain1.max_interval = 24 +kernel.sched_domain.cpu9.domain1.max_newidle_lb_cost = 55804 +kernel.sched_domain.cpu9.domain1.min_interval = 12 +kernel.sched_domain.cpu9.domain1.name = MC +kernel.sched_domain.cpu9.domain1.newidle_idx = 0 +kernel.sched_domain.cpu9.domain1.wake_idx = 0 +kernel.sched_domain.cpu9.domain2.busy_factor = 32 +kernel.sched_domain.cpu9.domain2.busy_idx = 3 +kernel.sched_domain.cpu9.domain2.cache_nice_tries = 2 +kernel.sched_domain.cpu9.domain2.flags = 25647 +kernel.sched_domain.cpu9.domain2.forkexec_idx = 0 +kernel.sched_domain.cpu9.domain2.idle_idx = 2 +kernel.sched_domain.cpu9.domain2.imbalance_pct = 125 +kernel.sched_domain.cpu9.domain2.max_interval = 48 +kernel.sched_domain.cpu9.domain2.max_newidle_lb_cost = 97969 +kernel.sched_domain.cpu9.domain2.min_interval = 24 +kernel.sched_domain.cpu9.domain2.name = NUMA +kernel.sched_domain.cpu9.domain2.newidle_idx = 0 +kernel.sched_domain.cpu9.domain2.wake_idx = 0 +kernel.sched_latency_ns = 24000000 +kernel.sched_migration_cost_ns = 500000 +kernel.sched_min_granularity_ns = 3000000 +kernel.sched_nr_migrate = 32 +kernel.sched_rr_timeslice_ms = 100 +kernel.sched_rt_period_us = 1000000 +kernel.sched_rt_runtime_us = 950000 +kernel.sched_schedstats = 0 +kernel.sched_tunable_scaling = 1 +kernel.sched_wakeup_granularity_ns = 4000000 +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 = 0 +kernel.stack_tracer_enabled = 0 +kernel.sysctl_writes_strict = 1 +kernel.sysrq = 16 +kernel.tainted = 4608 +kernel.threads-max = 1546826 +kernel.timer_migration = 1 +kernel.traceoff_on_warning = 0 +kernel.tracepoint_printk = 0 +kernel.unknown_nmi_panic = 0 +kernel.unprivileged_bpf_disabled = 0 +kernel.usermodehelper.bset = 4294967295 63 +kernel.usermodehelper.inheritable = 4294967295 63 +kernel.version = #1 SMP Tue Jun 4 09:15:25 EDT 2019 +kernel.watchdog = 1 +kernel.watchdog_cpumask = 0-47 +kernel.watchdog_thresh = 10 +net.bridge.bridge-nf-call-arptables = 0 +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.bpf_jit_harden = 0 +net.core.bpf_jit_kallsyms = 0 +net.core.bpf_jit_limit = 398458880 +net.core.busy_poll = 0 +net.core.busy_read = 0 +net.core.default_qdisc = pfifo_fast +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 = 0000,00000000 +net.core.flow_limit_table_len = 4096 +net.core.max_skb_frags = 17 +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 = 37:2d:8c:ec:d1:ee:54:3d:b2:b7:e1:c3:90:0d:a0:f0:1f:a0:dd:5a:aa:d6:46:ab:a5:3e:fe:e5:c7:a8:26:82:50:c2:30:d3:29:fb:e8:68:42:1a:96:d5:b1:4e:ee:13:fc:f2:f3:19 +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 = 4096 +net.core.tstamp_allow_data = 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.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.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 = 1 +net.ipv4.conf.all.proxy_arp = 0 +net.ipv4.conf.all.proxy_arp_pvlan = 0 +net.ipv4.conf.all.route_localnet = 0 +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.bond0.accept_local = 0 +net.ipv4.conf.bond0.accept_redirects = 1 +net.ipv4.conf.bond0.accept_source_route = 0 +net.ipv4.conf.bond0.arp_accept = 0 +net.ipv4.conf.bond0.arp_announce = 0 +net.ipv4.conf.bond0.arp_filter = 0 +net.ipv4.conf.bond0.arp_ignore = 0 +net.ipv4.conf.bond0.arp_notify = 0 +net.ipv4.conf.bond0.bc_forwarding = 0 +net.ipv4.conf.bond0.bootp_relay = 0 +net.ipv4.conf.bond0.disable_policy = 0 +net.ipv4.conf.bond0.disable_xfrm = 0 +net.ipv4.conf.bond0.drop_gratuitous_arp = 0 +net.ipv4.conf.bond0.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.bond0.force_igmp_version = 0 +net.ipv4.conf.bond0.forwarding = 1 +net.ipv4.conf.bond0.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.bond0.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.bond0.ignore_routes_with_linkdown = 0 +net.ipv4.conf.bond0.log_martians = 0 +net.ipv4.conf.bond0.mc_forwarding = 0 +net.ipv4.conf.bond0.medium_id = 0 +net.ipv4.conf.bond0.promote_secondaries = 1 +net.ipv4.conf.bond0.proxy_arp = 0 +net.ipv4.conf.bond0.proxy_arp_pvlan = 0 +net.ipv4.conf.bond0.route_localnet = 0 +net.ipv4.conf.bond0.rp_filter = 1 +net.ipv4.conf.bond0.secure_redirects = 1 +net.ipv4.conf.bond0.send_redirects = 1 +net.ipv4.conf.bond0.shared_media = 1 +net.ipv4.conf.bond0.src_valid_mark = 0 +net.ipv4.conf.bond0.tag = 0 +net.ipv4.conf.br-294661236c88.accept_local = 0 +net.ipv4.conf.br-294661236c88.accept_redirects = 1 +net.ipv4.conf.br-294661236c88.accept_source_route = 0 +net.ipv4.conf.br-294661236c88.arp_accept = 0 +net.ipv4.conf.br-294661236c88.arp_announce = 0 +net.ipv4.conf.br-294661236c88.arp_filter = 0 +net.ipv4.conf.br-294661236c88.arp_ignore = 0 +net.ipv4.conf.br-294661236c88.arp_notify = 0 +net.ipv4.conf.br-294661236c88.bc_forwarding = 0 +net.ipv4.conf.br-294661236c88.bootp_relay = 0 +net.ipv4.conf.br-294661236c88.disable_policy = 0 +net.ipv4.conf.br-294661236c88.disable_xfrm = 0 +net.ipv4.conf.br-294661236c88.drop_gratuitous_arp = 0 +net.ipv4.conf.br-294661236c88.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.br-294661236c88.force_igmp_version = 0 +net.ipv4.conf.br-294661236c88.forwarding = 1 +net.ipv4.conf.br-294661236c88.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.br-294661236c88.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.br-294661236c88.ignore_routes_with_linkdown = 0 +net.ipv4.conf.br-294661236c88.log_martians = 0 +net.ipv4.conf.br-294661236c88.mc_forwarding = 0 +net.ipv4.conf.br-294661236c88.medium_id = 0 +net.ipv4.conf.br-294661236c88.promote_secondaries = 1 +net.ipv4.conf.br-294661236c88.proxy_arp = 0 +net.ipv4.conf.br-294661236c88.proxy_arp_pvlan = 0 +net.ipv4.conf.br-294661236c88.route_localnet = 0 +net.ipv4.conf.br-294661236c88.rp_filter = 1 +net.ipv4.conf.br-294661236c88.secure_redirects = 1 +net.ipv4.conf.br-294661236c88.send_redirects = 1 +net.ipv4.conf.br-294661236c88.shared_media = 1 +net.ipv4.conf.br-294661236c88.src_valid_mark = 0 +net.ipv4.conf.br-294661236c88.tag = 0 +net.ipv4.conf.br-5f8d81e2374e.accept_local = 0 +net.ipv4.conf.br-5f8d81e2374e.accept_redirects = 1 +net.ipv4.conf.br-5f8d81e2374e.accept_source_route = 0 +net.ipv4.conf.br-5f8d81e2374e.arp_accept = 0 +net.ipv4.conf.br-5f8d81e2374e.arp_announce = 0 +net.ipv4.conf.br-5f8d81e2374e.arp_filter = 0 +net.ipv4.conf.br-5f8d81e2374e.arp_ignore = 0 +net.ipv4.conf.br-5f8d81e2374e.arp_notify = 0 +net.ipv4.conf.br-5f8d81e2374e.bc_forwarding = 0 +net.ipv4.conf.br-5f8d81e2374e.bootp_relay = 0 +net.ipv4.conf.br-5f8d81e2374e.disable_policy = 0 +net.ipv4.conf.br-5f8d81e2374e.disable_xfrm = 0 +net.ipv4.conf.br-5f8d81e2374e.drop_gratuitous_arp = 0 +net.ipv4.conf.br-5f8d81e2374e.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.br-5f8d81e2374e.force_igmp_version = 0 +net.ipv4.conf.br-5f8d81e2374e.forwarding = 1 +net.ipv4.conf.br-5f8d81e2374e.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.br-5f8d81e2374e.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.br-5f8d81e2374e.ignore_routes_with_linkdown = 0 +net.ipv4.conf.br-5f8d81e2374e.log_martians = 0 +net.ipv4.conf.br-5f8d81e2374e.mc_forwarding = 0 +net.ipv4.conf.br-5f8d81e2374e.medium_id = 0 +net.ipv4.conf.br-5f8d81e2374e.promote_secondaries = 1 +net.ipv4.conf.br-5f8d81e2374e.proxy_arp = 0 +net.ipv4.conf.br-5f8d81e2374e.proxy_arp_pvlan = 0 +net.ipv4.conf.br-5f8d81e2374e.route_localnet = 0 +net.ipv4.conf.br-5f8d81e2374e.rp_filter = 1 +net.ipv4.conf.br-5f8d81e2374e.secure_redirects = 1 +net.ipv4.conf.br-5f8d81e2374e.send_redirects = 1 +net.ipv4.conf.br-5f8d81e2374e.shared_media = 1 +net.ipv4.conf.br-5f8d81e2374e.src_valid_mark = 0 +net.ipv4.conf.br-5f8d81e2374e.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.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 = 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.bc_forwarding = 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.drop_gratuitous_arp = 0 +net.ipv4.conf.docker0.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.docker0.force_igmp_version = 0 +net.ipv4.conf.docker0.forwarding = 1 +net.ipv4.conf.docker0.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.docker0.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.docker0.ignore_routes_with_linkdown = 0 +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.em1.accept_local = 0 +net.ipv4.conf.em1.accept_redirects = 1 +net.ipv4.conf.em1.accept_source_route = 0 +net.ipv4.conf.em1.arp_accept = 0 +net.ipv4.conf.em1.arp_announce = 0 +net.ipv4.conf.em1.arp_filter = 0 +net.ipv4.conf.em1.arp_ignore = 0 +net.ipv4.conf.em1.arp_notify = 0 +net.ipv4.conf.em1.bc_forwarding = 0 +net.ipv4.conf.em1.bootp_relay = 0 +net.ipv4.conf.em1.disable_policy = 0 +net.ipv4.conf.em1.disable_xfrm = 0 +net.ipv4.conf.em1.drop_gratuitous_arp = 0 +net.ipv4.conf.em1.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.em1.force_igmp_version = 0 +net.ipv4.conf.em1.forwarding = 1 +net.ipv4.conf.em1.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.em1.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.em1.ignore_routes_with_linkdown = 0 +net.ipv4.conf.em1.log_martians = 0 +net.ipv4.conf.em1.mc_forwarding = 0 +net.ipv4.conf.em1.medium_id = 0 +net.ipv4.conf.em1.promote_secondaries = 1 +net.ipv4.conf.em1.proxy_arp = 0 +net.ipv4.conf.em1.proxy_arp_pvlan = 0 +net.ipv4.conf.em1.route_localnet = 0 +net.ipv4.conf.em1.rp_filter = 1 +net.ipv4.conf.em1.secure_redirects = 1 +net.ipv4.conf.em1.send_redirects = 1 +net.ipv4.conf.em1.shared_media = 1 +net.ipv4.conf.em1.src_valid_mark = 0 +net.ipv4.conf.em1.tag = 0 +net.ipv4.conf.em2.accept_local = 0 +net.ipv4.conf.em2.accept_redirects = 1 +net.ipv4.conf.em2.accept_source_route = 0 +net.ipv4.conf.em2.arp_accept = 0 +net.ipv4.conf.em2.arp_announce = 0 +net.ipv4.conf.em2.arp_filter = 0 +net.ipv4.conf.em2.arp_ignore = 0 +net.ipv4.conf.em2.arp_notify = 0 +net.ipv4.conf.em2.bc_forwarding = 0 +net.ipv4.conf.em2.bootp_relay = 0 +net.ipv4.conf.em2.disable_policy = 0 +net.ipv4.conf.em2.disable_xfrm = 0 +net.ipv4.conf.em2.drop_gratuitous_arp = 0 +net.ipv4.conf.em2.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.em2.force_igmp_version = 0 +net.ipv4.conf.em2.forwarding = 1 +net.ipv4.conf.em2.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.em2.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.em2.ignore_routes_with_linkdown = 0 +net.ipv4.conf.em2.log_martians = 0 +net.ipv4.conf.em2.mc_forwarding = 0 +net.ipv4.conf.em2.medium_id = 0 +net.ipv4.conf.em2.promote_secondaries = 1 +net.ipv4.conf.em2.proxy_arp = 0 +net.ipv4.conf.em2.proxy_arp_pvlan = 0 +net.ipv4.conf.em2.route_localnet = 0 +net.ipv4.conf.em2.rp_filter = 1 +net.ipv4.conf.em2.secure_redirects = 1 +net.ipv4.conf.em2.send_redirects = 1 +net.ipv4.conf.em2.shared_media = 1 +net.ipv4.conf.em2.src_valid_mark = 0 +net.ipv4.conf.em2.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.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 = 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.lxdbr0.accept_local = 0 +net.ipv4.conf.lxdbr0.accept_redirects = 1 +net.ipv4.conf.lxdbr0.accept_source_route = 0 +net.ipv4.conf.lxdbr0.arp_accept = 0 +net.ipv4.conf.lxdbr0.arp_announce = 0 +net.ipv4.conf.lxdbr0.arp_filter = 0 +net.ipv4.conf.lxdbr0.arp_ignore = 0 +net.ipv4.conf.lxdbr0.arp_notify = 0 +net.ipv4.conf.lxdbr0.bc_forwarding = 0 +net.ipv4.conf.lxdbr0.bootp_relay = 0 +net.ipv4.conf.lxdbr0.disable_policy = 0 +net.ipv4.conf.lxdbr0.disable_xfrm = 0 +net.ipv4.conf.lxdbr0.drop_gratuitous_arp = 0 +net.ipv4.conf.lxdbr0.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.lxdbr0.force_igmp_version = 0 +net.ipv4.conf.lxdbr0.forwarding = 1 +net.ipv4.conf.lxdbr0.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.lxdbr0.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.lxdbr0.ignore_routes_with_linkdown = 0 +net.ipv4.conf.lxdbr0.log_martians = 0 +net.ipv4.conf.lxdbr0.mc_forwarding = 0 +net.ipv4.conf.lxdbr0.medium_id = 0 +net.ipv4.conf.lxdbr0.promote_secondaries = 1 +net.ipv4.conf.lxdbr0.proxy_arp = 0 +net.ipv4.conf.lxdbr0.proxy_arp_pvlan = 0 +net.ipv4.conf.lxdbr0.route_localnet = 0 +net.ipv4.conf.lxdbr0.rp_filter = 1 +net.ipv4.conf.lxdbr0.secure_redirects = 1 +net.ipv4.conf.lxdbr0.send_redirects = 1 +net.ipv4.conf.lxdbr0.shared_media = 1 +net.ipv4.conf.lxdbr0.src_valid_mark = 0 +net.ipv4.conf.lxdbr0.tag = 0 +net.ipv4.conf.vboxnet0.accept_local = 0 +net.ipv4.conf.vboxnet0.accept_redirects = 1 +net.ipv4.conf.vboxnet0.accept_source_route = 0 +net.ipv4.conf.vboxnet0.arp_accept = 0 +net.ipv4.conf.vboxnet0.arp_announce = 0 +net.ipv4.conf.vboxnet0.arp_filter = 0 +net.ipv4.conf.vboxnet0.arp_ignore = 0 +net.ipv4.conf.vboxnet0.arp_notify = 0 +net.ipv4.conf.vboxnet0.bc_forwarding = 0 +net.ipv4.conf.vboxnet0.bootp_relay = 0 +net.ipv4.conf.vboxnet0.disable_policy = 0 +net.ipv4.conf.vboxnet0.disable_xfrm = 0 +net.ipv4.conf.vboxnet0.drop_gratuitous_arp = 0 +net.ipv4.conf.vboxnet0.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.vboxnet0.force_igmp_version = 0 +net.ipv4.conf.vboxnet0.forwarding = 1 +net.ipv4.conf.vboxnet0.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.vboxnet0.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.vboxnet0.ignore_routes_with_linkdown = 0 +net.ipv4.conf.vboxnet0.log_martians = 0 +net.ipv4.conf.vboxnet0.mc_forwarding = 0 +net.ipv4.conf.vboxnet0.medium_id = 0 +net.ipv4.conf.vboxnet0.promote_secondaries = 1 +net.ipv4.conf.vboxnet0.proxy_arp = 0 +net.ipv4.conf.vboxnet0.proxy_arp_pvlan = 0 +net.ipv4.conf.vboxnet0.route_localnet = 0 +net.ipv4.conf.vboxnet0.rp_filter = 1 +net.ipv4.conf.vboxnet0.secure_redirects = 1 +net.ipv4.conf.vboxnet0.send_redirects = 1 +net.ipv4.conf.vboxnet0.shared_media = 1 +net.ipv4.conf.vboxnet0.src_valid_mark = 0 +net.ipv4.conf.vboxnet0.tag = 0 +net.ipv4.conf.vboxnet12.accept_local = 0 +net.ipv4.conf.vboxnet12.accept_redirects = 1 +net.ipv4.conf.vboxnet12.accept_source_route = 0 +net.ipv4.conf.vboxnet12.arp_accept = 0 +net.ipv4.conf.vboxnet12.arp_announce = 0 +net.ipv4.conf.vboxnet12.arp_filter = 0 +net.ipv4.conf.vboxnet12.arp_ignore = 0 +net.ipv4.conf.vboxnet12.arp_notify = 0 +net.ipv4.conf.vboxnet12.bc_forwarding = 0 +net.ipv4.conf.vboxnet12.bootp_relay = 0 +net.ipv4.conf.vboxnet12.disable_policy = 0 +net.ipv4.conf.vboxnet12.disable_xfrm = 0 +net.ipv4.conf.vboxnet12.drop_gratuitous_arp = 0 +net.ipv4.conf.vboxnet12.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.vboxnet12.force_igmp_version = 0 +net.ipv4.conf.vboxnet12.forwarding = 1 +net.ipv4.conf.vboxnet12.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.vboxnet12.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.vboxnet12.ignore_routes_with_linkdown = 0 +net.ipv4.conf.vboxnet12.log_martians = 0 +net.ipv4.conf.vboxnet12.mc_forwarding = 0 +net.ipv4.conf.vboxnet12.medium_id = 0 +net.ipv4.conf.vboxnet12.promote_secondaries = 1 +net.ipv4.conf.vboxnet12.proxy_arp = 0 +net.ipv4.conf.vboxnet12.proxy_arp_pvlan = 0 +net.ipv4.conf.vboxnet12.route_localnet = 0 +net.ipv4.conf.vboxnet12.rp_filter = 1 +net.ipv4.conf.vboxnet12.secure_redirects = 1 +net.ipv4.conf.vboxnet12.send_redirects = 1 +net.ipv4.conf.vboxnet12.shared_media = 1 +net.ipv4.conf.vboxnet12.src_valid_mark = 0 +net.ipv4.conf.vboxnet12.tag = 0 +net.ipv4.conf.vboxnet18.accept_local = 0 +net.ipv4.conf.vboxnet18.accept_redirects = 1 +net.ipv4.conf.vboxnet18.accept_source_route = 0 +net.ipv4.conf.vboxnet18.arp_accept = 0 +net.ipv4.conf.vboxnet18.arp_announce = 0 +net.ipv4.conf.vboxnet18.arp_filter = 0 +net.ipv4.conf.vboxnet18.arp_ignore = 0 +net.ipv4.conf.vboxnet18.arp_notify = 0 +net.ipv4.conf.vboxnet18.bc_forwarding = 0 +net.ipv4.conf.vboxnet18.bootp_relay = 0 +net.ipv4.conf.vboxnet18.disable_policy = 0 +net.ipv4.conf.vboxnet18.disable_xfrm = 0 +net.ipv4.conf.vboxnet18.drop_gratuitous_arp = 0 +net.ipv4.conf.vboxnet18.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.vboxnet18.force_igmp_version = 0 +net.ipv4.conf.vboxnet18.forwarding = 1 +net.ipv4.conf.vboxnet18.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.vboxnet18.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.vboxnet18.ignore_routes_with_linkdown = 0 +net.ipv4.conf.vboxnet18.log_martians = 0 +net.ipv4.conf.vboxnet18.mc_forwarding = 0 +net.ipv4.conf.vboxnet18.medium_id = 0 +net.ipv4.conf.vboxnet18.promote_secondaries = 1 +net.ipv4.conf.vboxnet18.proxy_arp = 0 +net.ipv4.conf.vboxnet18.proxy_arp_pvlan = 0 +net.ipv4.conf.vboxnet18.route_localnet = 0 +net.ipv4.conf.vboxnet18.rp_filter = 1 +net.ipv4.conf.vboxnet18.secure_redirects = 1 +net.ipv4.conf.vboxnet18.send_redirects = 1 +net.ipv4.conf.vboxnet18.shared_media = 1 +net.ipv4.conf.vboxnet18.src_valid_mark = 0 +net.ipv4.conf.vboxnet18.tag = 0 +net.ipv4.conf.vboxnet19.accept_local = 0 +net.ipv4.conf.vboxnet19.accept_redirects = 1 +net.ipv4.conf.vboxnet19.accept_source_route = 0 +net.ipv4.conf.vboxnet19.arp_accept = 0 +net.ipv4.conf.vboxnet19.arp_announce = 0 +net.ipv4.conf.vboxnet19.arp_filter = 0 +net.ipv4.conf.vboxnet19.arp_ignore = 0 +net.ipv4.conf.vboxnet19.arp_notify = 0 +net.ipv4.conf.vboxnet19.bc_forwarding = 0 +net.ipv4.conf.vboxnet19.bootp_relay = 0 +net.ipv4.conf.vboxnet19.disable_policy = 0 +net.ipv4.conf.vboxnet19.disable_xfrm = 0 +net.ipv4.conf.vboxnet19.drop_gratuitous_arp = 0 +net.ipv4.conf.vboxnet19.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.vboxnet19.force_igmp_version = 0 +net.ipv4.conf.vboxnet19.forwarding = 1 +net.ipv4.conf.vboxnet19.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.vboxnet19.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.vboxnet19.ignore_routes_with_linkdown = 0 +net.ipv4.conf.vboxnet19.log_martians = 0 +net.ipv4.conf.vboxnet19.mc_forwarding = 0 +net.ipv4.conf.vboxnet19.medium_id = 0 +net.ipv4.conf.vboxnet19.promote_secondaries = 1 +net.ipv4.conf.vboxnet19.proxy_arp = 0 +net.ipv4.conf.vboxnet19.proxy_arp_pvlan = 0 +net.ipv4.conf.vboxnet19.route_localnet = 0 +net.ipv4.conf.vboxnet19.rp_filter = 1 +net.ipv4.conf.vboxnet19.secure_redirects = 1 +net.ipv4.conf.vboxnet19.send_redirects = 1 +net.ipv4.conf.vboxnet19.shared_media = 1 +net.ipv4.conf.vboxnet19.src_valid_mark = 0 +net.ipv4.conf.vboxnet19.tag = 0 +net.ipv4.conf.vboxnet20.accept_local = 0 +net.ipv4.conf.vboxnet20.accept_redirects = 1 +net.ipv4.conf.vboxnet20.accept_source_route = 0 +net.ipv4.conf.vboxnet20.arp_accept = 0 +net.ipv4.conf.vboxnet20.arp_announce = 0 +net.ipv4.conf.vboxnet20.arp_filter = 0 +net.ipv4.conf.vboxnet20.arp_ignore = 0 +net.ipv4.conf.vboxnet20.arp_notify = 0 +net.ipv4.conf.vboxnet20.bc_forwarding = 0 +net.ipv4.conf.vboxnet20.bootp_relay = 0 +net.ipv4.conf.vboxnet20.disable_policy = 0 +net.ipv4.conf.vboxnet20.disable_xfrm = 0 +net.ipv4.conf.vboxnet20.drop_gratuitous_arp = 0 +net.ipv4.conf.vboxnet20.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.vboxnet20.force_igmp_version = 0 +net.ipv4.conf.vboxnet20.forwarding = 1 +net.ipv4.conf.vboxnet20.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.vboxnet20.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.vboxnet20.ignore_routes_with_linkdown = 0 +net.ipv4.conf.vboxnet20.log_martians = 0 +net.ipv4.conf.vboxnet20.mc_forwarding = 0 +net.ipv4.conf.vboxnet20.medium_id = 0 +net.ipv4.conf.vboxnet20.promote_secondaries = 1 +net.ipv4.conf.vboxnet20.proxy_arp = 0 +net.ipv4.conf.vboxnet20.proxy_arp_pvlan = 0 +net.ipv4.conf.vboxnet20.route_localnet = 0 +net.ipv4.conf.vboxnet20.rp_filter = 1 +net.ipv4.conf.vboxnet20.secure_redirects = 1 +net.ipv4.conf.vboxnet20.send_redirects = 1 +net.ipv4.conf.vboxnet20.shared_media = 1 +net.ipv4.conf.vboxnet20.src_valid_mark = 0 +net.ipv4.conf.vboxnet20.tag = 0 +net.ipv4.conf.vboxnet21.accept_local = 0 +net.ipv4.conf.vboxnet21.accept_redirects = 1 +net.ipv4.conf.vboxnet21.accept_source_route = 0 +net.ipv4.conf.vboxnet21.arp_accept = 0 +net.ipv4.conf.vboxnet21.arp_announce = 0 +net.ipv4.conf.vboxnet21.arp_filter = 0 +net.ipv4.conf.vboxnet21.arp_ignore = 0 +net.ipv4.conf.vboxnet21.arp_notify = 0 +net.ipv4.conf.vboxnet21.bc_forwarding = 0 +net.ipv4.conf.vboxnet21.bootp_relay = 0 +net.ipv4.conf.vboxnet21.disable_policy = 0 +net.ipv4.conf.vboxnet21.disable_xfrm = 0 +net.ipv4.conf.vboxnet21.drop_gratuitous_arp = 0 +net.ipv4.conf.vboxnet21.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.vboxnet21.force_igmp_version = 0 +net.ipv4.conf.vboxnet21.forwarding = 1 +net.ipv4.conf.vboxnet21.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.vboxnet21.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.vboxnet21.ignore_routes_with_linkdown = 0 +net.ipv4.conf.vboxnet21.log_martians = 0 +net.ipv4.conf.vboxnet21.mc_forwarding = 0 +net.ipv4.conf.vboxnet21.medium_id = 0 +net.ipv4.conf.vboxnet21.promote_secondaries = 1 +net.ipv4.conf.vboxnet21.proxy_arp = 0 +net.ipv4.conf.vboxnet21.proxy_arp_pvlan = 0 +net.ipv4.conf.vboxnet21.route_localnet = 0 +net.ipv4.conf.vboxnet21.rp_filter = 1 +net.ipv4.conf.vboxnet21.secure_redirects = 1 +net.ipv4.conf.vboxnet21.send_redirects = 1 +net.ipv4.conf.vboxnet21.shared_media = 1 +net.ipv4.conf.vboxnet21.src_valid_mark = 0 +net.ipv4.conf.vboxnet21.tag = 0 +net.ipv4.conf.vboxnet24.accept_local = 0 +net.ipv4.conf.vboxnet24.accept_redirects = 1 +net.ipv4.conf.vboxnet24.accept_source_route = 0 +net.ipv4.conf.vboxnet24.arp_accept = 0 +net.ipv4.conf.vboxnet24.arp_announce = 0 +net.ipv4.conf.vboxnet24.arp_filter = 0 +net.ipv4.conf.vboxnet24.arp_ignore = 0 +net.ipv4.conf.vboxnet24.arp_notify = 0 +net.ipv4.conf.vboxnet24.bc_forwarding = 0 +net.ipv4.conf.vboxnet24.bootp_relay = 0 +net.ipv4.conf.vboxnet24.disable_policy = 0 +net.ipv4.conf.vboxnet24.disable_xfrm = 0 +net.ipv4.conf.vboxnet24.drop_gratuitous_arp = 0 +net.ipv4.conf.vboxnet24.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.vboxnet24.force_igmp_version = 0 +net.ipv4.conf.vboxnet24.forwarding = 1 +net.ipv4.conf.vboxnet24.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.vboxnet24.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.vboxnet24.ignore_routes_with_linkdown = 0 +net.ipv4.conf.vboxnet24.log_martians = 0 +net.ipv4.conf.vboxnet24.mc_forwarding = 0 +net.ipv4.conf.vboxnet24.medium_id = 0 +net.ipv4.conf.vboxnet24.promote_secondaries = 1 +net.ipv4.conf.vboxnet24.proxy_arp = 0 +net.ipv4.conf.vboxnet24.proxy_arp_pvlan = 0 +net.ipv4.conf.vboxnet24.route_localnet = 0 +net.ipv4.conf.vboxnet24.rp_filter = 1 +net.ipv4.conf.vboxnet24.secure_redirects = 1 +net.ipv4.conf.vboxnet24.send_redirects = 1 +net.ipv4.conf.vboxnet24.shared_media = 1 +net.ipv4.conf.vboxnet24.src_valid_mark = 0 +net.ipv4.conf.vboxnet24.tag = 0 +net.ipv4.conf.vboxnet25.accept_local = 0 +net.ipv4.conf.vboxnet25.accept_redirects = 1 +net.ipv4.conf.vboxnet25.accept_source_route = 0 +net.ipv4.conf.vboxnet25.arp_accept = 0 +net.ipv4.conf.vboxnet25.arp_announce = 0 +net.ipv4.conf.vboxnet25.arp_filter = 0 +net.ipv4.conf.vboxnet25.arp_ignore = 0 +net.ipv4.conf.vboxnet25.arp_notify = 0 +net.ipv4.conf.vboxnet25.bc_forwarding = 0 +net.ipv4.conf.vboxnet25.bootp_relay = 0 +net.ipv4.conf.vboxnet25.disable_policy = 0 +net.ipv4.conf.vboxnet25.disable_xfrm = 0 +net.ipv4.conf.vboxnet25.drop_gratuitous_arp = 0 +net.ipv4.conf.vboxnet25.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.vboxnet25.force_igmp_version = 0 +net.ipv4.conf.vboxnet25.forwarding = 1 +net.ipv4.conf.vboxnet25.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.vboxnet25.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.vboxnet25.ignore_routes_with_linkdown = 0 +net.ipv4.conf.vboxnet25.log_martians = 0 +net.ipv4.conf.vboxnet25.mc_forwarding = 0 +net.ipv4.conf.vboxnet25.medium_id = 0 +net.ipv4.conf.vboxnet25.promote_secondaries = 1 +net.ipv4.conf.vboxnet25.proxy_arp = 0 +net.ipv4.conf.vboxnet25.proxy_arp_pvlan = 0 +net.ipv4.conf.vboxnet25.route_localnet = 0 +net.ipv4.conf.vboxnet25.rp_filter = 1 +net.ipv4.conf.vboxnet25.secure_redirects = 1 +net.ipv4.conf.vboxnet25.send_redirects = 1 +net.ipv4.conf.vboxnet25.shared_media = 1 +net.ipv4.conf.vboxnet25.src_valid_mark = 0 +net.ipv4.conf.vboxnet25.tag = 0 +net.ipv4.conf.vboxnet3.accept_local = 0 +net.ipv4.conf.vboxnet3.accept_redirects = 1 +net.ipv4.conf.vboxnet3.accept_source_route = 0 +net.ipv4.conf.vboxnet3.arp_accept = 0 +net.ipv4.conf.vboxnet3.arp_announce = 0 +net.ipv4.conf.vboxnet3.arp_filter = 0 +net.ipv4.conf.vboxnet3.arp_ignore = 0 +net.ipv4.conf.vboxnet3.arp_notify = 0 +net.ipv4.conf.vboxnet3.bc_forwarding = 0 +net.ipv4.conf.vboxnet3.bootp_relay = 0 +net.ipv4.conf.vboxnet3.disable_policy = 0 +net.ipv4.conf.vboxnet3.disable_xfrm = 0 +net.ipv4.conf.vboxnet3.drop_gratuitous_arp = 0 +net.ipv4.conf.vboxnet3.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.vboxnet3.force_igmp_version = 0 +net.ipv4.conf.vboxnet3.forwarding = 1 +net.ipv4.conf.vboxnet3.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.vboxnet3.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.vboxnet3.ignore_routes_with_linkdown = 0 +net.ipv4.conf.vboxnet3.log_martians = 0 +net.ipv4.conf.vboxnet3.mc_forwarding = 0 +net.ipv4.conf.vboxnet3.medium_id = 0 +net.ipv4.conf.vboxnet3.promote_secondaries = 1 +net.ipv4.conf.vboxnet3.proxy_arp = 0 +net.ipv4.conf.vboxnet3.proxy_arp_pvlan = 0 +net.ipv4.conf.vboxnet3.route_localnet = 0 +net.ipv4.conf.vboxnet3.rp_filter = 1 +net.ipv4.conf.vboxnet3.secure_redirects = 1 +net.ipv4.conf.vboxnet3.send_redirects = 1 +net.ipv4.conf.vboxnet3.shared_media = 1 +net.ipv4.conf.vboxnet3.src_valid_mark = 0 +net.ipv4.conf.vboxnet3.tag = 0 +net.ipv4.conf.vboxnet4.accept_local = 0 +net.ipv4.conf.vboxnet4.accept_redirects = 1 +net.ipv4.conf.vboxnet4.accept_source_route = 0 +net.ipv4.conf.vboxnet4.arp_accept = 0 +net.ipv4.conf.vboxnet4.arp_announce = 0 +net.ipv4.conf.vboxnet4.arp_filter = 0 +net.ipv4.conf.vboxnet4.arp_ignore = 0 +net.ipv4.conf.vboxnet4.arp_notify = 0 +net.ipv4.conf.vboxnet4.bc_forwarding = 0 +net.ipv4.conf.vboxnet4.bootp_relay = 0 +net.ipv4.conf.vboxnet4.disable_policy = 0 +net.ipv4.conf.vboxnet4.disable_xfrm = 0 +net.ipv4.conf.vboxnet4.drop_gratuitous_arp = 0 +net.ipv4.conf.vboxnet4.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.vboxnet4.force_igmp_version = 0 +net.ipv4.conf.vboxnet4.forwarding = 1 +net.ipv4.conf.vboxnet4.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.vboxnet4.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.vboxnet4.ignore_routes_with_linkdown = 0 +net.ipv4.conf.vboxnet4.log_martians = 0 +net.ipv4.conf.vboxnet4.mc_forwarding = 0 +net.ipv4.conf.vboxnet4.medium_id = 0 +net.ipv4.conf.vboxnet4.promote_secondaries = 1 +net.ipv4.conf.vboxnet4.proxy_arp = 0 +net.ipv4.conf.vboxnet4.proxy_arp_pvlan = 0 +net.ipv4.conf.vboxnet4.route_localnet = 0 +net.ipv4.conf.vboxnet4.rp_filter = 1 +net.ipv4.conf.vboxnet4.secure_redirects = 1 +net.ipv4.conf.vboxnet4.send_redirects = 1 +net.ipv4.conf.vboxnet4.shared_media = 1 +net.ipv4.conf.vboxnet4.src_valid_mark = 0 +net.ipv4.conf.vboxnet4.tag = 0 +net.ipv4.conf.veth046457e1.accept_local = 0 +net.ipv4.conf.veth046457e1.accept_redirects = 1 +net.ipv4.conf.veth046457e1.accept_source_route = 0 +net.ipv4.conf.veth046457e1.arp_accept = 0 +net.ipv4.conf.veth046457e1.arp_announce = 0 +net.ipv4.conf.veth046457e1.arp_filter = 0 +net.ipv4.conf.veth046457e1.arp_ignore = 0 +net.ipv4.conf.veth046457e1.arp_notify = 0 +net.ipv4.conf.veth046457e1.bc_forwarding = 0 +net.ipv4.conf.veth046457e1.bootp_relay = 0 +net.ipv4.conf.veth046457e1.disable_policy = 0 +net.ipv4.conf.veth046457e1.disable_xfrm = 0 +net.ipv4.conf.veth046457e1.drop_gratuitous_arp = 0 +net.ipv4.conf.veth046457e1.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.veth046457e1.force_igmp_version = 0 +net.ipv4.conf.veth046457e1.forwarding = 1 +net.ipv4.conf.veth046457e1.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.veth046457e1.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.veth046457e1.ignore_routes_with_linkdown = 0 +net.ipv4.conf.veth046457e1.log_martians = 0 +net.ipv4.conf.veth046457e1.mc_forwarding = 0 +net.ipv4.conf.veth046457e1.medium_id = 0 +net.ipv4.conf.veth046457e1.promote_secondaries = 1 +net.ipv4.conf.veth046457e1.proxy_arp = 0 +net.ipv4.conf.veth046457e1.proxy_arp_pvlan = 0 +net.ipv4.conf.veth046457e1.route_localnet = 0 +net.ipv4.conf.veth046457e1.rp_filter = 1 +net.ipv4.conf.veth046457e1.secure_redirects = 1 +net.ipv4.conf.veth046457e1.send_redirects = 1 +net.ipv4.conf.veth046457e1.shared_media = 1 +net.ipv4.conf.veth046457e1.src_valid_mark = 0 +net.ipv4.conf.veth046457e1.tag = 0 +net.ipv4.conf.veth07d7db6b.accept_local = 0 +net.ipv4.conf.veth07d7db6b.accept_redirects = 1 +net.ipv4.conf.veth07d7db6b.accept_source_route = 0 +net.ipv4.conf.veth07d7db6b.arp_accept = 0 +net.ipv4.conf.veth07d7db6b.arp_announce = 0 +net.ipv4.conf.veth07d7db6b.arp_filter = 0 +net.ipv4.conf.veth07d7db6b.arp_ignore = 0 +net.ipv4.conf.veth07d7db6b.arp_notify = 0 +net.ipv4.conf.veth07d7db6b.bc_forwarding = 0 +net.ipv4.conf.veth07d7db6b.bootp_relay = 0 +net.ipv4.conf.veth07d7db6b.disable_policy = 0 +net.ipv4.conf.veth07d7db6b.disable_xfrm = 0 +net.ipv4.conf.veth07d7db6b.drop_gratuitous_arp = 0 +net.ipv4.conf.veth07d7db6b.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.veth07d7db6b.force_igmp_version = 0 +net.ipv4.conf.veth07d7db6b.forwarding = 1 +net.ipv4.conf.veth07d7db6b.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.veth07d7db6b.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.veth07d7db6b.ignore_routes_with_linkdown = 0 +net.ipv4.conf.veth07d7db6b.log_martians = 0 +net.ipv4.conf.veth07d7db6b.mc_forwarding = 0 +net.ipv4.conf.veth07d7db6b.medium_id = 0 +net.ipv4.conf.veth07d7db6b.promote_secondaries = 1 +net.ipv4.conf.veth07d7db6b.proxy_arp = 0 +net.ipv4.conf.veth07d7db6b.proxy_arp_pvlan = 0 +net.ipv4.conf.veth07d7db6b.route_localnet = 0 +net.ipv4.conf.veth07d7db6b.rp_filter = 1 +net.ipv4.conf.veth07d7db6b.secure_redirects = 1 +net.ipv4.conf.veth07d7db6b.send_redirects = 1 +net.ipv4.conf.veth07d7db6b.shared_media = 1 +net.ipv4.conf.veth07d7db6b.src_valid_mark = 0 +net.ipv4.conf.veth07d7db6b.tag = 0 +net.ipv4.conf.veth0bd575f6.accept_local = 0 +net.ipv4.conf.veth0bd575f6.accept_redirects = 1 +net.ipv4.conf.veth0bd575f6.accept_source_route = 0 +net.ipv4.conf.veth0bd575f6.arp_accept = 0 +net.ipv4.conf.veth0bd575f6.arp_announce = 0 +net.ipv4.conf.veth0bd575f6.arp_filter = 0 +net.ipv4.conf.veth0bd575f6.arp_ignore = 0 +net.ipv4.conf.veth0bd575f6.arp_notify = 0 +net.ipv4.conf.veth0bd575f6.bc_forwarding = 0 +net.ipv4.conf.veth0bd575f6.bootp_relay = 0 +net.ipv4.conf.veth0bd575f6.disable_policy = 0 +net.ipv4.conf.veth0bd575f6.disable_xfrm = 0 +net.ipv4.conf.veth0bd575f6.drop_gratuitous_arp = 0 +net.ipv4.conf.veth0bd575f6.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.veth0bd575f6.force_igmp_version = 0 +net.ipv4.conf.veth0bd575f6.forwarding = 1 +net.ipv4.conf.veth0bd575f6.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.veth0bd575f6.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.veth0bd575f6.ignore_routes_with_linkdown = 0 +net.ipv4.conf.veth0bd575f6.log_martians = 0 +net.ipv4.conf.veth0bd575f6.mc_forwarding = 0 +net.ipv4.conf.veth0bd575f6.medium_id = 0 +net.ipv4.conf.veth0bd575f6.promote_secondaries = 1 +net.ipv4.conf.veth0bd575f6.proxy_arp = 0 +net.ipv4.conf.veth0bd575f6.proxy_arp_pvlan = 0 +net.ipv4.conf.veth0bd575f6.route_localnet = 0 +net.ipv4.conf.veth0bd575f6.rp_filter = 1 +net.ipv4.conf.veth0bd575f6.secure_redirects = 1 +net.ipv4.conf.veth0bd575f6.send_redirects = 1 +net.ipv4.conf.veth0bd575f6.shared_media = 1 +net.ipv4.conf.veth0bd575f6.src_valid_mark = 0 +net.ipv4.conf.veth0bd575f6.tag = 0 +net.ipv4.conf.veth0c948a7c.accept_local = 0 +net.ipv4.conf.veth0c948a7c.accept_redirects = 1 +net.ipv4.conf.veth0c948a7c.accept_source_route = 0 +net.ipv4.conf.veth0c948a7c.arp_accept = 0 +net.ipv4.conf.veth0c948a7c.arp_announce = 0 +net.ipv4.conf.veth0c948a7c.arp_filter = 0 +net.ipv4.conf.veth0c948a7c.arp_ignore = 0 +net.ipv4.conf.veth0c948a7c.arp_notify = 0 +net.ipv4.conf.veth0c948a7c.bc_forwarding = 0 +net.ipv4.conf.veth0c948a7c.bootp_relay = 0 +net.ipv4.conf.veth0c948a7c.disable_policy = 0 +net.ipv4.conf.veth0c948a7c.disable_xfrm = 0 +net.ipv4.conf.veth0c948a7c.drop_gratuitous_arp = 0 +net.ipv4.conf.veth0c948a7c.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.veth0c948a7c.force_igmp_version = 0 +net.ipv4.conf.veth0c948a7c.forwarding = 1 +net.ipv4.conf.veth0c948a7c.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.veth0c948a7c.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.veth0c948a7c.ignore_routes_with_linkdown = 0 +net.ipv4.conf.veth0c948a7c.log_martians = 0 +net.ipv4.conf.veth0c948a7c.mc_forwarding = 0 +net.ipv4.conf.veth0c948a7c.medium_id = 0 +net.ipv4.conf.veth0c948a7c.promote_secondaries = 1 +net.ipv4.conf.veth0c948a7c.proxy_arp = 0 +net.ipv4.conf.veth0c948a7c.proxy_arp_pvlan = 0 +net.ipv4.conf.veth0c948a7c.route_localnet = 0 +net.ipv4.conf.veth0c948a7c.rp_filter = 1 +net.ipv4.conf.veth0c948a7c.secure_redirects = 1 +net.ipv4.conf.veth0c948a7c.send_redirects = 1 +net.ipv4.conf.veth0c948a7c.shared_media = 1 +net.ipv4.conf.veth0c948a7c.src_valid_mark = 0 +net.ipv4.conf.veth0c948a7c.tag = 0 +net.ipv4.conf.veth12219f8c.accept_local = 0 +net.ipv4.conf.veth12219f8c.accept_redirects = 1 +net.ipv4.conf.veth12219f8c.accept_source_route = 0 +net.ipv4.conf.veth12219f8c.arp_accept = 0 +net.ipv4.conf.veth12219f8c.arp_announce = 0 +net.ipv4.conf.veth12219f8c.arp_filter = 0 +net.ipv4.conf.veth12219f8c.arp_ignore = 0 +net.ipv4.conf.veth12219f8c.arp_notify = 0 +net.ipv4.conf.veth12219f8c.bc_forwarding = 0 +net.ipv4.conf.veth12219f8c.bootp_relay = 0 +net.ipv4.conf.veth12219f8c.disable_policy = 0 +net.ipv4.conf.veth12219f8c.disable_xfrm = 0 +net.ipv4.conf.veth12219f8c.drop_gratuitous_arp = 0 +net.ipv4.conf.veth12219f8c.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.veth12219f8c.force_igmp_version = 0 +net.ipv4.conf.veth12219f8c.forwarding = 1 +net.ipv4.conf.veth12219f8c.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.veth12219f8c.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.veth12219f8c.ignore_routes_with_linkdown = 0 +net.ipv4.conf.veth12219f8c.log_martians = 0 +net.ipv4.conf.veth12219f8c.mc_forwarding = 0 +net.ipv4.conf.veth12219f8c.medium_id = 0 +net.ipv4.conf.veth12219f8c.promote_secondaries = 1 +net.ipv4.conf.veth12219f8c.proxy_arp = 0 +net.ipv4.conf.veth12219f8c.proxy_arp_pvlan = 0 +net.ipv4.conf.veth12219f8c.route_localnet = 0 +net.ipv4.conf.veth12219f8c.rp_filter = 1 +net.ipv4.conf.veth12219f8c.secure_redirects = 1 +net.ipv4.conf.veth12219f8c.send_redirects = 1 +net.ipv4.conf.veth12219f8c.shared_media = 1 +net.ipv4.conf.veth12219f8c.src_valid_mark = 0 +net.ipv4.conf.veth12219f8c.tag = 0 +net.ipv4.conf.veth125aed80.accept_local = 0 +net.ipv4.conf.veth125aed80.accept_redirects = 1 +net.ipv4.conf.veth125aed80.accept_source_route = 0 +net.ipv4.conf.veth125aed80.arp_accept = 0 +net.ipv4.conf.veth125aed80.arp_announce = 0 +net.ipv4.conf.veth125aed80.arp_filter = 0 +net.ipv4.conf.veth125aed80.arp_ignore = 0 +net.ipv4.conf.veth125aed80.arp_notify = 0 +net.ipv4.conf.veth125aed80.bc_forwarding = 0 +net.ipv4.conf.veth125aed80.bootp_relay = 0 +net.ipv4.conf.veth125aed80.disable_policy = 0 +net.ipv4.conf.veth125aed80.disable_xfrm = 0 +net.ipv4.conf.veth125aed80.drop_gratuitous_arp = 0 +net.ipv4.conf.veth125aed80.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.veth125aed80.force_igmp_version = 0 +net.ipv4.conf.veth125aed80.forwarding = 1 +net.ipv4.conf.veth125aed80.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.veth125aed80.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.veth125aed80.ignore_routes_with_linkdown = 0 +net.ipv4.conf.veth125aed80.log_martians = 0 +net.ipv4.conf.veth125aed80.mc_forwarding = 0 +net.ipv4.conf.veth125aed80.medium_id = 0 +net.ipv4.conf.veth125aed80.promote_secondaries = 1 +net.ipv4.conf.veth125aed80.proxy_arp = 0 +net.ipv4.conf.veth125aed80.proxy_arp_pvlan = 0 +net.ipv4.conf.veth125aed80.route_localnet = 0 +net.ipv4.conf.veth125aed80.rp_filter = 1 +net.ipv4.conf.veth125aed80.secure_redirects = 1 +net.ipv4.conf.veth125aed80.send_redirects = 1 +net.ipv4.conf.veth125aed80.shared_media = 1 +net.ipv4.conf.veth125aed80.src_valid_mark = 0 +net.ipv4.conf.veth125aed80.tag = 0 +net.ipv4.conf.veth140b78c8.accept_local = 0 +net.ipv4.conf.veth140b78c8.accept_redirects = 1 +net.ipv4.conf.veth140b78c8.accept_source_route = 0 +net.ipv4.conf.veth140b78c8.arp_accept = 0 +net.ipv4.conf.veth140b78c8.arp_announce = 0 +net.ipv4.conf.veth140b78c8.arp_filter = 0 +net.ipv4.conf.veth140b78c8.arp_ignore = 0 +net.ipv4.conf.veth140b78c8.arp_notify = 0 +net.ipv4.conf.veth140b78c8.bc_forwarding = 0 +net.ipv4.conf.veth140b78c8.bootp_relay = 0 +net.ipv4.conf.veth140b78c8.disable_policy = 0 +net.ipv4.conf.veth140b78c8.disable_xfrm = 0 +net.ipv4.conf.veth140b78c8.drop_gratuitous_arp = 0 +net.ipv4.conf.veth140b78c8.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.veth140b78c8.force_igmp_version = 0 +net.ipv4.conf.veth140b78c8.forwarding = 1 +net.ipv4.conf.veth140b78c8.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.veth140b78c8.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.veth140b78c8.ignore_routes_with_linkdown = 0 +net.ipv4.conf.veth140b78c8.log_martians = 0 +net.ipv4.conf.veth140b78c8.mc_forwarding = 0 +net.ipv4.conf.veth140b78c8.medium_id = 0 +net.ipv4.conf.veth140b78c8.promote_secondaries = 1 +net.ipv4.conf.veth140b78c8.proxy_arp = 0 +net.ipv4.conf.veth140b78c8.proxy_arp_pvlan = 0 +net.ipv4.conf.veth140b78c8.route_localnet = 0 +net.ipv4.conf.veth140b78c8.rp_filter = 1 +net.ipv4.conf.veth140b78c8.secure_redirects = 1 +net.ipv4.conf.veth140b78c8.send_redirects = 1 +net.ipv4.conf.veth140b78c8.shared_media = 1 +net.ipv4.conf.veth140b78c8.src_valid_mark = 0 +net.ipv4.conf.veth140b78c8.tag = 0 +net.ipv4.conf.veth19c266ca.accept_local = 0 +net.ipv4.conf.veth19c266ca.accept_redirects = 1 +net.ipv4.conf.veth19c266ca.accept_source_route = 0 +net.ipv4.conf.veth19c266ca.arp_accept = 0 +net.ipv4.conf.veth19c266ca.arp_announce = 0 +net.ipv4.conf.veth19c266ca.arp_filter = 0 +net.ipv4.conf.veth19c266ca.arp_ignore = 0 +net.ipv4.conf.veth19c266ca.arp_notify = 0 +net.ipv4.conf.veth19c266ca.bc_forwarding = 0 +net.ipv4.conf.veth19c266ca.bootp_relay = 0 +net.ipv4.conf.veth19c266ca.disable_policy = 0 +net.ipv4.conf.veth19c266ca.disable_xfrm = 0 +net.ipv4.conf.veth19c266ca.drop_gratuitous_arp = 0 +net.ipv4.conf.veth19c266ca.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.veth19c266ca.force_igmp_version = 0 +net.ipv4.conf.veth19c266ca.forwarding = 1 +net.ipv4.conf.veth19c266ca.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.veth19c266ca.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.veth19c266ca.ignore_routes_with_linkdown = 0 +net.ipv4.conf.veth19c266ca.log_martians = 0 +net.ipv4.conf.veth19c266ca.mc_forwarding = 0 +net.ipv4.conf.veth19c266ca.medium_id = 0 +net.ipv4.conf.veth19c266ca.promote_secondaries = 1 +net.ipv4.conf.veth19c266ca.proxy_arp = 0 +net.ipv4.conf.veth19c266ca.proxy_arp_pvlan = 0 +net.ipv4.conf.veth19c266ca.route_localnet = 0 +net.ipv4.conf.veth19c266ca.rp_filter = 1 +net.ipv4.conf.veth19c266ca.secure_redirects = 1 +net.ipv4.conf.veth19c266ca.send_redirects = 1 +net.ipv4.conf.veth19c266ca.shared_media = 1 +net.ipv4.conf.veth19c266ca.src_valid_mark = 0 +net.ipv4.conf.veth19c266ca.tag = 0 +net.ipv4.conf.veth1a2f3a50.accept_local = 0 +net.ipv4.conf.veth1a2f3a50.accept_redirects = 1 +net.ipv4.conf.veth1a2f3a50.accept_source_route = 0 +net.ipv4.conf.veth1a2f3a50.arp_accept = 0 +net.ipv4.conf.veth1a2f3a50.arp_announce = 0 +net.ipv4.conf.veth1a2f3a50.arp_filter = 0 +net.ipv4.conf.veth1a2f3a50.arp_ignore = 0 +net.ipv4.conf.veth1a2f3a50.arp_notify = 0 +net.ipv4.conf.veth1a2f3a50.bc_forwarding = 0 +net.ipv4.conf.veth1a2f3a50.bootp_relay = 0 +net.ipv4.conf.veth1a2f3a50.disable_policy = 0 +net.ipv4.conf.veth1a2f3a50.disable_xfrm = 0 +net.ipv4.conf.veth1a2f3a50.drop_gratuitous_arp = 0 +net.ipv4.conf.veth1a2f3a50.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.veth1a2f3a50.force_igmp_version = 0 +net.ipv4.conf.veth1a2f3a50.forwarding = 1 +net.ipv4.conf.veth1a2f3a50.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.veth1a2f3a50.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.veth1a2f3a50.ignore_routes_with_linkdown = 0 +net.ipv4.conf.veth1a2f3a50.log_martians = 0 +net.ipv4.conf.veth1a2f3a50.mc_forwarding = 0 +net.ipv4.conf.veth1a2f3a50.medium_id = 0 +net.ipv4.conf.veth1a2f3a50.promote_secondaries = 1 +net.ipv4.conf.veth1a2f3a50.proxy_arp = 0 +net.ipv4.conf.veth1a2f3a50.proxy_arp_pvlan = 0 +net.ipv4.conf.veth1a2f3a50.route_localnet = 0 +net.ipv4.conf.veth1a2f3a50.rp_filter = 1 +net.ipv4.conf.veth1a2f3a50.secure_redirects = 1 +net.ipv4.conf.veth1a2f3a50.send_redirects = 1 +net.ipv4.conf.veth1a2f3a50.shared_media = 1 +net.ipv4.conf.veth1a2f3a50.src_valid_mark = 0 +net.ipv4.conf.veth1a2f3a50.tag = 0 +net.ipv4.conf.veth1e01ee50.accept_local = 0 +net.ipv4.conf.veth1e01ee50.accept_redirects = 1 +net.ipv4.conf.veth1e01ee50.accept_source_route = 0 +net.ipv4.conf.veth1e01ee50.arp_accept = 0 +net.ipv4.conf.veth1e01ee50.arp_announce = 0 +net.ipv4.conf.veth1e01ee50.arp_filter = 0 +net.ipv4.conf.veth1e01ee50.arp_ignore = 0 +net.ipv4.conf.veth1e01ee50.arp_notify = 0 +net.ipv4.conf.veth1e01ee50.bc_forwarding = 0 +net.ipv4.conf.veth1e01ee50.bootp_relay = 0 +net.ipv4.conf.veth1e01ee50.disable_policy = 0 +net.ipv4.conf.veth1e01ee50.disable_xfrm = 0 +net.ipv4.conf.veth1e01ee50.drop_gratuitous_arp = 0 +net.ipv4.conf.veth1e01ee50.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.veth1e01ee50.force_igmp_version = 0 +net.ipv4.conf.veth1e01ee50.forwarding = 1 +net.ipv4.conf.veth1e01ee50.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.veth1e01ee50.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.veth1e01ee50.ignore_routes_with_linkdown = 0 +net.ipv4.conf.veth1e01ee50.log_martians = 0 +net.ipv4.conf.veth1e01ee50.mc_forwarding = 0 +net.ipv4.conf.veth1e01ee50.medium_id = 0 +net.ipv4.conf.veth1e01ee50.promote_secondaries = 1 +net.ipv4.conf.veth1e01ee50.proxy_arp = 0 +net.ipv4.conf.veth1e01ee50.proxy_arp_pvlan = 0 +net.ipv4.conf.veth1e01ee50.route_localnet = 0 +net.ipv4.conf.veth1e01ee50.rp_filter = 1 +net.ipv4.conf.veth1e01ee50.secure_redirects = 1 +net.ipv4.conf.veth1e01ee50.send_redirects = 1 +net.ipv4.conf.veth1e01ee50.shared_media = 1 +net.ipv4.conf.veth1e01ee50.src_valid_mark = 0 +net.ipv4.conf.veth1e01ee50.tag = 0 +net.ipv4.conf.veth328abad5.accept_local = 0 +net.ipv4.conf.veth328abad5.accept_redirects = 1 +net.ipv4.conf.veth328abad5.accept_source_route = 0 +net.ipv4.conf.veth328abad5.arp_accept = 0 +net.ipv4.conf.veth328abad5.arp_announce = 0 +net.ipv4.conf.veth328abad5.arp_filter = 0 +net.ipv4.conf.veth328abad5.arp_ignore = 0 +net.ipv4.conf.veth328abad5.arp_notify = 0 +net.ipv4.conf.veth328abad5.bc_forwarding = 0 +net.ipv4.conf.veth328abad5.bootp_relay = 0 +net.ipv4.conf.veth328abad5.disable_policy = 0 +net.ipv4.conf.veth328abad5.disable_xfrm = 0 +net.ipv4.conf.veth328abad5.drop_gratuitous_arp = 0 +net.ipv4.conf.veth328abad5.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.veth328abad5.force_igmp_version = 0 +net.ipv4.conf.veth328abad5.forwarding = 1 +net.ipv4.conf.veth328abad5.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.veth328abad5.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.veth328abad5.ignore_routes_with_linkdown = 0 +net.ipv4.conf.veth328abad5.log_martians = 0 +net.ipv4.conf.veth328abad5.mc_forwarding = 0 +net.ipv4.conf.veth328abad5.medium_id = 0 +net.ipv4.conf.veth328abad5.promote_secondaries = 1 +net.ipv4.conf.veth328abad5.proxy_arp = 0 +net.ipv4.conf.veth328abad5.proxy_arp_pvlan = 0 +net.ipv4.conf.veth328abad5.route_localnet = 0 +net.ipv4.conf.veth328abad5.rp_filter = 1 +net.ipv4.conf.veth328abad5.secure_redirects = 1 +net.ipv4.conf.veth328abad5.send_redirects = 1 +net.ipv4.conf.veth328abad5.shared_media = 1 +net.ipv4.conf.veth328abad5.src_valid_mark = 0 +net.ipv4.conf.veth328abad5.tag = 0 +net.ipv4.conf.veth3bd42127.accept_local = 0 +net.ipv4.conf.veth3bd42127.accept_redirects = 1 +net.ipv4.conf.veth3bd42127.accept_source_route = 0 +net.ipv4.conf.veth3bd42127.arp_accept = 0 +net.ipv4.conf.veth3bd42127.arp_announce = 0 +net.ipv4.conf.veth3bd42127.arp_filter = 0 +net.ipv4.conf.veth3bd42127.arp_ignore = 0 +net.ipv4.conf.veth3bd42127.arp_notify = 0 +net.ipv4.conf.veth3bd42127.bc_forwarding = 0 +net.ipv4.conf.veth3bd42127.bootp_relay = 0 +net.ipv4.conf.veth3bd42127.disable_policy = 0 +net.ipv4.conf.veth3bd42127.disable_xfrm = 0 +net.ipv4.conf.veth3bd42127.drop_gratuitous_arp = 0 +net.ipv4.conf.veth3bd42127.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.veth3bd42127.force_igmp_version = 0 +net.ipv4.conf.veth3bd42127.forwarding = 1 +net.ipv4.conf.veth3bd42127.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.veth3bd42127.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.veth3bd42127.ignore_routes_with_linkdown = 0 +net.ipv4.conf.veth3bd42127.log_martians = 0 +net.ipv4.conf.veth3bd42127.mc_forwarding = 0 +net.ipv4.conf.veth3bd42127.medium_id = 0 +net.ipv4.conf.veth3bd42127.promote_secondaries = 1 +net.ipv4.conf.veth3bd42127.proxy_arp = 0 +net.ipv4.conf.veth3bd42127.proxy_arp_pvlan = 0 +net.ipv4.conf.veth3bd42127.route_localnet = 0 +net.ipv4.conf.veth3bd42127.rp_filter = 1 +net.ipv4.conf.veth3bd42127.secure_redirects = 1 +net.ipv4.conf.veth3bd42127.send_redirects = 1 +net.ipv4.conf.veth3bd42127.shared_media = 1 +net.ipv4.conf.veth3bd42127.src_valid_mark = 0 +net.ipv4.conf.veth3bd42127.tag = 0 +net.ipv4.conf.veth45fa2bdb.accept_local = 0 +net.ipv4.conf.veth45fa2bdb.accept_redirects = 1 +net.ipv4.conf.veth45fa2bdb.accept_source_route = 0 +net.ipv4.conf.veth45fa2bdb.arp_accept = 0 +net.ipv4.conf.veth45fa2bdb.arp_announce = 0 +net.ipv4.conf.veth45fa2bdb.arp_filter = 0 +net.ipv4.conf.veth45fa2bdb.arp_ignore = 0 +net.ipv4.conf.veth45fa2bdb.arp_notify = 0 +net.ipv4.conf.veth45fa2bdb.bc_forwarding = 0 +net.ipv4.conf.veth45fa2bdb.bootp_relay = 0 +net.ipv4.conf.veth45fa2bdb.disable_policy = 0 +net.ipv4.conf.veth45fa2bdb.disable_xfrm = 0 +net.ipv4.conf.veth45fa2bdb.drop_gratuitous_arp = 0 +net.ipv4.conf.veth45fa2bdb.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.veth45fa2bdb.force_igmp_version = 0 +net.ipv4.conf.veth45fa2bdb.forwarding = 1 +net.ipv4.conf.veth45fa2bdb.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.veth45fa2bdb.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.veth45fa2bdb.ignore_routes_with_linkdown = 0 +net.ipv4.conf.veth45fa2bdb.log_martians = 0 +net.ipv4.conf.veth45fa2bdb.mc_forwarding = 0 +net.ipv4.conf.veth45fa2bdb.medium_id = 0 +net.ipv4.conf.veth45fa2bdb.promote_secondaries = 1 +net.ipv4.conf.veth45fa2bdb.proxy_arp = 0 +net.ipv4.conf.veth45fa2bdb.proxy_arp_pvlan = 0 +net.ipv4.conf.veth45fa2bdb.route_localnet = 0 +net.ipv4.conf.veth45fa2bdb.rp_filter = 1 +net.ipv4.conf.veth45fa2bdb.secure_redirects = 1 +net.ipv4.conf.veth45fa2bdb.send_redirects = 1 +net.ipv4.conf.veth45fa2bdb.shared_media = 1 +net.ipv4.conf.veth45fa2bdb.src_valid_mark = 0 +net.ipv4.conf.veth45fa2bdb.tag = 0 +net.ipv4.conf.veth522c3e56.accept_local = 0 +net.ipv4.conf.veth522c3e56.accept_redirects = 1 +net.ipv4.conf.veth522c3e56.accept_source_route = 0 +net.ipv4.conf.veth522c3e56.arp_accept = 0 +net.ipv4.conf.veth522c3e56.arp_announce = 0 +net.ipv4.conf.veth522c3e56.arp_filter = 0 +net.ipv4.conf.veth522c3e56.arp_ignore = 0 +net.ipv4.conf.veth522c3e56.arp_notify = 0 +net.ipv4.conf.veth522c3e56.bc_forwarding = 0 +net.ipv4.conf.veth522c3e56.bootp_relay = 0 +net.ipv4.conf.veth522c3e56.disable_policy = 0 +net.ipv4.conf.veth522c3e56.disable_xfrm = 0 +net.ipv4.conf.veth522c3e56.drop_gratuitous_arp = 0 +net.ipv4.conf.veth522c3e56.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.veth522c3e56.force_igmp_version = 0 +net.ipv4.conf.veth522c3e56.forwarding = 1 +net.ipv4.conf.veth522c3e56.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.veth522c3e56.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.veth522c3e56.ignore_routes_with_linkdown = 0 +net.ipv4.conf.veth522c3e56.log_martians = 0 +net.ipv4.conf.veth522c3e56.mc_forwarding = 0 +net.ipv4.conf.veth522c3e56.medium_id = 0 +net.ipv4.conf.veth522c3e56.promote_secondaries = 1 +net.ipv4.conf.veth522c3e56.proxy_arp = 0 +net.ipv4.conf.veth522c3e56.proxy_arp_pvlan = 0 +net.ipv4.conf.veth522c3e56.route_localnet = 0 +net.ipv4.conf.veth522c3e56.rp_filter = 1 +net.ipv4.conf.veth522c3e56.secure_redirects = 1 +net.ipv4.conf.veth522c3e56.send_redirects = 1 +net.ipv4.conf.veth522c3e56.shared_media = 1 +net.ipv4.conf.veth522c3e56.src_valid_mark = 0 +net.ipv4.conf.veth522c3e56.tag = 0 +net.ipv4.conf.veth57871859.accept_local = 0 +net.ipv4.conf.veth57871859.accept_redirects = 1 +net.ipv4.conf.veth57871859.accept_source_route = 0 +net.ipv4.conf.veth57871859.arp_accept = 0 +net.ipv4.conf.veth57871859.arp_announce = 0 +net.ipv4.conf.veth57871859.arp_filter = 0 +net.ipv4.conf.veth57871859.arp_ignore = 0 +net.ipv4.conf.veth57871859.arp_notify = 0 +net.ipv4.conf.veth57871859.bc_forwarding = 0 +net.ipv4.conf.veth57871859.bootp_relay = 0 +net.ipv4.conf.veth57871859.disable_policy = 0 +net.ipv4.conf.veth57871859.disable_xfrm = 0 +net.ipv4.conf.veth57871859.drop_gratuitous_arp = 0 +net.ipv4.conf.veth57871859.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.veth57871859.force_igmp_version = 0 +net.ipv4.conf.veth57871859.forwarding = 1 +net.ipv4.conf.veth57871859.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.veth57871859.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.veth57871859.ignore_routes_with_linkdown = 0 +net.ipv4.conf.veth57871859.log_martians = 0 +net.ipv4.conf.veth57871859.mc_forwarding = 0 +net.ipv4.conf.veth57871859.medium_id = 0 +net.ipv4.conf.veth57871859.promote_secondaries = 1 +net.ipv4.conf.veth57871859.proxy_arp = 0 +net.ipv4.conf.veth57871859.proxy_arp_pvlan = 0 +net.ipv4.conf.veth57871859.route_localnet = 0 +net.ipv4.conf.veth57871859.rp_filter = 1 +net.ipv4.conf.veth57871859.secure_redirects = 1 +net.ipv4.conf.veth57871859.send_redirects = 1 +net.ipv4.conf.veth57871859.shared_media = 1 +net.ipv4.conf.veth57871859.src_valid_mark = 0 +net.ipv4.conf.veth57871859.tag = 0 +net.ipv4.conf.veth61f76055.accept_local = 0 +net.ipv4.conf.veth61f76055.accept_redirects = 1 +net.ipv4.conf.veth61f76055.accept_source_route = 0 +net.ipv4.conf.veth61f76055.arp_accept = 0 +net.ipv4.conf.veth61f76055.arp_announce = 0 +net.ipv4.conf.veth61f76055.arp_filter = 0 +net.ipv4.conf.veth61f76055.arp_ignore = 0 +net.ipv4.conf.veth61f76055.arp_notify = 0 +net.ipv4.conf.veth61f76055.bc_forwarding = 0 +net.ipv4.conf.veth61f76055.bootp_relay = 0 +net.ipv4.conf.veth61f76055.disable_policy = 0 +net.ipv4.conf.veth61f76055.disable_xfrm = 0 +net.ipv4.conf.veth61f76055.drop_gratuitous_arp = 0 +net.ipv4.conf.veth61f76055.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.veth61f76055.force_igmp_version = 0 +net.ipv4.conf.veth61f76055.forwarding = 1 +net.ipv4.conf.veth61f76055.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.veth61f76055.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.veth61f76055.ignore_routes_with_linkdown = 0 +net.ipv4.conf.veth61f76055.log_martians = 0 +net.ipv4.conf.veth61f76055.mc_forwarding = 0 +net.ipv4.conf.veth61f76055.medium_id = 0 +net.ipv4.conf.veth61f76055.promote_secondaries = 1 +net.ipv4.conf.veth61f76055.proxy_arp = 0 +net.ipv4.conf.veth61f76055.proxy_arp_pvlan = 0 +net.ipv4.conf.veth61f76055.route_localnet = 0 +net.ipv4.conf.veth61f76055.rp_filter = 1 +net.ipv4.conf.veth61f76055.secure_redirects = 1 +net.ipv4.conf.veth61f76055.send_redirects = 1 +net.ipv4.conf.veth61f76055.shared_media = 1 +net.ipv4.conf.veth61f76055.src_valid_mark = 0 +net.ipv4.conf.veth61f76055.tag = 0 +net.ipv4.conf.veth67de6880.accept_local = 0 +net.ipv4.conf.veth67de6880.accept_redirects = 1 +net.ipv4.conf.veth67de6880.accept_source_route = 0 +net.ipv4.conf.veth67de6880.arp_accept = 0 +net.ipv4.conf.veth67de6880.arp_announce = 0 +net.ipv4.conf.veth67de6880.arp_filter = 0 +net.ipv4.conf.veth67de6880.arp_ignore = 0 +net.ipv4.conf.veth67de6880.arp_notify = 0 +net.ipv4.conf.veth67de6880.bc_forwarding = 0 +net.ipv4.conf.veth67de6880.bootp_relay = 0 +net.ipv4.conf.veth67de6880.disable_policy = 0 +net.ipv4.conf.veth67de6880.disable_xfrm = 0 +net.ipv4.conf.veth67de6880.drop_gratuitous_arp = 0 +net.ipv4.conf.veth67de6880.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.veth67de6880.force_igmp_version = 0 +net.ipv4.conf.veth67de6880.forwarding = 1 +net.ipv4.conf.veth67de6880.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.veth67de6880.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.veth67de6880.ignore_routes_with_linkdown = 0 +net.ipv4.conf.veth67de6880.log_martians = 0 +net.ipv4.conf.veth67de6880.mc_forwarding = 0 +net.ipv4.conf.veth67de6880.medium_id = 0 +net.ipv4.conf.veth67de6880.promote_secondaries = 1 +net.ipv4.conf.veth67de6880.proxy_arp = 0 +net.ipv4.conf.veth67de6880.proxy_arp_pvlan = 0 +net.ipv4.conf.veth67de6880.route_localnet = 0 +net.ipv4.conf.veth67de6880.rp_filter = 1 +net.ipv4.conf.veth67de6880.secure_redirects = 1 +net.ipv4.conf.veth67de6880.send_redirects = 1 +net.ipv4.conf.veth67de6880.shared_media = 1 +net.ipv4.conf.veth67de6880.src_valid_mark = 0 +net.ipv4.conf.veth67de6880.tag = 0 +net.ipv4.conf.veth67e3da0.accept_local = 0 +net.ipv4.conf.veth67e3da0.accept_redirects = 1 +net.ipv4.conf.veth67e3da0.accept_source_route = 0 +net.ipv4.conf.veth67e3da0.arp_accept = 0 +net.ipv4.conf.veth67e3da0.arp_announce = 0 +net.ipv4.conf.veth67e3da0.arp_filter = 0 +net.ipv4.conf.veth67e3da0.arp_ignore = 0 +net.ipv4.conf.veth67e3da0.arp_notify = 0 +net.ipv4.conf.veth67e3da0.bc_forwarding = 0 +net.ipv4.conf.veth67e3da0.bootp_relay = 0 +net.ipv4.conf.veth67e3da0.disable_policy = 0 +net.ipv4.conf.veth67e3da0.disable_xfrm = 0 +net.ipv4.conf.veth67e3da0.drop_gratuitous_arp = 0 +net.ipv4.conf.veth67e3da0.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.veth67e3da0.force_igmp_version = 0 +net.ipv4.conf.veth67e3da0.forwarding = 1 +net.ipv4.conf.veth67e3da0.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.veth67e3da0.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.veth67e3da0.ignore_routes_with_linkdown = 0 +net.ipv4.conf.veth67e3da0.log_martians = 0 +net.ipv4.conf.veth67e3da0.mc_forwarding = 0 +net.ipv4.conf.veth67e3da0.medium_id = 0 +net.ipv4.conf.veth67e3da0.promote_secondaries = 1 +net.ipv4.conf.veth67e3da0.proxy_arp = 0 +net.ipv4.conf.veth67e3da0.proxy_arp_pvlan = 0 +net.ipv4.conf.veth67e3da0.route_localnet = 0 +net.ipv4.conf.veth67e3da0.rp_filter = 1 +net.ipv4.conf.veth67e3da0.secure_redirects = 1 +net.ipv4.conf.veth67e3da0.send_redirects = 1 +net.ipv4.conf.veth67e3da0.shared_media = 1 +net.ipv4.conf.veth67e3da0.src_valid_mark = 0 +net.ipv4.conf.veth67e3da0.tag = 0 +net.ipv4.conf.vetha245bad8.accept_local = 0 +net.ipv4.conf.vetha245bad8.accept_redirects = 1 +net.ipv4.conf.vetha245bad8.accept_source_route = 0 +net.ipv4.conf.vetha245bad8.arp_accept = 0 +net.ipv4.conf.vetha245bad8.arp_announce = 0 +net.ipv4.conf.vetha245bad8.arp_filter = 0 +net.ipv4.conf.vetha245bad8.arp_ignore = 0 +net.ipv4.conf.vetha245bad8.arp_notify = 0 +net.ipv4.conf.vetha245bad8.bc_forwarding = 0 +net.ipv4.conf.vetha245bad8.bootp_relay = 0 +net.ipv4.conf.vetha245bad8.disable_policy = 0 +net.ipv4.conf.vetha245bad8.disable_xfrm = 0 +net.ipv4.conf.vetha245bad8.drop_gratuitous_arp = 0 +net.ipv4.conf.vetha245bad8.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.vetha245bad8.force_igmp_version = 0 +net.ipv4.conf.vetha245bad8.forwarding = 1 +net.ipv4.conf.vetha245bad8.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.vetha245bad8.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.vetha245bad8.ignore_routes_with_linkdown = 0 +net.ipv4.conf.vetha245bad8.log_martians = 0 +net.ipv4.conf.vetha245bad8.mc_forwarding = 0 +net.ipv4.conf.vetha245bad8.medium_id = 0 +net.ipv4.conf.vetha245bad8.promote_secondaries = 1 +net.ipv4.conf.vetha245bad8.proxy_arp = 0 +net.ipv4.conf.vetha245bad8.proxy_arp_pvlan = 0 +net.ipv4.conf.vetha245bad8.route_localnet = 0 +net.ipv4.conf.vetha245bad8.rp_filter = 1 +net.ipv4.conf.vetha245bad8.secure_redirects = 1 +net.ipv4.conf.vetha245bad8.send_redirects = 1 +net.ipv4.conf.vetha245bad8.shared_media = 1 +net.ipv4.conf.vetha245bad8.src_valid_mark = 0 +net.ipv4.conf.vetha245bad8.tag = 0 +net.ipv4.conf.vetha67e3445.accept_local = 0 +net.ipv4.conf.vetha67e3445.accept_redirects = 1 +net.ipv4.conf.vetha67e3445.accept_source_route = 0 +net.ipv4.conf.vetha67e3445.arp_accept = 0 +net.ipv4.conf.vetha67e3445.arp_announce = 0 +net.ipv4.conf.vetha67e3445.arp_filter = 0 +net.ipv4.conf.vetha67e3445.arp_ignore = 0 +net.ipv4.conf.vetha67e3445.arp_notify = 0 +net.ipv4.conf.vetha67e3445.bc_forwarding = 0 +net.ipv4.conf.vetha67e3445.bootp_relay = 0 +net.ipv4.conf.vetha67e3445.disable_policy = 0 +net.ipv4.conf.vetha67e3445.disable_xfrm = 0 +net.ipv4.conf.vetha67e3445.drop_gratuitous_arp = 0 +net.ipv4.conf.vetha67e3445.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.vetha67e3445.force_igmp_version = 0 +net.ipv4.conf.vetha67e3445.forwarding = 1 +net.ipv4.conf.vetha67e3445.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.vetha67e3445.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.vetha67e3445.ignore_routes_with_linkdown = 0 +net.ipv4.conf.vetha67e3445.log_martians = 0 +net.ipv4.conf.vetha67e3445.mc_forwarding = 0 +net.ipv4.conf.vetha67e3445.medium_id = 0 +net.ipv4.conf.vetha67e3445.promote_secondaries = 1 +net.ipv4.conf.vetha67e3445.proxy_arp = 0 +net.ipv4.conf.vetha67e3445.proxy_arp_pvlan = 0 +net.ipv4.conf.vetha67e3445.route_localnet = 0 +net.ipv4.conf.vetha67e3445.rp_filter = 1 +net.ipv4.conf.vetha67e3445.secure_redirects = 1 +net.ipv4.conf.vetha67e3445.send_redirects = 1 +net.ipv4.conf.vetha67e3445.shared_media = 1 +net.ipv4.conf.vetha67e3445.src_valid_mark = 0 +net.ipv4.conf.vetha67e3445.tag = 0 +net.ipv4.conf.vethaa8f4de.accept_local = 0 +net.ipv4.conf.vethaa8f4de.accept_redirects = 1 +net.ipv4.conf.vethaa8f4de.accept_source_route = 0 +net.ipv4.conf.vethaa8f4de.arp_accept = 0 +net.ipv4.conf.vethaa8f4de.arp_announce = 0 +net.ipv4.conf.vethaa8f4de.arp_filter = 0 +net.ipv4.conf.vethaa8f4de.arp_ignore = 0 +net.ipv4.conf.vethaa8f4de.arp_notify = 0 +net.ipv4.conf.vethaa8f4de.bc_forwarding = 0 +net.ipv4.conf.vethaa8f4de.bootp_relay = 0 +net.ipv4.conf.vethaa8f4de.disable_policy = 0 +net.ipv4.conf.vethaa8f4de.disable_xfrm = 0 +net.ipv4.conf.vethaa8f4de.drop_gratuitous_arp = 0 +net.ipv4.conf.vethaa8f4de.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.vethaa8f4de.force_igmp_version = 0 +net.ipv4.conf.vethaa8f4de.forwarding = 1 +net.ipv4.conf.vethaa8f4de.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.vethaa8f4de.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.vethaa8f4de.ignore_routes_with_linkdown = 0 +net.ipv4.conf.vethaa8f4de.log_martians = 0 +net.ipv4.conf.vethaa8f4de.mc_forwarding = 0 +net.ipv4.conf.vethaa8f4de.medium_id = 0 +net.ipv4.conf.vethaa8f4de.promote_secondaries = 1 +net.ipv4.conf.vethaa8f4de.proxy_arp = 0 +net.ipv4.conf.vethaa8f4de.proxy_arp_pvlan = 0 +net.ipv4.conf.vethaa8f4de.route_localnet = 0 +net.ipv4.conf.vethaa8f4de.rp_filter = 1 +net.ipv4.conf.vethaa8f4de.secure_redirects = 1 +net.ipv4.conf.vethaa8f4de.send_redirects = 1 +net.ipv4.conf.vethaa8f4de.shared_media = 1 +net.ipv4.conf.vethaa8f4de.src_valid_mark = 0 +net.ipv4.conf.vethaa8f4de.tag = 0 +net.ipv4.conf.vethad45a55a.accept_local = 0 +net.ipv4.conf.vethad45a55a.accept_redirects = 1 +net.ipv4.conf.vethad45a55a.accept_source_route = 0 +net.ipv4.conf.vethad45a55a.arp_accept = 0 +net.ipv4.conf.vethad45a55a.arp_announce = 0 +net.ipv4.conf.vethad45a55a.arp_filter = 0 +net.ipv4.conf.vethad45a55a.arp_ignore = 0 +net.ipv4.conf.vethad45a55a.arp_notify = 0 +net.ipv4.conf.vethad45a55a.bc_forwarding = 0 +net.ipv4.conf.vethad45a55a.bootp_relay = 0 +net.ipv4.conf.vethad45a55a.disable_policy = 0 +net.ipv4.conf.vethad45a55a.disable_xfrm = 0 +net.ipv4.conf.vethad45a55a.drop_gratuitous_arp = 0 +net.ipv4.conf.vethad45a55a.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.vethad45a55a.force_igmp_version = 0 +net.ipv4.conf.vethad45a55a.forwarding = 1 +net.ipv4.conf.vethad45a55a.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.vethad45a55a.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.vethad45a55a.ignore_routes_with_linkdown = 0 +net.ipv4.conf.vethad45a55a.log_martians = 0 +net.ipv4.conf.vethad45a55a.mc_forwarding = 0 +net.ipv4.conf.vethad45a55a.medium_id = 0 +net.ipv4.conf.vethad45a55a.promote_secondaries = 1 +net.ipv4.conf.vethad45a55a.proxy_arp = 0 +net.ipv4.conf.vethad45a55a.proxy_arp_pvlan = 0 +net.ipv4.conf.vethad45a55a.route_localnet = 0 +net.ipv4.conf.vethad45a55a.rp_filter = 1 +net.ipv4.conf.vethad45a55a.secure_redirects = 1 +net.ipv4.conf.vethad45a55a.send_redirects = 1 +net.ipv4.conf.vethad45a55a.shared_media = 1 +net.ipv4.conf.vethad45a55a.src_valid_mark = 0 +net.ipv4.conf.vethad45a55a.tag = 0 +net.ipv4.conf.vethb2e8fb78.accept_local = 0 +net.ipv4.conf.vethb2e8fb78.accept_redirects = 1 +net.ipv4.conf.vethb2e8fb78.accept_source_route = 0 +net.ipv4.conf.vethb2e8fb78.arp_accept = 0 +net.ipv4.conf.vethb2e8fb78.arp_announce = 0 +net.ipv4.conf.vethb2e8fb78.arp_filter = 0 +net.ipv4.conf.vethb2e8fb78.arp_ignore = 0 +net.ipv4.conf.vethb2e8fb78.arp_notify = 0 +net.ipv4.conf.vethb2e8fb78.bc_forwarding = 0 +net.ipv4.conf.vethb2e8fb78.bootp_relay = 0 +net.ipv4.conf.vethb2e8fb78.disable_policy = 0 +net.ipv4.conf.vethb2e8fb78.disable_xfrm = 0 +net.ipv4.conf.vethb2e8fb78.drop_gratuitous_arp = 0 +net.ipv4.conf.vethb2e8fb78.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.vethb2e8fb78.force_igmp_version = 0 +net.ipv4.conf.vethb2e8fb78.forwarding = 1 +net.ipv4.conf.vethb2e8fb78.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.vethb2e8fb78.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.vethb2e8fb78.ignore_routes_with_linkdown = 0 +net.ipv4.conf.vethb2e8fb78.log_martians = 0 +net.ipv4.conf.vethb2e8fb78.mc_forwarding = 0 +net.ipv4.conf.vethb2e8fb78.medium_id = 0 +net.ipv4.conf.vethb2e8fb78.promote_secondaries = 1 +net.ipv4.conf.vethb2e8fb78.proxy_arp = 0 +net.ipv4.conf.vethb2e8fb78.proxy_arp_pvlan = 0 +net.ipv4.conf.vethb2e8fb78.route_localnet = 0 +net.ipv4.conf.vethb2e8fb78.rp_filter = 1 +net.ipv4.conf.vethb2e8fb78.secure_redirects = 1 +net.ipv4.conf.vethb2e8fb78.send_redirects = 1 +net.ipv4.conf.vethb2e8fb78.shared_media = 1 +net.ipv4.conf.vethb2e8fb78.src_valid_mark = 0 +net.ipv4.conf.vethb2e8fb78.tag = 0 +net.ipv4.conf.vethb9d2af0d.accept_local = 0 +net.ipv4.conf.vethb9d2af0d.accept_redirects = 1 +net.ipv4.conf.vethb9d2af0d.accept_source_route = 0 +net.ipv4.conf.vethb9d2af0d.arp_accept = 0 +net.ipv4.conf.vethb9d2af0d.arp_announce = 0 +net.ipv4.conf.vethb9d2af0d.arp_filter = 0 +net.ipv4.conf.vethb9d2af0d.arp_ignore = 0 +net.ipv4.conf.vethb9d2af0d.arp_notify = 0 +net.ipv4.conf.vethb9d2af0d.bc_forwarding = 0 +net.ipv4.conf.vethb9d2af0d.bootp_relay = 0 +net.ipv4.conf.vethb9d2af0d.disable_policy = 0 +net.ipv4.conf.vethb9d2af0d.disable_xfrm = 0 +net.ipv4.conf.vethb9d2af0d.drop_gratuitous_arp = 0 +net.ipv4.conf.vethb9d2af0d.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.vethb9d2af0d.force_igmp_version = 0 +net.ipv4.conf.vethb9d2af0d.forwarding = 1 +net.ipv4.conf.vethb9d2af0d.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.vethb9d2af0d.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.vethb9d2af0d.ignore_routes_with_linkdown = 0 +net.ipv4.conf.vethb9d2af0d.log_martians = 0 +net.ipv4.conf.vethb9d2af0d.mc_forwarding = 0 +net.ipv4.conf.vethb9d2af0d.medium_id = 0 +net.ipv4.conf.vethb9d2af0d.promote_secondaries = 1 +net.ipv4.conf.vethb9d2af0d.proxy_arp = 0 +net.ipv4.conf.vethb9d2af0d.proxy_arp_pvlan = 0 +net.ipv4.conf.vethb9d2af0d.route_localnet = 0 +net.ipv4.conf.vethb9d2af0d.rp_filter = 1 +net.ipv4.conf.vethb9d2af0d.secure_redirects = 1 +net.ipv4.conf.vethb9d2af0d.send_redirects = 1 +net.ipv4.conf.vethb9d2af0d.shared_media = 1 +net.ipv4.conf.vethb9d2af0d.src_valid_mark = 0 +net.ipv4.conf.vethb9d2af0d.tag = 0 +net.ipv4.conf.vethc33cb528.accept_local = 0 +net.ipv4.conf.vethc33cb528.accept_redirects = 1 +net.ipv4.conf.vethc33cb528.accept_source_route = 0 +net.ipv4.conf.vethc33cb528.arp_accept = 0 +net.ipv4.conf.vethc33cb528.arp_announce = 0 +net.ipv4.conf.vethc33cb528.arp_filter = 0 +net.ipv4.conf.vethc33cb528.arp_ignore = 0 +net.ipv4.conf.vethc33cb528.arp_notify = 0 +net.ipv4.conf.vethc33cb528.bc_forwarding = 0 +net.ipv4.conf.vethc33cb528.bootp_relay = 0 +net.ipv4.conf.vethc33cb528.disable_policy = 0 +net.ipv4.conf.vethc33cb528.disable_xfrm = 0 +net.ipv4.conf.vethc33cb528.drop_gratuitous_arp = 0 +net.ipv4.conf.vethc33cb528.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.vethc33cb528.force_igmp_version = 0 +net.ipv4.conf.vethc33cb528.forwarding = 1 +net.ipv4.conf.vethc33cb528.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.vethc33cb528.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.vethc33cb528.ignore_routes_with_linkdown = 0 +net.ipv4.conf.vethc33cb528.log_martians = 0 +net.ipv4.conf.vethc33cb528.mc_forwarding = 0 +net.ipv4.conf.vethc33cb528.medium_id = 0 +net.ipv4.conf.vethc33cb528.promote_secondaries = 1 +net.ipv4.conf.vethc33cb528.proxy_arp = 0 +net.ipv4.conf.vethc33cb528.proxy_arp_pvlan = 0 +net.ipv4.conf.vethc33cb528.route_localnet = 0 +net.ipv4.conf.vethc33cb528.rp_filter = 1 +net.ipv4.conf.vethc33cb528.secure_redirects = 1 +net.ipv4.conf.vethc33cb528.send_redirects = 1 +net.ipv4.conf.vethc33cb528.shared_media = 1 +net.ipv4.conf.vethc33cb528.src_valid_mark = 0 +net.ipv4.conf.vethc33cb528.tag = 0 +net.ipv4.conf.vethc52473d4.accept_local = 0 +net.ipv4.conf.vethc52473d4.accept_redirects = 1 +net.ipv4.conf.vethc52473d4.accept_source_route = 0 +net.ipv4.conf.vethc52473d4.arp_accept = 0 +net.ipv4.conf.vethc52473d4.arp_announce = 0 +net.ipv4.conf.vethc52473d4.arp_filter = 0 +net.ipv4.conf.vethc52473d4.arp_ignore = 0 +net.ipv4.conf.vethc52473d4.arp_notify = 0 +net.ipv4.conf.vethc52473d4.bc_forwarding = 0 +net.ipv4.conf.vethc52473d4.bootp_relay = 0 +net.ipv4.conf.vethc52473d4.disable_policy = 0 +net.ipv4.conf.vethc52473d4.disable_xfrm = 0 +net.ipv4.conf.vethc52473d4.drop_gratuitous_arp = 0 +net.ipv4.conf.vethc52473d4.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.vethc52473d4.force_igmp_version = 0 +net.ipv4.conf.vethc52473d4.forwarding = 1 +net.ipv4.conf.vethc52473d4.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.vethc52473d4.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.vethc52473d4.ignore_routes_with_linkdown = 0 +net.ipv4.conf.vethc52473d4.log_martians = 0 +net.ipv4.conf.vethc52473d4.mc_forwarding = 0 +net.ipv4.conf.vethc52473d4.medium_id = 0 +net.ipv4.conf.vethc52473d4.promote_secondaries = 1 +net.ipv4.conf.vethc52473d4.proxy_arp = 0 +net.ipv4.conf.vethc52473d4.proxy_arp_pvlan = 0 +net.ipv4.conf.vethc52473d4.route_localnet = 0 +net.ipv4.conf.vethc52473d4.rp_filter = 1 +net.ipv4.conf.vethc52473d4.secure_redirects = 1 +net.ipv4.conf.vethc52473d4.send_redirects = 1 +net.ipv4.conf.vethc52473d4.shared_media = 1 +net.ipv4.conf.vethc52473d4.src_valid_mark = 0 +net.ipv4.conf.vethc52473d4.tag = 0 +net.ipv4.conf.vethc532c32b.accept_local = 0 +net.ipv4.conf.vethc532c32b.accept_redirects = 1 +net.ipv4.conf.vethc532c32b.accept_source_route = 0 +net.ipv4.conf.vethc532c32b.arp_accept = 0 +net.ipv4.conf.vethc532c32b.arp_announce = 0 +net.ipv4.conf.vethc532c32b.arp_filter = 0 +net.ipv4.conf.vethc532c32b.arp_ignore = 0 +net.ipv4.conf.vethc532c32b.arp_notify = 0 +net.ipv4.conf.vethc532c32b.bc_forwarding = 0 +net.ipv4.conf.vethc532c32b.bootp_relay = 0 +net.ipv4.conf.vethc532c32b.disable_policy = 0 +net.ipv4.conf.vethc532c32b.disable_xfrm = 0 +net.ipv4.conf.vethc532c32b.drop_gratuitous_arp = 0 +net.ipv4.conf.vethc532c32b.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.vethc532c32b.force_igmp_version = 0 +net.ipv4.conf.vethc532c32b.forwarding = 1 +net.ipv4.conf.vethc532c32b.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.vethc532c32b.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.vethc532c32b.ignore_routes_with_linkdown = 0 +net.ipv4.conf.vethc532c32b.log_martians = 0 +net.ipv4.conf.vethc532c32b.mc_forwarding = 0 +net.ipv4.conf.vethc532c32b.medium_id = 0 +net.ipv4.conf.vethc532c32b.promote_secondaries = 1 +net.ipv4.conf.vethc532c32b.proxy_arp = 0 +net.ipv4.conf.vethc532c32b.proxy_arp_pvlan = 0 +net.ipv4.conf.vethc532c32b.route_localnet = 0 +net.ipv4.conf.vethc532c32b.rp_filter = 1 +net.ipv4.conf.vethc532c32b.secure_redirects = 1 +net.ipv4.conf.vethc532c32b.send_redirects = 1 +net.ipv4.conf.vethc532c32b.shared_media = 1 +net.ipv4.conf.vethc532c32b.src_valid_mark = 0 +net.ipv4.conf.vethc532c32b.tag = 0 +net.ipv4.conf.vethce7b9a4d.accept_local = 0 +net.ipv4.conf.vethce7b9a4d.accept_redirects = 1 +net.ipv4.conf.vethce7b9a4d.accept_source_route = 0 +net.ipv4.conf.vethce7b9a4d.arp_accept = 0 +net.ipv4.conf.vethce7b9a4d.arp_announce = 0 +net.ipv4.conf.vethce7b9a4d.arp_filter = 0 +net.ipv4.conf.vethce7b9a4d.arp_ignore = 0 +net.ipv4.conf.vethce7b9a4d.arp_notify = 0 +net.ipv4.conf.vethce7b9a4d.bc_forwarding = 0 +net.ipv4.conf.vethce7b9a4d.bootp_relay = 0 +net.ipv4.conf.vethce7b9a4d.disable_policy = 0 +net.ipv4.conf.vethce7b9a4d.disable_xfrm = 0 +net.ipv4.conf.vethce7b9a4d.drop_gratuitous_arp = 0 +net.ipv4.conf.vethce7b9a4d.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.vethce7b9a4d.force_igmp_version = 0 +net.ipv4.conf.vethce7b9a4d.forwarding = 1 +net.ipv4.conf.vethce7b9a4d.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.vethce7b9a4d.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.vethce7b9a4d.ignore_routes_with_linkdown = 0 +net.ipv4.conf.vethce7b9a4d.log_martians = 0 +net.ipv4.conf.vethce7b9a4d.mc_forwarding = 0 +net.ipv4.conf.vethce7b9a4d.medium_id = 0 +net.ipv4.conf.vethce7b9a4d.promote_secondaries = 1 +net.ipv4.conf.vethce7b9a4d.proxy_arp = 0 +net.ipv4.conf.vethce7b9a4d.proxy_arp_pvlan = 0 +net.ipv4.conf.vethce7b9a4d.route_localnet = 0 +net.ipv4.conf.vethce7b9a4d.rp_filter = 1 +net.ipv4.conf.vethce7b9a4d.secure_redirects = 1 +net.ipv4.conf.vethce7b9a4d.send_redirects = 1 +net.ipv4.conf.vethce7b9a4d.shared_media = 1 +net.ipv4.conf.vethce7b9a4d.src_valid_mark = 0 +net.ipv4.conf.vethce7b9a4d.tag = 0 +net.ipv4.conf.vethe8577b3d.accept_local = 0 +net.ipv4.conf.vethe8577b3d.accept_redirects = 1 +net.ipv4.conf.vethe8577b3d.accept_source_route = 0 +net.ipv4.conf.vethe8577b3d.arp_accept = 0 +net.ipv4.conf.vethe8577b3d.arp_announce = 0 +net.ipv4.conf.vethe8577b3d.arp_filter = 0 +net.ipv4.conf.vethe8577b3d.arp_ignore = 0 +net.ipv4.conf.vethe8577b3d.arp_notify = 0 +net.ipv4.conf.vethe8577b3d.bc_forwarding = 0 +net.ipv4.conf.vethe8577b3d.bootp_relay = 0 +net.ipv4.conf.vethe8577b3d.disable_policy = 0 +net.ipv4.conf.vethe8577b3d.disable_xfrm = 0 +net.ipv4.conf.vethe8577b3d.drop_gratuitous_arp = 0 +net.ipv4.conf.vethe8577b3d.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.vethe8577b3d.force_igmp_version = 0 +net.ipv4.conf.vethe8577b3d.forwarding = 1 +net.ipv4.conf.vethe8577b3d.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.vethe8577b3d.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.vethe8577b3d.ignore_routes_with_linkdown = 0 +net.ipv4.conf.vethe8577b3d.log_martians = 0 +net.ipv4.conf.vethe8577b3d.mc_forwarding = 0 +net.ipv4.conf.vethe8577b3d.medium_id = 0 +net.ipv4.conf.vethe8577b3d.promote_secondaries = 1 +net.ipv4.conf.vethe8577b3d.proxy_arp = 0 +net.ipv4.conf.vethe8577b3d.proxy_arp_pvlan = 0 +net.ipv4.conf.vethe8577b3d.route_localnet = 0 +net.ipv4.conf.vethe8577b3d.rp_filter = 1 +net.ipv4.conf.vethe8577b3d.secure_redirects = 1 +net.ipv4.conf.vethe8577b3d.send_redirects = 1 +net.ipv4.conf.vethe8577b3d.shared_media = 1 +net.ipv4.conf.vethe8577b3d.src_valid_mark = 0 +net.ipv4.conf.vethe8577b3d.tag = 0 +net.ipv4.conf.vethe8b73084.accept_local = 0 +net.ipv4.conf.vethe8b73084.accept_redirects = 1 +net.ipv4.conf.vethe8b73084.accept_source_route = 0 +net.ipv4.conf.vethe8b73084.arp_accept = 0 +net.ipv4.conf.vethe8b73084.arp_announce = 0 +net.ipv4.conf.vethe8b73084.arp_filter = 0 +net.ipv4.conf.vethe8b73084.arp_ignore = 0 +net.ipv4.conf.vethe8b73084.arp_notify = 0 +net.ipv4.conf.vethe8b73084.bc_forwarding = 0 +net.ipv4.conf.vethe8b73084.bootp_relay = 0 +net.ipv4.conf.vethe8b73084.disable_policy = 0 +net.ipv4.conf.vethe8b73084.disable_xfrm = 0 +net.ipv4.conf.vethe8b73084.drop_gratuitous_arp = 0 +net.ipv4.conf.vethe8b73084.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.vethe8b73084.force_igmp_version = 0 +net.ipv4.conf.vethe8b73084.forwarding = 1 +net.ipv4.conf.vethe8b73084.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.vethe8b73084.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.vethe8b73084.ignore_routes_with_linkdown = 0 +net.ipv4.conf.vethe8b73084.log_martians = 0 +net.ipv4.conf.vethe8b73084.mc_forwarding = 0 +net.ipv4.conf.vethe8b73084.medium_id = 0 +net.ipv4.conf.vethe8b73084.promote_secondaries = 1 +net.ipv4.conf.vethe8b73084.proxy_arp = 0 +net.ipv4.conf.vethe8b73084.proxy_arp_pvlan = 0 +net.ipv4.conf.vethe8b73084.route_localnet = 0 +net.ipv4.conf.vethe8b73084.rp_filter = 1 +net.ipv4.conf.vethe8b73084.secure_redirects = 1 +net.ipv4.conf.vethe8b73084.send_redirects = 1 +net.ipv4.conf.vethe8b73084.shared_media = 1 +net.ipv4.conf.vethe8b73084.src_valid_mark = 0 +net.ipv4.conf.vethe8b73084.tag = 0 +net.ipv4.conf.vethf5136d77.accept_local = 0 +net.ipv4.conf.vethf5136d77.accept_redirects = 1 +net.ipv4.conf.vethf5136d77.accept_source_route = 0 +net.ipv4.conf.vethf5136d77.arp_accept = 0 +net.ipv4.conf.vethf5136d77.arp_announce = 0 +net.ipv4.conf.vethf5136d77.arp_filter = 0 +net.ipv4.conf.vethf5136d77.arp_ignore = 0 +net.ipv4.conf.vethf5136d77.arp_notify = 0 +net.ipv4.conf.vethf5136d77.bc_forwarding = 0 +net.ipv4.conf.vethf5136d77.bootp_relay = 0 +net.ipv4.conf.vethf5136d77.disable_policy = 0 +net.ipv4.conf.vethf5136d77.disable_xfrm = 0 +net.ipv4.conf.vethf5136d77.drop_gratuitous_arp = 0 +net.ipv4.conf.vethf5136d77.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.vethf5136d77.force_igmp_version = 0 +net.ipv4.conf.vethf5136d77.forwarding = 1 +net.ipv4.conf.vethf5136d77.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.vethf5136d77.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.vethf5136d77.ignore_routes_with_linkdown = 0 +net.ipv4.conf.vethf5136d77.log_martians = 0 +net.ipv4.conf.vethf5136d77.mc_forwarding = 0 +net.ipv4.conf.vethf5136d77.medium_id = 0 +net.ipv4.conf.vethf5136d77.promote_secondaries = 1 +net.ipv4.conf.vethf5136d77.proxy_arp = 0 +net.ipv4.conf.vethf5136d77.proxy_arp_pvlan = 0 +net.ipv4.conf.vethf5136d77.route_localnet = 0 +net.ipv4.conf.vethf5136d77.rp_filter = 1 +net.ipv4.conf.vethf5136d77.secure_redirects = 1 +net.ipv4.conf.vethf5136d77.send_redirects = 1 +net.ipv4.conf.vethf5136d77.shared_media = 1 +net.ipv4.conf.vethf5136d77.src_valid_mark = 0 +net.ipv4.conf.vethf5136d77.tag = 0 +net.ipv4.conf.vethfa2d922.accept_local = 0 +net.ipv4.conf.vethfa2d922.accept_redirects = 1 +net.ipv4.conf.vethfa2d922.accept_source_route = 0 +net.ipv4.conf.vethfa2d922.arp_accept = 0 +net.ipv4.conf.vethfa2d922.arp_announce = 0 +net.ipv4.conf.vethfa2d922.arp_filter = 0 +net.ipv4.conf.vethfa2d922.arp_ignore = 0 +net.ipv4.conf.vethfa2d922.arp_notify = 0 +net.ipv4.conf.vethfa2d922.bc_forwarding = 0 +net.ipv4.conf.vethfa2d922.bootp_relay = 0 +net.ipv4.conf.vethfa2d922.disable_policy = 0 +net.ipv4.conf.vethfa2d922.disable_xfrm = 0 +net.ipv4.conf.vethfa2d922.drop_gratuitous_arp = 0 +net.ipv4.conf.vethfa2d922.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.vethfa2d922.force_igmp_version = 0 +net.ipv4.conf.vethfa2d922.forwarding = 1 +net.ipv4.conf.vethfa2d922.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.vethfa2d922.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.vethfa2d922.ignore_routes_with_linkdown = 0 +net.ipv4.conf.vethfa2d922.log_martians = 0 +net.ipv4.conf.vethfa2d922.mc_forwarding = 0 +net.ipv4.conf.vethfa2d922.medium_id = 0 +net.ipv4.conf.vethfa2d922.promote_secondaries = 1 +net.ipv4.conf.vethfa2d922.proxy_arp = 0 +net.ipv4.conf.vethfa2d922.proxy_arp_pvlan = 0 +net.ipv4.conf.vethfa2d922.route_localnet = 0 +net.ipv4.conf.vethfa2d922.rp_filter = 1 +net.ipv4.conf.vethfa2d922.secure_redirects = 1 +net.ipv4.conf.vethfa2d922.send_redirects = 1 +net.ipv4.conf.vethfa2d922.shared_media = 1 +net.ipv4.conf.vethfa2d922.src_valid_mark = 0 +net.ipv4.conf.vethfa2d922.tag = 0 +net.ipv4.conf.virbr0.accept_local = 0 +net.ipv4.conf.virbr0.accept_redirects = 1 +net.ipv4.conf.virbr0.accept_source_route = 0 +net.ipv4.conf.virbr0.arp_accept = 0 +net.ipv4.conf.virbr0.arp_announce = 0 +net.ipv4.conf.virbr0.arp_filter = 0 +net.ipv4.conf.virbr0.arp_ignore = 0 +net.ipv4.conf.virbr0.arp_notify = 0 +net.ipv4.conf.virbr0.bc_forwarding = 0 +net.ipv4.conf.virbr0.bootp_relay = 0 +net.ipv4.conf.virbr0.disable_policy = 0 +net.ipv4.conf.virbr0.disable_xfrm = 0 +net.ipv4.conf.virbr0.drop_gratuitous_arp = 0 +net.ipv4.conf.virbr0.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.virbr0.force_igmp_version = 0 +net.ipv4.conf.virbr0.forwarding = 1 +net.ipv4.conf.virbr0.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.virbr0.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.virbr0.ignore_routes_with_linkdown = 0 +net.ipv4.conf.virbr0.log_martians = 0 +net.ipv4.conf.virbr0.mc_forwarding = 0 +net.ipv4.conf.virbr0.medium_id = 0 +net.ipv4.conf.virbr0.promote_secondaries = 1 +net.ipv4.conf.virbr0.proxy_arp = 0 +net.ipv4.conf.virbr0.proxy_arp_pvlan = 0 +net.ipv4.conf.virbr0.route_localnet = 0 +net.ipv4.conf.virbr0.rp_filter = 1 +net.ipv4.conf.virbr0.secure_redirects = 1 +net.ipv4.conf.virbr0.send_redirects = 1 +net.ipv4.conf.virbr0.shared_media = 1 +net.ipv4.conf.virbr0.src_valid_mark = 0 +net.ipv4.conf.virbr0.tag = 0 +net.ipv4.conf.virbr0-nic.accept_local = 0 +net.ipv4.conf.virbr0-nic.accept_redirects = 1 +net.ipv4.conf.virbr0-nic.accept_source_route = 0 +net.ipv4.conf.virbr0-nic.arp_accept = 0 +net.ipv4.conf.virbr0-nic.arp_announce = 0 +net.ipv4.conf.virbr0-nic.arp_filter = 0 +net.ipv4.conf.virbr0-nic.arp_ignore = 0 +net.ipv4.conf.virbr0-nic.arp_notify = 0 +net.ipv4.conf.virbr0-nic.bc_forwarding = 0 +net.ipv4.conf.virbr0-nic.bootp_relay = 0 +net.ipv4.conf.virbr0-nic.disable_policy = 0 +net.ipv4.conf.virbr0-nic.disable_xfrm = 0 +net.ipv4.conf.virbr0-nic.drop_gratuitous_arp = 0 +net.ipv4.conf.virbr0-nic.drop_unicast_in_l2_multicast = 0 +net.ipv4.conf.virbr0-nic.force_igmp_version = 0 +net.ipv4.conf.virbr0-nic.forwarding = 1 +net.ipv4.conf.virbr0-nic.igmpv2_unsolicited_report_interval = 10000 +net.ipv4.conf.virbr0-nic.igmpv3_unsolicited_report_interval = 1000 +net.ipv4.conf.virbr0-nic.ignore_routes_with_linkdown = 0 +net.ipv4.conf.virbr0-nic.log_martians = 0 +net.ipv4.conf.virbr0-nic.mc_forwarding = 0 +net.ipv4.conf.virbr0-nic.medium_id = 0 +net.ipv4.conf.virbr0-nic.promote_secondaries = 1 +net.ipv4.conf.virbr0-nic.proxy_arp = 0 +net.ipv4.conf.virbr0-nic.proxy_arp_pvlan = 0 +net.ipv4.conf.virbr0-nic.route_localnet = 0 +net.ipv4.conf.virbr0-nic.rp_filter = 1 +net.ipv4.conf.virbr0-nic.secure_redirects = 1 +net.ipv4.conf.virbr0-nic.send_redirects = 1 +net.ipv4.conf.virbr0-nic.shared_media = 1 +net.ipv4.conf.virbr0-nic.src_valid_mark = 0 +net.ipv4.conf.virbr0-nic.tag = 0 +net.ipv4.fib_multipath_hash_policy = 0 +net.ipv4.fib_multipath_use_neigh = 0 +net.ipv4.fwmark_reflect = 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_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.bond0.anycast_delay = 100 +net.ipv4.neigh.bond0.app_solicit = 0 +net.ipv4.neigh.bond0.base_reachable_time_ms = 30000 +net.ipv4.neigh.bond0.delay_first_probe_time = 5 +net.ipv4.neigh.bond0.gc_stale_time = 60 +net.ipv4.neigh.bond0.locktime = 100 +net.ipv4.neigh.bond0.mcast_resolicit = 0 +net.ipv4.neigh.bond0.mcast_solicit = 3 +net.ipv4.neigh.bond0.proxy_delay = 80 +net.ipv4.neigh.bond0.proxy_qlen = 64 +net.ipv4.neigh.bond0.retrans_time_ms = 1000 +net.ipv4.neigh.bond0.ucast_solicit = 3 +net.ipv4.neigh.bond0.unres_qlen = 101 +net.ipv4.neigh.bond0.unres_qlen_bytes = 212992 +net.ipv4.neigh.br-294661236c88.anycast_delay = 100 +net.ipv4.neigh.br-294661236c88.app_solicit = 0 +net.ipv4.neigh.br-294661236c88.base_reachable_time_ms = 30000 +net.ipv4.neigh.br-294661236c88.delay_first_probe_time = 5 +net.ipv4.neigh.br-294661236c88.gc_stale_time = 60 +net.ipv4.neigh.br-294661236c88.locktime = 100 +net.ipv4.neigh.br-294661236c88.mcast_resolicit = 0 +net.ipv4.neigh.br-294661236c88.mcast_solicit = 3 +net.ipv4.neigh.br-294661236c88.proxy_delay = 80 +net.ipv4.neigh.br-294661236c88.proxy_qlen = 64 +net.ipv4.neigh.br-294661236c88.retrans_time_ms = 1000 +net.ipv4.neigh.br-294661236c88.ucast_solicit = 3 +net.ipv4.neigh.br-294661236c88.unres_qlen = 101 +net.ipv4.neigh.br-294661236c88.unres_qlen_bytes = 212992 +net.ipv4.neigh.br-5f8d81e2374e.anycast_delay = 100 +net.ipv4.neigh.br-5f8d81e2374e.app_solicit = 0 +net.ipv4.neigh.br-5f8d81e2374e.base_reachable_time_ms = 30000 +net.ipv4.neigh.br-5f8d81e2374e.delay_first_probe_time = 5 +net.ipv4.neigh.br-5f8d81e2374e.gc_stale_time = 60 +net.ipv4.neigh.br-5f8d81e2374e.locktime = 100 +net.ipv4.neigh.br-5f8d81e2374e.mcast_resolicit = 0 +net.ipv4.neigh.br-5f8d81e2374e.mcast_solicit = 3 +net.ipv4.neigh.br-5f8d81e2374e.proxy_delay = 80 +net.ipv4.neigh.br-5f8d81e2374e.proxy_qlen = 64 +net.ipv4.neigh.br-5f8d81e2374e.retrans_time_ms = 1000 +net.ipv4.neigh.br-5f8d81e2374e.ucast_solicit = 3 +net.ipv4.neigh.br-5f8d81e2374e.unres_qlen = 101 +net.ipv4.neigh.br-5f8d81e2374e.unres_qlen_bytes = 212992 +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_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.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_resolicit = 0 +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 = 101 +net.ipv4.neigh.docker0.unres_qlen_bytes = 212992 +net.ipv4.neigh.em1.anycast_delay = 100 +net.ipv4.neigh.em1.app_solicit = 0 +net.ipv4.neigh.em1.base_reachable_time_ms = 30000 +net.ipv4.neigh.em1.delay_first_probe_time = 5 +net.ipv4.neigh.em1.gc_stale_time = 60 +net.ipv4.neigh.em1.locktime = 100 +net.ipv4.neigh.em1.mcast_resolicit = 0 +net.ipv4.neigh.em1.mcast_solicit = 3 +net.ipv4.neigh.em1.proxy_delay = 80 +net.ipv4.neigh.em1.proxy_qlen = 64 +net.ipv4.neigh.em1.retrans_time_ms = 1000 +net.ipv4.neigh.em1.ucast_solicit = 3 +net.ipv4.neigh.em1.unres_qlen = 101 +net.ipv4.neigh.em1.unres_qlen_bytes = 212992 +net.ipv4.neigh.em2.anycast_delay = 100 +net.ipv4.neigh.em2.app_solicit = 0 +net.ipv4.neigh.em2.base_reachable_time_ms = 30000 +net.ipv4.neigh.em2.delay_first_probe_time = 5 +net.ipv4.neigh.em2.gc_stale_time = 60 +net.ipv4.neigh.em2.locktime = 100 +net.ipv4.neigh.em2.mcast_resolicit = 0 +net.ipv4.neigh.em2.mcast_solicit = 3 +net.ipv4.neigh.em2.proxy_delay = 80 +net.ipv4.neigh.em2.proxy_qlen = 64 +net.ipv4.neigh.em2.retrans_time_ms = 1000 +net.ipv4.neigh.em2.ucast_solicit = 3 +net.ipv4.neigh.em2.unres_qlen = 101 +net.ipv4.neigh.em2.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.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.lxdbr0.anycast_delay = 100 +net.ipv4.neigh.lxdbr0.app_solicit = 0 +net.ipv4.neigh.lxdbr0.base_reachable_time_ms = 30000 +net.ipv4.neigh.lxdbr0.delay_first_probe_time = 5 +net.ipv4.neigh.lxdbr0.gc_stale_time = 60 +net.ipv4.neigh.lxdbr0.locktime = 100 +net.ipv4.neigh.lxdbr0.mcast_resolicit = 0 +net.ipv4.neigh.lxdbr0.mcast_solicit = 3 +net.ipv4.neigh.lxdbr0.proxy_delay = 80 +net.ipv4.neigh.lxdbr0.proxy_qlen = 64 +net.ipv4.neigh.lxdbr0.retrans_time_ms = 1000 +net.ipv4.neigh.lxdbr0.ucast_solicit = 3 +net.ipv4.neigh.lxdbr0.unres_qlen = 101 +net.ipv4.neigh.lxdbr0.unres_qlen_bytes = 212992 +net.ipv4.neigh.vboxnet0.anycast_delay = 100 +net.ipv4.neigh.vboxnet0.app_solicit = 0 +net.ipv4.neigh.vboxnet0.base_reachable_time_ms = 30000 +net.ipv4.neigh.vboxnet0.delay_first_probe_time = 5 +net.ipv4.neigh.vboxnet0.gc_stale_time = 60 +net.ipv4.neigh.vboxnet0.locktime = 100 +net.ipv4.neigh.vboxnet0.mcast_resolicit = 0 +net.ipv4.neigh.vboxnet0.mcast_solicit = 3 +net.ipv4.neigh.vboxnet0.proxy_delay = 80 +net.ipv4.neigh.vboxnet0.proxy_qlen = 64 +net.ipv4.neigh.vboxnet0.retrans_time_ms = 1000 +net.ipv4.neigh.vboxnet0.ucast_solicit = 3 +net.ipv4.neigh.vboxnet0.unres_qlen = 101 +net.ipv4.neigh.vboxnet0.unres_qlen_bytes = 212992 +net.ipv4.neigh.vboxnet12.anycast_delay = 100 +net.ipv4.neigh.vboxnet12.app_solicit = 0 +net.ipv4.neigh.vboxnet12.base_reachable_time_ms = 30000 +net.ipv4.neigh.vboxnet12.delay_first_probe_time = 5 +net.ipv4.neigh.vboxnet12.gc_stale_time = 60 +net.ipv4.neigh.vboxnet12.locktime = 100 +net.ipv4.neigh.vboxnet12.mcast_resolicit = 0 +net.ipv4.neigh.vboxnet12.mcast_solicit = 3 +net.ipv4.neigh.vboxnet12.proxy_delay = 80 +net.ipv4.neigh.vboxnet12.proxy_qlen = 64 +net.ipv4.neigh.vboxnet12.retrans_time_ms = 1000 +net.ipv4.neigh.vboxnet12.ucast_solicit = 3 +net.ipv4.neigh.vboxnet12.unres_qlen = 101 +net.ipv4.neigh.vboxnet12.unres_qlen_bytes = 212992 +net.ipv4.neigh.vboxnet18.anycast_delay = 100 +net.ipv4.neigh.vboxnet18.app_solicit = 0 +net.ipv4.neigh.vboxnet18.base_reachable_time_ms = 30000 +net.ipv4.neigh.vboxnet18.delay_first_probe_time = 5 +net.ipv4.neigh.vboxnet18.gc_stale_time = 60 +net.ipv4.neigh.vboxnet18.locktime = 100 +net.ipv4.neigh.vboxnet18.mcast_resolicit = 0 +net.ipv4.neigh.vboxnet18.mcast_solicit = 3 +net.ipv4.neigh.vboxnet18.proxy_delay = 80 +net.ipv4.neigh.vboxnet18.proxy_qlen = 64 +net.ipv4.neigh.vboxnet18.retrans_time_ms = 1000 +net.ipv4.neigh.vboxnet18.ucast_solicit = 3 +net.ipv4.neigh.vboxnet18.unres_qlen = 101 +net.ipv4.neigh.vboxnet18.unres_qlen_bytes = 212992 +net.ipv4.neigh.vboxnet19.anycast_delay = 100 +net.ipv4.neigh.vboxnet19.app_solicit = 0 +net.ipv4.neigh.vboxnet19.base_reachable_time_ms = 30000 +net.ipv4.neigh.vboxnet19.delay_first_probe_time = 5 +net.ipv4.neigh.vboxnet19.gc_stale_time = 60 +net.ipv4.neigh.vboxnet19.locktime = 100 +net.ipv4.neigh.vboxnet19.mcast_resolicit = 0 +net.ipv4.neigh.vboxnet19.mcast_solicit = 3 +net.ipv4.neigh.vboxnet19.proxy_delay = 80 +net.ipv4.neigh.vboxnet19.proxy_qlen = 64 +net.ipv4.neigh.vboxnet19.retrans_time_ms = 1000 +net.ipv4.neigh.vboxnet19.ucast_solicit = 3 +net.ipv4.neigh.vboxnet19.unres_qlen = 101 +net.ipv4.neigh.vboxnet19.unres_qlen_bytes = 212992 +net.ipv4.neigh.vboxnet20.anycast_delay = 100 +net.ipv4.neigh.vboxnet20.app_solicit = 0 +net.ipv4.neigh.vboxnet20.base_reachable_time_ms = 30000 +net.ipv4.neigh.vboxnet20.delay_first_probe_time = 5 +net.ipv4.neigh.vboxnet20.gc_stale_time = 60 +net.ipv4.neigh.vboxnet20.locktime = 100 +net.ipv4.neigh.vboxnet20.mcast_resolicit = 0 +net.ipv4.neigh.vboxnet20.mcast_solicit = 3 +net.ipv4.neigh.vboxnet20.proxy_delay = 80 +net.ipv4.neigh.vboxnet20.proxy_qlen = 64 +net.ipv4.neigh.vboxnet20.retrans_time_ms = 1000 +net.ipv4.neigh.vboxnet20.ucast_solicit = 3 +net.ipv4.neigh.vboxnet20.unres_qlen = 101 +net.ipv4.neigh.vboxnet20.unres_qlen_bytes = 212992 +net.ipv4.neigh.vboxnet21.anycast_delay = 100 +net.ipv4.neigh.vboxnet21.app_solicit = 0 +net.ipv4.neigh.vboxnet21.base_reachable_time_ms = 30000 +net.ipv4.neigh.vboxnet21.delay_first_probe_time = 5 +net.ipv4.neigh.vboxnet21.gc_stale_time = 60 +net.ipv4.neigh.vboxnet21.locktime = 100 +net.ipv4.neigh.vboxnet21.mcast_resolicit = 0 +net.ipv4.neigh.vboxnet21.mcast_solicit = 3 +net.ipv4.neigh.vboxnet21.proxy_delay = 80 +net.ipv4.neigh.vboxnet21.proxy_qlen = 64 +net.ipv4.neigh.vboxnet21.retrans_time_ms = 1000 +net.ipv4.neigh.vboxnet21.ucast_solicit = 3 +net.ipv4.neigh.vboxnet21.unres_qlen = 101 +net.ipv4.neigh.vboxnet21.unres_qlen_bytes = 212992 +net.ipv4.neigh.vboxnet24.anycast_delay = 100 +net.ipv4.neigh.vboxnet24.app_solicit = 0 +net.ipv4.neigh.vboxnet24.base_reachable_time_ms = 30000 +net.ipv4.neigh.vboxnet24.delay_first_probe_time = 5 +net.ipv4.neigh.vboxnet24.gc_stale_time = 60 +net.ipv4.neigh.vboxnet24.locktime = 100 +net.ipv4.neigh.vboxnet24.mcast_resolicit = 0 +net.ipv4.neigh.vboxnet24.mcast_solicit = 3 +net.ipv4.neigh.vboxnet24.proxy_delay = 80 +net.ipv4.neigh.vboxnet24.proxy_qlen = 64 +net.ipv4.neigh.vboxnet24.retrans_time_ms = 1000 +net.ipv4.neigh.vboxnet24.ucast_solicit = 3 +net.ipv4.neigh.vboxnet24.unres_qlen = 101 +net.ipv4.neigh.vboxnet24.unres_qlen_bytes = 212992 +net.ipv4.neigh.vboxnet25.anycast_delay = 100 +net.ipv4.neigh.vboxnet25.app_solicit = 0 +net.ipv4.neigh.vboxnet25.base_reachable_time_ms = 30000 +net.ipv4.neigh.vboxnet25.delay_first_probe_time = 5 +net.ipv4.neigh.vboxnet25.gc_stale_time = 60 +net.ipv4.neigh.vboxnet25.locktime = 100 +net.ipv4.neigh.vboxnet25.mcast_resolicit = 0 +net.ipv4.neigh.vboxnet25.mcast_solicit = 3 +net.ipv4.neigh.vboxnet25.proxy_delay = 80 +net.ipv4.neigh.vboxnet25.proxy_qlen = 64 +net.ipv4.neigh.vboxnet25.retrans_time_ms = 1000 +net.ipv4.neigh.vboxnet25.ucast_solicit = 3 +net.ipv4.neigh.vboxnet25.unres_qlen = 101 +net.ipv4.neigh.vboxnet25.unres_qlen_bytes = 212992 +net.ipv4.neigh.vboxnet3.anycast_delay = 100 +net.ipv4.neigh.vboxnet3.app_solicit = 0 +net.ipv4.neigh.vboxnet3.base_reachable_time_ms = 30000 +net.ipv4.neigh.vboxnet3.delay_first_probe_time = 5 +net.ipv4.neigh.vboxnet3.gc_stale_time = 60 +net.ipv4.neigh.vboxnet3.locktime = 100 +net.ipv4.neigh.vboxnet3.mcast_resolicit = 0 +net.ipv4.neigh.vboxnet3.mcast_solicit = 3 +net.ipv4.neigh.vboxnet3.proxy_delay = 80 +net.ipv4.neigh.vboxnet3.proxy_qlen = 64 +net.ipv4.neigh.vboxnet3.retrans_time_ms = 1000 +net.ipv4.neigh.vboxnet3.ucast_solicit = 3 +net.ipv4.neigh.vboxnet3.unres_qlen = 101 +net.ipv4.neigh.vboxnet3.unres_qlen_bytes = 212992 +net.ipv4.neigh.vboxnet4.anycast_delay = 100 +net.ipv4.neigh.vboxnet4.app_solicit = 0 +net.ipv4.neigh.vboxnet4.base_reachable_time_ms = 30000 +net.ipv4.neigh.vboxnet4.delay_first_probe_time = 5 +net.ipv4.neigh.vboxnet4.gc_stale_time = 60 +net.ipv4.neigh.vboxnet4.locktime = 100 +net.ipv4.neigh.vboxnet4.mcast_resolicit = 0 +net.ipv4.neigh.vboxnet4.mcast_solicit = 3 +net.ipv4.neigh.vboxnet4.proxy_delay = 80 +net.ipv4.neigh.vboxnet4.proxy_qlen = 64 +net.ipv4.neigh.vboxnet4.retrans_time_ms = 1000 +net.ipv4.neigh.vboxnet4.ucast_solicit = 3 +net.ipv4.neigh.vboxnet4.unres_qlen = 101 +net.ipv4.neigh.vboxnet4.unres_qlen_bytes = 212992 +net.ipv4.neigh.veth046457e1.anycast_delay = 100 +net.ipv4.neigh.veth046457e1.app_solicit = 0 +net.ipv4.neigh.veth046457e1.base_reachable_time_ms = 30000 +net.ipv4.neigh.veth046457e1.delay_first_probe_time = 5 +net.ipv4.neigh.veth046457e1.gc_stale_time = 60 +net.ipv4.neigh.veth046457e1.locktime = 100 +net.ipv4.neigh.veth046457e1.mcast_resolicit = 0 +net.ipv4.neigh.veth046457e1.mcast_solicit = 3 +net.ipv4.neigh.veth046457e1.proxy_delay = 80 +net.ipv4.neigh.veth046457e1.proxy_qlen = 64 +net.ipv4.neigh.veth046457e1.retrans_time_ms = 1000 +net.ipv4.neigh.veth046457e1.ucast_solicit = 3 +net.ipv4.neigh.veth046457e1.unres_qlen = 101 +net.ipv4.neigh.veth046457e1.unres_qlen_bytes = 212992 +net.ipv4.neigh.veth07d7db6b.anycast_delay = 100 +net.ipv4.neigh.veth07d7db6b.app_solicit = 0 +net.ipv4.neigh.veth07d7db6b.base_reachable_time_ms = 30000 +net.ipv4.neigh.veth07d7db6b.delay_first_probe_time = 5 +net.ipv4.neigh.veth07d7db6b.gc_stale_time = 60 +net.ipv4.neigh.veth07d7db6b.locktime = 100 +net.ipv4.neigh.veth07d7db6b.mcast_resolicit = 0 +net.ipv4.neigh.veth07d7db6b.mcast_solicit = 3 +net.ipv4.neigh.veth07d7db6b.proxy_delay = 80 +net.ipv4.neigh.veth07d7db6b.proxy_qlen = 64 +net.ipv4.neigh.veth07d7db6b.retrans_time_ms = 1000 +net.ipv4.neigh.veth07d7db6b.ucast_solicit = 3 +net.ipv4.neigh.veth07d7db6b.unres_qlen = 101 +net.ipv4.neigh.veth07d7db6b.unres_qlen_bytes = 212992 +net.ipv4.neigh.veth0bd575f6.anycast_delay = 100 +net.ipv4.neigh.veth0bd575f6.app_solicit = 0 +net.ipv4.neigh.veth0bd575f6.base_reachable_time_ms = 30000 +net.ipv4.neigh.veth0bd575f6.delay_first_probe_time = 5 +net.ipv4.neigh.veth0bd575f6.gc_stale_time = 60 +net.ipv4.neigh.veth0bd575f6.locktime = 100 +net.ipv4.neigh.veth0bd575f6.mcast_resolicit = 0 +net.ipv4.neigh.veth0bd575f6.mcast_solicit = 3 +net.ipv4.neigh.veth0bd575f6.proxy_delay = 80 +net.ipv4.neigh.veth0bd575f6.proxy_qlen = 64 +net.ipv4.neigh.veth0bd575f6.retrans_time_ms = 1000 +net.ipv4.neigh.veth0bd575f6.ucast_solicit = 3 +net.ipv4.neigh.veth0bd575f6.unres_qlen = 101 +net.ipv4.neigh.veth0bd575f6.unres_qlen_bytes = 212992 +net.ipv4.neigh.veth0c948a7c.anycast_delay = 100 +net.ipv4.neigh.veth0c948a7c.app_solicit = 0 +net.ipv4.neigh.veth0c948a7c.base_reachable_time_ms = 30000 +net.ipv4.neigh.veth0c948a7c.delay_first_probe_time = 5 +net.ipv4.neigh.veth0c948a7c.gc_stale_time = 60 +net.ipv4.neigh.veth0c948a7c.locktime = 100 +net.ipv4.neigh.veth0c948a7c.mcast_resolicit = 0 +net.ipv4.neigh.veth0c948a7c.mcast_solicit = 3 +net.ipv4.neigh.veth0c948a7c.proxy_delay = 80 +net.ipv4.neigh.veth0c948a7c.proxy_qlen = 64 +net.ipv4.neigh.veth0c948a7c.retrans_time_ms = 1000 +net.ipv4.neigh.veth0c948a7c.ucast_solicit = 3 +net.ipv4.neigh.veth0c948a7c.unres_qlen = 101 +net.ipv4.neigh.veth0c948a7c.unres_qlen_bytes = 212992 +net.ipv4.neigh.veth12219f8c.anycast_delay = 100 +net.ipv4.neigh.veth12219f8c.app_solicit = 0 +net.ipv4.neigh.veth12219f8c.base_reachable_time_ms = 30000 +net.ipv4.neigh.veth12219f8c.delay_first_probe_time = 5 +net.ipv4.neigh.veth12219f8c.gc_stale_time = 60 +net.ipv4.neigh.veth12219f8c.locktime = 100 +net.ipv4.neigh.veth12219f8c.mcast_resolicit = 0 +net.ipv4.neigh.veth12219f8c.mcast_solicit = 3 +net.ipv4.neigh.veth12219f8c.proxy_delay = 80 +net.ipv4.neigh.veth12219f8c.proxy_qlen = 64 +net.ipv4.neigh.veth12219f8c.retrans_time_ms = 1000 +net.ipv4.neigh.veth12219f8c.ucast_solicit = 3 +net.ipv4.neigh.veth12219f8c.unres_qlen = 101 +net.ipv4.neigh.veth12219f8c.unres_qlen_bytes = 212992 +net.ipv4.neigh.veth125aed80.anycast_delay = 100 +net.ipv4.neigh.veth125aed80.app_solicit = 0 +net.ipv4.neigh.veth125aed80.base_reachable_time_ms = 30000 +net.ipv4.neigh.veth125aed80.delay_first_probe_time = 5 +net.ipv4.neigh.veth125aed80.gc_stale_time = 60 +net.ipv4.neigh.veth125aed80.locktime = 100 +net.ipv4.neigh.veth125aed80.mcast_resolicit = 0 +net.ipv4.neigh.veth125aed80.mcast_solicit = 3 +net.ipv4.neigh.veth125aed80.proxy_delay = 80 +net.ipv4.neigh.veth125aed80.proxy_qlen = 64 +net.ipv4.neigh.veth125aed80.retrans_time_ms = 1000 +net.ipv4.neigh.veth125aed80.ucast_solicit = 3 +net.ipv4.neigh.veth125aed80.unres_qlen = 101 +net.ipv4.neigh.veth125aed80.unres_qlen_bytes = 212992 +net.ipv4.neigh.veth140b78c8.anycast_delay = 100 +net.ipv4.neigh.veth140b78c8.app_solicit = 0 +net.ipv4.neigh.veth140b78c8.base_reachable_time_ms = 30000 +net.ipv4.neigh.veth140b78c8.delay_first_probe_time = 5 +net.ipv4.neigh.veth140b78c8.gc_stale_time = 60 +net.ipv4.neigh.veth140b78c8.locktime = 100 +net.ipv4.neigh.veth140b78c8.mcast_resolicit = 0 +net.ipv4.neigh.veth140b78c8.mcast_solicit = 3 +net.ipv4.neigh.veth140b78c8.proxy_delay = 80 +net.ipv4.neigh.veth140b78c8.proxy_qlen = 64 +net.ipv4.neigh.veth140b78c8.retrans_time_ms = 1000 +net.ipv4.neigh.veth140b78c8.ucast_solicit = 3 +net.ipv4.neigh.veth140b78c8.unres_qlen = 101 +net.ipv4.neigh.veth140b78c8.unres_qlen_bytes = 212992 +net.ipv4.neigh.veth19c266ca.anycast_delay = 100 +net.ipv4.neigh.veth19c266ca.app_solicit = 0 +net.ipv4.neigh.veth19c266ca.base_reachable_time_ms = 30000 +net.ipv4.neigh.veth19c266ca.delay_first_probe_time = 5 +net.ipv4.neigh.veth19c266ca.gc_stale_time = 60 +net.ipv4.neigh.veth19c266ca.locktime = 100 +net.ipv4.neigh.veth19c266ca.mcast_resolicit = 0 +net.ipv4.neigh.veth19c266ca.mcast_solicit = 3 +net.ipv4.neigh.veth19c266ca.proxy_delay = 80 +net.ipv4.neigh.veth19c266ca.proxy_qlen = 64 +net.ipv4.neigh.veth19c266ca.retrans_time_ms = 1000 +net.ipv4.neigh.veth19c266ca.ucast_solicit = 3 +net.ipv4.neigh.veth19c266ca.unres_qlen = 101 +net.ipv4.neigh.veth19c266ca.unres_qlen_bytes = 212992 +net.ipv4.neigh.veth1a2f3a50.anycast_delay = 100 +net.ipv4.neigh.veth1a2f3a50.app_solicit = 0 +net.ipv4.neigh.veth1a2f3a50.base_reachable_time_ms = 30000 +net.ipv4.neigh.veth1a2f3a50.delay_first_probe_time = 5 +net.ipv4.neigh.veth1a2f3a50.gc_stale_time = 60 +net.ipv4.neigh.veth1a2f3a50.locktime = 100 +net.ipv4.neigh.veth1a2f3a50.mcast_resolicit = 0 +net.ipv4.neigh.veth1a2f3a50.mcast_solicit = 3 +net.ipv4.neigh.veth1a2f3a50.proxy_delay = 80 +net.ipv4.neigh.veth1a2f3a50.proxy_qlen = 64 +net.ipv4.neigh.veth1a2f3a50.retrans_time_ms = 1000 +net.ipv4.neigh.veth1a2f3a50.ucast_solicit = 3 +net.ipv4.neigh.veth1a2f3a50.unres_qlen = 101 +net.ipv4.neigh.veth1a2f3a50.unres_qlen_bytes = 212992 +net.ipv4.neigh.veth1e01ee50.anycast_delay = 100 +net.ipv4.neigh.veth1e01ee50.app_solicit = 0 +net.ipv4.neigh.veth1e01ee50.base_reachable_time_ms = 30000 +net.ipv4.neigh.veth1e01ee50.delay_first_probe_time = 5 +net.ipv4.neigh.veth1e01ee50.gc_stale_time = 60 +net.ipv4.neigh.veth1e01ee50.locktime = 100 +net.ipv4.neigh.veth1e01ee50.mcast_resolicit = 0 +net.ipv4.neigh.veth1e01ee50.mcast_solicit = 3 +net.ipv4.neigh.veth1e01ee50.proxy_delay = 80 +net.ipv4.neigh.veth1e01ee50.proxy_qlen = 64 +net.ipv4.neigh.veth1e01ee50.retrans_time_ms = 1000 +net.ipv4.neigh.veth1e01ee50.ucast_solicit = 3 +net.ipv4.neigh.veth1e01ee50.unres_qlen = 101 +net.ipv4.neigh.veth1e01ee50.unres_qlen_bytes = 212992 +net.ipv4.neigh.veth328abad5.anycast_delay = 100 +net.ipv4.neigh.veth328abad5.app_solicit = 0 +net.ipv4.neigh.veth328abad5.base_reachable_time_ms = 30000 +net.ipv4.neigh.veth328abad5.delay_first_probe_time = 5 +net.ipv4.neigh.veth328abad5.gc_stale_time = 60 +net.ipv4.neigh.veth328abad5.locktime = 100 +net.ipv4.neigh.veth328abad5.mcast_resolicit = 0 +net.ipv4.neigh.veth328abad5.mcast_solicit = 3 +net.ipv4.neigh.veth328abad5.proxy_delay = 80 +net.ipv4.neigh.veth328abad5.proxy_qlen = 64 +net.ipv4.neigh.veth328abad5.retrans_time_ms = 1000 +net.ipv4.neigh.veth328abad5.ucast_solicit = 3 +net.ipv4.neigh.veth328abad5.unres_qlen = 101 +net.ipv4.neigh.veth328abad5.unres_qlen_bytes = 212992 +net.ipv4.neigh.veth3bd42127.anycast_delay = 100 +net.ipv4.neigh.veth3bd42127.app_solicit = 0 +net.ipv4.neigh.veth3bd42127.base_reachable_time_ms = 30000 +net.ipv4.neigh.veth3bd42127.delay_first_probe_time = 5 +net.ipv4.neigh.veth3bd42127.gc_stale_time = 60 +net.ipv4.neigh.veth3bd42127.locktime = 100 +net.ipv4.neigh.veth3bd42127.mcast_resolicit = 0 +net.ipv4.neigh.veth3bd42127.mcast_solicit = 3 +net.ipv4.neigh.veth3bd42127.proxy_delay = 80 +net.ipv4.neigh.veth3bd42127.proxy_qlen = 64 +net.ipv4.neigh.veth3bd42127.retrans_time_ms = 1000 +net.ipv4.neigh.veth3bd42127.ucast_solicit = 3 +net.ipv4.neigh.veth3bd42127.unres_qlen = 101 +net.ipv4.neigh.veth3bd42127.unres_qlen_bytes = 212992 +net.ipv4.neigh.veth45fa2bdb.anycast_delay = 100 +net.ipv4.neigh.veth45fa2bdb.app_solicit = 0 +net.ipv4.neigh.veth45fa2bdb.base_reachable_time_ms = 30000 +net.ipv4.neigh.veth45fa2bdb.delay_first_probe_time = 5 +net.ipv4.neigh.veth45fa2bdb.gc_stale_time = 60 +net.ipv4.neigh.veth45fa2bdb.locktime = 100 +net.ipv4.neigh.veth45fa2bdb.mcast_resolicit = 0 +net.ipv4.neigh.veth45fa2bdb.mcast_solicit = 3 +net.ipv4.neigh.veth45fa2bdb.proxy_delay = 80 +net.ipv4.neigh.veth45fa2bdb.proxy_qlen = 64 +net.ipv4.neigh.veth45fa2bdb.retrans_time_ms = 1000 +net.ipv4.neigh.veth45fa2bdb.ucast_solicit = 3 +net.ipv4.neigh.veth45fa2bdb.unres_qlen = 101 +net.ipv4.neigh.veth45fa2bdb.unres_qlen_bytes = 212992 +net.ipv4.neigh.veth522c3e56.anycast_delay = 100 +net.ipv4.neigh.veth522c3e56.app_solicit = 0 +net.ipv4.neigh.veth522c3e56.base_reachable_time_ms = 30000 +net.ipv4.neigh.veth522c3e56.delay_first_probe_time = 5 +net.ipv4.neigh.veth522c3e56.gc_stale_time = 60 +net.ipv4.neigh.veth522c3e56.locktime = 100 +net.ipv4.neigh.veth522c3e56.mcast_resolicit = 0 +net.ipv4.neigh.veth522c3e56.mcast_solicit = 3 +net.ipv4.neigh.veth522c3e56.proxy_delay = 80 +net.ipv4.neigh.veth522c3e56.proxy_qlen = 64 +net.ipv4.neigh.veth522c3e56.retrans_time_ms = 1000 +net.ipv4.neigh.veth522c3e56.ucast_solicit = 3 +net.ipv4.neigh.veth522c3e56.unres_qlen = 101 +net.ipv4.neigh.veth522c3e56.unres_qlen_bytes = 212992 +net.ipv4.neigh.veth57871859.anycast_delay = 100 +net.ipv4.neigh.veth57871859.app_solicit = 0 +net.ipv4.neigh.veth57871859.base_reachable_time_ms = 30000 +net.ipv4.neigh.veth57871859.delay_first_probe_time = 5 +net.ipv4.neigh.veth57871859.gc_stale_time = 60 +net.ipv4.neigh.veth57871859.locktime = 100 +net.ipv4.neigh.veth57871859.mcast_resolicit = 0 +net.ipv4.neigh.veth57871859.mcast_solicit = 3 +net.ipv4.neigh.veth57871859.proxy_delay = 80 +net.ipv4.neigh.veth57871859.proxy_qlen = 64 +net.ipv4.neigh.veth57871859.retrans_time_ms = 1000 +net.ipv4.neigh.veth57871859.ucast_solicit = 3 +net.ipv4.neigh.veth57871859.unres_qlen = 101 +net.ipv4.neigh.veth57871859.unres_qlen_bytes = 212992 +net.ipv4.neigh.veth61f76055.anycast_delay = 100 +net.ipv4.neigh.veth61f76055.app_solicit = 0 +net.ipv4.neigh.veth61f76055.base_reachable_time_ms = 30000 +net.ipv4.neigh.veth61f76055.delay_first_probe_time = 5 +net.ipv4.neigh.veth61f76055.gc_stale_time = 60 +net.ipv4.neigh.veth61f76055.locktime = 100 +net.ipv4.neigh.veth61f76055.mcast_resolicit = 0 +net.ipv4.neigh.veth61f76055.mcast_solicit = 3 +net.ipv4.neigh.veth61f76055.proxy_delay = 80 +net.ipv4.neigh.veth61f76055.proxy_qlen = 64 +net.ipv4.neigh.veth61f76055.retrans_time_ms = 1000 +net.ipv4.neigh.veth61f76055.ucast_solicit = 3 +net.ipv4.neigh.veth61f76055.unres_qlen = 101 +net.ipv4.neigh.veth61f76055.unres_qlen_bytes = 212992 +net.ipv4.neigh.veth67de6880.anycast_delay = 100 +net.ipv4.neigh.veth67de6880.app_solicit = 0 +net.ipv4.neigh.veth67de6880.base_reachable_time_ms = 30000 +net.ipv4.neigh.veth67de6880.delay_first_probe_time = 5 +net.ipv4.neigh.veth67de6880.gc_stale_time = 60 +net.ipv4.neigh.veth67de6880.locktime = 100 +net.ipv4.neigh.veth67de6880.mcast_resolicit = 0 +net.ipv4.neigh.veth67de6880.mcast_solicit = 3 +net.ipv4.neigh.veth67de6880.proxy_delay = 80 +net.ipv4.neigh.veth67de6880.proxy_qlen = 64 +net.ipv4.neigh.veth67de6880.retrans_time_ms = 1000 +net.ipv4.neigh.veth67de6880.ucast_solicit = 3 +net.ipv4.neigh.veth67de6880.unres_qlen = 101 +net.ipv4.neigh.veth67de6880.unres_qlen_bytes = 212992 +net.ipv4.neigh.veth67e3da0.anycast_delay = 100 +net.ipv4.neigh.veth67e3da0.app_solicit = 0 +net.ipv4.neigh.veth67e3da0.base_reachable_time_ms = 30000 +net.ipv4.neigh.veth67e3da0.delay_first_probe_time = 5 +net.ipv4.neigh.veth67e3da0.gc_stale_time = 60 +net.ipv4.neigh.veth67e3da0.locktime = 100 +net.ipv4.neigh.veth67e3da0.mcast_resolicit = 0 +net.ipv4.neigh.veth67e3da0.mcast_solicit = 3 +net.ipv4.neigh.veth67e3da0.proxy_delay = 80 +net.ipv4.neigh.veth67e3da0.proxy_qlen = 64 +net.ipv4.neigh.veth67e3da0.retrans_time_ms = 1000 +net.ipv4.neigh.veth67e3da0.ucast_solicit = 3 +net.ipv4.neigh.veth67e3da0.unres_qlen = 101 +net.ipv4.neigh.veth67e3da0.unres_qlen_bytes = 212992 +net.ipv4.neigh.vetha245bad8.anycast_delay = 100 +net.ipv4.neigh.vetha245bad8.app_solicit = 0 +net.ipv4.neigh.vetha245bad8.base_reachable_time_ms = 30000 +net.ipv4.neigh.vetha245bad8.delay_first_probe_time = 5 +net.ipv4.neigh.vetha245bad8.gc_stale_time = 60 +net.ipv4.neigh.vetha245bad8.locktime = 100 +net.ipv4.neigh.vetha245bad8.mcast_resolicit = 0 +net.ipv4.neigh.vetha245bad8.mcast_solicit = 3 +net.ipv4.neigh.vetha245bad8.proxy_delay = 80 +net.ipv4.neigh.vetha245bad8.proxy_qlen = 64 +net.ipv4.neigh.vetha245bad8.retrans_time_ms = 1000 +net.ipv4.neigh.vetha245bad8.ucast_solicit = 3 +net.ipv4.neigh.vetha245bad8.unres_qlen = 101 +net.ipv4.neigh.vetha245bad8.unres_qlen_bytes = 212992 +net.ipv4.neigh.vetha67e3445.anycast_delay = 100 +net.ipv4.neigh.vetha67e3445.app_solicit = 0 +net.ipv4.neigh.vetha67e3445.base_reachable_time_ms = 30000 +net.ipv4.neigh.vetha67e3445.delay_first_probe_time = 5 +net.ipv4.neigh.vetha67e3445.gc_stale_time = 60 +net.ipv4.neigh.vetha67e3445.locktime = 100 +net.ipv4.neigh.vetha67e3445.mcast_resolicit = 0 +net.ipv4.neigh.vetha67e3445.mcast_solicit = 3 +net.ipv4.neigh.vetha67e3445.proxy_delay = 80 +net.ipv4.neigh.vetha67e3445.proxy_qlen = 64 +net.ipv4.neigh.vetha67e3445.retrans_time_ms = 1000 +net.ipv4.neigh.vetha67e3445.ucast_solicit = 3 +net.ipv4.neigh.vetha67e3445.unres_qlen = 101 +net.ipv4.neigh.vetha67e3445.unres_qlen_bytes = 212992 +net.ipv4.neigh.vethaa8f4de.anycast_delay = 100 +net.ipv4.neigh.vethaa8f4de.app_solicit = 0 +net.ipv4.neigh.vethaa8f4de.base_reachable_time_ms = 30000 +net.ipv4.neigh.vethaa8f4de.delay_first_probe_time = 5 +net.ipv4.neigh.vethaa8f4de.gc_stale_time = 60 +net.ipv4.neigh.vethaa8f4de.locktime = 100 +net.ipv4.neigh.vethaa8f4de.mcast_resolicit = 0 +net.ipv4.neigh.vethaa8f4de.mcast_solicit = 3 +net.ipv4.neigh.vethaa8f4de.proxy_delay = 80 +net.ipv4.neigh.vethaa8f4de.proxy_qlen = 64 +net.ipv4.neigh.vethaa8f4de.retrans_time_ms = 1000 +net.ipv4.neigh.vethaa8f4de.ucast_solicit = 3 +net.ipv4.neigh.vethaa8f4de.unres_qlen = 101 +net.ipv4.neigh.vethaa8f4de.unres_qlen_bytes = 212992 +net.ipv4.neigh.vethad45a55a.anycast_delay = 100 +net.ipv4.neigh.vethad45a55a.app_solicit = 0 +net.ipv4.neigh.vethad45a55a.base_reachable_time_ms = 30000 +net.ipv4.neigh.vethad45a55a.delay_first_probe_time = 5 +net.ipv4.neigh.vethad45a55a.gc_stale_time = 60 +net.ipv4.neigh.vethad45a55a.locktime = 100 +net.ipv4.neigh.vethad45a55a.mcast_resolicit = 0 +net.ipv4.neigh.vethad45a55a.mcast_solicit = 3 +net.ipv4.neigh.vethad45a55a.proxy_delay = 80 +net.ipv4.neigh.vethad45a55a.proxy_qlen = 64 +net.ipv4.neigh.vethad45a55a.retrans_time_ms = 1000 +net.ipv4.neigh.vethad45a55a.ucast_solicit = 3 +net.ipv4.neigh.vethad45a55a.unres_qlen = 101 +net.ipv4.neigh.vethad45a55a.unres_qlen_bytes = 212992 +net.ipv4.neigh.vethb2e8fb78.anycast_delay = 100 +net.ipv4.neigh.vethb2e8fb78.app_solicit = 0 +net.ipv4.neigh.vethb2e8fb78.base_reachable_time_ms = 30000 +net.ipv4.neigh.vethb2e8fb78.delay_first_probe_time = 5 +net.ipv4.neigh.vethb2e8fb78.gc_stale_time = 60 +net.ipv4.neigh.vethb2e8fb78.locktime = 100 +net.ipv4.neigh.vethb2e8fb78.mcast_resolicit = 0 +net.ipv4.neigh.vethb2e8fb78.mcast_solicit = 3 +net.ipv4.neigh.vethb2e8fb78.proxy_delay = 80 +net.ipv4.neigh.vethb2e8fb78.proxy_qlen = 64 +net.ipv4.neigh.vethb2e8fb78.retrans_time_ms = 1000 +net.ipv4.neigh.vethb2e8fb78.ucast_solicit = 3 +net.ipv4.neigh.vethb2e8fb78.unres_qlen = 101 +net.ipv4.neigh.vethb2e8fb78.unres_qlen_bytes = 212992 +net.ipv4.neigh.vethb9d2af0d.anycast_delay = 100 +net.ipv4.neigh.vethb9d2af0d.app_solicit = 0 +net.ipv4.neigh.vethb9d2af0d.base_reachable_time_ms = 30000 +net.ipv4.neigh.vethb9d2af0d.delay_first_probe_time = 5 +net.ipv4.neigh.vethb9d2af0d.gc_stale_time = 60 +net.ipv4.neigh.vethb9d2af0d.locktime = 100 +net.ipv4.neigh.vethb9d2af0d.mcast_resolicit = 0 +net.ipv4.neigh.vethb9d2af0d.mcast_solicit = 3 +net.ipv4.neigh.vethb9d2af0d.proxy_delay = 80 +net.ipv4.neigh.vethb9d2af0d.proxy_qlen = 64 +net.ipv4.neigh.vethb9d2af0d.retrans_time_ms = 1000 +net.ipv4.neigh.vethb9d2af0d.ucast_solicit = 3 +net.ipv4.neigh.vethb9d2af0d.unres_qlen = 101 +net.ipv4.neigh.vethb9d2af0d.unres_qlen_bytes = 212992 +net.ipv4.neigh.vethc33cb528.anycast_delay = 100 +net.ipv4.neigh.vethc33cb528.app_solicit = 0 +net.ipv4.neigh.vethc33cb528.base_reachable_time_ms = 30000 +net.ipv4.neigh.vethc33cb528.delay_first_probe_time = 5 +net.ipv4.neigh.vethc33cb528.gc_stale_time = 60 +net.ipv4.neigh.vethc33cb528.locktime = 100 +net.ipv4.neigh.vethc33cb528.mcast_resolicit = 0 +net.ipv4.neigh.vethc33cb528.mcast_solicit = 3 +net.ipv4.neigh.vethc33cb528.proxy_delay = 80 +net.ipv4.neigh.vethc33cb528.proxy_qlen = 64 +net.ipv4.neigh.vethc33cb528.retrans_time_ms = 1000 +net.ipv4.neigh.vethc33cb528.ucast_solicit = 3 +net.ipv4.neigh.vethc33cb528.unres_qlen = 101 +net.ipv4.neigh.vethc33cb528.unres_qlen_bytes = 212992 +net.ipv4.neigh.vethc52473d4.anycast_delay = 100 +net.ipv4.neigh.vethc52473d4.app_solicit = 0 +net.ipv4.neigh.vethc52473d4.base_reachable_time_ms = 30000 +net.ipv4.neigh.vethc52473d4.delay_first_probe_time = 5 +net.ipv4.neigh.vethc52473d4.gc_stale_time = 60 +net.ipv4.neigh.vethc52473d4.locktime = 100 +net.ipv4.neigh.vethc52473d4.mcast_resolicit = 0 +net.ipv4.neigh.vethc52473d4.mcast_solicit = 3 +net.ipv4.neigh.vethc52473d4.proxy_delay = 80 +net.ipv4.neigh.vethc52473d4.proxy_qlen = 64 +net.ipv4.neigh.vethc52473d4.retrans_time_ms = 1000 +net.ipv4.neigh.vethc52473d4.ucast_solicit = 3 +net.ipv4.neigh.vethc52473d4.unres_qlen = 101 +net.ipv4.neigh.vethc52473d4.unres_qlen_bytes = 212992 +net.ipv4.neigh.vethc532c32b.anycast_delay = 100 +net.ipv4.neigh.vethc532c32b.app_solicit = 0 +net.ipv4.neigh.vethc532c32b.base_reachable_time_ms = 30000 +net.ipv4.neigh.vethc532c32b.delay_first_probe_time = 5 +net.ipv4.neigh.vethc532c32b.gc_stale_time = 60 +net.ipv4.neigh.vethc532c32b.locktime = 100 +net.ipv4.neigh.vethc532c32b.mcast_resolicit = 0 +net.ipv4.neigh.vethc532c32b.mcast_solicit = 3 +net.ipv4.neigh.vethc532c32b.proxy_delay = 80 +net.ipv4.neigh.vethc532c32b.proxy_qlen = 64 +net.ipv4.neigh.vethc532c32b.retrans_time_ms = 1000 +net.ipv4.neigh.vethc532c32b.ucast_solicit = 3 +net.ipv4.neigh.vethc532c32b.unres_qlen = 101 +net.ipv4.neigh.vethc532c32b.unres_qlen_bytes = 212992 +net.ipv4.neigh.vethce7b9a4d.anycast_delay = 100 +net.ipv4.neigh.vethce7b9a4d.app_solicit = 0 +net.ipv4.neigh.vethce7b9a4d.base_reachable_time_ms = 30000 +net.ipv4.neigh.vethce7b9a4d.delay_first_probe_time = 5 +net.ipv4.neigh.vethce7b9a4d.gc_stale_time = 60 +net.ipv4.neigh.vethce7b9a4d.locktime = 100 +net.ipv4.neigh.vethce7b9a4d.mcast_resolicit = 0 +net.ipv4.neigh.vethce7b9a4d.mcast_solicit = 3 +net.ipv4.neigh.vethce7b9a4d.proxy_delay = 80 +net.ipv4.neigh.vethce7b9a4d.proxy_qlen = 64 +net.ipv4.neigh.vethce7b9a4d.retrans_time_ms = 1000 +net.ipv4.neigh.vethce7b9a4d.ucast_solicit = 3 +net.ipv4.neigh.vethce7b9a4d.unres_qlen = 101 +net.ipv4.neigh.vethce7b9a4d.unres_qlen_bytes = 212992 +net.ipv4.neigh.vethe8577b3d.anycast_delay = 100 +net.ipv4.neigh.vethe8577b3d.app_solicit = 0 +net.ipv4.neigh.vethe8577b3d.base_reachable_time_ms = 30000 +net.ipv4.neigh.vethe8577b3d.delay_first_probe_time = 5 +net.ipv4.neigh.vethe8577b3d.gc_stale_time = 60 +net.ipv4.neigh.vethe8577b3d.locktime = 100 +net.ipv4.neigh.vethe8577b3d.mcast_resolicit = 0 +net.ipv4.neigh.vethe8577b3d.mcast_solicit = 3 +net.ipv4.neigh.vethe8577b3d.proxy_delay = 80 +net.ipv4.neigh.vethe8577b3d.proxy_qlen = 64 +net.ipv4.neigh.vethe8577b3d.retrans_time_ms = 1000 +net.ipv4.neigh.vethe8577b3d.ucast_solicit = 3 +net.ipv4.neigh.vethe8577b3d.unres_qlen = 101 +net.ipv4.neigh.vethe8577b3d.unres_qlen_bytes = 212992 +net.ipv4.neigh.vethe8b73084.anycast_delay = 100 +net.ipv4.neigh.vethe8b73084.app_solicit = 0 +net.ipv4.neigh.vethe8b73084.base_reachable_time_ms = 30000 +net.ipv4.neigh.vethe8b73084.delay_first_probe_time = 5 +net.ipv4.neigh.vethe8b73084.gc_stale_time = 60 +net.ipv4.neigh.vethe8b73084.locktime = 100 +net.ipv4.neigh.vethe8b73084.mcast_resolicit = 0 +net.ipv4.neigh.vethe8b73084.mcast_solicit = 3 +net.ipv4.neigh.vethe8b73084.proxy_delay = 80 +net.ipv4.neigh.vethe8b73084.proxy_qlen = 64 +net.ipv4.neigh.vethe8b73084.retrans_time_ms = 1000 +net.ipv4.neigh.vethe8b73084.ucast_solicit = 3 +net.ipv4.neigh.vethe8b73084.unres_qlen = 101 +net.ipv4.neigh.vethe8b73084.unres_qlen_bytes = 212992 +net.ipv4.neigh.vethf5136d77.anycast_delay = 100 +net.ipv4.neigh.vethf5136d77.app_solicit = 0 +net.ipv4.neigh.vethf5136d77.base_reachable_time_ms = 30000 +net.ipv4.neigh.vethf5136d77.delay_first_probe_time = 5 +net.ipv4.neigh.vethf5136d77.gc_stale_time = 60 +net.ipv4.neigh.vethf5136d77.locktime = 100 +net.ipv4.neigh.vethf5136d77.mcast_resolicit = 0 +net.ipv4.neigh.vethf5136d77.mcast_solicit = 3 +net.ipv4.neigh.vethf5136d77.proxy_delay = 80 +net.ipv4.neigh.vethf5136d77.proxy_qlen = 64 +net.ipv4.neigh.vethf5136d77.retrans_time_ms = 1000 +net.ipv4.neigh.vethf5136d77.ucast_solicit = 3 +net.ipv4.neigh.vethf5136d77.unres_qlen = 101 +net.ipv4.neigh.vethf5136d77.unres_qlen_bytes = 212992 +net.ipv4.neigh.vethfa2d922.anycast_delay = 100 +net.ipv4.neigh.vethfa2d922.app_solicit = 0 +net.ipv4.neigh.vethfa2d922.base_reachable_time_ms = 30000 +net.ipv4.neigh.vethfa2d922.delay_first_probe_time = 5 +net.ipv4.neigh.vethfa2d922.gc_stale_time = 60 +net.ipv4.neigh.vethfa2d922.locktime = 100 +net.ipv4.neigh.vethfa2d922.mcast_resolicit = 0 +net.ipv4.neigh.vethfa2d922.mcast_solicit = 3 +net.ipv4.neigh.vethfa2d922.proxy_delay = 80 +net.ipv4.neigh.vethfa2d922.proxy_qlen = 64 +net.ipv4.neigh.vethfa2d922.retrans_time_ms = 1000 +net.ipv4.neigh.vethfa2d922.ucast_solicit = 3 +net.ipv4.neigh.vethfa2d922.unres_qlen = 101 +net.ipv4.neigh.vethfa2d922.unres_qlen_bytes = 212992 +net.ipv4.neigh.virbr0.anycast_delay = 100 +net.ipv4.neigh.virbr0.app_solicit = 0 +net.ipv4.neigh.virbr0.base_reachable_time_ms = 30000 +net.ipv4.neigh.virbr0.delay_first_probe_time = 5 +net.ipv4.neigh.virbr0.gc_stale_time = 60 +net.ipv4.neigh.virbr0.locktime = 100 +net.ipv4.neigh.virbr0.mcast_resolicit = 0 +net.ipv4.neigh.virbr0.mcast_solicit = 3 +net.ipv4.neigh.virbr0.proxy_delay = 80 +net.ipv4.neigh.virbr0.proxy_qlen = 64 +net.ipv4.neigh.virbr0.retrans_time_ms = 1000 +net.ipv4.neigh.virbr0.ucast_solicit = 3 +net.ipv4.neigh.virbr0.unres_qlen = 101 +net.ipv4.neigh.virbr0.unres_qlen_bytes = 212992 +net.ipv4.neigh.virbr0-nic.anycast_delay = 100 +net.ipv4.neigh.virbr0-nic.app_solicit = 0 +net.ipv4.neigh.virbr0-nic.base_reachable_time_ms = 30000 +net.ipv4.neigh.virbr0-nic.delay_first_probe_time = 5 +net.ipv4.neigh.virbr0-nic.gc_stale_time = 60 +net.ipv4.neigh.virbr0-nic.locktime = 100 +net.ipv4.neigh.virbr0-nic.mcast_resolicit = 0 +net.ipv4.neigh.virbr0-nic.mcast_solicit = 3 +net.ipv4.neigh.virbr0-nic.proxy_delay = 80 +net.ipv4.neigh.virbr0-nic.proxy_qlen = 64 +net.ipv4.neigh.virbr0-nic.retrans_time_ms = 1000 +net.ipv4.neigh.virbr0-nic.ucast_solicit = 3 +net.ipv4.neigh.virbr0-nic.unres_qlen = 101 +net.ipv4.neigh.virbr0-nic.unres_qlen_bytes = 212992 +net.ipv4.ping_group_range = 1 0 +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 = 1000 +net.ipv4.tcp_comp_sack_delay_ns = 1000000 +net.ipv4.tcp_comp_sack_nr = 44 +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_fack = 0 +net.ipv4.tcp_fastopen = 1 +net.ipv4.tcp_fastopen_blackhole_timeout_sec = 3600 +net.ipv4.tcp_fastopen_key = dc68892d-67e45cb3-7c600371-c8c27a56 +net.ipv4.tcp_fin_timeout = 30 +net.ipv4.tcp_frto = 2 +net.ipv4.tcp_fwmark_accept = 0 +net.ipv4.tcp_invalid_ratelimit = 500 +net.ipv4.tcp_keepalive_intvl = 30 +net.ipv4.tcp_keepalive_probes = 9 +net.ipv4.tcp_keepalive_time = 120 +net.ipv4.tcp_l3mdev_accept = 0 +net.ipv4.tcp_limit_output_bytes = 1048576 +net.ipv4.tcp_low_latency = 0 +net.ipv4.tcp_max_orphans = 262144 +net.ipv4.tcp_max_reordering = 300 +net.ipv4.tcp_max_syn_backlog = 4096 +net.ipv4.tcp_max_tw_buckets = 262144 +net.ipv4.tcp_mem = 2314542 3086058 4629084 +net.ipv4.tcp_min_rtt_wlen = 300 +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 = 4294967295 +net.ipv4.tcp_orphan_retries = 0 +net.ipv4.tcp_pacing_ca_ratio = 120 +net.ipv4.tcp_pacing_ss_ratio = 200 +net.ipv4.tcp_probe_interval = 600 +net.ipv4.tcp_probe_threshold = 8 +net.ipv4.tcp_recovery = 1 +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_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_linear_timeouts = 0 +net.ipv4.tcp_timestamps = 1 +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_early_demux = 1 +net.ipv4.udp_l3mdev_accept = 0 +net.ipv4.udp_mem = 4629087 6172116 9258174 +net.ipv4.udp_rmem_min = 4096 +net.ipv4.udp_wmem_min = 4096 +net.ipv4.xfrm4_gc_thresh = 32768 +net.ipv6.anycast_src_echo_reply = 0 +net.ipv6.auto_flowlabels = 1 +net.ipv6.bindv6only = 0 +net.ipv6.calipso_cache_bucket_size = 10 +net.ipv6.calipso_cache_enable = 1 +net.ipv6.conf.all.accept_dad = 0 +net.ipv6.conf.all.accept_ra = 2 +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_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.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.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_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.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.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.bond0.accept_dad = 1 +net.ipv6.conf.bond0.accept_ra = 2 +net.ipv6.conf.bond0.accept_ra_defrtr = 0 +net.ipv6.conf.bond0.accept_ra_from_local = 0 +net.ipv6.conf.bond0.accept_ra_min_hop_limit = 1 +net.ipv6.conf.bond0.accept_ra_mtu = 1 +net.ipv6.conf.bond0.accept_ra_pinfo = 0 +net.ipv6.conf.bond0.accept_ra_rt_info_max_plen = 0 +net.ipv6.conf.bond0.accept_ra_rt_info_min_plen = 0 +net.ipv6.conf.bond0.accept_ra_rtr_pref = 0 +net.ipv6.conf.bond0.accept_redirects = 1 +net.ipv6.conf.bond0.accept_source_route = 0 +net.ipv6.conf.bond0.addr_gen_mode = 1 +net.ipv6.conf.bond0.autoconf = 1 +net.ipv6.conf.bond0.dad_transmits = 1 +net.ipv6.conf.bond0.disable_ipv6 = 0 +net.ipv6.conf.bond0.disable_policy = 0 +net.ipv6.conf.bond0.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.bond0.drop_unsolicited_na = 0 +net.ipv6.conf.bond0.enhanced_dad = 1 +net.ipv6.conf.bond0.force_mld_version = 0 +net.ipv6.conf.bond0.force_tllao = 0 +net.ipv6.conf.bond0.forwarding = 1 +net.ipv6.conf.bond0.hop_limit = 64 +net.ipv6.conf.bond0.ignore_routes_with_linkdown = 0 +net.ipv6.conf.bond0.keep_addr_on_down = 0 +net.ipv6.conf.bond0.max_addresses = 16 +net.ipv6.conf.bond0.max_desync_factor = 600 +net.ipv6.conf.bond0.mc_forwarding = 0 +net.ipv6.conf.bond0.mldv1_unsolicited_report_interval = 10000 +net.ipv6.conf.bond0.mldv2_unsolicited_report_interval = 1000 +net.ipv6.conf.bond0.mtu = 1500 +net.ipv6.conf.bond0.ndisc_notify = 0 +net.ipv6.conf.bond0.ndisc_tclass = 0 +net.ipv6.conf.bond0.optimistic_dad = 0 +net.ipv6.conf.bond0.proxy_ndp = 0 +net.ipv6.conf.bond0.regen_max_retry = 3 +net.ipv6.conf.bond0.router_probe_interval = 60 +net.ipv6.conf.bond0.router_solicitation_delay = 1 +net.ipv6.conf.bond0.router_solicitation_interval = 4 +net.ipv6.conf.bond0.router_solicitation_max_interval = 3600 +net.ipv6.conf.bond0.router_solicitations = -1 +net.ipv6.conf.bond0.seg6_enabled = 0 +net.ipv6.conf.bond0.suppress_frag_ndisc = 1 +net.ipv6.conf.bond0.temp_prefered_lft = 86400 +net.ipv6.conf.bond0.temp_valid_lft = 604800 +net.ipv6.conf.bond0.use_oif_addrs_only = 0 +net.ipv6.conf.bond0.use_optimistic = 0 +net.ipv6.conf.bond0.use_tempaddr = 0 +net.ipv6.conf.br-294661236c88.accept_dad = 1 +net.ipv6.conf.br-294661236c88.accept_ra = 0 +net.ipv6.conf.br-294661236c88.accept_ra_defrtr = 1 +net.ipv6.conf.br-294661236c88.accept_ra_from_local = 0 +net.ipv6.conf.br-294661236c88.accept_ra_min_hop_limit = 1 +net.ipv6.conf.br-294661236c88.accept_ra_mtu = 1 +net.ipv6.conf.br-294661236c88.accept_ra_pinfo = 1 +net.ipv6.conf.br-294661236c88.accept_ra_rt_info_max_plen = 0 +net.ipv6.conf.br-294661236c88.accept_ra_rt_info_min_plen = 0 +net.ipv6.conf.br-294661236c88.accept_ra_rtr_pref = 1 +net.ipv6.conf.br-294661236c88.accept_redirects = 1 +net.ipv6.conf.br-294661236c88.accept_source_route = 0 +net.ipv6.conf.br-294661236c88.addr_gen_mode = 0 +net.ipv6.conf.br-294661236c88.autoconf = 1 +net.ipv6.conf.br-294661236c88.dad_transmits = 1 +net.ipv6.conf.br-294661236c88.disable_ipv6 = 0 +net.ipv6.conf.br-294661236c88.disable_policy = 0 +net.ipv6.conf.br-294661236c88.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.br-294661236c88.drop_unsolicited_na = 0 +net.ipv6.conf.br-294661236c88.enhanced_dad = 1 +net.ipv6.conf.br-294661236c88.force_mld_version = 0 +net.ipv6.conf.br-294661236c88.force_tllao = 0 +net.ipv6.conf.br-294661236c88.forwarding = 1 +net.ipv6.conf.br-294661236c88.hop_limit = 64 +net.ipv6.conf.br-294661236c88.ignore_routes_with_linkdown = 0 +net.ipv6.conf.br-294661236c88.keep_addr_on_down = 0 +net.ipv6.conf.br-294661236c88.max_addresses = 16 +net.ipv6.conf.br-294661236c88.max_desync_factor = 600 +net.ipv6.conf.br-294661236c88.mc_forwarding = 0 +net.ipv6.conf.br-294661236c88.mldv1_unsolicited_report_interval = 10000 +net.ipv6.conf.br-294661236c88.mldv2_unsolicited_report_interval = 1000 +net.ipv6.conf.br-294661236c88.mtu = 1500 +net.ipv6.conf.br-294661236c88.ndisc_notify = 0 +net.ipv6.conf.br-294661236c88.ndisc_tclass = 0 +net.ipv6.conf.br-294661236c88.optimistic_dad = 0 +net.ipv6.conf.br-294661236c88.proxy_ndp = 0 +net.ipv6.conf.br-294661236c88.regen_max_retry = 3 +net.ipv6.conf.br-294661236c88.router_probe_interval = 60 +net.ipv6.conf.br-294661236c88.router_solicitation_delay = 1 +net.ipv6.conf.br-294661236c88.router_solicitation_interval = 4 +net.ipv6.conf.br-294661236c88.router_solicitation_max_interval = 3600 +net.ipv6.conf.br-294661236c88.router_solicitations = -1 +net.ipv6.conf.br-294661236c88.seg6_enabled = 0 +net.ipv6.conf.br-294661236c88.suppress_frag_ndisc = 1 +net.ipv6.conf.br-294661236c88.temp_prefered_lft = 86400 +net.ipv6.conf.br-294661236c88.temp_valid_lft = 604800 +net.ipv6.conf.br-294661236c88.use_oif_addrs_only = 0 +net.ipv6.conf.br-294661236c88.use_optimistic = 0 +net.ipv6.conf.br-294661236c88.use_tempaddr = 0 +net.ipv6.conf.br-5f8d81e2374e.accept_dad = 1 +net.ipv6.conf.br-5f8d81e2374e.accept_ra = 0 +net.ipv6.conf.br-5f8d81e2374e.accept_ra_defrtr = 1 +net.ipv6.conf.br-5f8d81e2374e.accept_ra_from_local = 0 +net.ipv6.conf.br-5f8d81e2374e.accept_ra_min_hop_limit = 1 +net.ipv6.conf.br-5f8d81e2374e.accept_ra_mtu = 1 +net.ipv6.conf.br-5f8d81e2374e.accept_ra_pinfo = 1 +net.ipv6.conf.br-5f8d81e2374e.accept_ra_rt_info_max_plen = 0 +net.ipv6.conf.br-5f8d81e2374e.accept_ra_rt_info_min_plen = 0 +net.ipv6.conf.br-5f8d81e2374e.accept_ra_rtr_pref = 1 +net.ipv6.conf.br-5f8d81e2374e.accept_redirects = 1 +net.ipv6.conf.br-5f8d81e2374e.accept_source_route = 0 +net.ipv6.conf.br-5f8d81e2374e.addr_gen_mode = 0 +net.ipv6.conf.br-5f8d81e2374e.autoconf = 1 +net.ipv6.conf.br-5f8d81e2374e.dad_transmits = 1 +net.ipv6.conf.br-5f8d81e2374e.disable_ipv6 = 0 +net.ipv6.conf.br-5f8d81e2374e.disable_policy = 0 +net.ipv6.conf.br-5f8d81e2374e.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.br-5f8d81e2374e.drop_unsolicited_na = 0 +net.ipv6.conf.br-5f8d81e2374e.enhanced_dad = 1 +net.ipv6.conf.br-5f8d81e2374e.force_mld_version = 0 +net.ipv6.conf.br-5f8d81e2374e.force_tllao = 0 +net.ipv6.conf.br-5f8d81e2374e.forwarding = 1 +net.ipv6.conf.br-5f8d81e2374e.hop_limit = 64 +net.ipv6.conf.br-5f8d81e2374e.ignore_routes_with_linkdown = 0 +net.ipv6.conf.br-5f8d81e2374e.keep_addr_on_down = 0 +net.ipv6.conf.br-5f8d81e2374e.max_addresses = 16 +net.ipv6.conf.br-5f8d81e2374e.max_desync_factor = 600 +net.ipv6.conf.br-5f8d81e2374e.mc_forwarding = 0 +net.ipv6.conf.br-5f8d81e2374e.mldv1_unsolicited_report_interval = 10000 +net.ipv6.conf.br-5f8d81e2374e.mldv2_unsolicited_report_interval = 1000 +net.ipv6.conf.br-5f8d81e2374e.mtu = 1500 +net.ipv6.conf.br-5f8d81e2374e.ndisc_notify = 0 +net.ipv6.conf.br-5f8d81e2374e.ndisc_tclass = 0 +net.ipv6.conf.br-5f8d81e2374e.optimistic_dad = 0 +net.ipv6.conf.br-5f8d81e2374e.proxy_ndp = 0 +net.ipv6.conf.br-5f8d81e2374e.regen_max_retry = 3 +net.ipv6.conf.br-5f8d81e2374e.router_probe_interval = 60 +net.ipv6.conf.br-5f8d81e2374e.router_solicitation_delay = 1 +net.ipv6.conf.br-5f8d81e2374e.router_solicitation_interval = 4 +net.ipv6.conf.br-5f8d81e2374e.router_solicitation_max_interval = 3600 +net.ipv6.conf.br-5f8d81e2374e.router_solicitations = -1 +net.ipv6.conf.br-5f8d81e2374e.seg6_enabled = 0 +net.ipv6.conf.br-5f8d81e2374e.suppress_frag_ndisc = 1 +net.ipv6.conf.br-5f8d81e2374e.temp_prefered_lft = 86400 +net.ipv6.conf.br-5f8d81e2374e.temp_valid_lft = 604800 +net.ipv6.conf.br-5f8d81e2374e.use_oif_addrs_only = 0 +net.ipv6.conf.br-5f8d81e2374e.use_optimistic = 0 +net.ipv6.conf.br-5f8d81e2374e.use_tempaddr = 0 +net.ipv6.conf.default.accept_dad = 1 +net.ipv6.conf.default.accept_ra = 2 +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_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.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.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_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.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.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.docker0.accept_dad = 1 +net.ipv6.conf.docker0.accept_ra = 0 +net.ipv6.conf.docker0.accept_ra_defrtr = 1 +net.ipv6.conf.docker0.accept_ra_from_local = 0 +net.ipv6.conf.docker0.accept_ra_min_hop_limit = 1 +net.ipv6.conf.docker0.accept_ra_mtu = 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_rt_info_min_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.addr_gen_mode = 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.disable_policy = 0 +net.ipv6.conf.docker0.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.docker0.drop_unsolicited_na = 0 +net.ipv6.conf.docker0.enhanced_dad = 1 +net.ipv6.conf.docker0.force_mld_version = 0 +net.ipv6.conf.docker0.force_tllao = 0 +net.ipv6.conf.docker0.forwarding = 1 +net.ipv6.conf.docker0.hop_limit = 64 +net.ipv6.conf.docker0.ignore_routes_with_linkdown = 0 +net.ipv6.conf.docker0.keep_addr_on_down = 0 +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.ndisc_tclass = 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_solicitation_max_interval = 3600 +net.ipv6.conf.docker0.router_solicitations = -1 +net.ipv6.conf.docker0.seg6_enabled = 0 +net.ipv6.conf.docker0.suppress_frag_ndisc = 1 +net.ipv6.conf.docker0.temp_prefered_lft = 86400 +net.ipv6.conf.docker0.temp_valid_lft = 604800 +net.ipv6.conf.docker0.use_oif_addrs_only = 0 +net.ipv6.conf.docker0.use_optimistic = 0 +net.ipv6.conf.docker0.use_tempaddr = 0 +net.ipv6.conf.em1.accept_dad = 1 +net.ipv6.conf.em1.accept_ra = 2 +net.ipv6.conf.em1.accept_ra_defrtr = 0 +net.ipv6.conf.em1.accept_ra_from_local = 0 +net.ipv6.conf.em1.accept_ra_min_hop_limit = 1 +net.ipv6.conf.em1.accept_ra_mtu = 1 +net.ipv6.conf.em1.accept_ra_pinfo = 0 +net.ipv6.conf.em1.accept_ra_rt_info_max_plen = 0 +net.ipv6.conf.em1.accept_ra_rt_info_min_plen = 0 +net.ipv6.conf.em1.accept_ra_rtr_pref = 0 +net.ipv6.conf.em1.accept_redirects = 1 +net.ipv6.conf.em1.accept_source_route = 0 +net.ipv6.conf.em1.addr_gen_mode = 1 +net.ipv6.conf.em1.autoconf = 1 +net.ipv6.conf.em1.dad_transmits = 1 +net.ipv6.conf.em1.disable_ipv6 = 0 +net.ipv6.conf.em1.disable_policy = 0 +net.ipv6.conf.em1.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.em1.drop_unsolicited_na = 0 +net.ipv6.conf.em1.enhanced_dad = 1 +net.ipv6.conf.em1.force_mld_version = 0 +net.ipv6.conf.em1.force_tllao = 0 +net.ipv6.conf.em1.forwarding = 1 +net.ipv6.conf.em1.hop_limit = 64 +net.ipv6.conf.em1.ignore_routes_with_linkdown = 0 +net.ipv6.conf.em1.keep_addr_on_down = 0 +net.ipv6.conf.em1.max_addresses = 16 +net.ipv6.conf.em1.max_desync_factor = 600 +net.ipv6.conf.em1.mc_forwarding = 0 +net.ipv6.conf.em1.mldv1_unsolicited_report_interval = 10000 +net.ipv6.conf.em1.mldv2_unsolicited_report_interval = 1000 +net.ipv6.conf.em1.mtu = 1500 +net.ipv6.conf.em1.ndisc_notify = 0 +net.ipv6.conf.em1.ndisc_tclass = 0 +net.ipv6.conf.em1.optimistic_dad = 0 +net.ipv6.conf.em1.proxy_ndp = 0 +net.ipv6.conf.em1.regen_max_retry = 3 +net.ipv6.conf.em1.router_probe_interval = 60 +net.ipv6.conf.em1.router_solicitation_delay = 1 +net.ipv6.conf.em1.router_solicitation_interval = 4 +net.ipv6.conf.em1.router_solicitation_max_interval = 3600 +net.ipv6.conf.em1.router_solicitations = -1 +net.ipv6.conf.em1.seg6_enabled = 0 +net.ipv6.conf.em1.suppress_frag_ndisc = 1 +net.ipv6.conf.em1.temp_prefered_lft = 86400 +net.ipv6.conf.em1.temp_valid_lft = 604800 +net.ipv6.conf.em1.use_oif_addrs_only = 0 +net.ipv6.conf.em1.use_optimistic = 0 +net.ipv6.conf.em1.use_tempaddr = 0 +net.ipv6.conf.em2.accept_dad = 1 +net.ipv6.conf.em2.accept_ra = 2 +net.ipv6.conf.em2.accept_ra_defrtr = 0 +net.ipv6.conf.em2.accept_ra_from_local = 0 +net.ipv6.conf.em2.accept_ra_min_hop_limit = 1 +net.ipv6.conf.em2.accept_ra_mtu = 1 +net.ipv6.conf.em2.accept_ra_pinfo = 0 +net.ipv6.conf.em2.accept_ra_rt_info_max_plen = 0 +net.ipv6.conf.em2.accept_ra_rt_info_min_plen = 0 +net.ipv6.conf.em2.accept_ra_rtr_pref = 0 +net.ipv6.conf.em2.accept_redirects = 1 +net.ipv6.conf.em2.accept_source_route = 0 +net.ipv6.conf.em2.addr_gen_mode = 1 +net.ipv6.conf.em2.autoconf = 1 +net.ipv6.conf.em2.dad_transmits = 1 +net.ipv6.conf.em2.disable_ipv6 = 0 +net.ipv6.conf.em2.disable_policy = 0 +net.ipv6.conf.em2.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.em2.drop_unsolicited_na = 0 +net.ipv6.conf.em2.enhanced_dad = 1 +net.ipv6.conf.em2.force_mld_version = 0 +net.ipv6.conf.em2.force_tllao = 0 +net.ipv6.conf.em2.forwarding = 1 +net.ipv6.conf.em2.hop_limit = 64 +net.ipv6.conf.em2.ignore_routes_with_linkdown = 0 +net.ipv6.conf.em2.keep_addr_on_down = 0 +net.ipv6.conf.em2.max_addresses = 16 +net.ipv6.conf.em2.max_desync_factor = 600 +net.ipv6.conf.em2.mc_forwarding = 0 +net.ipv6.conf.em2.mldv1_unsolicited_report_interval = 10000 +net.ipv6.conf.em2.mldv2_unsolicited_report_interval = 1000 +net.ipv6.conf.em2.mtu = 1500 +net.ipv6.conf.em2.ndisc_notify = 0 +net.ipv6.conf.em2.ndisc_tclass = 0 +net.ipv6.conf.em2.optimistic_dad = 0 +net.ipv6.conf.em2.proxy_ndp = 0 +net.ipv6.conf.em2.regen_max_retry = 3 +net.ipv6.conf.em2.router_probe_interval = 60 +net.ipv6.conf.em2.router_solicitation_delay = 1 +net.ipv6.conf.em2.router_solicitation_interval = 4 +net.ipv6.conf.em2.router_solicitation_max_interval = 3600 +net.ipv6.conf.em2.router_solicitations = -1 +net.ipv6.conf.em2.seg6_enabled = 0 +net.ipv6.conf.em2.suppress_frag_ndisc = 1 +net.ipv6.conf.em2.temp_prefered_lft = 86400 +net.ipv6.conf.em2.temp_valid_lft = 604800 +net.ipv6.conf.em2.use_oif_addrs_only = 0 +net.ipv6.conf.em2.use_optimistic = 0 +net.ipv6.conf.em2.use_tempaddr = 0 +net.ipv6.conf.lo.accept_dad = -1 +net.ipv6.conf.lo.accept_ra = 2 +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_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.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.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_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.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.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.lxdbr0.accept_dad = 0 +net.ipv6.conf.lxdbr0.accept_ra = 2 +net.ipv6.conf.lxdbr0.accept_ra_defrtr = 1 +net.ipv6.conf.lxdbr0.accept_ra_from_local = 0 +net.ipv6.conf.lxdbr0.accept_ra_min_hop_limit = 1 +net.ipv6.conf.lxdbr0.accept_ra_mtu = 1 +net.ipv6.conf.lxdbr0.accept_ra_pinfo = 1 +net.ipv6.conf.lxdbr0.accept_ra_rt_info_max_plen = 0 +net.ipv6.conf.lxdbr0.accept_ra_rt_info_min_plen = 0 +net.ipv6.conf.lxdbr0.accept_ra_rtr_pref = 1 +net.ipv6.conf.lxdbr0.accept_redirects = 1 +net.ipv6.conf.lxdbr0.accept_source_route = 0 +net.ipv6.conf.lxdbr0.addr_gen_mode = 0 +net.ipv6.conf.lxdbr0.autoconf = 0 +net.ipv6.conf.lxdbr0.dad_transmits = 1 +net.ipv6.conf.lxdbr0.disable_ipv6 = 0 +net.ipv6.conf.lxdbr0.disable_policy = 0 +net.ipv6.conf.lxdbr0.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.lxdbr0.drop_unsolicited_na = 0 +net.ipv6.conf.lxdbr0.enhanced_dad = 1 +net.ipv6.conf.lxdbr0.force_mld_version = 0 +net.ipv6.conf.lxdbr0.force_tllao = 0 +net.ipv6.conf.lxdbr0.forwarding = 1 +net.ipv6.conf.lxdbr0.hop_limit = 64 +net.ipv6.conf.lxdbr0.ignore_routes_with_linkdown = 0 +net.ipv6.conf.lxdbr0.keep_addr_on_down = 0 +net.ipv6.conf.lxdbr0.max_addresses = 16 +net.ipv6.conf.lxdbr0.max_desync_factor = 600 +net.ipv6.conf.lxdbr0.mc_forwarding = 0 +net.ipv6.conf.lxdbr0.mldv1_unsolicited_report_interval = 10000 +net.ipv6.conf.lxdbr0.mldv2_unsolicited_report_interval = 1000 +net.ipv6.conf.lxdbr0.mtu = 1500 +net.ipv6.conf.lxdbr0.ndisc_notify = 0 +net.ipv6.conf.lxdbr0.ndisc_tclass = 0 +net.ipv6.conf.lxdbr0.optimistic_dad = 0 +net.ipv6.conf.lxdbr0.proxy_ndp = 0 +net.ipv6.conf.lxdbr0.regen_max_retry = 3 +net.ipv6.conf.lxdbr0.router_probe_interval = 60 +net.ipv6.conf.lxdbr0.router_solicitation_delay = 1 +net.ipv6.conf.lxdbr0.router_solicitation_interval = 4 +net.ipv6.conf.lxdbr0.router_solicitation_max_interval = 3600 +net.ipv6.conf.lxdbr0.router_solicitations = -1 +net.ipv6.conf.lxdbr0.seg6_enabled = 0 +net.ipv6.conf.lxdbr0.suppress_frag_ndisc = 1 +net.ipv6.conf.lxdbr0.temp_prefered_lft = 86400 +net.ipv6.conf.lxdbr0.temp_valid_lft = 604800 +net.ipv6.conf.lxdbr0.use_oif_addrs_only = 0 +net.ipv6.conf.lxdbr0.use_optimistic = 0 +net.ipv6.conf.lxdbr0.use_tempaddr = 0 +net.ipv6.conf.vboxnet0.accept_dad = 1 +net.ipv6.conf.vboxnet0.accept_ra = 2 +net.ipv6.conf.vboxnet0.accept_ra_defrtr = 1 +net.ipv6.conf.vboxnet0.accept_ra_from_local = 0 +net.ipv6.conf.vboxnet0.accept_ra_min_hop_limit = 1 +net.ipv6.conf.vboxnet0.accept_ra_mtu = 1 +net.ipv6.conf.vboxnet0.accept_ra_pinfo = 1 +net.ipv6.conf.vboxnet0.accept_ra_rt_info_max_plen = 0 +net.ipv6.conf.vboxnet0.accept_ra_rt_info_min_plen = 0 +net.ipv6.conf.vboxnet0.accept_ra_rtr_pref = 1 +net.ipv6.conf.vboxnet0.accept_redirects = 1 +net.ipv6.conf.vboxnet0.accept_source_route = 0 +net.ipv6.conf.vboxnet0.addr_gen_mode = 0 +net.ipv6.conf.vboxnet0.autoconf = 1 +net.ipv6.conf.vboxnet0.dad_transmits = 1 +net.ipv6.conf.vboxnet0.disable_ipv6 = 0 +net.ipv6.conf.vboxnet0.disable_policy = 0 +net.ipv6.conf.vboxnet0.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.vboxnet0.drop_unsolicited_na = 0 +net.ipv6.conf.vboxnet0.enhanced_dad = 1 +net.ipv6.conf.vboxnet0.force_mld_version = 0 +net.ipv6.conf.vboxnet0.force_tllao = 0 +net.ipv6.conf.vboxnet0.forwarding = 1 +net.ipv6.conf.vboxnet0.hop_limit = 64 +net.ipv6.conf.vboxnet0.ignore_routes_with_linkdown = 0 +net.ipv6.conf.vboxnet0.keep_addr_on_down = 0 +net.ipv6.conf.vboxnet0.max_addresses = 16 +net.ipv6.conf.vboxnet0.max_desync_factor = 600 +net.ipv6.conf.vboxnet0.mc_forwarding = 0 +net.ipv6.conf.vboxnet0.mldv1_unsolicited_report_interval = 10000 +net.ipv6.conf.vboxnet0.mldv2_unsolicited_report_interval = 1000 +net.ipv6.conf.vboxnet0.mtu = 1500 +net.ipv6.conf.vboxnet0.ndisc_notify = 0 +net.ipv6.conf.vboxnet0.ndisc_tclass = 0 +net.ipv6.conf.vboxnet0.optimistic_dad = 0 +net.ipv6.conf.vboxnet0.proxy_ndp = 0 +net.ipv6.conf.vboxnet0.regen_max_retry = 3 +net.ipv6.conf.vboxnet0.router_probe_interval = 60 +net.ipv6.conf.vboxnet0.router_solicitation_delay = 1 +net.ipv6.conf.vboxnet0.router_solicitation_interval = 4 +net.ipv6.conf.vboxnet0.router_solicitation_max_interval = 3600 +net.ipv6.conf.vboxnet0.router_solicitations = -1 +net.ipv6.conf.vboxnet0.seg6_enabled = 0 +net.ipv6.conf.vboxnet0.suppress_frag_ndisc = 1 +net.ipv6.conf.vboxnet0.temp_prefered_lft = 86400 +net.ipv6.conf.vboxnet0.temp_valid_lft = 604800 +net.ipv6.conf.vboxnet0.use_oif_addrs_only = 0 +net.ipv6.conf.vboxnet0.use_optimistic = 0 +net.ipv6.conf.vboxnet0.use_tempaddr = 0 +net.ipv6.conf.vboxnet12.accept_dad = 1 +net.ipv6.conf.vboxnet12.accept_ra = 2 +net.ipv6.conf.vboxnet12.accept_ra_defrtr = 1 +net.ipv6.conf.vboxnet12.accept_ra_from_local = 0 +net.ipv6.conf.vboxnet12.accept_ra_min_hop_limit = 1 +net.ipv6.conf.vboxnet12.accept_ra_mtu = 1 +net.ipv6.conf.vboxnet12.accept_ra_pinfo = 1 +net.ipv6.conf.vboxnet12.accept_ra_rt_info_max_plen = 0 +net.ipv6.conf.vboxnet12.accept_ra_rt_info_min_plen = 0 +net.ipv6.conf.vboxnet12.accept_ra_rtr_pref = 1 +net.ipv6.conf.vboxnet12.accept_redirects = 1 +net.ipv6.conf.vboxnet12.accept_source_route = 0 +net.ipv6.conf.vboxnet12.addr_gen_mode = 0 +net.ipv6.conf.vboxnet12.autoconf = 1 +net.ipv6.conf.vboxnet12.dad_transmits = 1 +net.ipv6.conf.vboxnet12.disable_ipv6 = 0 +net.ipv6.conf.vboxnet12.disable_policy = 0 +net.ipv6.conf.vboxnet12.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.vboxnet12.drop_unsolicited_na = 0 +net.ipv6.conf.vboxnet12.enhanced_dad = 1 +net.ipv6.conf.vboxnet12.force_mld_version = 0 +net.ipv6.conf.vboxnet12.force_tllao = 0 +net.ipv6.conf.vboxnet12.forwarding = 1 +net.ipv6.conf.vboxnet12.hop_limit = 64 +net.ipv6.conf.vboxnet12.ignore_routes_with_linkdown = 0 +net.ipv6.conf.vboxnet12.keep_addr_on_down = 0 +net.ipv6.conf.vboxnet12.max_addresses = 16 +net.ipv6.conf.vboxnet12.max_desync_factor = 600 +net.ipv6.conf.vboxnet12.mc_forwarding = 0 +net.ipv6.conf.vboxnet12.mldv1_unsolicited_report_interval = 10000 +net.ipv6.conf.vboxnet12.mldv2_unsolicited_report_interval = 1000 +net.ipv6.conf.vboxnet12.mtu = 1500 +net.ipv6.conf.vboxnet12.ndisc_notify = 0 +net.ipv6.conf.vboxnet12.ndisc_tclass = 0 +net.ipv6.conf.vboxnet12.optimistic_dad = 0 +net.ipv6.conf.vboxnet12.proxy_ndp = 0 +net.ipv6.conf.vboxnet12.regen_max_retry = 3 +net.ipv6.conf.vboxnet12.router_probe_interval = 60 +net.ipv6.conf.vboxnet12.router_solicitation_delay = 1 +net.ipv6.conf.vboxnet12.router_solicitation_interval = 4 +net.ipv6.conf.vboxnet12.router_solicitation_max_interval = 3600 +net.ipv6.conf.vboxnet12.router_solicitations = -1 +net.ipv6.conf.vboxnet12.seg6_enabled = 0 +net.ipv6.conf.vboxnet12.suppress_frag_ndisc = 1 +net.ipv6.conf.vboxnet12.temp_prefered_lft = 86400 +net.ipv6.conf.vboxnet12.temp_valid_lft = 604800 +net.ipv6.conf.vboxnet12.use_oif_addrs_only = 0 +net.ipv6.conf.vboxnet12.use_optimistic = 0 +net.ipv6.conf.vboxnet12.use_tempaddr = 0 +net.ipv6.conf.vboxnet18.accept_dad = 1 +net.ipv6.conf.vboxnet18.accept_ra = 2 +net.ipv6.conf.vboxnet18.accept_ra_defrtr = 1 +net.ipv6.conf.vboxnet18.accept_ra_from_local = 0 +net.ipv6.conf.vboxnet18.accept_ra_min_hop_limit = 1 +net.ipv6.conf.vboxnet18.accept_ra_mtu = 1 +net.ipv6.conf.vboxnet18.accept_ra_pinfo = 1 +net.ipv6.conf.vboxnet18.accept_ra_rt_info_max_plen = 0 +net.ipv6.conf.vboxnet18.accept_ra_rt_info_min_plen = 0 +net.ipv6.conf.vboxnet18.accept_ra_rtr_pref = 1 +net.ipv6.conf.vboxnet18.accept_redirects = 1 +net.ipv6.conf.vboxnet18.accept_source_route = 0 +net.ipv6.conf.vboxnet18.addr_gen_mode = 0 +net.ipv6.conf.vboxnet18.autoconf = 1 +net.ipv6.conf.vboxnet18.dad_transmits = 1 +net.ipv6.conf.vboxnet18.disable_ipv6 = 0 +net.ipv6.conf.vboxnet18.disable_policy = 0 +net.ipv6.conf.vboxnet18.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.vboxnet18.drop_unsolicited_na = 0 +net.ipv6.conf.vboxnet18.enhanced_dad = 1 +net.ipv6.conf.vboxnet18.force_mld_version = 0 +net.ipv6.conf.vboxnet18.force_tllao = 0 +net.ipv6.conf.vboxnet18.forwarding = 1 +net.ipv6.conf.vboxnet18.hop_limit = 64 +net.ipv6.conf.vboxnet18.ignore_routes_with_linkdown = 0 +net.ipv6.conf.vboxnet18.keep_addr_on_down = 0 +net.ipv6.conf.vboxnet18.max_addresses = 16 +net.ipv6.conf.vboxnet18.max_desync_factor = 600 +net.ipv6.conf.vboxnet18.mc_forwarding = 0 +net.ipv6.conf.vboxnet18.mldv1_unsolicited_report_interval = 10000 +net.ipv6.conf.vboxnet18.mldv2_unsolicited_report_interval = 1000 +net.ipv6.conf.vboxnet18.mtu = 1500 +net.ipv6.conf.vboxnet18.ndisc_notify = 0 +net.ipv6.conf.vboxnet18.ndisc_tclass = 0 +net.ipv6.conf.vboxnet18.optimistic_dad = 0 +net.ipv6.conf.vboxnet18.proxy_ndp = 0 +net.ipv6.conf.vboxnet18.regen_max_retry = 3 +net.ipv6.conf.vboxnet18.router_probe_interval = 60 +net.ipv6.conf.vboxnet18.router_solicitation_delay = 1 +net.ipv6.conf.vboxnet18.router_solicitation_interval = 4 +net.ipv6.conf.vboxnet18.router_solicitation_max_interval = 3600 +net.ipv6.conf.vboxnet18.router_solicitations = -1 +net.ipv6.conf.vboxnet18.seg6_enabled = 0 +net.ipv6.conf.vboxnet18.suppress_frag_ndisc = 1 +net.ipv6.conf.vboxnet18.temp_prefered_lft = 86400 +net.ipv6.conf.vboxnet18.temp_valid_lft = 604800 +net.ipv6.conf.vboxnet18.use_oif_addrs_only = 0 +net.ipv6.conf.vboxnet18.use_optimistic = 0 +net.ipv6.conf.vboxnet18.use_tempaddr = 0 +net.ipv6.conf.vboxnet19.accept_dad = 1 +net.ipv6.conf.vboxnet19.accept_ra = 2 +net.ipv6.conf.vboxnet19.accept_ra_defrtr = 1 +net.ipv6.conf.vboxnet19.accept_ra_from_local = 0 +net.ipv6.conf.vboxnet19.accept_ra_min_hop_limit = 1 +net.ipv6.conf.vboxnet19.accept_ra_mtu = 1 +net.ipv6.conf.vboxnet19.accept_ra_pinfo = 1 +net.ipv6.conf.vboxnet19.accept_ra_rt_info_max_plen = 0 +net.ipv6.conf.vboxnet19.accept_ra_rt_info_min_plen = 0 +net.ipv6.conf.vboxnet19.accept_ra_rtr_pref = 1 +net.ipv6.conf.vboxnet19.accept_redirects = 1 +net.ipv6.conf.vboxnet19.accept_source_route = 0 +net.ipv6.conf.vboxnet19.addr_gen_mode = 0 +net.ipv6.conf.vboxnet19.autoconf = 1 +net.ipv6.conf.vboxnet19.dad_transmits = 1 +net.ipv6.conf.vboxnet19.disable_ipv6 = 0 +net.ipv6.conf.vboxnet19.disable_policy = 0 +net.ipv6.conf.vboxnet19.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.vboxnet19.drop_unsolicited_na = 0 +net.ipv6.conf.vboxnet19.enhanced_dad = 1 +net.ipv6.conf.vboxnet19.force_mld_version = 0 +net.ipv6.conf.vboxnet19.force_tllao = 0 +net.ipv6.conf.vboxnet19.forwarding = 1 +net.ipv6.conf.vboxnet19.hop_limit = 64 +net.ipv6.conf.vboxnet19.ignore_routes_with_linkdown = 0 +net.ipv6.conf.vboxnet19.keep_addr_on_down = 0 +net.ipv6.conf.vboxnet19.max_addresses = 16 +net.ipv6.conf.vboxnet19.max_desync_factor = 600 +net.ipv6.conf.vboxnet19.mc_forwarding = 0 +net.ipv6.conf.vboxnet19.mldv1_unsolicited_report_interval = 10000 +net.ipv6.conf.vboxnet19.mldv2_unsolicited_report_interval = 1000 +net.ipv6.conf.vboxnet19.mtu = 1500 +net.ipv6.conf.vboxnet19.ndisc_notify = 0 +net.ipv6.conf.vboxnet19.ndisc_tclass = 0 +net.ipv6.conf.vboxnet19.optimistic_dad = 0 +net.ipv6.conf.vboxnet19.proxy_ndp = 0 +net.ipv6.conf.vboxnet19.regen_max_retry = 3 +net.ipv6.conf.vboxnet19.router_probe_interval = 60 +net.ipv6.conf.vboxnet19.router_solicitation_delay = 1 +net.ipv6.conf.vboxnet19.router_solicitation_interval = 4 +net.ipv6.conf.vboxnet19.router_solicitation_max_interval = 3600 +net.ipv6.conf.vboxnet19.router_solicitations = -1 +net.ipv6.conf.vboxnet19.seg6_enabled = 0 +net.ipv6.conf.vboxnet19.suppress_frag_ndisc = 1 +net.ipv6.conf.vboxnet19.temp_prefered_lft = 86400 +net.ipv6.conf.vboxnet19.temp_valid_lft = 604800 +net.ipv6.conf.vboxnet19.use_oif_addrs_only = 0 +net.ipv6.conf.vboxnet19.use_optimistic = 0 +net.ipv6.conf.vboxnet19.use_tempaddr = 0 +net.ipv6.conf.vboxnet20.accept_dad = 1 +net.ipv6.conf.vboxnet20.accept_ra = 2 +net.ipv6.conf.vboxnet20.accept_ra_defrtr = 1 +net.ipv6.conf.vboxnet20.accept_ra_from_local = 0 +net.ipv6.conf.vboxnet20.accept_ra_min_hop_limit = 1 +net.ipv6.conf.vboxnet20.accept_ra_mtu = 1 +net.ipv6.conf.vboxnet20.accept_ra_pinfo = 1 +net.ipv6.conf.vboxnet20.accept_ra_rt_info_max_plen = 0 +net.ipv6.conf.vboxnet20.accept_ra_rt_info_min_plen = 0 +net.ipv6.conf.vboxnet20.accept_ra_rtr_pref = 1 +net.ipv6.conf.vboxnet20.accept_redirects = 1 +net.ipv6.conf.vboxnet20.accept_source_route = 0 +net.ipv6.conf.vboxnet20.addr_gen_mode = 0 +net.ipv6.conf.vboxnet20.autoconf = 1 +net.ipv6.conf.vboxnet20.dad_transmits = 1 +net.ipv6.conf.vboxnet20.disable_ipv6 = 0 +net.ipv6.conf.vboxnet20.disable_policy = 0 +net.ipv6.conf.vboxnet20.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.vboxnet20.drop_unsolicited_na = 0 +net.ipv6.conf.vboxnet20.enhanced_dad = 1 +net.ipv6.conf.vboxnet20.force_mld_version = 0 +net.ipv6.conf.vboxnet20.force_tllao = 0 +net.ipv6.conf.vboxnet20.forwarding = 1 +net.ipv6.conf.vboxnet20.hop_limit = 64 +net.ipv6.conf.vboxnet20.ignore_routes_with_linkdown = 0 +net.ipv6.conf.vboxnet20.keep_addr_on_down = 0 +net.ipv6.conf.vboxnet20.max_addresses = 16 +net.ipv6.conf.vboxnet20.max_desync_factor = 600 +net.ipv6.conf.vboxnet20.mc_forwarding = 0 +net.ipv6.conf.vboxnet20.mldv1_unsolicited_report_interval = 10000 +net.ipv6.conf.vboxnet20.mldv2_unsolicited_report_interval = 1000 +net.ipv6.conf.vboxnet20.mtu = 1500 +net.ipv6.conf.vboxnet20.ndisc_notify = 0 +net.ipv6.conf.vboxnet20.ndisc_tclass = 0 +net.ipv6.conf.vboxnet20.optimistic_dad = 0 +net.ipv6.conf.vboxnet20.proxy_ndp = 0 +net.ipv6.conf.vboxnet20.regen_max_retry = 3 +net.ipv6.conf.vboxnet20.router_probe_interval = 60 +net.ipv6.conf.vboxnet20.router_solicitation_delay = 1 +net.ipv6.conf.vboxnet20.router_solicitation_interval = 4 +net.ipv6.conf.vboxnet20.router_solicitation_max_interval = 3600 +net.ipv6.conf.vboxnet20.router_solicitations = -1 +net.ipv6.conf.vboxnet20.seg6_enabled = 0 +net.ipv6.conf.vboxnet20.suppress_frag_ndisc = 1 +net.ipv6.conf.vboxnet20.temp_prefered_lft = 86400 +net.ipv6.conf.vboxnet20.temp_valid_lft = 604800 +net.ipv6.conf.vboxnet20.use_oif_addrs_only = 0 +net.ipv6.conf.vboxnet20.use_optimistic = 0 +net.ipv6.conf.vboxnet20.use_tempaddr = 0 +net.ipv6.conf.vboxnet21.accept_dad = 1 +net.ipv6.conf.vboxnet21.accept_ra = 2 +net.ipv6.conf.vboxnet21.accept_ra_defrtr = 1 +net.ipv6.conf.vboxnet21.accept_ra_from_local = 0 +net.ipv6.conf.vboxnet21.accept_ra_min_hop_limit = 1 +net.ipv6.conf.vboxnet21.accept_ra_mtu = 1 +net.ipv6.conf.vboxnet21.accept_ra_pinfo = 1 +net.ipv6.conf.vboxnet21.accept_ra_rt_info_max_plen = 0 +net.ipv6.conf.vboxnet21.accept_ra_rt_info_min_plen = 0 +net.ipv6.conf.vboxnet21.accept_ra_rtr_pref = 1 +net.ipv6.conf.vboxnet21.accept_redirects = 1 +net.ipv6.conf.vboxnet21.accept_source_route = 0 +net.ipv6.conf.vboxnet21.addr_gen_mode = 0 +net.ipv6.conf.vboxnet21.autoconf = 1 +net.ipv6.conf.vboxnet21.dad_transmits = 1 +net.ipv6.conf.vboxnet21.disable_ipv6 = 0 +net.ipv6.conf.vboxnet21.disable_policy = 0 +net.ipv6.conf.vboxnet21.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.vboxnet21.drop_unsolicited_na = 0 +net.ipv6.conf.vboxnet21.enhanced_dad = 1 +net.ipv6.conf.vboxnet21.force_mld_version = 0 +net.ipv6.conf.vboxnet21.force_tllao = 0 +net.ipv6.conf.vboxnet21.forwarding = 1 +net.ipv6.conf.vboxnet21.hop_limit = 64 +net.ipv6.conf.vboxnet21.ignore_routes_with_linkdown = 0 +net.ipv6.conf.vboxnet21.keep_addr_on_down = 0 +net.ipv6.conf.vboxnet21.max_addresses = 16 +net.ipv6.conf.vboxnet21.max_desync_factor = 600 +net.ipv6.conf.vboxnet21.mc_forwarding = 0 +net.ipv6.conf.vboxnet21.mldv1_unsolicited_report_interval = 10000 +net.ipv6.conf.vboxnet21.mldv2_unsolicited_report_interval = 1000 +net.ipv6.conf.vboxnet21.mtu = 1500 +net.ipv6.conf.vboxnet21.ndisc_notify = 0 +net.ipv6.conf.vboxnet21.ndisc_tclass = 0 +net.ipv6.conf.vboxnet21.optimistic_dad = 0 +net.ipv6.conf.vboxnet21.proxy_ndp = 0 +net.ipv6.conf.vboxnet21.regen_max_retry = 3 +net.ipv6.conf.vboxnet21.router_probe_interval = 60 +net.ipv6.conf.vboxnet21.router_solicitation_delay = 1 +net.ipv6.conf.vboxnet21.router_solicitation_interval = 4 +net.ipv6.conf.vboxnet21.router_solicitation_max_interval = 3600 +net.ipv6.conf.vboxnet21.router_solicitations = -1 +net.ipv6.conf.vboxnet21.seg6_enabled = 0 +net.ipv6.conf.vboxnet21.suppress_frag_ndisc = 1 +net.ipv6.conf.vboxnet21.temp_prefered_lft = 86400 +net.ipv6.conf.vboxnet21.temp_valid_lft = 604800 +net.ipv6.conf.vboxnet21.use_oif_addrs_only = 0 +net.ipv6.conf.vboxnet21.use_optimistic = 0 +net.ipv6.conf.vboxnet21.use_tempaddr = 0 +net.ipv6.conf.vboxnet24.accept_dad = 1 +net.ipv6.conf.vboxnet24.accept_ra = 2 +net.ipv6.conf.vboxnet24.accept_ra_defrtr = 1 +net.ipv6.conf.vboxnet24.accept_ra_from_local = 0 +net.ipv6.conf.vboxnet24.accept_ra_min_hop_limit = 1 +net.ipv6.conf.vboxnet24.accept_ra_mtu = 1 +net.ipv6.conf.vboxnet24.accept_ra_pinfo = 1 +net.ipv6.conf.vboxnet24.accept_ra_rt_info_max_plen = 0 +net.ipv6.conf.vboxnet24.accept_ra_rt_info_min_plen = 0 +net.ipv6.conf.vboxnet24.accept_ra_rtr_pref = 1 +net.ipv6.conf.vboxnet24.accept_redirects = 1 +net.ipv6.conf.vboxnet24.accept_source_route = 0 +net.ipv6.conf.vboxnet24.addr_gen_mode = 0 +net.ipv6.conf.vboxnet24.autoconf = 1 +net.ipv6.conf.vboxnet24.dad_transmits = 1 +net.ipv6.conf.vboxnet24.disable_ipv6 = 0 +net.ipv6.conf.vboxnet24.disable_policy = 0 +net.ipv6.conf.vboxnet24.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.vboxnet24.drop_unsolicited_na = 0 +net.ipv6.conf.vboxnet24.enhanced_dad = 1 +net.ipv6.conf.vboxnet24.force_mld_version = 0 +net.ipv6.conf.vboxnet24.force_tllao = 0 +net.ipv6.conf.vboxnet24.forwarding = 1 +net.ipv6.conf.vboxnet24.hop_limit = 64 +net.ipv6.conf.vboxnet24.ignore_routes_with_linkdown = 0 +net.ipv6.conf.vboxnet24.keep_addr_on_down = 0 +net.ipv6.conf.vboxnet24.max_addresses = 16 +net.ipv6.conf.vboxnet24.max_desync_factor = 600 +net.ipv6.conf.vboxnet24.mc_forwarding = 0 +net.ipv6.conf.vboxnet24.mldv1_unsolicited_report_interval = 10000 +net.ipv6.conf.vboxnet24.mldv2_unsolicited_report_interval = 1000 +net.ipv6.conf.vboxnet24.mtu = 1500 +net.ipv6.conf.vboxnet24.ndisc_notify = 0 +net.ipv6.conf.vboxnet24.ndisc_tclass = 0 +net.ipv6.conf.vboxnet24.optimistic_dad = 0 +net.ipv6.conf.vboxnet24.proxy_ndp = 0 +net.ipv6.conf.vboxnet24.regen_max_retry = 3 +net.ipv6.conf.vboxnet24.router_probe_interval = 60 +net.ipv6.conf.vboxnet24.router_solicitation_delay = 1 +net.ipv6.conf.vboxnet24.router_solicitation_interval = 4 +net.ipv6.conf.vboxnet24.router_solicitation_max_interval = 3600 +net.ipv6.conf.vboxnet24.router_solicitations = -1 +net.ipv6.conf.vboxnet24.seg6_enabled = 0 +net.ipv6.conf.vboxnet24.suppress_frag_ndisc = 1 +net.ipv6.conf.vboxnet24.temp_prefered_lft = 86400 +net.ipv6.conf.vboxnet24.temp_valid_lft = 604800 +net.ipv6.conf.vboxnet24.use_oif_addrs_only = 0 +net.ipv6.conf.vboxnet24.use_optimistic = 0 +net.ipv6.conf.vboxnet24.use_tempaddr = 0 +net.ipv6.conf.vboxnet25.accept_dad = 1 +net.ipv6.conf.vboxnet25.accept_ra = 2 +net.ipv6.conf.vboxnet25.accept_ra_defrtr = 1 +net.ipv6.conf.vboxnet25.accept_ra_from_local = 0 +net.ipv6.conf.vboxnet25.accept_ra_min_hop_limit = 1 +net.ipv6.conf.vboxnet25.accept_ra_mtu = 1 +net.ipv6.conf.vboxnet25.accept_ra_pinfo = 1 +net.ipv6.conf.vboxnet25.accept_ra_rt_info_max_plen = 0 +net.ipv6.conf.vboxnet25.accept_ra_rt_info_min_plen = 0 +net.ipv6.conf.vboxnet25.accept_ra_rtr_pref = 1 +net.ipv6.conf.vboxnet25.accept_redirects = 1 +net.ipv6.conf.vboxnet25.accept_source_route = 0 +net.ipv6.conf.vboxnet25.addr_gen_mode = 0 +net.ipv6.conf.vboxnet25.autoconf = 1 +net.ipv6.conf.vboxnet25.dad_transmits = 1 +net.ipv6.conf.vboxnet25.disable_ipv6 = 0 +net.ipv6.conf.vboxnet25.disable_policy = 0 +net.ipv6.conf.vboxnet25.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.vboxnet25.drop_unsolicited_na = 0 +net.ipv6.conf.vboxnet25.enhanced_dad = 1 +net.ipv6.conf.vboxnet25.force_mld_version = 0 +net.ipv6.conf.vboxnet25.force_tllao = 0 +net.ipv6.conf.vboxnet25.forwarding = 1 +net.ipv6.conf.vboxnet25.hop_limit = 64 +net.ipv6.conf.vboxnet25.ignore_routes_with_linkdown = 0 +net.ipv6.conf.vboxnet25.keep_addr_on_down = 0 +net.ipv6.conf.vboxnet25.max_addresses = 16 +net.ipv6.conf.vboxnet25.max_desync_factor = 600 +net.ipv6.conf.vboxnet25.mc_forwarding = 0 +net.ipv6.conf.vboxnet25.mldv1_unsolicited_report_interval = 10000 +net.ipv6.conf.vboxnet25.mldv2_unsolicited_report_interval = 1000 +net.ipv6.conf.vboxnet25.mtu = 1500 +net.ipv6.conf.vboxnet25.ndisc_notify = 0 +net.ipv6.conf.vboxnet25.ndisc_tclass = 0 +net.ipv6.conf.vboxnet25.optimistic_dad = 0 +net.ipv6.conf.vboxnet25.proxy_ndp = 0 +net.ipv6.conf.vboxnet25.regen_max_retry = 3 +net.ipv6.conf.vboxnet25.router_probe_interval = 60 +net.ipv6.conf.vboxnet25.router_solicitation_delay = 1 +net.ipv6.conf.vboxnet25.router_solicitation_interval = 4 +net.ipv6.conf.vboxnet25.router_solicitation_max_interval = 3600 +net.ipv6.conf.vboxnet25.router_solicitations = -1 +net.ipv6.conf.vboxnet25.seg6_enabled = 0 +net.ipv6.conf.vboxnet25.suppress_frag_ndisc = 1 +net.ipv6.conf.vboxnet25.temp_prefered_lft = 86400 +net.ipv6.conf.vboxnet25.temp_valid_lft = 604800 +net.ipv6.conf.vboxnet25.use_oif_addrs_only = 0 +net.ipv6.conf.vboxnet25.use_optimistic = 0 +net.ipv6.conf.vboxnet25.use_tempaddr = 0 +net.ipv6.conf.vboxnet3.accept_dad = 1 +net.ipv6.conf.vboxnet3.accept_ra = 2 +net.ipv6.conf.vboxnet3.accept_ra_defrtr = 1 +net.ipv6.conf.vboxnet3.accept_ra_from_local = 0 +net.ipv6.conf.vboxnet3.accept_ra_min_hop_limit = 1 +net.ipv6.conf.vboxnet3.accept_ra_mtu = 1 +net.ipv6.conf.vboxnet3.accept_ra_pinfo = 1 +net.ipv6.conf.vboxnet3.accept_ra_rt_info_max_plen = 0 +net.ipv6.conf.vboxnet3.accept_ra_rt_info_min_plen = 0 +net.ipv6.conf.vboxnet3.accept_ra_rtr_pref = 1 +net.ipv6.conf.vboxnet3.accept_redirects = 1 +net.ipv6.conf.vboxnet3.accept_source_route = 0 +net.ipv6.conf.vboxnet3.addr_gen_mode = 0 +net.ipv6.conf.vboxnet3.autoconf = 1 +net.ipv6.conf.vboxnet3.dad_transmits = 1 +net.ipv6.conf.vboxnet3.disable_ipv6 = 0 +net.ipv6.conf.vboxnet3.disable_policy = 0 +net.ipv6.conf.vboxnet3.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.vboxnet3.drop_unsolicited_na = 0 +net.ipv6.conf.vboxnet3.enhanced_dad = 1 +net.ipv6.conf.vboxnet3.force_mld_version = 0 +net.ipv6.conf.vboxnet3.force_tllao = 0 +net.ipv6.conf.vboxnet3.forwarding = 1 +net.ipv6.conf.vboxnet3.hop_limit = 64 +net.ipv6.conf.vboxnet3.ignore_routes_with_linkdown = 0 +net.ipv6.conf.vboxnet3.keep_addr_on_down = 0 +net.ipv6.conf.vboxnet3.max_addresses = 16 +net.ipv6.conf.vboxnet3.max_desync_factor = 600 +net.ipv6.conf.vboxnet3.mc_forwarding = 0 +net.ipv6.conf.vboxnet3.mldv1_unsolicited_report_interval = 10000 +net.ipv6.conf.vboxnet3.mldv2_unsolicited_report_interval = 1000 +net.ipv6.conf.vboxnet3.mtu = 1500 +net.ipv6.conf.vboxnet3.ndisc_notify = 0 +net.ipv6.conf.vboxnet3.ndisc_tclass = 0 +net.ipv6.conf.vboxnet3.optimistic_dad = 0 +net.ipv6.conf.vboxnet3.proxy_ndp = 0 +net.ipv6.conf.vboxnet3.regen_max_retry = 3 +net.ipv6.conf.vboxnet3.router_probe_interval = 60 +net.ipv6.conf.vboxnet3.router_solicitation_delay = 1 +net.ipv6.conf.vboxnet3.router_solicitation_interval = 4 +net.ipv6.conf.vboxnet3.router_solicitation_max_interval = 3600 +net.ipv6.conf.vboxnet3.router_solicitations = -1 +net.ipv6.conf.vboxnet3.seg6_enabled = 0 +net.ipv6.conf.vboxnet3.suppress_frag_ndisc = 1 +net.ipv6.conf.vboxnet3.temp_prefered_lft = 86400 +net.ipv6.conf.vboxnet3.temp_valid_lft = 604800 +net.ipv6.conf.vboxnet3.use_oif_addrs_only = 0 +net.ipv6.conf.vboxnet3.use_optimistic = 0 +net.ipv6.conf.vboxnet3.use_tempaddr = 0 +net.ipv6.conf.vboxnet4.accept_dad = 1 +net.ipv6.conf.vboxnet4.accept_ra = 2 +net.ipv6.conf.vboxnet4.accept_ra_defrtr = 1 +net.ipv6.conf.vboxnet4.accept_ra_from_local = 0 +net.ipv6.conf.vboxnet4.accept_ra_min_hop_limit = 1 +net.ipv6.conf.vboxnet4.accept_ra_mtu = 1 +net.ipv6.conf.vboxnet4.accept_ra_pinfo = 1 +net.ipv6.conf.vboxnet4.accept_ra_rt_info_max_plen = 0 +net.ipv6.conf.vboxnet4.accept_ra_rt_info_min_plen = 0 +net.ipv6.conf.vboxnet4.accept_ra_rtr_pref = 1 +net.ipv6.conf.vboxnet4.accept_redirects = 1 +net.ipv6.conf.vboxnet4.accept_source_route = 0 +net.ipv6.conf.vboxnet4.addr_gen_mode = 0 +net.ipv6.conf.vboxnet4.autoconf = 1 +net.ipv6.conf.vboxnet4.dad_transmits = 1 +net.ipv6.conf.vboxnet4.disable_ipv6 = 0 +net.ipv6.conf.vboxnet4.disable_policy = 0 +net.ipv6.conf.vboxnet4.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.vboxnet4.drop_unsolicited_na = 0 +net.ipv6.conf.vboxnet4.enhanced_dad = 1 +net.ipv6.conf.vboxnet4.force_mld_version = 0 +net.ipv6.conf.vboxnet4.force_tllao = 0 +net.ipv6.conf.vboxnet4.forwarding = 1 +net.ipv6.conf.vboxnet4.hop_limit = 64 +net.ipv6.conf.vboxnet4.ignore_routes_with_linkdown = 0 +net.ipv6.conf.vboxnet4.keep_addr_on_down = 0 +net.ipv6.conf.vboxnet4.max_addresses = 16 +net.ipv6.conf.vboxnet4.max_desync_factor = 600 +net.ipv6.conf.vboxnet4.mc_forwarding = 0 +net.ipv6.conf.vboxnet4.mldv1_unsolicited_report_interval = 10000 +net.ipv6.conf.vboxnet4.mldv2_unsolicited_report_interval = 1000 +net.ipv6.conf.vboxnet4.mtu = 1500 +net.ipv6.conf.vboxnet4.ndisc_notify = 0 +net.ipv6.conf.vboxnet4.ndisc_tclass = 0 +net.ipv6.conf.vboxnet4.optimistic_dad = 0 +net.ipv6.conf.vboxnet4.proxy_ndp = 0 +net.ipv6.conf.vboxnet4.regen_max_retry = 3 +net.ipv6.conf.vboxnet4.router_probe_interval = 60 +net.ipv6.conf.vboxnet4.router_solicitation_delay = 1 +net.ipv6.conf.vboxnet4.router_solicitation_interval = 4 +net.ipv6.conf.vboxnet4.router_solicitation_max_interval = 3600 +net.ipv6.conf.vboxnet4.router_solicitations = -1 +net.ipv6.conf.vboxnet4.seg6_enabled = 0 +net.ipv6.conf.vboxnet4.suppress_frag_ndisc = 1 +net.ipv6.conf.vboxnet4.temp_prefered_lft = 86400 +net.ipv6.conf.vboxnet4.temp_valid_lft = 604800 +net.ipv6.conf.vboxnet4.use_oif_addrs_only = 0 +net.ipv6.conf.vboxnet4.use_optimistic = 0 +net.ipv6.conf.vboxnet4.use_tempaddr = 0 +net.ipv6.conf.veth046457e1.accept_dad = 1 +net.ipv6.conf.veth046457e1.accept_ra = 0 +net.ipv6.conf.veth046457e1.accept_ra_defrtr = 1 +net.ipv6.conf.veth046457e1.accept_ra_from_local = 0 +net.ipv6.conf.veth046457e1.accept_ra_min_hop_limit = 1 +net.ipv6.conf.veth046457e1.accept_ra_mtu = 1 +net.ipv6.conf.veth046457e1.accept_ra_pinfo = 1 +net.ipv6.conf.veth046457e1.accept_ra_rt_info_max_plen = 0 +net.ipv6.conf.veth046457e1.accept_ra_rt_info_min_plen = 0 +net.ipv6.conf.veth046457e1.accept_ra_rtr_pref = 1 +net.ipv6.conf.veth046457e1.accept_redirects = 1 +net.ipv6.conf.veth046457e1.accept_source_route = 0 +net.ipv6.conf.veth046457e1.addr_gen_mode = 0 +net.ipv6.conf.veth046457e1.autoconf = 1 +net.ipv6.conf.veth046457e1.dad_transmits = 1 +net.ipv6.conf.veth046457e1.disable_ipv6 = 1 +net.ipv6.conf.veth046457e1.disable_policy = 0 +net.ipv6.conf.veth046457e1.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.veth046457e1.drop_unsolicited_na = 0 +net.ipv6.conf.veth046457e1.enhanced_dad = 1 +net.ipv6.conf.veth046457e1.force_mld_version = 0 +net.ipv6.conf.veth046457e1.force_tllao = 0 +net.ipv6.conf.veth046457e1.forwarding = 1 +net.ipv6.conf.veth046457e1.hop_limit = 64 +net.ipv6.conf.veth046457e1.ignore_routes_with_linkdown = 0 +net.ipv6.conf.veth046457e1.keep_addr_on_down = 0 +net.ipv6.conf.veth046457e1.max_addresses = 16 +net.ipv6.conf.veth046457e1.max_desync_factor = 600 +net.ipv6.conf.veth046457e1.mc_forwarding = 0 +net.ipv6.conf.veth046457e1.mldv1_unsolicited_report_interval = 10000 +net.ipv6.conf.veth046457e1.mldv2_unsolicited_report_interval = 1000 +net.ipv6.conf.veth046457e1.mtu = 1500 +net.ipv6.conf.veth046457e1.ndisc_notify = 0 +net.ipv6.conf.veth046457e1.ndisc_tclass = 0 +net.ipv6.conf.veth046457e1.optimistic_dad = 0 +net.ipv6.conf.veth046457e1.proxy_ndp = 0 +net.ipv6.conf.veth046457e1.regen_max_retry = 3 +net.ipv6.conf.veth046457e1.router_probe_interval = 60 +net.ipv6.conf.veth046457e1.router_solicitation_delay = 1 +net.ipv6.conf.veth046457e1.router_solicitation_interval = 4 +net.ipv6.conf.veth046457e1.router_solicitation_max_interval = 3600 +net.ipv6.conf.veth046457e1.router_solicitations = -1 +net.ipv6.conf.veth046457e1.seg6_enabled = 0 +net.ipv6.conf.veth046457e1.suppress_frag_ndisc = 1 +net.ipv6.conf.veth046457e1.temp_prefered_lft = 86400 +net.ipv6.conf.veth046457e1.temp_valid_lft = 604800 +net.ipv6.conf.veth046457e1.use_oif_addrs_only = 0 +net.ipv6.conf.veth046457e1.use_optimistic = 0 +net.ipv6.conf.veth046457e1.use_tempaddr = 0 +net.ipv6.conf.veth07d7db6b.accept_dad = 1 +net.ipv6.conf.veth07d7db6b.accept_ra = 0 +net.ipv6.conf.veth07d7db6b.accept_ra_defrtr = 1 +net.ipv6.conf.veth07d7db6b.accept_ra_from_local = 0 +net.ipv6.conf.veth07d7db6b.accept_ra_min_hop_limit = 1 +net.ipv6.conf.veth07d7db6b.accept_ra_mtu = 1 +net.ipv6.conf.veth07d7db6b.accept_ra_pinfo = 1 +net.ipv6.conf.veth07d7db6b.accept_ra_rt_info_max_plen = 0 +net.ipv6.conf.veth07d7db6b.accept_ra_rt_info_min_plen = 0 +net.ipv6.conf.veth07d7db6b.accept_ra_rtr_pref = 1 +net.ipv6.conf.veth07d7db6b.accept_redirects = 1 +net.ipv6.conf.veth07d7db6b.accept_source_route = 0 +net.ipv6.conf.veth07d7db6b.addr_gen_mode = 0 +net.ipv6.conf.veth07d7db6b.autoconf = 1 +net.ipv6.conf.veth07d7db6b.dad_transmits = 1 +net.ipv6.conf.veth07d7db6b.disable_ipv6 = 1 +net.ipv6.conf.veth07d7db6b.disable_policy = 0 +net.ipv6.conf.veth07d7db6b.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.veth07d7db6b.drop_unsolicited_na = 0 +net.ipv6.conf.veth07d7db6b.enhanced_dad = 1 +net.ipv6.conf.veth07d7db6b.force_mld_version = 0 +net.ipv6.conf.veth07d7db6b.force_tllao = 0 +net.ipv6.conf.veth07d7db6b.forwarding = 1 +net.ipv6.conf.veth07d7db6b.hop_limit = 64 +net.ipv6.conf.veth07d7db6b.ignore_routes_with_linkdown = 0 +net.ipv6.conf.veth07d7db6b.keep_addr_on_down = 0 +net.ipv6.conf.veth07d7db6b.max_addresses = 16 +net.ipv6.conf.veth07d7db6b.max_desync_factor = 600 +net.ipv6.conf.veth07d7db6b.mc_forwarding = 0 +net.ipv6.conf.veth07d7db6b.mldv1_unsolicited_report_interval = 10000 +net.ipv6.conf.veth07d7db6b.mldv2_unsolicited_report_interval = 1000 +net.ipv6.conf.veth07d7db6b.mtu = 1500 +net.ipv6.conf.veth07d7db6b.ndisc_notify = 0 +net.ipv6.conf.veth07d7db6b.ndisc_tclass = 0 +net.ipv6.conf.veth07d7db6b.optimistic_dad = 0 +net.ipv6.conf.veth07d7db6b.proxy_ndp = 0 +net.ipv6.conf.veth07d7db6b.regen_max_retry = 3 +net.ipv6.conf.veth07d7db6b.router_probe_interval = 60 +net.ipv6.conf.veth07d7db6b.router_solicitation_delay = 1 +net.ipv6.conf.veth07d7db6b.router_solicitation_interval = 4 +net.ipv6.conf.veth07d7db6b.router_solicitation_max_interval = 3600 +net.ipv6.conf.veth07d7db6b.router_solicitations = -1 +net.ipv6.conf.veth07d7db6b.seg6_enabled = 0 +net.ipv6.conf.veth07d7db6b.suppress_frag_ndisc = 1 +net.ipv6.conf.veth07d7db6b.temp_prefered_lft = 86400 +net.ipv6.conf.veth07d7db6b.temp_valid_lft = 604800 +net.ipv6.conf.veth07d7db6b.use_oif_addrs_only = 0 +net.ipv6.conf.veth07d7db6b.use_optimistic = 0 +net.ipv6.conf.veth07d7db6b.use_tempaddr = 0 +net.ipv6.conf.veth0bd575f6.accept_dad = 1 +net.ipv6.conf.veth0bd575f6.accept_ra = 0 +net.ipv6.conf.veth0bd575f6.accept_ra_defrtr = 1 +net.ipv6.conf.veth0bd575f6.accept_ra_from_local = 0 +net.ipv6.conf.veth0bd575f6.accept_ra_min_hop_limit = 1 +net.ipv6.conf.veth0bd575f6.accept_ra_mtu = 1 +net.ipv6.conf.veth0bd575f6.accept_ra_pinfo = 1 +net.ipv6.conf.veth0bd575f6.accept_ra_rt_info_max_plen = 0 +net.ipv6.conf.veth0bd575f6.accept_ra_rt_info_min_plen = 0 +net.ipv6.conf.veth0bd575f6.accept_ra_rtr_pref = 1 +net.ipv6.conf.veth0bd575f6.accept_redirects = 1 +net.ipv6.conf.veth0bd575f6.accept_source_route = 0 +net.ipv6.conf.veth0bd575f6.addr_gen_mode = 0 +net.ipv6.conf.veth0bd575f6.autoconf = 1 +net.ipv6.conf.veth0bd575f6.dad_transmits = 1 +net.ipv6.conf.veth0bd575f6.disable_ipv6 = 1 +net.ipv6.conf.veth0bd575f6.disable_policy = 0 +net.ipv6.conf.veth0bd575f6.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.veth0bd575f6.drop_unsolicited_na = 0 +net.ipv6.conf.veth0bd575f6.enhanced_dad = 1 +net.ipv6.conf.veth0bd575f6.force_mld_version = 0 +net.ipv6.conf.veth0bd575f6.force_tllao = 0 +net.ipv6.conf.veth0bd575f6.forwarding = 1 +net.ipv6.conf.veth0bd575f6.hop_limit = 64 +net.ipv6.conf.veth0bd575f6.ignore_routes_with_linkdown = 0 +net.ipv6.conf.veth0bd575f6.keep_addr_on_down = 0 +net.ipv6.conf.veth0bd575f6.max_addresses = 16 +net.ipv6.conf.veth0bd575f6.max_desync_factor = 600 +net.ipv6.conf.veth0bd575f6.mc_forwarding = 0 +net.ipv6.conf.veth0bd575f6.mldv1_unsolicited_report_interval = 10000 +net.ipv6.conf.veth0bd575f6.mldv2_unsolicited_report_interval = 1000 +net.ipv6.conf.veth0bd575f6.mtu = 1500 +net.ipv6.conf.veth0bd575f6.ndisc_notify = 0 +net.ipv6.conf.veth0bd575f6.ndisc_tclass = 0 +net.ipv6.conf.veth0bd575f6.optimistic_dad = 0 +net.ipv6.conf.veth0bd575f6.proxy_ndp = 0 +net.ipv6.conf.veth0bd575f6.regen_max_retry = 3 +net.ipv6.conf.veth0bd575f6.router_probe_interval = 60 +net.ipv6.conf.veth0bd575f6.router_solicitation_delay = 1 +net.ipv6.conf.veth0bd575f6.router_solicitation_interval = 4 +net.ipv6.conf.veth0bd575f6.router_solicitation_max_interval = 3600 +net.ipv6.conf.veth0bd575f6.router_solicitations = -1 +net.ipv6.conf.veth0bd575f6.seg6_enabled = 0 +net.ipv6.conf.veth0bd575f6.suppress_frag_ndisc = 1 +net.ipv6.conf.veth0bd575f6.temp_prefered_lft = 86400 +net.ipv6.conf.veth0bd575f6.temp_valid_lft = 604800 +net.ipv6.conf.veth0bd575f6.use_oif_addrs_only = 0 +net.ipv6.conf.veth0bd575f6.use_optimistic = 0 +net.ipv6.conf.veth0bd575f6.use_tempaddr = 0 +net.ipv6.conf.veth0c948a7c.accept_dad = 1 +net.ipv6.conf.veth0c948a7c.accept_ra = 0 +net.ipv6.conf.veth0c948a7c.accept_ra_defrtr = 1 +net.ipv6.conf.veth0c948a7c.accept_ra_from_local = 0 +net.ipv6.conf.veth0c948a7c.accept_ra_min_hop_limit = 1 +net.ipv6.conf.veth0c948a7c.accept_ra_mtu = 1 +net.ipv6.conf.veth0c948a7c.accept_ra_pinfo = 1 +net.ipv6.conf.veth0c948a7c.accept_ra_rt_info_max_plen = 0 +net.ipv6.conf.veth0c948a7c.accept_ra_rt_info_min_plen = 0 +net.ipv6.conf.veth0c948a7c.accept_ra_rtr_pref = 1 +net.ipv6.conf.veth0c948a7c.accept_redirects = 1 +net.ipv6.conf.veth0c948a7c.accept_source_route = 0 +net.ipv6.conf.veth0c948a7c.addr_gen_mode = 0 +net.ipv6.conf.veth0c948a7c.autoconf = 1 +net.ipv6.conf.veth0c948a7c.dad_transmits = 1 +net.ipv6.conf.veth0c948a7c.disable_ipv6 = 1 +net.ipv6.conf.veth0c948a7c.disable_policy = 0 +net.ipv6.conf.veth0c948a7c.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.veth0c948a7c.drop_unsolicited_na = 0 +net.ipv6.conf.veth0c948a7c.enhanced_dad = 1 +net.ipv6.conf.veth0c948a7c.force_mld_version = 0 +net.ipv6.conf.veth0c948a7c.force_tllao = 0 +net.ipv6.conf.veth0c948a7c.forwarding = 1 +net.ipv6.conf.veth0c948a7c.hop_limit = 64 +net.ipv6.conf.veth0c948a7c.ignore_routes_with_linkdown = 0 +net.ipv6.conf.veth0c948a7c.keep_addr_on_down = 0 +net.ipv6.conf.veth0c948a7c.max_addresses = 16 +net.ipv6.conf.veth0c948a7c.max_desync_factor = 600 +net.ipv6.conf.veth0c948a7c.mc_forwarding = 0 +net.ipv6.conf.veth0c948a7c.mldv1_unsolicited_report_interval = 10000 +net.ipv6.conf.veth0c948a7c.mldv2_unsolicited_report_interval = 1000 +net.ipv6.conf.veth0c948a7c.mtu = 1500 +net.ipv6.conf.veth0c948a7c.ndisc_notify = 0 +net.ipv6.conf.veth0c948a7c.ndisc_tclass = 0 +net.ipv6.conf.veth0c948a7c.optimistic_dad = 0 +net.ipv6.conf.veth0c948a7c.proxy_ndp = 0 +net.ipv6.conf.veth0c948a7c.regen_max_retry = 3 +net.ipv6.conf.veth0c948a7c.router_probe_interval = 60 +net.ipv6.conf.veth0c948a7c.router_solicitation_delay = 1 +net.ipv6.conf.veth0c948a7c.router_solicitation_interval = 4 +net.ipv6.conf.veth0c948a7c.router_solicitation_max_interval = 3600 +net.ipv6.conf.veth0c948a7c.router_solicitations = -1 +net.ipv6.conf.veth0c948a7c.seg6_enabled = 0 +net.ipv6.conf.veth0c948a7c.suppress_frag_ndisc = 1 +net.ipv6.conf.veth0c948a7c.temp_prefered_lft = 86400 +net.ipv6.conf.veth0c948a7c.temp_valid_lft = 604800 +net.ipv6.conf.veth0c948a7c.use_oif_addrs_only = 0 +net.ipv6.conf.veth0c948a7c.use_optimistic = 0 +net.ipv6.conf.veth0c948a7c.use_tempaddr = 0 +net.ipv6.conf.veth12219f8c.accept_dad = 1 +net.ipv6.conf.veth12219f8c.accept_ra = 0 +net.ipv6.conf.veth12219f8c.accept_ra_defrtr = 1 +net.ipv6.conf.veth12219f8c.accept_ra_from_local = 0 +net.ipv6.conf.veth12219f8c.accept_ra_min_hop_limit = 1 +net.ipv6.conf.veth12219f8c.accept_ra_mtu = 1 +net.ipv6.conf.veth12219f8c.accept_ra_pinfo = 1 +net.ipv6.conf.veth12219f8c.accept_ra_rt_info_max_plen = 0 +net.ipv6.conf.veth12219f8c.accept_ra_rt_info_min_plen = 0 +net.ipv6.conf.veth12219f8c.accept_ra_rtr_pref = 1 +net.ipv6.conf.veth12219f8c.accept_redirects = 1 +net.ipv6.conf.veth12219f8c.accept_source_route = 0 +net.ipv6.conf.veth12219f8c.addr_gen_mode = 0 +net.ipv6.conf.veth12219f8c.autoconf = 1 +net.ipv6.conf.veth12219f8c.dad_transmits = 1 +net.ipv6.conf.veth12219f8c.disable_ipv6 = 1 +net.ipv6.conf.veth12219f8c.disable_policy = 0 +net.ipv6.conf.veth12219f8c.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.veth12219f8c.drop_unsolicited_na = 0 +net.ipv6.conf.veth12219f8c.enhanced_dad = 1 +net.ipv6.conf.veth12219f8c.force_mld_version = 0 +net.ipv6.conf.veth12219f8c.force_tllao = 0 +net.ipv6.conf.veth12219f8c.forwarding = 1 +net.ipv6.conf.veth12219f8c.hop_limit = 64 +net.ipv6.conf.veth12219f8c.ignore_routes_with_linkdown = 0 +net.ipv6.conf.veth12219f8c.keep_addr_on_down = 0 +net.ipv6.conf.veth12219f8c.max_addresses = 16 +net.ipv6.conf.veth12219f8c.max_desync_factor = 600 +net.ipv6.conf.veth12219f8c.mc_forwarding = 0 +net.ipv6.conf.veth12219f8c.mldv1_unsolicited_report_interval = 10000 +net.ipv6.conf.veth12219f8c.mldv2_unsolicited_report_interval = 1000 +net.ipv6.conf.veth12219f8c.mtu = 1500 +net.ipv6.conf.veth12219f8c.ndisc_notify = 0 +net.ipv6.conf.veth12219f8c.ndisc_tclass = 0 +net.ipv6.conf.veth12219f8c.optimistic_dad = 0 +net.ipv6.conf.veth12219f8c.proxy_ndp = 0 +net.ipv6.conf.veth12219f8c.regen_max_retry = 3 +net.ipv6.conf.veth12219f8c.router_probe_interval = 60 +net.ipv6.conf.veth12219f8c.router_solicitation_delay = 1 +net.ipv6.conf.veth12219f8c.router_solicitation_interval = 4 +net.ipv6.conf.veth12219f8c.router_solicitation_max_interval = 3600 +net.ipv6.conf.veth12219f8c.router_solicitations = -1 +net.ipv6.conf.veth12219f8c.seg6_enabled = 0 +net.ipv6.conf.veth12219f8c.suppress_frag_ndisc = 1 +net.ipv6.conf.veth12219f8c.temp_prefered_lft = 86400 +net.ipv6.conf.veth12219f8c.temp_valid_lft = 604800 +net.ipv6.conf.veth12219f8c.use_oif_addrs_only = 0 +net.ipv6.conf.veth12219f8c.use_optimistic = 0 +net.ipv6.conf.veth12219f8c.use_tempaddr = 0 +net.ipv6.conf.veth125aed80.accept_dad = 1 +net.ipv6.conf.veth125aed80.accept_ra = 0 +net.ipv6.conf.veth125aed80.accept_ra_defrtr = 1 +net.ipv6.conf.veth125aed80.accept_ra_from_local = 0 +net.ipv6.conf.veth125aed80.accept_ra_min_hop_limit = 1 +net.ipv6.conf.veth125aed80.accept_ra_mtu = 1 +net.ipv6.conf.veth125aed80.accept_ra_pinfo = 1 +net.ipv6.conf.veth125aed80.accept_ra_rt_info_max_plen = 0 +net.ipv6.conf.veth125aed80.accept_ra_rt_info_min_plen = 0 +net.ipv6.conf.veth125aed80.accept_ra_rtr_pref = 1 +net.ipv6.conf.veth125aed80.accept_redirects = 1 +net.ipv6.conf.veth125aed80.accept_source_route = 0 +net.ipv6.conf.veth125aed80.addr_gen_mode = 0 +net.ipv6.conf.veth125aed80.autoconf = 1 +net.ipv6.conf.veth125aed80.dad_transmits = 1 +net.ipv6.conf.veth125aed80.disable_ipv6 = 1 +net.ipv6.conf.veth125aed80.disable_policy = 0 +net.ipv6.conf.veth125aed80.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.veth125aed80.drop_unsolicited_na = 0 +net.ipv6.conf.veth125aed80.enhanced_dad = 1 +net.ipv6.conf.veth125aed80.force_mld_version = 0 +net.ipv6.conf.veth125aed80.force_tllao = 0 +net.ipv6.conf.veth125aed80.forwarding = 1 +net.ipv6.conf.veth125aed80.hop_limit = 64 +net.ipv6.conf.veth125aed80.ignore_routes_with_linkdown = 0 +net.ipv6.conf.veth125aed80.keep_addr_on_down = 0 +net.ipv6.conf.veth125aed80.max_addresses = 16 +net.ipv6.conf.veth125aed80.max_desync_factor = 600 +net.ipv6.conf.veth125aed80.mc_forwarding = 0 +net.ipv6.conf.veth125aed80.mldv1_unsolicited_report_interval = 10000 +net.ipv6.conf.veth125aed80.mldv2_unsolicited_report_interval = 1000 +net.ipv6.conf.veth125aed80.mtu = 1500 +net.ipv6.conf.veth125aed80.ndisc_notify = 0 +net.ipv6.conf.veth125aed80.ndisc_tclass = 0 +net.ipv6.conf.veth125aed80.optimistic_dad = 0 +net.ipv6.conf.veth125aed80.proxy_ndp = 0 +net.ipv6.conf.veth125aed80.regen_max_retry = 3 +net.ipv6.conf.veth125aed80.router_probe_interval = 60 +net.ipv6.conf.veth125aed80.router_solicitation_delay = 1 +net.ipv6.conf.veth125aed80.router_solicitation_interval = 4 +net.ipv6.conf.veth125aed80.router_solicitation_max_interval = 3600 +net.ipv6.conf.veth125aed80.router_solicitations = -1 +net.ipv6.conf.veth125aed80.seg6_enabled = 0 +net.ipv6.conf.veth125aed80.suppress_frag_ndisc = 1 +net.ipv6.conf.veth125aed80.temp_prefered_lft = 86400 +net.ipv6.conf.veth125aed80.temp_valid_lft = 604800 +net.ipv6.conf.veth125aed80.use_oif_addrs_only = 0 +net.ipv6.conf.veth125aed80.use_optimistic = 0 +net.ipv6.conf.veth125aed80.use_tempaddr = 0 +net.ipv6.conf.veth140b78c8.accept_dad = 1 +net.ipv6.conf.veth140b78c8.accept_ra = 0 +net.ipv6.conf.veth140b78c8.accept_ra_defrtr = 1 +net.ipv6.conf.veth140b78c8.accept_ra_from_local = 0 +net.ipv6.conf.veth140b78c8.accept_ra_min_hop_limit = 1 +net.ipv6.conf.veth140b78c8.accept_ra_mtu = 1 +net.ipv6.conf.veth140b78c8.accept_ra_pinfo = 1 +net.ipv6.conf.veth140b78c8.accept_ra_rt_info_max_plen = 0 +net.ipv6.conf.veth140b78c8.accept_ra_rt_info_min_plen = 0 +net.ipv6.conf.veth140b78c8.accept_ra_rtr_pref = 1 +net.ipv6.conf.veth140b78c8.accept_redirects = 1 +net.ipv6.conf.veth140b78c8.accept_source_route = 0 +net.ipv6.conf.veth140b78c8.addr_gen_mode = 0 +net.ipv6.conf.veth140b78c8.autoconf = 1 +net.ipv6.conf.veth140b78c8.dad_transmits = 1 +net.ipv6.conf.veth140b78c8.disable_ipv6 = 1 +net.ipv6.conf.veth140b78c8.disable_policy = 0 +net.ipv6.conf.veth140b78c8.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.veth140b78c8.drop_unsolicited_na = 0 +net.ipv6.conf.veth140b78c8.enhanced_dad = 1 +net.ipv6.conf.veth140b78c8.force_mld_version = 0 +net.ipv6.conf.veth140b78c8.force_tllao = 0 +net.ipv6.conf.veth140b78c8.forwarding = 1 +net.ipv6.conf.veth140b78c8.hop_limit = 64 +net.ipv6.conf.veth140b78c8.ignore_routes_with_linkdown = 0 +net.ipv6.conf.veth140b78c8.keep_addr_on_down = 0 +net.ipv6.conf.veth140b78c8.max_addresses = 16 +net.ipv6.conf.veth140b78c8.max_desync_factor = 600 +net.ipv6.conf.veth140b78c8.mc_forwarding = 0 +net.ipv6.conf.veth140b78c8.mldv1_unsolicited_report_interval = 10000 +net.ipv6.conf.veth140b78c8.mldv2_unsolicited_report_interval = 1000 +net.ipv6.conf.veth140b78c8.mtu = 1500 +net.ipv6.conf.veth140b78c8.ndisc_notify = 0 +net.ipv6.conf.veth140b78c8.ndisc_tclass = 0 +net.ipv6.conf.veth140b78c8.optimistic_dad = 0 +net.ipv6.conf.veth140b78c8.proxy_ndp = 0 +net.ipv6.conf.veth140b78c8.regen_max_retry = 3 +net.ipv6.conf.veth140b78c8.router_probe_interval = 60 +net.ipv6.conf.veth140b78c8.router_solicitation_delay = 1 +net.ipv6.conf.veth140b78c8.router_solicitation_interval = 4 +net.ipv6.conf.veth140b78c8.router_solicitation_max_interval = 3600 +net.ipv6.conf.veth140b78c8.router_solicitations = -1 +net.ipv6.conf.veth140b78c8.seg6_enabled = 0 +net.ipv6.conf.veth140b78c8.suppress_frag_ndisc = 1 +net.ipv6.conf.veth140b78c8.temp_prefered_lft = 86400 +net.ipv6.conf.veth140b78c8.temp_valid_lft = 604800 +net.ipv6.conf.veth140b78c8.use_oif_addrs_only = 0 +net.ipv6.conf.veth140b78c8.use_optimistic = 0 +net.ipv6.conf.veth140b78c8.use_tempaddr = 0 +net.ipv6.conf.veth19c266ca.accept_dad = 1 +net.ipv6.conf.veth19c266ca.accept_ra = 0 +net.ipv6.conf.veth19c266ca.accept_ra_defrtr = 1 +net.ipv6.conf.veth19c266ca.accept_ra_from_local = 0 +net.ipv6.conf.veth19c266ca.accept_ra_min_hop_limit = 1 +net.ipv6.conf.veth19c266ca.accept_ra_mtu = 1 +net.ipv6.conf.veth19c266ca.accept_ra_pinfo = 1 +net.ipv6.conf.veth19c266ca.accept_ra_rt_info_max_plen = 0 +net.ipv6.conf.veth19c266ca.accept_ra_rt_info_min_plen = 0 +net.ipv6.conf.veth19c266ca.accept_ra_rtr_pref = 1 +net.ipv6.conf.veth19c266ca.accept_redirects = 1 +net.ipv6.conf.veth19c266ca.accept_source_route = 0 +net.ipv6.conf.veth19c266ca.addr_gen_mode = 0 +net.ipv6.conf.veth19c266ca.autoconf = 1 +net.ipv6.conf.veth19c266ca.dad_transmits = 1 +net.ipv6.conf.veth19c266ca.disable_ipv6 = 1 +net.ipv6.conf.veth19c266ca.disable_policy = 0 +net.ipv6.conf.veth19c266ca.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.veth19c266ca.drop_unsolicited_na = 0 +net.ipv6.conf.veth19c266ca.enhanced_dad = 1 +net.ipv6.conf.veth19c266ca.force_mld_version = 0 +net.ipv6.conf.veth19c266ca.force_tllao = 0 +net.ipv6.conf.veth19c266ca.forwarding = 1 +net.ipv6.conf.veth19c266ca.hop_limit = 64 +net.ipv6.conf.veth19c266ca.ignore_routes_with_linkdown = 0 +net.ipv6.conf.veth19c266ca.keep_addr_on_down = 0 +net.ipv6.conf.veth19c266ca.max_addresses = 16 +net.ipv6.conf.veth19c266ca.max_desync_factor = 600 +net.ipv6.conf.veth19c266ca.mc_forwarding = 0 +net.ipv6.conf.veth19c266ca.mldv1_unsolicited_report_interval = 10000 +net.ipv6.conf.veth19c266ca.mldv2_unsolicited_report_interval = 1000 +net.ipv6.conf.veth19c266ca.mtu = 1500 +net.ipv6.conf.veth19c266ca.ndisc_notify = 0 +net.ipv6.conf.veth19c266ca.ndisc_tclass = 0 +net.ipv6.conf.veth19c266ca.optimistic_dad = 0 +net.ipv6.conf.veth19c266ca.proxy_ndp = 0 +net.ipv6.conf.veth19c266ca.regen_max_retry = 3 +net.ipv6.conf.veth19c266ca.router_probe_interval = 60 +net.ipv6.conf.veth19c266ca.router_solicitation_delay = 1 +net.ipv6.conf.veth19c266ca.router_solicitation_interval = 4 +net.ipv6.conf.veth19c266ca.router_solicitation_max_interval = 3600 +net.ipv6.conf.veth19c266ca.router_solicitations = -1 +net.ipv6.conf.veth19c266ca.seg6_enabled = 0 +net.ipv6.conf.veth19c266ca.suppress_frag_ndisc = 1 +net.ipv6.conf.veth19c266ca.temp_prefered_lft = 86400 +net.ipv6.conf.veth19c266ca.temp_valid_lft = 604800 +net.ipv6.conf.veth19c266ca.use_oif_addrs_only = 0 +net.ipv6.conf.veth19c266ca.use_optimistic = 0 +net.ipv6.conf.veth19c266ca.use_tempaddr = 0 +net.ipv6.conf.veth1a2f3a50.accept_dad = 1 +net.ipv6.conf.veth1a2f3a50.accept_ra = 0 +net.ipv6.conf.veth1a2f3a50.accept_ra_defrtr = 1 +net.ipv6.conf.veth1a2f3a50.accept_ra_from_local = 0 +net.ipv6.conf.veth1a2f3a50.accept_ra_min_hop_limit = 1 +net.ipv6.conf.veth1a2f3a50.accept_ra_mtu = 1 +net.ipv6.conf.veth1a2f3a50.accept_ra_pinfo = 1 +net.ipv6.conf.veth1a2f3a50.accept_ra_rt_info_max_plen = 0 +net.ipv6.conf.veth1a2f3a50.accept_ra_rt_info_min_plen = 0 +net.ipv6.conf.veth1a2f3a50.accept_ra_rtr_pref = 1 +net.ipv6.conf.veth1a2f3a50.accept_redirects = 1 +net.ipv6.conf.veth1a2f3a50.accept_source_route = 0 +net.ipv6.conf.veth1a2f3a50.addr_gen_mode = 0 +net.ipv6.conf.veth1a2f3a50.autoconf = 1 +net.ipv6.conf.veth1a2f3a50.dad_transmits = 1 +net.ipv6.conf.veth1a2f3a50.disable_ipv6 = 1 +net.ipv6.conf.veth1a2f3a50.disable_policy = 0 +net.ipv6.conf.veth1a2f3a50.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.veth1a2f3a50.drop_unsolicited_na = 0 +net.ipv6.conf.veth1a2f3a50.enhanced_dad = 1 +net.ipv6.conf.veth1a2f3a50.force_mld_version = 0 +net.ipv6.conf.veth1a2f3a50.force_tllao = 0 +net.ipv6.conf.veth1a2f3a50.forwarding = 1 +net.ipv6.conf.veth1a2f3a50.hop_limit = 64 +net.ipv6.conf.veth1a2f3a50.ignore_routes_with_linkdown = 0 +net.ipv6.conf.veth1a2f3a50.keep_addr_on_down = 0 +net.ipv6.conf.veth1a2f3a50.max_addresses = 16 +net.ipv6.conf.veth1a2f3a50.max_desync_factor = 600 +net.ipv6.conf.veth1a2f3a50.mc_forwarding = 0 +net.ipv6.conf.veth1a2f3a50.mldv1_unsolicited_report_interval = 10000 +net.ipv6.conf.veth1a2f3a50.mldv2_unsolicited_report_interval = 1000 +net.ipv6.conf.veth1a2f3a50.mtu = 1500 +net.ipv6.conf.veth1a2f3a50.ndisc_notify = 0 +net.ipv6.conf.veth1a2f3a50.ndisc_tclass = 0 +net.ipv6.conf.veth1a2f3a50.optimistic_dad = 0 +net.ipv6.conf.veth1a2f3a50.proxy_ndp = 0 +net.ipv6.conf.veth1a2f3a50.regen_max_retry = 3 +net.ipv6.conf.veth1a2f3a50.router_probe_interval = 60 +net.ipv6.conf.veth1a2f3a50.router_solicitation_delay = 1 +net.ipv6.conf.veth1a2f3a50.router_solicitation_interval = 4 +net.ipv6.conf.veth1a2f3a50.router_solicitation_max_interval = 3600 +net.ipv6.conf.veth1a2f3a50.router_solicitations = -1 +net.ipv6.conf.veth1a2f3a50.seg6_enabled = 0 +net.ipv6.conf.veth1a2f3a50.suppress_frag_ndisc = 1 +net.ipv6.conf.veth1a2f3a50.temp_prefered_lft = 86400 +net.ipv6.conf.veth1a2f3a50.temp_valid_lft = 604800 +net.ipv6.conf.veth1a2f3a50.use_oif_addrs_only = 0 +net.ipv6.conf.veth1a2f3a50.use_optimistic = 0 +net.ipv6.conf.veth1a2f3a50.use_tempaddr = 0 +net.ipv6.conf.veth1e01ee50.accept_dad = 1 +net.ipv6.conf.veth1e01ee50.accept_ra = 0 +net.ipv6.conf.veth1e01ee50.accept_ra_defrtr = 1 +net.ipv6.conf.veth1e01ee50.accept_ra_from_local = 0 +net.ipv6.conf.veth1e01ee50.accept_ra_min_hop_limit = 1 +net.ipv6.conf.veth1e01ee50.accept_ra_mtu = 1 +net.ipv6.conf.veth1e01ee50.accept_ra_pinfo = 1 +net.ipv6.conf.veth1e01ee50.accept_ra_rt_info_max_plen = 0 +net.ipv6.conf.veth1e01ee50.accept_ra_rt_info_min_plen = 0 +net.ipv6.conf.veth1e01ee50.accept_ra_rtr_pref = 1 +net.ipv6.conf.veth1e01ee50.accept_redirects = 1 +net.ipv6.conf.veth1e01ee50.accept_source_route = 0 +net.ipv6.conf.veth1e01ee50.addr_gen_mode = 0 +net.ipv6.conf.veth1e01ee50.autoconf = 1 +net.ipv6.conf.veth1e01ee50.dad_transmits = 1 +net.ipv6.conf.veth1e01ee50.disable_ipv6 = 1 +net.ipv6.conf.veth1e01ee50.disable_policy = 0 +net.ipv6.conf.veth1e01ee50.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.veth1e01ee50.drop_unsolicited_na = 0 +net.ipv6.conf.veth1e01ee50.enhanced_dad = 1 +net.ipv6.conf.veth1e01ee50.force_mld_version = 0 +net.ipv6.conf.veth1e01ee50.force_tllao = 0 +net.ipv6.conf.veth1e01ee50.forwarding = 1 +net.ipv6.conf.veth1e01ee50.hop_limit = 64 +net.ipv6.conf.veth1e01ee50.ignore_routes_with_linkdown = 0 +net.ipv6.conf.veth1e01ee50.keep_addr_on_down = 0 +net.ipv6.conf.veth1e01ee50.max_addresses = 16 +net.ipv6.conf.veth1e01ee50.max_desync_factor = 600 +net.ipv6.conf.veth1e01ee50.mc_forwarding = 0 +net.ipv6.conf.veth1e01ee50.mldv1_unsolicited_report_interval = 10000 +net.ipv6.conf.veth1e01ee50.mldv2_unsolicited_report_interval = 1000 +net.ipv6.conf.veth1e01ee50.mtu = 1500 +net.ipv6.conf.veth1e01ee50.ndisc_notify = 0 +net.ipv6.conf.veth1e01ee50.ndisc_tclass = 0 +net.ipv6.conf.veth1e01ee50.optimistic_dad = 0 +net.ipv6.conf.veth1e01ee50.proxy_ndp = 0 +net.ipv6.conf.veth1e01ee50.regen_max_retry = 3 +net.ipv6.conf.veth1e01ee50.router_probe_interval = 60 +net.ipv6.conf.veth1e01ee50.router_solicitation_delay = 1 +net.ipv6.conf.veth1e01ee50.router_solicitation_interval = 4 +net.ipv6.conf.veth1e01ee50.router_solicitation_max_interval = 3600 +net.ipv6.conf.veth1e01ee50.router_solicitations = -1 +net.ipv6.conf.veth1e01ee50.seg6_enabled = 0 +net.ipv6.conf.veth1e01ee50.suppress_frag_ndisc = 1 +net.ipv6.conf.veth1e01ee50.temp_prefered_lft = 86400 +net.ipv6.conf.veth1e01ee50.temp_valid_lft = 604800 +net.ipv6.conf.veth1e01ee50.use_oif_addrs_only = 0 +net.ipv6.conf.veth1e01ee50.use_optimistic = 0 +net.ipv6.conf.veth1e01ee50.use_tempaddr = 0 +net.ipv6.conf.veth328abad5.accept_dad = 1 +net.ipv6.conf.veth328abad5.accept_ra = 0 +net.ipv6.conf.veth328abad5.accept_ra_defrtr = 1 +net.ipv6.conf.veth328abad5.accept_ra_from_local = 0 +net.ipv6.conf.veth328abad5.accept_ra_min_hop_limit = 1 +net.ipv6.conf.veth328abad5.accept_ra_mtu = 1 +net.ipv6.conf.veth328abad5.accept_ra_pinfo = 1 +net.ipv6.conf.veth328abad5.accept_ra_rt_info_max_plen = 0 +net.ipv6.conf.veth328abad5.accept_ra_rt_info_min_plen = 0 +net.ipv6.conf.veth328abad5.accept_ra_rtr_pref = 1 +net.ipv6.conf.veth328abad5.accept_redirects = 1 +net.ipv6.conf.veth328abad5.accept_source_route = 0 +net.ipv6.conf.veth328abad5.addr_gen_mode = 0 +net.ipv6.conf.veth328abad5.autoconf = 1 +net.ipv6.conf.veth328abad5.dad_transmits = 1 +net.ipv6.conf.veth328abad5.disable_ipv6 = 1 +net.ipv6.conf.veth328abad5.disable_policy = 0 +net.ipv6.conf.veth328abad5.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.veth328abad5.drop_unsolicited_na = 0 +net.ipv6.conf.veth328abad5.enhanced_dad = 1 +net.ipv6.conf.veth328abad5.force_mld_version = 0 +net.ipv6.conf.veth328abad5.force_tllao = 0 +net.ipv6.conf.veth328abad5.forwarding = 1 +net.ipv6.conf.veth328abad5.hop_limit = 64 +net.ipv6.conf.veth328abad5.ignore_routes_with_linkdown = 0 +net.ipv6.conf.veth328abad5.keep_addr_on_down = 0 +net.ipv6.conf.veth328abad5.max_addresses = 16 +net.ipv6.conf.veth328abad5.max_desync_factor = 600 +net.ipv6.conf.veth328abad5.mc_forwarding = 0 +net.ipv6.conf.veth328abad5.mldv1_unsolicited_report_interval = 10000 +net.ipv6.conf.veth328abad5.mldv2_unsolicited_report_interval = 1000 +net.ipv6.conf.veth328abad5.mtu = 1500 +net.ipv6.conf.veth328abad5.ndisc_notify = 0 +net.ipv6.conf.veth328abad5.ndisc_tclass = 0 +net.ipv6.conf.veth328abad5.optimistic_dad = 0 +net.ipv6.conf.veth328abad5.proxy_ndp = 0 +net.ipv6.conf.veth328abad5.regen_max_retry = 3 +net.ipv6.conf.veth328abad5.router_probe_interval = 60 +net.ipv6.conf.veth328abad5.router_solicitation_delay = 1 +net.ipv6.conf.veth328abad5.router_solicitation_interval = 4 +net.ipv6.conf.veth328abad5.router_solicitation_max_interval = 3600 +net.ipv6.conf.veth328abad5.router_solicitations = -1 +net.ipv6.conf.veth328abad5.seg6_enabled = 0 +net.ipv6.conf.veth328abad5.suppress_frag_ndisc = 1 +net.ipv6.conf.veth328abad5.temp_prefered_lft = 86400 +net.ipv6.conf.veth328abad5.temp_valid_lft = 604800 +net.ipv6.conf.veth328abad5.use_oif_addrs_only = 0 +net.ipv6.conf.veth328abad5.use_optimistic = 0 +net.ipv6.conf.veth328abad5.use_tempaddr = 0 +net.ipv6.conf.veth3bd42127.accept_dad = 1 +net.ipv6.conf.veth3bd42127.accept_ra = 0 +net.ipv6.conf.veth3bd42127.accept_ra_defrtr = 1 +net.ipv6.conf.veth3bd42127.accept_ra_from_local = 0 +net.ipv6.conf.veth3bd42127.accept_ra_min_hop_limit = 1 +net.ipv6.conf.veth3bd42127.accept_ra_mtu = 1 +net.ipv6.conf.veth3bd42127.accept_ra_pinfo = 1 +net.ipv6.conf.veth3bd42127.accept_ra_rt_info_max_plen = 0 +net.ipv6.conf.veth3bd42127.accept_ra_rt_info_min_plen = 0 +net.ipv6.conf.veth3bd42127.accept_ra_rtr_pref = 1 +net.ipv6.conf.veth3bd42127.accept_redirects = 1 +net.ipv6.conf.veth3bd42127.accept_source_route = 0 +net.ipv6.conf.veth3bd42127.addr_gen_mode = 0 +net.ipv6.conf.veth3bd42127.autoconf = 1 +net.ipv6.conf.veth3bd42127.dad_transmits = 1 +net.ipv6.conf.veth3bd42127.disable_ipv6 = 1 +net.ipv6.conf.veth3bd42127.disable_policy = 0 +net.ipv6.conf.veth3bd42127.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.veth3bd42127.drop_unsolicited_na = 0 +net.ipv6.conf.veth3bd42127.enhanced_dad = 1 +net.ipv6.conf.veth3bd42127.force_mld_version = 0 +net.ipv6.conf.veth3bd42127.force_tllao = 0 +net.ipv6.conf.veth3bd42127.forwarding = 1 +net.ipv6.conf.veth3bd42127.hop_limit = 64 +net.ipv6.conf.veth3bd42127.ignore_routes_with_linkdown = 0 +net.ipv6.conf.veth3bd42127.keep_addr_on_down = 0 +net.ipv6.conf.veth3bd42127.max_addresses = 16 +net.ipv6.conf.veth3bd42127.max_desync_factor = 600 +net.ipv6.conf.veth3bd42127.mc_forwarding = 0 +net.ipv6.conf.veth3bd42127.mldv1_unsolicited_report_interval = 10000 +net.ipv6.conf.veth3bd42127.mldv2_unsolicited_report_interval = 1000 +net.ipv6.conf.veth3bd42127.mtu = 1500 +net.ipv6.conf.veth3bd42127.ndisc_notify = 0 +net.ipv6.conf.veth3bd42127.ndisc_tclass = 0 +net.ipv6.conf.veth3bd42127.optimistic_dad = 0 +net.ipv6.conf.veth3bd42127.proxy_ndp = 0 +net.ipv6.conf.veth3bd42127.regen_max_retry = 3 +net.ipv6.conf.veth3bd42127.router_probe_interval = 60 +net.ipv6.conf.veth3bd42127.router_solicitation_delay = 1 +net.ipv6.conf.veth3bd42127.router_solicitation_interval = 4 +net.ipv6.conf.veth3bd42127.router_solicitation_max_interval = 3600 +net.ipv6.conf.veth3bd42127.router_solicitations = -1 +net.ipv6.conf.veth3bd42127.seg6_enabled = 0 +net.ipv6.conf.veth3bd42127.suppress_frag_ndisc = 1 +net.ipv6.conf.veth3bd42127.temp_prefered_lft = 86400 +net.ipv6.conf.veth3bd42127.temp_valid_lft = 604800 +net.ipv6.conf.veth3bd42127.use_oif_addrs_only = 0 +net.ipv6.conf.veth3bd42127.use_optimistic = 0 +net.ipv6.conf.veth3bd42127.use_tempaddr = 0 +net.ipv6.conf.veth45fa2bdb.accept_dad = 1 +net.ipv6.conf.veth45fa2bdb.accept_ra = 0 +net.ipv6.conf.veth45fa2bdb.accept_ra_defrtr = 1 +net.ipv6.conf.veth45fa2bdb.accept_ra_from_local = 0 +net.ipv6.conf.veth45fa2bdb.accept_ra_min_hop_limit = 1 +net.ipv6.conf.veth45fa2bdb.accept_ra_mtu = 1 +net.ipv6.conf.veth45fa2bdb.accept_ra_pinfo = 1 +net.ipv6.conf.veth45fa2bdb.accept_ra_rt_info_max_plen = 0 +net.ipv6.conf.veth45fa2bdb.accept_ra_rt_info_min_plen = 0 +net.ipv6.conf.veth45fa2bdb.accept_ra_rtr_pref = 1 +net.ipv6.conf.veth45fa2bdb.accept_redirects = 1 +net.ipv6.conf.veth45fa2bdb.accept_source_route = 0 +net.ipv6.conf.veth45fa2bdb.addr_gen_mode = 0 +net.ipv6.conf.veth45fa2bdb.autoconf = 1 +net.ipv6.conf.veth45fa2bdb.dad_transmits = 1 +net.ipv6.conf.veth45fa2bdb.disable_ipv6 = 1 +net.ipv6.conf.veth45fa2bdb.disable_policy = 0 +net.ipv6.conf.veth45fa2bdb.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.veth45fa2bdb.drop_unsolicited_na = 0 +net.ipv6.conf.veth45fa2bdb.enhanced_dad = 1 +net.ipv6.conf.veth45fa2bdb.force_mld_version = 0 +net.ipv6.conf.veth45fa2bdb.force_tllao = 0 +net.ipv6.conf.veth45fa2bdb.forwarding = 1 +net.ipv6.conf.veth45fa2bdb.hop_limit = 64 +net.ipv6.conf.veth45fa2bdb.ignore_routes_with_linkdown = 0 +net.ipv6.conf.veth45fa2bdb.keep_addr_on_down = 0 +net.ipv6.conf.veth45fa2bdb.max_addresses = 16 +net.ipv6.conf.veth45fa2bdb.max_desync_factor = 600 +net.ipv6.conf.veth45fa2bdb.mc_forwarding = 0 +net.ipv6.conf.veth45fa2bdb.mldv1_unsolicited_report_interval = 10000 +net.ipv6.conf.veth45fa2bdb.mldv2_unsolicited_report_interval = 1000 +net.ipv6.conf.veth45fa2bdb.mtu = 1500 +net.ipv6.conf.veth45fa2bdb.ndisc_notify = 0 +net.ipv6.conf.veth45fa2bdb.ndisc_tclass = 0 +net.ipv6.conf.veth45fa2bdb.optimistic_dad = 0 +net.ipv6.conf.veth45fa2bdb.proxy_ndp = 0 +net.ipv6.conf.veth45fa2bdb.regen_max_retry = 3 +net.ipv6.conf.veth45fa2bdb.router_probe_interval = 60 +net.ipv6.conf.veth45fa2bdb.router_solicitation_delay = 1 +net.ipv6.conf.veth45fa2bdb.router_solicitation_interval = 4 +net.ipv6.conf.veth45fa2bdb.router_solicitation_max_interval = 3600 +net.ipv6.conf.veth45fa2bdb.router_solicitations = -1 +net.ipv6.conf.veth45fa2bdb.seg6_enabled = 0 +net.ipv6.conf.veth45fa2bdb.suppress_frag_ndisc = 1 +net.ipv6.conf.veth45fa2bdb.temp_prefered_lft = 86400 +net.ipv6.conf.veth45fa2bdb.temp_valid_lft = 604800 +net.ipv6.conf.veth45fa2bdb.use_oif_addrs_only = 0 +net.ipv6.conf.veth45fa2bdb.use_optimistic = 0 +net.ipv6.conf.veth45fa2bdb.use_tempaddr = 0 +net.ipv6.conf.veth522c3e56.accept_dad = 1 +net.ipv6.conf.veth522c3e56.accept_ra = 0 +net.ipv6.conf.veth522c3e56.accept_ra_defrtr = 1 +net.ipv6.conf.veth522c3e56.accept_ra_from_local = 0 +net.ipv6.conf.veth522c3e56.accept_ra_min_hop_limit = 1 +net.ipv6.conf.veth522c3e56.accept_ra_mtu = 1 +net.ipv6.conf.veth522c3e56.accept_ra_pinfo = 1 +net.ipv6.conf.veth522c3e56.accept_ra_rt_info_max_plen = 0 +net.ipv6.conf.veth522c3e56.accept_ra_rt_info_min_plen = 0 +net.ipv6.conf.veth522c3e56.accept_ra_rtr_pref = 1 +net.ipv6.conf.veth522c3e56.accept_redirects = 1 +net.ipv6.conf.veth522c3e56.accept_source_route = 0 +net.ipv6.conf.veth522c3e56.addr_gen_mode = 0 +net.ipv6.conf.veth522c3e56.autoconf = 1 +net.ipv6.conf.veth522c3e56.dad_transmits = 1 +net.ipv6.conf.veth522c3e56.disable_ipv6 = 1 +net.ipv6.conf.veth522c3e56.disable_policy = 0 +net.ipv6.conf.veth522c3e56.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.veth522c3e56.drop_unsolicited_na = 0 +net.ipv6.conf.veth522c3e56.enhanced_dad = 1 +net.ipv6.conf.veth522c3e56.force_mld_version = 0 +net.ipv6.conf.veth522c3e56.force_tllao = 0 +net.ipv6.conf.veth522c3e56.forwarding = 1 +net.ipv6.conf.veth522c3e56.hop_limit = 64 +net.ipv6.conf.veth522c3e56.ignore_routes_with_linkdown = 0 +net.ipv6.conf.veth522c3e56.keep_addr_on_down = 0 +net.ipv6.conf.veth522c3e56.max_addresses = 16 +net.ipv6.conf.veth522c3e56.max_desync_factor = 600 +net.ipv6.conf.veth522c3e56.mc_forwarding = 0 +net.ipv6.conf.veth522c3e56.mldv1_unsolicited_report_interval = 10000 +net.ipv6.conf.veth522c3e56.mldv2_unsolicited_report_interval = 1000 +net.ipv6.conf.veth522c3e56.mtu = 1500 +net.ipv6.conf.veth522c3e56.ndisc_notify = 0 +net.ipv6.conf.veth522c3e56.ndisc_tclass = 0 +net.ipv6.conf.veth522c3e56.optimistic_dad = 0 +net.ipv6.conf.veth522c3e56.proxy_ndp = 0 +net.ipv6.conf.veth522c3e56.regen_max_retry = 3 +net.ipv6.conf.veth522c3e56.router_probe_interval = 60 +net.ipv6.conf.veth522c3e56.router_solicitation_delay = 1 +net.ipv6.conf.veth522c3e56.router_solicitation_interval = 4 +net.ipv6.conf.veth522c3e56.router_solicitation_max_interval = 3600 +net.ipv6.conf.veth522c3e56.router_solicitations = -1 +net.ipv6.conf.veth522c3e56.seg6_enabled = 0 +net.ipv6.conf.veth522c3e56.suppress_frag_ndisc = 1 +net.ipv6.conf.veth522c3e56.temp_prefered_lft = 86400 +net.ipv6.conf.veth522c3e56.temp_valid_lft = 604800 +net.ipv6.conf.veth522c3e56.use_oif_addrs_only = 0 +net.ipv6.conf.veth522c3e56.use_optimistic = 0 +net.ipv6.conf.veth522c3e56.use_tempaddr = 0 +net.ipv6.conf.veth57871859.accept_dad = 1 +net.ipv6.conf.veth57871859.accept_ra = 0 +net.ipv6.conf.veth57871859.accept_ra_defrtr = 1 +net.ipv6.conf.veth57871859.accept_ra_from_local = 0 +net.ipv6.conf.veth57871859.accept_ra_min_hop_limit = 1 +net.ipv6.conf.veth57871859.accept_ra_mtu = 1 +net.ipv6.conf.veth57871859.accept_ra_pinfo = 1 +net.ipv6.conf.veth57871859.accept_ra_rt_info_max_plen = 0 +net.ipv6.conf.veth57871859.accept_ra_rt_info_min_plen = 0 +net.ipv6.conf.veth57871859.accept_ra_rtr_pref = 1 +net.ipv6.conf.veth57871859.accept_redirects = 1 +net.ipv6.conf.veth57871859.accept_source_route = 0 +net.ipv6.conf.veth57871859.addr_gen_mode = 0 +net.ipv6.conf.veth57871859.autoconf = 1 +net.ipv6.conf.veth57871859.dad_transmits = 1 +net.ipv6.conf.veth57871859.disable_ipv6 = 1 +net.ipv6.conf.veth57871859.disable_policy = 0 +net.ipv6.conf.veth57871859.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.veth57871859.drop_unsolicited_na = 0 +net.ipv6.conf.veth57871859.enhanced_dad = 1 +net.ipv6.conf.veth57871859.force_mld_version = 0 +net.ipv6.conf.veth57871859.force_tllao = 0 +net.ipv6.conf.veth57871859.forwarding = 1 +net.ipv6.conf.veth57871859.hop_limit = 64 +net.ipv6.conf.veth57871859.ignore_routes_with_linkdown = 0 +net.ipv6.conf.veth57871859.keep_addr_on_down = 0 +net.ipv6.conf.veth57871859.max_addresses = 16 +net.ipv6.conf.veth57871859.max_desync_factor = 600 +net.ipv6.conf.veth57871859.mc_forwarding = 0 +net.ipv6.conf.veth57871859.mldv1_unsolicited_report_interval = 10000 +net.ipv6.conf.veth57871859.mldv2_unsolicited_report_interval = 1000 +net.ipv6.conf.veth57871859.mtu = 1500 +net.ipv6.conf.veth57871859.ndisc_notify = 0 +net.ipv6.conf.veth57871859.ndisc_tclass = 0 +net.ipv6.conf.veth57871859.optimistic_dad = 0 +net.ipv6.conf.veth57871859.proxy_ndp = 0 +net.ipv6.conf.veth57871859.regen_max_retry = 3 +net.ipv6.conf.veth57871859.router_probe_interval = 60 +net.ipv6.conf.veth57871859.router_solicitation_delay = 1 +net.ipv6.conf.veth57871859.router_solicitation_interval = 4 +net.ipv6.conf.veth57871859.router_solicitation_max_interval = 3600 +net.ipv6.conf.veth57871859.router_solicitations = -1 +net.ipv6.conf.veth57871859.seg6_enabled = 0 +net.ipv6.conf.veth57871859.suppress_frag_ndisc = 1 +net.ipv6.conf.veth57871859.temp_prefered_lft = 86400 +net.ipv6.conf.veth57871859.temp_valid_lft = 604800 +net.ipv6.conf.veth57871859.use_oif_addrs_only = 0 +net.ipv6.conf.veth57871859.use_optimistic = 0 +net.ipv6.conf.veth57871859.use_tempaddr = 0 +net.ipv6.conf.veth61f76055.accept_dad = 1 +net.ipv6.conf.veth61f76055.accept_ra = 0 +net.ipv6.conf.veth61f76055.accept_ra_defrtr = 1 +net.ipv6.conf.veth61f76055.accept_ra_from_local = 0 +net.ipv6.conf.veth61f76055.accept_ra_min_hop_limit = 1 +net.ipv6.conf.veth61f76055.accept_ra_mtu = 1 +net.ipv6.conf.veth61f76055.accept_ra_pinfo = 1 +net.ipv6.conf.veth61f76055.accept_ra_rt_info_max_plen = 0 +net.ipv6.conf.veth61f76055.accept_ra_rt_info_min_plen = 0 +net.ipv6.conf.veth61f76055.accept_ra_rtr_pref = 1 +net.ipv6.conf.veth61f76055.accept_redirects = 1 +net.ipv6.conf.veth61f76055.accept_source_route = 0 +net.ipv6.conf.veth61f76055.addr_gen_mode = 0 +net.ipv6.conf.veth61f76055.autoconf = 1 +net.ipv6.conf.veth61f76055.dad_transmits = 1 +net.ipv6.conf.veth61f76055.disable_ipv6 = 1 +net.ipv6.conf.veth61f76055.disable_policy = 0 +net.ipv6.conf.veth61f76055.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.veth61f76055.drop_unsolicited_na = 0 +net.ipv6.conf.veth61f76055.enhanced_dad = 1 +net.ipv6.conf.veth61f76055.force_mld_version = 0 +net.ipv6.conf.veth61f76055.force_tllao = 0 +net.ipv6.conf.veth61f76055.forwarding = 1 +net.ipv6.conf.veth61f76055.hop_limit = 64 +net.ipv6.conf.veth61f76055.ignore_routes_with_linkdown = 0 +net.ipv6.conf.veth61f76055.keep_addr_on_down = 0 +net.ipv6.conf.veth61f76055.max_addresses = 16 +net.ipv6.conf.veth61f76055.max_desync_factor = 600 +net.ipv6.conf.veth61f76055.mc_forwarding = 0 +net.ipv6.conf.veth61f76055.mldv1_unsolicited_report_interval = 10000 +net.ipv6.conf.veth61f76055.mldv2_unsolicited_report_interval = 1000 +net.ipv6.conf.veth61f76055.mtu = 1500 +net.ipv6.conf.veth61f76055.ndisc_notify = 0 +net.ipv6.conf.veth61f76055.ndisc_tclass = 0 +net.ipv6.conf.veth61f76055.optimistic_dad = 0 +net.ipv6.conf.veth61f76055.proxy_ndp = 0 +net.ipv6.conf.veth61f76055.regen_max_retry = 3 +net.ipv6.conf.veth61f76055.router_probe_interval = 60 +net.ipv6.conf.veth61f76055.router_solicitation_delay = 1 +net.ipv6.conf.veth61f76055.router_solicitation_interval = 4 +net.ipv6.conf.veth61f76055.router_solicitation_max_interval = 3600 +net.ipv6.conf.veth61f76055.router_solicitations = -1 +net.ipv6.conf.veth61f76055.seg6_enabled = 0 +net.ipv6.conf.veth61f76055.suppress_frag_ndisc = 1 +net.ipv6.conf.veth61f76055.temp_prefered_lft = 86400 +net.ipv6.conf.veth61f76055.temp_valid_lft = 604800 +net.ipv6.conf.veth61f76055.use_oif_addrs_only = 0 +net.ipv6.conf.veth61f76055.use_optimistic = 0 +net.ipv6.conf.veth61f76055.use_tempaddr = 0 +net.ipv6.conf.veth67de6880.accept_dad = 1 +net.ipv6.conf.veth67de6880.accept_ra = 0 +net.ipv6.conf.veth67de6880.accept_ra_defrtr = 1 +net.ipv6.conf.veth67de6880.accept_ra_from_local = 0 +net.ipv6.conf.veth67de6880.accept_ra_min_hop_limit = 1 +net.ipv6.conf.veth67de6880.accept_ra_mtu = 1 +net.ipv6.conf.veth67de6880.accept_ra_pinfo = 1 +net.ipv6.conf.veth67de6880.accept_ra_rt_info_max_plen = 0 +net.ipv6.conf.veth67de6880.accept_ra_rt_info_min_plen = 0 +net.ipv6.conf.veth67de6880.accept_ra_rtr_pref = 1 +net.ipv6.conf.veth67de6880.accept_redirects = 1 +net.ipv6.conf.veth67de6880.accept_source_route = 0 +net.ipv6.conf.veth67de6880.addr_gen_mode = 0 +net.ipv6.conf.veth67de6880.autoconf = 1 +net.ipv6.conf.veth67de6880.dad_transmits = 1 +net.ipv6.conf.veth67de6880.disable_ipv6 = 1 +net.ipv6.conf.veth67de6880.disable_policy = 0 +net.ipv6.conf.veth67de6880.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.veth67de6880.drop_unsolicited_na = 0 +net.ipv6.conf.veth67de6880.enhanced_dad = 1 +net.ipv6.conf.veth67de6880.force_mld_version = 0 +net.ipv6.conf.veth67de6880.force_tllao = 0 +net.ipv6.conf.veth67de6880.forwarding = 1 +net.ipv6.conf.veth67de6880.hop_limit = 64 +net.ipv6.conf.veth67de6880.ignore_routes_with_linkdown = 0 +net.ipv6.conf.veth67de6880.keep_addr_on_down = 0 +net.ipv6.conf.veth67de6880.max_addresses = 16 +net.ipv6.conf.veth67de6880.max_desync_factor = 600 +net.ipv6.conf.veth67de6880.mc_forwarding = 0 +net.ipv6.conf.veth67de6880.mldv1_unsolicited_report_interval = 10000 +net.ipv6.conf.veth67de6880.mldv2_unsolicited_report_interval = 1000 +net.ipv6.conf.veth67de6880.mtu = 1500 +net.ipv6.conf.veth67de6880.ndisc_notify = 0 +net.ipv6.conf.veth67de6880.ndisc_tclass = 0 +net.ipv6.conf.veth67de6880.optimistic_dad = 0 +net.ipv6.conf.veth67de6880.proxy_ndp = 0 +net.ipv6.conf.veth67de6880.regen_max_retry = 3 +net.ipv6.conf.veth67de6880.router_probe_interval = 60 +net.ipv6.conf.veth67de6880.router_solicitation_delay = 1 +net.ipv6.conf.veth67de6880.router_solicitation_interval = 4 +net.ipv6.conf.veth67de6880.router_solicitation_max_interval = 3600 +net.ipv6.conf.veth67de6880.router_solicitations = -1 +net.ipv6.conf.veth67de6880.seg6_enabled = 0 +net.ipv6.conf.veth67de6880.suppress_frag_ndisc = 1 +net.ipv6.conf.veth67de6880.temp_prefered_lft = 86400 +net.ipv6.conf.veth67de6880.temp_valid_lft = 604800 +net.ipv6.conf.veth67de6880.use_oif_addrs_only = 0 +net.ipv6.conf.veth67de6880.use_optimistic = 0 +net.ipv6.conf.veth67de6880.use_tempaddr = 0 +net.ipv6.conf.veth67e3da0.accept_dad = 1 +net.ipv6.conf.veth67e3da0.accept_ra = 2 +net.ipv6.conf.veth67e3da0.accept_ra_defrtr = 1 +net.ipv6.conf.veth67e3da0.accept_ra_from_local = 0 +net.ipv6.conf.veth67e3da0.accept_ra_min_hop_limit = 1 +net.ipv6.conf.veth67e3da0.accept_ra_mtu = 1 +net.ipv6.conf.veth67e3da0.accept_ra_pinfo = 1 +net.ipv6.conf.veth67e3da0.accept_ra_rt_info_max_plen = 0 +net.ipv6.conf.veth67e3da0.accept_ra_rt_info_min_plen = 0 +net.ipv6.conf.veth67e3da0.accept_ra_rtr_pref = 1 +net.ipv6.conf.veth67e3da0.accept_redirects = 1 +net.ipv6.conf.veth67e3da0.accept_source_route = 0 +net.ipv6.conf.veth67e3da0.addr_gen_mode = 0 +net.ipv6.conf.veth67e3da0.autoconf = 1 +net.ipv6.conf.veth67e3da0.dad_transmits = 1 +net.ipv6.conf.veth67e3da0.disable_ipv6 = 0 +net.ipv6.conf.veth67e3da0.disable_policy = 0 +net.ipv6.conf.veth67e3da0.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.veth67e3da0.drop_unsolicited_na = 0 +net.ipv6.conf.veth67e3da0.enhanced_dad = 1 +net.ipv6.conf.veth67e3da0.force_mld_version = 0 +net.ipv6.conf.veth67e3da0.force_tllao = 0 +net.ipv6.conf.veth67e3da0.forwarding = 1 +net.ipv6.conf.veth67e3da0.hop_limit = 64 +net.ipv6.conf.veth67e3da0.ignore_routes_with_linkdown = 0 +net.ipv6.conf.veth67e3da0.keep_addr_on_down = 0 +net.ipv6.conf.veth67e3da0.max_addresses = 16 +net.ipv6.conf.veth67e3da0.max_desync_factor = 600 +net.ipv6.conf.veth67e3da0.mc_forwarding = 0 +net.ipv6.conf.veth67e3da0.mldv1_unsolicited_report_interval = 10000 +net.ipv6.conf.veth67e3da0.mldv2_unsolicited_report_interval = 1000 +net.ipv6.conf.veth67e3da0.mtu = 1500 +net.ipv6.conf.veth67e3da0.ndisc_notify = 0 +net.ipv6.conf.veth67e3da0.ndisc_tclass = 0 +net.ipv6.conf.veth67e3da0.optimistic_dad = 0 +net.ipv6.conf.veth67e3da0.proxy_ndp = 0 +net.ipv6.conf.veth67e3da0.regen_max_retry = 3 +net.ipv6.conf.veth67e3da0.router_probe_interval = 60 +net.ipv6.conf.veth67e3da0.router_solicitation_delay = 1 +net.ipv6.conf.veth67e3da0.router_solicitation_interval = 4 +net.ipv6.conf.veth67e3da0.router_solicitation_max_interval = 3600 +net.ipv6.conf.veth67e3da0.router_solicitations = -1 +net.ipv6.conf.veth67e3da0.seg6_enabled = 0 +net.ipv6.conf.veth67e3da0.suppress_frag_ndisc = 1 +net.ipv6.conf.veth67e3da0.temp_prefered_lft = 86400 +net.ipv6.conf.veth67e3da0.temp_valid_lft = 604800 +net.ipv6.conf.veth67e3da0.use_oif_addrs_only = 0 +net.ipv6.conf.veth67e3da0.use_optimistic = 0 +net.ipv6.conf.veth67e3da0.use_tempaddr = 0 +net.ipv6.conf.vetha245bad8.accept_dad = 1 +net.ipv6.conf.vetha245bad8.accept_ra = 0 +net.ipv6.conf.vetha245bad8.accept_ra_defrtr = 1 +net.ipv6.conf.vetha245bad8.accept_ra_from_local = 0 +net.ipv6.conf.vetha245bad8.accept_ra_min_hop_limit = 1 +net.ipv6.conf.vetha245bad8.accept_ra_mtu = 1 +net.ipv6.conf.vetha245bad8.accept_ra_pinfo = 1 +net.ipv6.conf.vetha245bad8.accept_ra_rt_info_max_plen = 0 +net.ipv6.conf.vetha245bad8.accept_ra_rt_info_min_plen = 0 +net.ipv6.conf.vetha245bad8.accept_ra_rtr_pref = 1 +net.ipv6.conf.vetha245bad8.accept_redirects = 1 +net.ipv6.conf.vetha245bad8.accept_source_route = 0 +net.ipv6.conf.vetha245bad8.addr_gen_mode = 0 +net.ipv6.conf.vetha245bad8.autoconf = 1 +net.ipv6.conf.vetha245bad8.dad_transmits = 1 +net.ipv6.conf.vetha245bad8.disable_ipv6 = 1 +net.ipv6.conf.vetha245bad8.disable_policy = 0 +net.ipv6.conf.vetha245bad8.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.vetha245bad8.drop_unsolicited_na = 0 +net.ipv6.conf.vetha245bad8.enhanced_dad = 1 +net.ipv6.conf.vetha245bad8.force_mld_version = 0 +net.ipv6.conf.vetha245bad8.force_tllao = 0 +net.ipv6.conf.vetha245bad8.forwarding = 1 +net.ipv6.conf.vetha245bad8.hop_limit = 64 +net.ipv6.conf.vetha245bad8.ignore_routes_with_linkdown = 0 +net.ipv6.conf.vetha245bad8.keep_addr_on_down = 0 +net.ipv6.conf.vetha245bad8.max_addresses = 16 +net.ipv6.conf.vetha245bad8.max_desync_factor = 600 +net.ipv6.conf.vetha245bad8.mc_forwarding = 0 +net.ipv6.conf.vetha245bad8.mldv1_unsolicited_report_interval = 10000 +net.ipv6.conf.vetha245bad8.mldv2_unsolicited_report_interval = 1000 +net.ipv6.conf.vetha245bad8.mtu = 1500 +net.ipv6.conf.vetha245bad8.ndisc_notify = 0 +net.ipv6.conf.vetha245bad8.ndisc_tclass = 0 +net.ipv6.conf.vetha245bad8.optimistic_dad = 0 +net.ipv6.conf.vetha245bad8.proxy_ndp = 0 +net.ipv6.conf.vetha245bad8.regen_max_retry = 3 +net.ipv6.conf.vetha245bad8.router_probe_interval = 60 +net.ipv6.conf.vetha245bad8.router_solicitation_delay = 1 +net.ipv6.conf.vetha245bad8.router_solicitation_interval = 4 +net.ipv6.conf.vetha245bad8.router_solicitation_max_interval = 3600 +net.ipv6.conf.vetha245bad8.router_solicitations = -1 +net.ipv6.conf.vetha245bad8.seg6_enabled = 0 +net.ipv6.conf.vetha245bad8.suppress_frag_ndisc = 1 +net.ipv6.conf.vetha245bad8.temp_prefered_lft = 86400 +net.ipv6.conf.vetha245bad8.temp_valid_lft = 604800 +net.ipv6.conf.vetha245bad8.use_oif_addrs_only = 0 +net.ipv6.conf.vetha245bad8.use_optimistic = 0 +net.ipv6.conf.vetha245bad8.use_tempaddr = 0 +net.ipv6.conf.vetha67e3445.accept_dad = 1 +net.ipv6.conf.vetha67e3445.accept_ra = 0 +net.ipv6.conf.vetha67e3445.accept_ra_defrtr = 1 +net.ipv6.conf.vetha67e3445.accept_ra_from_local = 0 +net.ipv6.conf.vetha67e3445.accept_ra_min_hop_limit = 1 +net.ipv6.conf.vetha67e3445.accept_ra_mtu = 1 +net.ipv6.conf.vetha67e3445.accept_ra_pinfo = 1 +net.ipv6.conf.vetha67e3445.accept_ra_rt_info_max_plen = 0 +net.ipv6.conf.vetha67e3445.accept_ra_rt_info_min_plen = 0 +net.ipv6.conf.vetha67e3445.accept_ra_rtr_pref = 1 +net.ipv6.conf.vetha67e3445.accept_redirects = 1 +net.ipv6.conf.vetha67e3445.accept_source_route = 0 +net.ipv6.conf.vetha67e3445.addr_gen_mode = 0 +net.ipv6.conf.vetha67e3445.autoconf = 1 +net.ipv6.conf.vetha67e3445.dad_transmits = 1 +net.ipv6.conf.vetha67e3445.disable_ipv6 = 1 +net.ipv6.conf.vetha67e3445.disable_policy = 0 +net.ipv6.conf.vetha67e3445.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.vetha67e3445.drop_unsolicited_na = 0 +net.ipv6.conf.vetha67e3445.enhanced_dad = 1 +net.ipv6.conf.vetha67e3445.force_mld_version = 0 +net.ipv6.conf.vetha67e3445.force_tllao = 0 +net.ipv6.conf.vetha67e3445.forwarding = 1 +net.ipv6.conf.vetha67e3445.hop_limit = 64 +net.ipv6.conf.vetha67e3445.ignore_routes_with_linkdown = 0 +net.ipv6.conf.vetha67e3445.keep_addr_on_down = 0 +net.ipv6.conf.vetha67e3445.max_addresses = 16 +net.ipv6.conf.vetha67e3445.max_desync_factor = 600 +net.ipv6.conf.vetha67e3445.mc_forwarding = 0 +net.ipv6.conf.vetha67e3445.mldv1_unsolicited_report_interval = 10000 +net.ipv6.conf.vetha67e3445.mldv2_unsolicited_report_interval = 1000 +net.ipv6.conf.vetha67e3445.mtu = 1500 +net.ipv6.conf.vetha67e3445.ndisc_notify = 0 +net.ipv6.conf.vetha67e3445.ndisc_tclass = 0 +net.ipv6.conf.vetha67e3445.optimistic_dad = 0 +net.ipv6.conf.vetha67e3445.proxy_ndp = 0 +net.ipv6.conf.vetha67e3445.regen_max_retry = 3 +net.ipv6.conf.vetha67e3445.router_probe_interval = 60 +net.ipv6.conf.vetha67e3445.router_solicitation_delay = 1 +net.ipv6.conf.vetha67e3445.router_solicitation_interval = 4 +net.ipv6.conf.vetha67e3445.router_solicitation_max_interval = 3600 +net.ipv6.conf.vetha67e3445.router_solicitations = -1 +net.ipv6.conf.vetha67e3445.seg6_enabled = 0 +net.ipv6.conf.vetha67e3445.suppress_frag_ndisc = 1 +net.ipv6.conf.vetha67e3445.temp_prefered_lft = 86400 +net.ipv6.conf.vetha67e3445.temp_valid_lft = 604800 +net.ipv6.conf.vetha67e3445.use_oif_addrs_only = 0 +net.ipv6.conf.vetha67e3445.use_optimistic = 0 +net.ipv6.conf.vetha67e3445.use_tempaddr = 0 +net.ipv6.conf.vethaa8f4de.accept_dad = 1 +net.ipv6.conf.vethaa8f4de.accept_ra = 2 +net.ipv6.conf.vethaa8f4de.accept_ra_defrtr = 1 +net.ipv6.conf.vethaa8f4de.accept_ra_from_local = 0 +net.ipv6.conf.vethaa8f4de.accept_ra_min_hop_limit = 1 +net.ipv6.conf.vethaa8f4de.accept_ra_mtu = 1 +net.ipv6.conf.vethaa8f4de.accept_ra_pinfo = 1 +net.ipv6.conf.vethaa8f4de.accept_ra_rt_info_max_plen = 0 +net.ipv6.conf.vethaa8f4de.accept_ra_rt_info_min_plen = 0 +net.ipv6.conf.vethaa8f4de.accept_ra_rtr_pref = 1 +net.ipv6.conf.vethaa8f4de.accept_redirects = 1 +net.ipv6.conf.vethaa8f4de.accept_source_route = 0 +net.ipv6.conf.vethaa8f4de.addr_gen_mode = 0 +net.ipv6.conf.vethaa8f4de.autoconf = 1 +net.ipv6.conf.vethaa8f4de.dad_transmits = 1 +net.ipv6.conf.vethaa8f4de.disable_ipv6 = 0 +net.ipv6.conf.vethaa8f4de.disable_policy = 0 +net.ipv6.conf.vethaa8f4de.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.vethaa8f4de.drop_unsolicited_na = 0 +net.ipv6.conf.vethaa8f4de.enhanced_dad = 1 +net.ipv6.conf.vethaa8f4de.force_mld_version = 0 +net.ipv6.conf.vethaa8f4de.force_tllao = 0 +net.ipv6.conf.vethaa8f4de.forwarding = 1 +net.ipv6.conf.vethaa8f4de.hop_limit = 64 +net.ipv6.conf.vethaa8f4de.ignore_routes_with_linkdown = 0 +net.ipv6.conf.vethaa8f4de.keep_addr_on_down = 0 +net.ipv6.conf.vethaa8f4de.max_addresses = 16 +net.ipv6.conf.vethaa8f4de.max_desync_factor = 600 +net.ipv6.conf.vethaa8f4de.mc_forwarding = 0 +net.ipv6.conf.vethaa8f4de.mldv1_unsolicited_report_interval = 10000 +net.ipv6.conf.vethaa8f4de.mldv2_unsolicited_report_interval = 1000 +net.ipv6.conf.vethaa8f4de.mtu = 1500 +net.ipv6.conf.vethaa8f4de.ndisc_notify = 0 +net.ipv6.conf.vethaa8f4de.ndisc_tclass = 0 +net.ipv6.conf.vethaa8f4de.optimistic_dad = 0 +net.ipv6.conf.vethaa8f4de.proxy_ndp = 0 +net.ipv6.conf.vethaa8f4de.regen_max_retry = 3 +net.ipv6.conf.vethaa8f4de.router_probe_interval = 60 +net.ipv6.conf.vethaa8f4de.router_solicitation_delay = 1 +net.ipv6.conf.vethaa8f4de.router_solicitation_interval = 4 +net.ipv6.conf.vethaa8f4de.router_solicitation_max_interval = 3600 +net.ipv6.conf.vethaa8f4de.router_solicitations = -1 +net.ipv6.conf.vethaa8f4de.seg6_enabled = 0 +net.ipv6.conf.vethaa8f4de.suppress_frag_ndisc = 1 +net.ipv6.conf.vethaa8f4de.temp_prefered_lft = 86400 +net.ipv6.conf.vethaa8f4de.temp_valid_lft = 604800 +net.ipv6.conf.vethaa8f4de.use_oif_addrs_only = 0 +net.ipv6.conf.vethaa8f4de.use_optimistic = 0 +net.ipv6.conf.vethaa8f4de.use_tempaddr = 0 +net.ipv6.conf.vethad45a55a.accept_dad = 1 +net.ipv6.conf.vethad45a55a.accept_ra = 0 +net.ipv6.conf.vethad45a55a.accept_ra_defrtr = 1 +net.ipv6.conf.vethad45a55a.accept_ra_from_local = 0 +net.ipv6.conf.vethad45a55a.accept_ra_min_hop_limit = 1 +net.ipv6.conf.vethad45a55a.accept_ra_mtu = 1 +net.ipv6.conf.vethad45a55a.accept_ra_pinfo = 1 +net.ipv6.conf.vethad45a55a.accept_ra_rt_info_max_plen = 0 +net.ipv6.conf.vethad45a55a.accept_ra_rt_info_min_plen = 0 +net.ipv6.conf.vethad45a55a.accept_ra_rtr_pref = 1 +net.ipv6.conf.vethad45a55a.accept_redirects = 1 +net.ipv6.conf.vethad45a55a.accept_source_route = 0 +net.ipv6.conf.vethad45a55a.addr_gen_mode = 0 +net.ipv6.conf.vethad45a55a.autoconf = 1 +net.ipv6.conf.vethad45a55a.dad_transmits = 1 +net.ipv6.conf.vethad45a55a.disable_ipv6 = 1 +net.ipv6.conf.vethad45a55a.disable_policy = 0 +net.ipv6.conf.vethad45a55a.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.vethad45a55a.drop_unsolicited_na = 0 +net.ipv6.conf.vethad45a55a.enhanced_dad = 1 +net.ipv6.conf.vethad45a55a.force_mld_version = 0 +net.ipv6.conf.vethad45a55a.force_tllao = 0 +net.ipv6.conf.vethad45a55a.forwarding = 1 +net.ipv6.conf.vethad45a55a.hop_limit = 64 +net.ipv6.conf.vethad45a55a.ignore_routes_with_linkdown = 0 +net.ipv6.conf.vethad45a55a.keep_addr_on_down = 0 +net.ipv6.conf.vethad45a55a.max_addresses = 16 +net.ipv6.conf.vethad45a55a.max_desync_factor = 600 +net.ipv6.conf.vethad45a55a.mc_forwarding = 0 +net.ipv6.conf.vethad45a55a.mldv1_unsolicited_report_interval = 10000 +net.ipv6.conf.vethad45a55a.mldv2_unsolicited_report_interval = 1000 +net.ipv6.conf.vethad45a55a.mtu = 1500 +net.ipv6.conf.vethad45a55a.ndisc_notify = 0 +net.ipv6.conf.vethad45a55a.ndisc_tclass = 0 +net.ipv6.conf.vethad45a55a.optimistic_dad = 0 +net.ipv6.conf.vethad45a55a.proxy_ndp = 0 +net.ipv6.conf.vethad45a55a.regen_max_retry = 3 +net.ipv6.conf.vethad45a55a.router_probe_interval = 60 +net.ipv6.conf.vethad45a55a.router_solicitation_delay = 1 +net.ipv6.conf.vethad45a55a.router_solicitation_interval = 4 +net.ipv6.conf.vethad45a55a.router_solicitation_max_interval = 3600 +net.ipv6.conf.vethad45a55a.router_solicitations = -1 +net.ipv6.conf.vethad45a55a.seg6_enabled = 0 +net.ipv6.conf.vethad45a55a.suppress_frag_ndisc = 1 +net.ipv6.conf.vethad45a55a.temp_prefered_lft = 86400 +net.ipv6.conf.vethad45a55a.temp_valid_lft = 604800 +net.ipv6.conf.vethad45a55a.use_oif_addrs_only = 0 +net.ipv6.conf.vethad45a55a.use_optimistic = 0 +net.ipv6.conf.vethad45a55a.use_tempaddr = 0 +net.ipv6.conf.vethb2e8fb78.accept_dad = 1 +net.ipv6.conf.vethb2e8fb78.accept_ra = 0 +net.ipv6.conf.vethb2e8fb78.accept_ra_defrtr = 1 +net.ipv6.conf.vethb2e8fb78.accept_ra_from_local = 0 +net.ipv6.conf.vethb2e8fb78.accept_ra_min_hop_limit = 1 +net.ipv6.conf.vethb2e8fb78.accept_ra_mtu = 1 +net.ipv6.conf.vethb2e8fb78.accept_ra_pinfo = 1 +net.ipv6.conf.vethb2e8fb78.accept_ra_rt_info_max_plen = 0 +net.ipv6.conf.vethb2e8fb78.accept_ra_rt_info_min_plen = 0 +net.ipv6.conf.vethb2e8fb78.accept_ra_rtr_pref = 1 +net.ipv6.conf.vethb2e8fb78.accept_redirects = 1 +net.ipv6.conf.vethb2e8fb78.accept_source_route = 0 +net.ipv6.conf.vethb2e8fb78.addr_gen_mode = 0 +net.ipv6.conf.vethb2e8fb78.autoconf = 1 +net.ipv6.conf.vethb2e8fb78.dad_transmits = 1 +net.ipv6.conf.vethb2e8fb78.disable_ipv6 = 1 +net.ipv6.conf.vethb2e8fb78.disable_policy = 0 +net.ipv6.conf.vethb2e8fb78.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.vethb2e8fb78.drop_unsolicited_na = 0 +net.ipv6.conf.vethb2e8fb78.enhanced_dad = 1 +net.ipv6.conf.vethb2e8fb78.force_mld_version = 0 +net.ipv6.conf.vethb2e8fb78.force_tllao = 0 +net.ipv6.conf.vethb2e8fb78.forwarding = 1 +net.ipv6.conf.vethb2e8fb78.hop_limit = 64 +net.ipv6.conf.vethb2e8fb78.ignore_routes_with_linkdown = 0 +net.ipv6.conf.vethb2e8fb78.keep_addr_on_down = 0 +net.ipv6.conf.vethb2e8fb78.max_addresses = 16 +net.ipv6.conf.vethb2e8fb78.max_desync_factor = 600 +net.ipv6.conf.vethb2e8fb78.mc_forwarding = 0 +net.ipv6.conf.vethb2e8fb78.mldv1_unsolicited_report_interval = 10000 +net.ipv6.conf.vethb2e8fb78.mldv2_unsolicited_report_interval = 1000 +net.ipv6.conf.vethb2e8fb78.mtu = 1500 +net.ipv6.conf.vethb2e8fb78.ndisc_notify = 0 +net.ipv6.conf.vethb2e8fb78.ndisc_tclass = 0 +net.ipv6.conf.vethb2e8fb78.optimistic_dad = 0 +net.ipv6.conf.vethb2e8fb78.proxy_ndp = 0 +net.ipv6.conf.vethb2e8fb78.regen_max_retry = 3 +net.ipv6.conf.vethb2e8fb78.router_probe_interval = 60 +net.ipv6.conf.vethb2e8fb78.router_solicitation_delay = 1 +net.ipv6.conf.vethb2e8fb78.router_solicitation_interval = 4 +net.ipv6.conf.vethb2e8fb78.router_solicitation_max_interval = 3600 +net.ipv6.conf.vethb2e8fb78.router_solicitations = -1 +net.ipv6.conf.vethb2e8fb78.seg6_enabled = 0 +net.ipv6.conf.vethb2e8fb78.suppress_frag_ndisc = 1 +net.ipv6.conf.vethb2e8fb78.temp_prefered_lft = 86400 +net.ipv6.conf.vethb2e8fb78.temp_valid_lft = 604800 +net.ipv6.conf.vethb2e8fb78.use_oif_addrs_only = 0 +net.ipv6.conf.vethb2e8fb78.use_optimistic = 0 +net.ipv6.conf.vethb2e8fb78.use_tempaddr = 0 +net.ipv6.conf.vethb9d2af0d.accept_dad = 1 +net.ipv6.conf.vethb9d2af0d.accept_ra = 0 +net.ipv6.conf.vethb9d2af0d.accept_ra_defrtr = 1 +net.ipv6.conf.vethb9d2af0d.accept_ra_from_local = 0 +net.ipv6.conf.vethb9d2af0d.accept_ra_min_hop_limit = 1 +net.ipv6.conf.vethb9d2af0d.accept_ra_mtu = 1 +net.ipv6.conf.vethb9d2af0d.accept_ra_pinfo = 1 +net.ipv6.conf.vethb9d2af0d.accept_ra_rt_info_max_plen = 0 +net.ipv6.conf.vethb9d2af0d.accept_ra_rt_info_min_plen = 0 +net.ipv6.conf.vethb9d2af0d.accept_ra_rtr_pref = 1 +net.ipv6.conf.vethb9d2af0d.accept_redirects = 1 +net.ipv6.conf.vethb9d2af0d.accept_source_route = 0 +net.ipv6.conf.vethb9d2af0d.addr_gen_mode = 0 +net.ipv6.conf.vethb9d2af0d.autoconf = 1 +net.ipv6.conf.vethb9d2af0d.dad_transmits = 1 +net.ipv6.conf.vethb9d2af0d.disable_ipv6 = 1 +net.ipv6.conf.vethb9d2af0d.disable_policy = 0 +net.ipv6.conf.vethb9d2af0d.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.vethb9d2af0d.drop_unsolicited_na = 0 +net.ipv6.conf.vethb9d2af0d.enhanced_dad = 1 +net.ipv6.conf.vethb9d2af0d.force_mld_version = 0 +net.ipv6.conf.vethb9d2af0d.force_tllao = 0 +net.ipv6.conf.vethb9d2af0d.forwarding = 1 +net.ipv6.conf.vethb9d2af0d.hop_limit = 64 +net.ipv6.conf.vethb9d2af0d.ignore_routes_with_linkdown = 0 +net.ipv6.conf.vethb9d2af0d.keep_addr_on_down = 0 +net.ipv6.conf.vethb9d2af0d.max_addresses = 16 +net.ipv6.conf.vethb9d2af0d.max_desync_factor = 600 +net.ipv6.conf.vethb9d2af0d.mc_forwarding = 0 +net.ipv6.conf.vethb9d2af0d.mldv1_unsolicited_report_interval = 10000 +net.ipv6.conf.vethb9d2af0d.mldv2_unsolicited_report_interval = 1000 +net.ipv6.conf.vethb9d2af0d.mtu = 1500 +net.ipv6.conf.vethb9d2af0d.ndisc_notify = 0 +net.ipv6.conf.vethb9d2af0d.ndisc_tclass = 0 +net.ipv6.conf.vethb9d2af0d.optimistic_dad = 0 +net.ipv6.conf.vethb9d2af0d.proxy_ndp = 0 +net.ipv6.conf.vethb9d2af0d.regen_max_retry = 3 +net.ipv6.conf.vethb9d2af0d.router_probe_interval = 60 +net.ipv6.conf.vethb9d2af0d.router_solicitation_delay = 1 +net.ipv6.conf.vethb9d2af0d.router_solicitation_interval = 4 +net.ipv6.conf.vethb9d2af0d.router_solicitation_max_interval = 3600 +net.ipv6.conf.vethb9d2af0d.router_solicitations = -1 +net.ipv6.conf.vethb9d2af0d.seg6_enabled = 0 +net.ipv6.conf.vethb9d2af0d.suppress_frag_ndisc = 1 +net.ipv6.conf.vethb9d2af0d.temp_prefered_lft = 86400 +net.ipv6.conf.vethb9d2af0d.temp_valid_lft = 604800 +net.ipv6.conf.vethb9d2af0d.use_oif_addrs_only = 0 +net.ipv6.conf.vethb9d2af0d.use_optimistic = 0 +net.ipv6.conf.vethb9d2af0d.use_tempaddr = 0 +net.ipv6.conf.vethc33cb528.accept_dad = 1 +net.ipv6.conf.vethc33cb528.accept_ra = 0 +net.ipv6.conf.vethc33cb528.accept_ra_defrtr = 1 +net.ipv6.conf.vethc33cb528.accept_ra_from_local = 0 +net.ipv6.conf.vethc33cb528.accept_ra_min_hop_limit = 1 +net.ipv6.conf.vethc33cb528.accept_ra_mtu = 1 +net.ipv6.conf.vethc33cb528.accept_ra_pinfo = 1 +net.ipv6.conf.vethc33cb528.accept_ra_rt_info_max_plen = 0 +net.ipv6.conf.vethc33cb528.accept_ra_rt_info_min_plen = 0 +net.ipv6.conf.vethc33cb528.accept_ra_rtr_pref = 1 +net.ipv6.conf.vethc33cb528.accept_redirects = 1 +net.ipv6.conf.vethc33cb528.accept_source_route = 0 +net.ipv6.conf.vethc33cb528.addr_gen_mode = 0 +net.ipv6.conf.vethc33cb528.autoconf = 1 +net.ipv6.conf.vethc33cb528.dad_transmits = 1 +net.ipv6.conf.vethc33cb528.disable_ipv6 = 1 +net.ipv6.conf.vethc33cb528.disable_policy = 0 +net.ipv6.conf.vethc33cb528.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.vethc33cb528.drop_unsolicited_na = 0 +net.ipv6.conf.vethc33cb528.enhanced_dad = 1 +net.ipv6.conf.vethc33cb528.force_mld_version = 0 +net.ipv6.conf.vethc33cb528.force_tllao = 0 +net.ipv6.conf.vethc33cb528.forwarding = 1 +net.ipv6.conf.vethc33cb528.hop_limit = 64 +net.ipv6.conf.vethc33cb528.ignore_routes_with_linkdown = 0 +net.ipv6.conf.vethc33cb528.keep_addr_on_down = 0 +net.ipv6.conf.vethc33cb528.max_addresses = 16 +net.ipv6.conf.vethc33cb528.max_desync_factor = 600 +net.ipv6.conf.vethc33cb528.mc_forwarding = 0 +net.ipv6.conf.vethc33cb528.mldv1_unsolicited_report_interval = 10000 +net.ipv6.conf.vethc33cb528.mldv2_unsolicited_report_interval = 1000 +net.ipv6.conf.vethc33cb528.mtu = 1500 +net.ipv6.conf.vethc33cb528.ndisc_notify = 0 +net.ipv6.conf.vethc33cb528.ndisc_tclass = 0 +net.ipv6.conf.vethc33cb528.optimistic_dad = 0 +net.ipv6.conf.vethc33cb528.proxy_ndp = 0 +net.ipv6.conf.vethc33cb528.regen_max_retry = 3 +net.ipv6.conf.vethc33cb528.router_probe_interval = 60 +net.ipv6.conf.vethc33cb528.router_solicitation_delay = 1 +net.ipv6.conf.vethc33cb528.router_solicitation_interval = 4 +net.ipv6.conf.vethc33cb528.router_solicitation_max_interval = 3600 +net.ipv6.conf.vethc33cb528.router_solicitations = -1 +net.ipv6.conf.vethc33cb528.seg6_enabled = 0 +net.ipv6.conf.vethc33cb528.suppress_frag_ndisc = 1 +net.ipv6.conf.vethc33cb528.temp_prefered_lft = 86400 +net.ipv6.conf.vethc33cb528.temp_valid_lft = 604800 +net.ipv6.conf.vethc33cb528.use_oif_addrs_only = 0 +net.ipv6.conf.vethc33cb528.use_optimistic = 0 +net.ipv6.conf.vethc33cb528.use_tempaddr = 0 +net.ipv6.conf.vethc52473d4.accept_dad = 1 +net.ipv6.conf.vethc52473d4.accept_ra = 0 +net.ipv6.conf.vethc52473d4.accept_ra_defrtr = 1 +net.ipv6.conf.vethc52473d4.accept_ra_from_local = 0 +net.ipv6.conf.vethc52473d4.accept_ra_min_hop_limit = 1 +net.ipv6.conf.vethc52473d4.accept_ra_mtu = 1 +net.ipv6.conf.vethc52473d4.accept_ra_pinfo = 1 +net.ipv6.conf.vethc52473d4.accept_ra_rt_info_max_plen = 0 +net.ipv6.conf.vethc52473d4.accept_ra_rt_info_min_plen = 0 +net.ipv6.conf.vethc52473d4.accept_ra_rtr_pref = 1 +net.ipv6.conf.vethc52473d4.accept_redirects = 1 +net.ipv6.conf.vethc52473d4.accept_source_route = 0 +net.ipv6.conf.vethc52473d4.addr_gen_mode = 0 +net.ipv6.conf.vethc52473d4.autoconf = 1 +net.ipv6.conf.vethc52473d4.dad_transmits = 1 +net.ipv6.conf.vethc52473d4.disable_ipv6 = 1 +net.ipv6.conf.vethc52473d4.disable_policy = 0 +net.ipv6.conf.vethc52473d4.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.vethc52473d4.drop_unsolicited_na = 0 +net.ipv6.conf.vethc52473d4.enhanced_dad = 1 +net.ipv6.conf.vethc52473d4.force_mld_version = 0 +net.ipv6.conf.vethc52473d4.force_tllao = 0 +net.ipv6.conf.vethc52473d4.forwarding = 1 +net.ipv6.conf.vethc52473d4.hop_limit = 64 +net.ipv6.conf.vethc52473d4.ignore_routes_with_linkdown = 0 +net.ipv6.conf.vethc52473d4.keep_addr_on_down = 0 +net.ipv6.conf.vethc52473d4.max_addresses = 16 +net.ipv6.conf.vethc52473d4.max_desync_factor = 600 +net.ipv6.conf.vethc52473d4.mc_forwarding = 0 +net.ipv6.conf.vethc52473d4.mldv1_unsolicited_report_interval = 10000 +net.ipv6.conf.vethc52473d4.mldv2_unsolicited_report_interval = 1000 +net.ipv6.conf.vethc52473d4.mtu = 1500 +net.ipv6.conf.vethc52473d4.ndisc_notify = 0 +net.ipv6.conf.vethc52473d4.ndisc_tclass = 0 +net.ipv6.conf.vethc52473d4.optimistic_dad = 0 +net.ipv6.conf.vethc52473d4.proxy_ndp = 0 +net.ipv6.conf.vethc52473d4.regen_max_retry = 3 +net.ipv6.conf.vethc52473d4.router_probe_interval = 60 +net.ipv6.conf.vethc52473d4.router_solicitation_delay = 1 +net.ipv6.conf.vethc52473d4.router_solicitation_interval = 4 +net.ipv6.conf.vethc52473d4.router_solicitation_max_interval = 3600 +net.ipv6.conf.vethc52473d4.router_solicitations = -1 +net.ipv6.conf.vethc52473d4.seg6_enabled = 0 +net.ipv6.conf.vethc52473d4.suppress_frag_ndisc = 1 +net.ipv6.conf.vethc52473d4.temp_prefered_lft = 86400 +net.ipv6.conf.vethc52473d4.temp_valid_lft = 604800 +net.ipv6.conf.vethc52473d4.use_oif_addrs_only = 0 +net.ipv6.conf.vethc52473d4.use_optimistic = 0 +net.ipv6.conf.vethc52473d4.use_tempaddr = 0 +net.ipv6.conf.vethc532c32b.accept_dad = 1 +net.ipv6.conf.vethc532c32b.accept_ra = 0 +net.ipv6.conf.vethc532c32b.accept_ra_defrtr = 1 +net.ipv6.conf.vethc532c32b.accept_ra_from_local = 0 +net.ipv6.conf.vethc532c32b.accept_ra_min_hop_limit = 1 +net.ipv6.conf.vethc532c32b.accept_ra_mtu = 1 +net.ipv6.conf.vethc532c32b.accept_ra_pinfo = 1 +net.ipv6.conf.vethc532c32b.accept_ra_rt_info_max_plen = 0 +net.ipv6.conf.vethc532c32b.accept_ra_rt_info_min_plen = 0 +net.ipv6.conf.vethc532c32b.accept_ra_rtr_pref = 1 +net.ipv6.conf.vethc532c32b.accept_redirects = 1 +net.ipv6.conf.vethc532c32b.accept_source_route = 0 +net.ipv6.conf.vethc532c32b.addr_gen_mode = 0 +net.ipv6.conf.vethc532c32b.autoconf = 1 +net.ipv6.conf.vethc532c32b.dad_transmits = 1 +net.ipv6.conf.vethc532c32b.disable_ipv6 = 1 +net.ipv6.conf.vethc532c32b.disable_policy = 0 +net.ipv6.conf.vethc532c32b.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.vethc532c32b.drop_unsolicited_na = 0 +net.ipv6.conf.vethc532c32b.enhanced_dad = 1 +net.ipv6.conf.vethc532c32b.force_mld_version = 0 +net.ipv6.conf.vethc532c32b.force_tllao = 0 +net.ipv6.conf.vethc532c32b.forwarding = 1 +net.ipv6.conf.vethc532c32b.hop_limit = 64 +net.ipv6.conf.vethc532c32b.ignore_routes_with_linkdown = 0 +net.ipv6.conf.vethc532c32b.keep_addr_on_down = 0 +net.ipv6.conf.vethc532c32b.max_addresses = 16 +net.ipv6.conf.vethc532c32b.max_desync_factor = 600 +net.ipv6.conf.vethc532c32b.mc_forwarding = 0 +net.ipv6.conf.vethc532c32b.mldv1_unsolicited_report_interval = 10000 +net.ipv6.conf.vethc532c32b.mldv2_unsolicited_report_interval = 1000 +net.ipv6.conf.vethc532c32b.mtu = 1500 +net.ipv6.conf.vethc532c32b.ndisc_notify = 0 +net.ipv6.conf.vethc532c32b.ndisc_tclass = 0 +net.ipv6.conf.vethc532c32b.optimistic_dad = 0 +net.ipv6.conf.vethc532c32b.proxy_ndp = 0 +net.ipv6.conf.vethc532c32b.regen_max_retry = 3 +net.ipv6.conf.vethc532c32b.router_probe_interval = 60 +net.ipv6.conf.vethc532c32b.router_solicitation_delay = 1 +net.ipv6.conf.vethc532c32b.router_solicitation_interval = 4 +net.ipv6.conf.vethc532c32b.router_solicitation_max_interval = 3600 +net.ipv6.conf.vethc532c32b.router_solicitations = -1 +net.ipv6.conf.vethc532c32b.seg6_enabled = 0 +net.ipv6.conf.vethc532c32b.suppress_frag_ndisc = 1 +net.ipv6.conf.vethc532c32b.temp_prefered_lft = 86400 +net.ipv6.conf.vethc532c32b.temp_valid_lft = 604800 +net.ipv6.conf.vethc532c32b.use_oif_addrs_only = 0 +net.ipv6.conf.vethc532c32b.use_optimistic = 0 +net.ipv6.conf.vethc532c32b.use_tempaddr = 0 +net.ipv6.conf.vethce7b9a4d.accept_dad = 1 +net.ipv6.conf.vethce7b9a4d.accept_ra = 0 +net.ipv6.conf.vethce7b9a4d.accept_ra_defrtr = 1 +net.ipv6.conf.vethce7b9a4d.accept_ra_from_local = 0 +net.ipv6.conf.vethce7b9a4d.accept_ra_min_hop_limit = 1 +net.ipv6.conf.vethce7b9a4d.accept_ra_mtu = 1 +net.ipv6.conf.vethce7b9a4d.accept_ra_pinfo = 1 +net.ipv6.conf.vethce7b9a4d.accept_ra_rt_info_max_plen = 0 +net.ipv6.conf.vethce7b9a4d.accept_ra_rt_info_min_plen = 0 +net.ipv6.conf.vethce7b9a4d.accept_ra_rtr_pref = 1 +net.ipv6.conf.vethce7b9a4d.accept_redirects = 1 +net.ipv6.conf.vethce7b9a4d.accept_source_route = 0 +net.ipv6.conf.vethce7b9a4d.addr_gen_mode = 0 +net.ipv6.conf.vethce7b9a4d.autoconf = 1 +net.ipv6.conf.vethce7b9a4d.dad_transmits = 1 +net.ipv6.conf.vethce7b9a4d.disable_ipv6 = 1 +net.ipv6.conf.vethce7b9a4d.disable_policy = 0 +net.ipv6.conf.vethce7b9a4d.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.vethce7b9a4d.drop_unsolicited_na = 0 +net.ipv6.conf.vethce7b9a4d.enhanced_dad = 1 +net.ipv6.conf.vethce7b9a4d.force_mld_version = 0 +net.ipv6.conf.vethce7b9a4d.force_tllao = 0 +net.ipv6.conf.vethce7b9a4d.forwarding = 1 +net.ipv6.conf.vethce7b9a4d.hop_limit = 64 +net.ipv6.conf.vethce7b9a4d.ignore_routes_with_linkdown = 0 +net.ipv6.conf.vethce7b9a4d.keep_addr_on_down = 0 +net.ipv6.conf.vethce7b9a4d.max_addresses = 16 +net.ipv6.conf.vethce7b9a4d.max_desync_factor = 600 +net.ipv6.conf.vethce7b9a4d.mc_forwarding = 0 +net.ipv6.conf.vethce7b9a4d.mldv1_unsolicited_report_interval = 10000 +net.ipv6.conf.vethce7b9a4d.mldv2_unsolicited_report_interval = 1000 +net.ipv6.conf.vethce7b9a4d.mtu = 1500 +net.ipv6.conf.vethce7b9a4d.ndisc_notify = 0 +net.ipv6.conf.vethce7b9a4d.ndisc_tclass = 0 +net.ipv6.conf.vethce7b9a4d.optimistic_dad = 0 +net.ipv6.conf.vethce7b9a4d.proxy_ndp = 0 +net.ipv6.conf.vethce7b9a4d.regen_max_retry = 3 +net.ipv6.conf.vethce7b9a4d.router_probe_interval = 60 +net.ipv6.conf.vethce7b9a4d.router_solicitation_delay = 1 +net.ipv6.conf.vethce7b9a4d.router_solicitation_interval = 4 +net.ipv6.conf.vethce7b9a4d.router_solicitation_max_interval = 3600 +net.ipv6.conf.vethce7b9a4d.router_solicitations = -1 +net.ipv6.conf.vethce7b9a4d.seg6_enabled = 0 +net.ipv6.conf.vethce7b9a4d.suppress_frag_ndisc = 1 +net.ipv6.conf.vethce7b9a4d.temp_prefered_lft = 86400 +net.ipv6.conf.vethce7b9a4d.temp_valid_lft = 604800 +net.ipv6.conf.vethce7b9a4d.use_oif_addrs_only = 0 +net.ipv6.conf.vethce7b9a4d.use_optimistic = 0 +net.ipv6.conf.vethce7b9a4d.use_tempaddr = 0 +net.ipv6.conf.vethe8577b3d.accept_dad = 1 +net.ipv6.conf.vethe8577b3d.accept_ra = 0 +net.ipv6.conf.vethe8577b3d.accept_ra_defrtr = 1 +net.ipv6.conf.vethe8577b3d.accept_ra_from_local = 0 +net.ipv6.conf.vethe8577b3d.accept_ra_min_hop_limit = 1 +net.ipv6.conf.vethe8577b3d.accept_ra_mtu = 1 +net.ipv6.conf.vethe8577b3d.accept_ra_pinfo = 1 +net.ipv6.conf.vethe8577b3d.accept_ra_rt_info_max_plen = 0 +net.ipv6.conf.vethe8577b3d.accept_ra_rt_info_min_plen = 0 +net.ipv6.conf.vethe8577b3d.accept_ra_rtr_pref = 1 +net.ipv6.conf.vethe8577b3d.accept_redirects = 1 +net.ipv6.conf.vethe8577b3d.accept_source_route = 0 +net.ipv6.conf.vethe8577b3d.addr_gen_mode = 0 +net.ipv6.conf.vethe8577b3d.autoconf = 1 +net.ipv6.conf.vethe8577b3d.dad_transmits = 1 +net.ipv6.conf.vethe8577b3d.disable_ipv6 = 1 +net.ipv6.conf.vethe8577b3d.disable_policy = 0 +net.ipv6.conf.vethe8577b3d.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.vethe8577b3d.drop_unsolicited_na = 0 +net.ipv6.conf.vethe8577b3d.enhanced_dad = 1 +net.ipv6.conf.vethe8577b3d.force_mld_version = 0 +net.ipv6.conf.vethe8577b3d.force_tllao = 0 +net.ipv6.conf.vethe8577b3d.forwarding = 1 +net.ipv6.conf.vethe8577b3d.hop_limit = 64 +net.ipv6.conf.vethe8577b3d.ignore_routes_with_linkdown = 0 +net.ipv6.conf.vethe8577b3d.keep_addr_on_down = 0 +net.ipv6.conf.vethe8577b3d.max_addresses = 16 +net.ipv6.conf.vethe8577b3d.max_desync_factor = 600 +net.ipv6.conf.vethe8577b3d.mc_forwarding = 0 +net.ipv6.conf.vethe8577b3d.mldv1_unsolicited_report_interval = 10000 +net.ipv6.conf.vethe8577b3d.mldv2_unsolicited_report_interval = 1000 +net.ipv6.conf.vethe8577b3d.mtu = 1500 +net.ipv6.conf.vethe8577b3d.ndisc_notify = 0 +net.ipv6.conf.vethe8577b3d.ndisc_tclass = 0 +net.ipv6.conf.vethe8577b3d.optimistic_dad = 0 +net.ipv6.conf.vethe8577b3d.proxy_ndp = 0 +net.ipv6.conf.vethe8577b3d.regen_max_retry = 3 +net.ipv6.conf.vethe8577b3d.router_probe_interval = 60 +net.ipv6.conf.vethe8577b3d.router_solicitation_delay = 1 +net.ipv6.conf.vethe8577b3d.router_solicitation_interval = 4 +net.ipv6.conf.vethe8577b3d.router_solicitation_max_interval = 3600 +net.ipv6.conf.vethe8577b3d.router_solicitations = -1 +net.ipv6.conf.vethe8577b3d.seg6_enabled = 0 +net.ipv6.conf.vethe8577b3d.suppress_frag_ndisc = 1 +net.ipv6.conf.vethe8577b3d.temp_prefered_lft = 86400 +net.ipv6.conf.vethe8577b3d.temp_valid_lft = 604800 +net.ipv6.conf.vethe8577b3d.use_oif_addrs_only = 0 +net.ipv6.conf.vethe8577b3d.use_optimistic = 0 +net.ipv6.conf.vethe8577b3d.use_tempaddr = 0 +net.ipv6.conf.vethe8b73084.accept_dad = 1 +net.ipv6.conf.vethe8b73084.accept_ra = 0 +net.ipv6.conf.vethe8b73084.accept_ra_defrtr = 1 +net.ipv6.conf.vethe8b73084.accept_ra_from_local = 0 +net.ipv6.conf.vethe8b73084.accept_ra_min_hop_limit = 1 +net.ipv6.conf.vethe8b73084.accept_ra_mtu = 1 +net.ipv6.conf.vethe8b73084.accept_ra_pinfo = 1 +net.ipv6.conf.vethe8b73084.accept_ra_rt_info_max_plen = 0 +net.ipv6.conf.vethe8b73084.accept_ra_rt_info_min_plen = 0 +net.ipv6.conf.vethe8b73084.accept_ra_rtr_pref = 1 +net.ipv6.conf.vethe8b73084.accept_redirects = 1 +net.ipv6.conf.vethe8b73084.accept_source_route = 0 +net.ipv6.conf.vethe8b73084.addr_gen_mode = 0 +net.ipv6.conf.vethe8b73084.autoconf = 1 +net.ipv6.conf.vethe8b73084.dad_transmits = 1 +net.ipv6.conf.vethe8b73084.disable_ipv6 = 1 +net.ipv6.conf.vethe8b73084.disable_policy = 0 +net.ipv6.conf.vethe8b73084.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.vethe8b73084.drop_unsolicited_na = 0 +net.ipv6.conf.vethe8b73084.enhanced_dad = 1 +net.ipv6.conf.vethe8b73084.force_mld_version = 0 +net.ipv6.conf.vethe8b73084.force_tllao = 0 +net.ipv6.conf.vethe8b73084.forwarding = 1 +net.ipv6.conf.vethe8b73084.hop_limit = 64 +net.ipv6.conf.vethe8b73084.ignore_routes_with_linkdown = 0 +net.ipv6.conf.vethe8b73084.keep_addr_on_down = 0 +net.ipv6.conf.vethe8b73084.max_addresses = 16 +net.ipv6.conf.vethe8b73084.max_desync_factor = 600 +net.ipv6.conf.vethe8b73084.mc_forwarding = 0 +net.ipv6.conf.vethe8b73084.mldv1_unsolicited_report_interval = 10000 +net.ipv6.conf.vethe8b73084.mldv2_unsolicited_report_interval = 1000 +net.ipv6.conf.vethe8b73084.mtu = 1500 +net.ipv6.conf.vethe8b73084.ndisc_notify = 0 +net.ipv6.conf.vethe8b73084.ndisc_tclass = 0 +net.ipv6.conf.vethe8b73084.optimistic_dad = 0 +net.ipv6.conf.vethe8b73084.proxy_ndp = 0 +net.ipv6.conf.vethe8b73084.regen_max_retry = 3 +net.ipv6.conf.vethe8b73084.router_probe_interval = 60 +net.ipv6.conf.vethe8b73084.router_solicitation_delay = 1 +net.ipv6.conf.vethe8b73084.router_solicitation_interval = 4 +net.ipv6.conf.vethe8b73084.router_solicitation_max_interval = 3600 +net.ipv6.conf.vethe8b73084.router_solicitations = -1 +net.ipv6.conf.vethe8b73084.seg6_enabled = 0 +net.ipv6.conf.vethe8b73084.suppress_frag_ndisc = 1 +net.ipv6.conf.vethe8b73084.temp_prefered_lft = 86400 +net.ipv6.conf.vethe8b73084.temp_valid_lft = 604800 +net.ipv6.conf.vethe8b73084.use_oif_addrs_only = 0 +net.ipv6.conf.vethe8b73084.use_optimistic = 0 +net.ipv6.conf.vethe8b73084.use_tempaddr = 0 +net.ipv6.conf.vethf5136d77.accept_dad = 1 +net.ipv6.conf.vethf5136d77.accept_ra = 0 +net.ipv6.conf.vethf5136d77.accept_ra_defrtr = 1 +net.ipv6.conf.vethf5136d77.accept_ra_from_local = 0 +net.ipv6.conf.vethf5136d77.accept_ra_min_hop_limit = 1 +net.ipv6.conf.vethf5136d77.accept_ra_mtu = 1 +net.ipv6.conf.vethf5136d77.accept_ra_pinfo = 1 +net.ipv6.conf.vethf5136d77.accept_ra_rt_info_max_plen = 0 +net.ipv6.conf.vethf5136d77.accept_ra_rt_info_min_plen = 0 +net.ipv6.conf.vethf5136d77.accept_ra_rtr_pref = 1 +net.ipv6.conf.vethf5136d77.accept_redirects = 1 +net.ipv6.conf.vethf5136d77.accept_source_route = 0 +net.ipv6.conf.vethf5136d77.addr_gen_mode = 0 +net.ipv6.conf.vethf5136d77.autoconf = 1 +net.ipv6.conf.vethf5136d77.dad_transmits = 1 +net.ipv6.conf.vethf5136d77.disable_ipv6 = 1 +net.ipv6.conf.vethf5136d77.disable_policy = 0 +net.ipv6.conf.vethf5136d77.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.vethf5136d77.drop_unsolicited_na = 0 +net.ipv6.conf.vethf5136d77.enhanced_dad = 1 +net.ipv6.conf.vethf5136d77.force_mld_version = 0 +net.ipv6.conf.vethf5136d77.force_tllao = 0 +net.ipv6.conf.vethf5136d77.forwarding = 1 +net.ipv6.conf.vethf5136d77.hop_limit = 64 +net.ipv6.conf.vethf5136d77.ignore_routes_with_linkdown = 0 +net.ipv6.conf.vethf5136d77.keep_addr_on_down = 0 +net.ipv6.conf.vethf5136d77.max_addresses = 16 +net.ipv6.conf.vethf5136d77.max_desync_factor = 600 +net.ipv6.conf.vethf5136d77.mc_forwarding = 0 +net.ipv6.conf.vethf5136d77.mldv1_unsolicited_report_interval = 10000 +net.ipv6.conf.vethf5136d77.mldv2_unsolicited_report_interval = 1000 +net.ipv6.conf.vethf5136d77.mtu = 1500 +net.ipv6.conf.vethf5136d77.ndisc_notify = 0 +net.ipv6.conf.vethf5136d77.ndisc_tclass = 0 +net.ipv6.conf.vethf5136d77.optimistic_dad = 0 +net.ipv6.conf.vethf5136d77.proxy_ndp = 0 +net.ipv6.conf.vethf5136d77.regen_max_retry = 3 +net.ipv6.conf.vethf5136d77.router_probe_interval = 60 +net.ipv6.conf.vethf5136d77.router_solicitation_delay = 1 +net.ipv6.conf.vethf5136d77.router_solicitation_interval = 4 +net.ipv6.conf.vethf5136d77.router_solicitation_max_interval = 3600 +net.ipv6.conf.vethf5136d77.router_solicitations = -1 +net.ipv6.conf.vethf5136d77.seg6_enabled = 0 +net.ipv6.conf.vethf5136d77.suppress_frag_ndisc = 1 +net.ipv6.conf.vethf5136d77.temp_prefered_lft = 86400 +net.ipv6.conf.vethf5136d77.temp_valid_lft = 604800 +net.ipv6.conf.vethf5136d77.use_oif_addrs_only = 0 +net.ipv6.conf.vethf5136d77.use_optimistic = 0 +net.ipv6.conf.vethf5136d77.use_tempaddr = 0 +net.ipv6.conf.vethfa2d922.accept_dad = 1 +net.ipv6.conf.vethfa2d922.accept_ra = 2 +net.ipv6.conf.vethfa2d922.accept_ra_defrtr = 1 +net.ipv6.conf.vethfa2d922.accept_ra_from_local = 0 +net.ipv6.conf.vethfa2d922.accept_ra_min_hop_limit = 1 +net.ipv6.conf.vethfa2d922.accept_ra_mtu = 1 +net.ipv6.conf.vethfa2d922.accept_ra_pinfo = 1 +net.ipv6.conf.vethfa2d922.accept_ra_rt_info_max_plen = 0 +net.ipv6.conf.vethfa2d922.accept_ra_rt_info_min_plen = 0 +net.ipv6.conf.vethfa2d922.accept_ra_rtr_pref = 1 +net.ipv6.conf.vethfa2d922.accept_redirects = 1 +net.ipv6.conf.vethfa2d922.accept_source_route = 0 +net.ipv6.conf.vethfa2d922.addr_gen_mode = 0 +net.ipv6.conf.vethfa2d922.autoconf = 1 +net.ipv6.conf.vethfa2d922.dad_transmits = 1 +net.ipv6.conf.vethfa2d922.disable_ipv6 = 0 +net.ipv6.conf.vethfa2d922.disable_policy = 0 +net.ipv6.conf.vethfa2d922.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.vethfa2d922.drop_unsolicited_na = 0 +net.ipv6.conf.vethfa2d922.enhanced_dad = 1 +net.ipv6.conf.vethfa2d922.force_mld_version = 0 +net.ipv6.conf.vethfa2d922.force_tllao = 0 +net.ipv6.conf.vethfa2d922.forwarding = 1 +net.ipv6.conf.vethfa2d922.hop_limit = 64 +net.ipv6.conf.vethfa2d922.ignore_routes_with_linkdown = 0 +net.ipv6.conf.vethfa2d922.keep_addr_on_down = 0 +net.ipv6.conf.vethfa2d922.max_addresses = 16 +net.ipv6.conf.vethfa2d922.max_desync_factor = 600 +net.ipv6.conf.vethfa2d922.mc_forwarding = 0 +net.ipv6.conf.vethfa2d922.mldv1_unsolicited_report_interval = 10000 +net.ipv6.conf.vethfa2d922.mldv2_unsolicited_report_interval = 1000 +net.ipv6.conf.vethfa2d922.mtu = 1500 +net.ipv6.conf.vethfa2d922.ndisc_notify = 0 +net.ipv6.conf.vethfa2d922.ndisc_tclass = 0 +net.ipv6.conf.vethfa2d922.optimistic_dad = 0 +net.ipv6.conf.vethfa2d922.proxy_ndp = 0 +net.ipv6.conf.vethfa2d922.regen_max_retry = 3 +net.ipv6.conf.vethfa2d922.router_probe_interval = 60 +net.ipv6.conf.vethfa2d922.router_solicitation_delay = 1 +net.ipv6.conf.vethfa2d922.router_solicitation_interval = 4 +net.ipv6.conf.vethfa2d922.router_solicitation_max_interval = 3600 +net.ipv6.conf.vethfa2d922.router_solicitations = -1 +net.ipv6.conf.vethfa2d922.seg6_enabled = 0 +net.ipv6.conf.vethfa2d922.suppress_frag_ndisc = 1 +net.ipv6.conf.vethfa2d922.temp_prefered_lft = 86400 +net.ipv6.conf.vethfa2d922.temp_valid_lft = 604800 +net.ipv6.conf.vethfa2d922.use_oif_addrs_only = 0 +net.ipv6.conf.vethfa2d922.use_optimistic = 0 +net.ipv6.conf.vethfa2d922.use_tempaddr = 0 +net.ipv6.conf.virbr0.accept_dad = 1 +net.ipv6.conf.virbr0.accept_ra = 0 +net.ipv6.conf.virbr0.accept_ra_defrtr = 1 +net.ipv6.conf.virbr0.accept_ra_from_local = 0 +net.ipv6.conf.virbr0.accept_ra_min_hop_limit = 1 +net.ipv6.conf.virbr0.accept_ra_mtu = 1 +net.ipv6.conf.virbr0.accept_ra_pinfo = 1 +net.ipv6.conf.virbr0.accept_ra_rt_info_max_plen = 0 +net.ipv6.conf.virbr0.accept_ra_rt_info_min_plen = 0 +net.ipv6.conf.virbr0.accept_ra_rtr_pref = 1 +net.ipv6.conf.virbr0.accept_redirects = 1 +net.ipv6.conf.virbr0.accept_source_route = 0 +net.ipv6.conf.virbr0.addr_gen_mode = 0 +net.ipv6.conf.virbr0.autoconf = 0 +net.ipv6.conf.virbr0.dad_transmits = 1 +net.ipv6.conf.virbr0.disable_ipv6 = 1 +net.ipv6.conf.virbr0.disable_policy = 0 +net.ipv6.conf.virbr0.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.virbr0.drop_unsolicited_na = 0 +net.ipv6.conf.virbr0.enhanced_dad = 1 +net.ipv6.conf.virbr0.force_mld_version = 0 +net.ipv6.conf.virbr0.force_tllao = 0 +net.ipv6.conf.virbr0.forwarding = 1 +net.ipv6.conf.virbr0.hop_limit = 64 +net.ipv6.conf.virbr0.ignore_routes_with_linkdown = 0 +net.ipv6.conf.virbr0.keep_addr_on_down = 0 +net.ipv6.conf.virbr0.max_addresses = 16 +net.ipv6.conf.virbr0.max_desync_factor = 600 +net.ipv6.conf.virbr0.mc_forwarding = 0 +net.ipv6.conf.virbr0.mldv1_unsolicited_report_interval = 10000 +net.ipv6.conf.virbr0.mldv2_unsolicited_report_interval = 1000 +net.ipv6.conf.virbr0.mtu = 1500 +net.ipv6.conf.virbr0.ndisc_notify = 0 +net.ipv6.conf.virbr0.ndisc_tclass = 0 +net.ipv6.conf.virbr0.optimistic_dad = 0 +net.ipv6.conf.virbr0.proxy_ndp = 0 +net.ipv6.conf.virbr0.regen_max_retry = 3 +net.ipv6.conf.virbr0.router_probe_interval = 60 +net.ipv6.conf.virbr0.router_solicitation_delay = 1 +net.ipv6.conf.virbr0.router_solicitation_interval = 4 +net.ipv6.conf.virbr0.router_solicitation_max_interval = 3600 +net.ipv6.conf.virbr0.router_solicitations = -1 +net.ipv6.conf.virbr0.seg6_enabled = 0 +net.ipv6.conf.virbr0.suppress_frag_ndisc = 1 +net.ipv6.conf.virbr0.temp_prefered_lft = 86400 +net.ipv6.conf.virbr0.temp_valid_lft = 604800 +net.ipv6.conf.virbr0.use_oif_addrs_only = 0 +net.ipv6.conf.virbr0.use_optimistic = 0 +net.ipv6.conf.virbr0.use_tempaddr = 0 +net.ipv6.conf.virbr0-nic.accept_dad = 1 +net.ipv6.conf.virbr0-nic.accept_ra = 2 +net.ipv6.conf.virbr0-nic.accept_ra_defrtr = 1 +net.ipv6.conf.virbr0-nic.accept_ra_from_local = 0 +net.ipv6.conf.virbr0-nic.accept_ra_min_hop_limit = 1 +net.ipv6.conf.virbr0-nic.accept_ra_mtu = 1 +net.ipv6.conf.virbr0-nic.accept_ra_pinfo = 1 +net.ipv6.conf.virbr0-nic.accept_ra_rt_info_max_plen = 0 +net.ipv6.conf.virbr0-nic.accept_ra_rt_info_min_plen = 0 +net.ipv6.conf.virbr0-nic.accept_ra_rtr_pref = 1 +net.ipv6.conf.virbr0-nic.accept_redirects = 1 +net.ipv6.conf.virbr0-nic.accept_source_route = 0 +net.ipv6.conf.virbr0-nic.addr_gen_mode = 0 +net.ipv6.conf.virbr0-nic.autoconf = 1 +net.ipv6.conf.virbr0-nic.dad_transmits = 1 +net.ipv6.conf.virbr0-nic.disable_ipv6 = 0 +net.ipv6.conf.virbr0-nic.disable_policy = 0 +net.ipv6.conf.virbr0-nic.drop_unicast_in_l2_multicast = 0 +net.ipv6.conf.virbr0-nic.drop_unsolicited_na = 0 +net.ipv6.conf.virbr0-nic.enhanced_dad = 1 +net.ipv6.conf.virbr0-nic.force_mld_version = 0 +net.ipv6.conf.virbr0-nic.force_tllao = 0 +net.ipv6.conf.virbr0-nic.forwarding = 1 +net.ipv6.conf.virbr0-nic.hop_limit = 64 +net.ipv6.conf.virbr0-nic.ignore_routes_with_linkdown = 0 +net.ipv6.conf.virbr0-nic.keep_addr_on_down = 0 +net.ipv6.conf.virbr0-nic.max_addresses = 16 +net.ipv6.conf.virbr0-nic.max_desync_factor = 600 +net.ipv6.conf.virbr0-nic.mc_forwarding = 0 +net.ipv6.conf.virbr0-nic.mldv1_unsolicited_report_interval = 10000 +net.ipv6.conf.virbr0-nic.mldv2_unsolicited_report_interval = 1000 +net.ipv6.conf.virbr0-nic.mtu = 1500 +net.ipv6.conf.virbr0-nic.ndisc_notify = 0 +net.ipv6.conf.virbr0-nic.ndisc_tclass = 0 +net.ipv6.conf.virbr0-nic.optimistic_dad = 0 +net.ipv6.conf.virbr0-nic.proxy_ndp = 0 +net.ipv6.conf.virbr0-nic.regen_max_retry = 3 +net.ipv6.conf.virbr0-nic.router_probe_interval = 60 +net.ipv6.conf.virbr0-nic.router_solicitation_delay = 1 +net.ipv6.conf.virbr0-nic.router_solicitation_interval = 4 +net.ipv6.conf.virbr0-nic.router_solicitation_max_interval = 3600 +net.ipv6.conf.virbr0-nic.router_solicitations = -1 +net.ipv6.conf.virbr0-nic.seg6_enabled = 0 +net.ipv6.conf.virbr0-nic.suppress_frag_ndisc = 1 +net.ipv6.conf.virbr0-nic.temp_prefered_lft = 86400 +net.ipv6.conf.virbr0-nic.temp_valid_lft = 604800 +net.ipv6.conf.virbr0-nic.use_oif_addrs_only = 0 +net.ipv6.conf.virbr0-nic.use_optimistic = 0 +net.ipv6.conf.virbr0-nic.use_tempaddr = 0 +net.ipv6.fib_multipath_hash_policy = 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.ratelimit = 1000 +net.ipv6.idgen_delay = 1 +net.ipv6.idgen_retries = 3 +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.bond0.anycast_delay = 100 +net.ipv6.neigh.bond0.app_solicit = 0 +net.ipv6.neigh.bond0.base_reachable_time_ms = 30000 +net.ipv6.neigh.bond0.delay_first_probe_time = 5 +net.ipv6.neigh.bond0.gc_stale_time = 60 +net.ipv6.neigh.bond0.locktime = 0 +net.ipv6.neigh.bond0.mcast_resolicit = 0 +net.ipv6.neigh.bond0.mcast_solicit = 3 +net.ipv6.neigh.bond0.proxy_delay = 80 +net.ipv6.neigh.bond0.proxy_qlen = 64 +net.ipv6.neigh.bond0.retrans_time_ms = 1000 +net.ipv6.neigh.bond0.ucast_solicit = 3 +net.ipv6.neigh.bond0.unres_qlen = 101 +net.ipv6.neigh.bond0.unres_qlen_bytes = 212992 +net.ipv6.neigh.br-294661236c88.anycast_delay = 100 +net.ipv6.neigh.br-294661236c88.app_solicit = 0 +net.ipv6.neigh.br-294661236c88.base_reachable_time_ms = 30000 +net.ipv6.neigh.br-294661236c88.delay_first_probe_time = 5 +net.ipv6.neigh.br-294661236c88.gc_stale_time = 60 +net.ipv6.neigh.br-294661236c88.locktime = 0 +net.ipv6.neigh.br-294661236c88.mcast_resolicit = 0 +net.ipv6.neigh.br-294661236c88.mcast_solicit = 3 +net.ipv6.neigh.br-294661236c88.proxy_delay = 80 +net.ipv6.neigh.br-294661236c88.proxy_qlen = 64 +net.ipv6.neigh.br-294661236c88.retrans_time_ms = 1000 +net.ipv6.neigh.br-294661236c88.ucast_solicit = 3 +net.ipv6.neigh.br-294661236c88.unres_qlen = 101 +net.ipv6.neigh.br-294661236c88.unres_qlen_bytes = 212992 +net.ipv6.neigh.br-5f8d81e2374e.anycast_delay = 100 +net.ipv6.neigh.br-5f8d81e2374e.app_solicit = 0 +net.ipv6.neigh.br-5f8d81e2374e.base_reachable_time_ms = 30000 +net.ipv6.neigh.br-5f8d81e2374e.delay_first_probe_time = 5 +net.ipv6.neigh.br-5f8d81e2374e.gc_stale_time = 60 +net.ipv6.neigh.br-5f8d81e2374e.locktime = 0 +net.ipv6.neigh.br-5f8d81e2374e.mcast_resolicit = 0 +net.ipv6.neigh.br-5f8d81e2374e.mcast_solicit = 3 +net.ipv6.neigh.br-5f8d81e2374e.proxy_delay = 80 +net.ipv6.neigh.br-5f8d81e2374e.proxy_qlen = 64 +net.ipv6.neigh.br-5f8d81e2374e.retrans_time_ms = 1000 +net.ipv6.neigh.br-5f8d81e2374e.ucast_solicit = 3 +net.ipv6.neigh.br-5f8d81e2374e.unres_qlen = 101 +net.ipv6.neigh.br-5f8d81e2374e.unres_qlen_bytes = 212992 +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_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.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_resolicit = 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 = 101 +net.ipv6.neigh.docker0.unres_qlen_bytes = 212992 +net.ipv6.neigh.em1.anycast_delay = 100 +net.ipv6.neigh.em1.app_solicit = 0 +net.ipv6.neigh.em1.base_reachable_time_ms = 30000 +net.ipv6.neigh.em1.delay_first_probe_time = 5 +net.ipv6.neigh.em1.gc_stale_time = 60 +net.ipv6.neigh.em1.locktime = 0 +net.ipv6.neigh.em1.mcast_resolicit = 0 +net.ipv6.neigh.em1.mcast_solicit = 3 +net.ipv6.neigh.em1.proxy_delay = 80 +net.ipv6.neigh.em1.proxy_qlen = 64 +net.ipv6.neigh.em1.retrans_time_ms = 1000 +net.ipv6.neigh.em1.ucast_solicit = 3 +net.ipv6.neigh.em1.unres_qlen = 101 +net.ipv6.neigh.em1.unres_qlen_bytes = 212992 +net.ipv6.neigh.em2.anycast_delay = 100 +net.ipv6.neigh.em2.app_solicit = 0 +net.ipv6.neigh.em2.base_reachable_time_ms = 30000 +net.ipv6.neigh.em2.delay_first_probe_time = 5 +net.ipv6.neigh.em2.gc_stale_time = 60 +net.ipv6.neigh.em2.locktime = 0 +net.ipv6.neigh.em2.mcast_resolicit = 0 +net.ipv6.neigh.em2.mcast_solicit = 3 +net.ipv6.neigh.em2.proxy_delay = 80 +net.ipv6.neigh.em2.proxy_qlen = 64 +net.ipv6.neigh.em2.retrans_time_ms = 1000 +net.ipv6.neigh.em2.ucast_solicit = 3 +net.ipv6.neigh.em2.unres_qlen = 101 +net.ipv6.neigh.em2.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.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.lxdbr0.anycast_delay = 100 +net.ipv6.neigh.lxdbr0.app_solicit = 0 +net.ipv6.neigh.lxdbr0.base_reachable_time_ms = 30000 +net.ipv6.neigh.lxdbr0.delay_first_probe_time = 5 +net.ipv6.neigh.lxdbr0.gc_stale_time = 60 +net.ipv6.neigh.lxdbr0.locktime = 0 +net.ipv6.neigh.lxdbr0.mcast_resolicit = 0 +net.ipv6.neigh.lxdbr0.mcast_solicit = 3 +net.ipv6.neigh.lxdbr0.proxy_delay = 80 +net.ipv6.neigh.lxdbr0.proxy_qlen = 64 +net.ipv6.neigh.lxdbr0.retrans_time_ms = 1000 +net.ipv6.neigh.lxdbr0.ucast_solicit = 3 +net.ipv6.neigh.lxdbr0.unres_qlen = 101 +net.ipv6.neigh.lxdbr0.unres_qlen_bytes = 212992 +net.ipv6.neigh.vboxnet0.anycast_delay = 100 +net.ipv6.neigh.vboxnet0.app_solicit = 0 +net.ipv6.neigh.vboxnet0.base_reachable_time_ms = 30000 +net.ipv6.neigh.vboxnet0.delay_first_probe_time = 5 +net.ipv6.neigh.vboxnet0.gc_stale_time = 60 +net.ipv6.neigh.vboxnet0.locktime = 0 +net.ipv6.neigh.vboxnet0.mcast_resolicit = 0 +net.ipv6.neigh.vboxnet0.mcast_solicit = 3 +net.ipv6.neigh.vboxnet0.proxy_delay = 80 +net.ipv6.neigh.vboxnet0.proxy_qlen = 64 +net.ipv6.neigh.vboxnet0.retrans_time_ms = 1000 +net.ipv6.neigh.vboxnet0.ucast_solicit = 3 +net.ipv6.neigh.vboxnet0.unres_qlen = 101 +net.ipv6.neigh.vboxnet0.unres_qlen_bytes = 212992 +net.ipv6.neigh.vboxnet12.anycast_delay = 100 +net.ipv6.neigh.vboxnet12.app_solicit = 0 +net.ipv6.neigh.vboxnet12.base_reachable_time_ms = 30000 +net.ipv6.neigh.vboxnet12.delay_first_probe_time = 5 +net.ipv6.neigh.vboxnet12.gc_stale_time = 60 +net.ipv6.neigh.vboxnet12.locktime = 0 +net.ipv6.neigh.vboxnet12.mcast_resolicit = 0 +net.ipv6.neigh.vboxnet12.mcast_solicit = 3 +net.ipv6.neigh.vboxnet12.proxy_delay = 80 +net.ipv6.neigh.vboxnet12.proxy_qlen = 64 +net.ipv6.neigh.vboxnet12.retrans_time_ms = 1000 +net.ipv6.neigh.vboxnet12.ucast_solicit = 3 +net.ipv6.neigh.vboxnet12.unres_qlen = 101 +net.ipv6.neigh.vboxnet12.unres_qlen_bytes = 212992 +net.ipv6.neigh.vboxnet18.anycast_delay = 100 +net.ipv6.neigh.vboxnet18.app_solicit = 0 +net.ipv6.neigh.vboxnet18.base_reachable_time_ms = 30000 +net.ipv6.neigh.vboxnet18.delay_first_probe_time = 5 +net.ipv6.neigh.vboxnet18.gc_stale_time = 60 +net.ipv6.neigh.vboxnet18.locktime = 0 +net.ipv6.neigh.vboxnet18.mcast_resolicit = 0 +net.ipv6.neigh.vboxnet18.mcast_solicit = 3 +net.ipv6.neigh.vboxnet18.proxy_delay = 80 +net.ipv6.neigh.vboxnet18.proxy_qlen = 64 +net.ipv6.neigh.vboxnet18.retrans_time_ms = 1000 +net.ipv6.neigh.vboxnet18.ucast_solicit = 3 +net.ipv6.neigh.vboxnet18.unres_qlen = 101 +net.ipv6.neigh.vboxnet18.unres_qlen_bytes = 212992 +net.ipv6.neigh.vboxnet19.anycast_delay = 100 +net.ipv6.neigh.vboxnet19.app_solicit = 0 +net.ipv6.neigh.vboxnet19.base_reachable_time_ms = 30000 +net.ipv6.neigh.vboxnet19.delay_first_probe_time = 5 +net.ipv6.neigh.vboxnet19.gc_stale_time = 60 +net.ipv6.neigh.vboxnet19.locktime = 0 +net.ipv6.neigh.vboxnet19.mcast_resolicit = 0 +net.ipv6.neigh.vboxnet19.mcast_solicit = 3 +net.ipv6.neigh.vboxnet19.proxy_delay = 80 +net.ipv6.neigh.vboxnet19.proxy_qlen = 64 +net.ipv6.neigh.vboxnet19.retrans_time_ms = 1000 +net.ipv6.neigh.vboxnet19.ucast_solicit = 3 +net.ipv6.neigh.vboxnet19.unres_qlen = 101 +net.ipv6.neigh.vboxnet19.unres_qlen_bytes = 212992 +net.ipv6.neigh.vboxnet20.anycast_delay = 100 +net.ipv6.neigh.vboxnet20.app_solicit = 0 +net.ipv6.neigh.vboxnet20.base_reachable_time_ms = 30000 +net.ipv6.neigh.vboxnet20.delay_first_probe_time = 5 +net.ipv6.neigh.vboxnet20.gc_stale_time = 60 +net.ipv6.neigh.vboxnet20.locktime = 0 +net.ipv6.neigh.vboxnet20.mcast_resolicit = 0 +net.ipv6.neigh.vboxnet20.mcast_solicit = 3 +net.ipv6.neigh.vboxnet20.proxy_delay = 80 +net.ipv6.neigh.vboxnet20.proxy_qlen = 64 +net.ipv6.neigh.vboxnet20.retrans_time_ms = 1000 +net.ipv6.neigh.vboxnet20.ucast_solicit = 3 +net.ipv6.neigh.vboxnet20.unres_qlen = 101 +net.ipv6.neigh.vboxnet20.unres_qlen_bytes = 212992 +net.ipv6.neigh.vboxnet21.anycast_delay = 100 +net.ipv6.neigh.vboxnet21.app_solicit = 0 +net.ipv6.neigh.vboxnet21.base_reachable_time_ms = 30000 +net.ipv6.neigh.vboxnet21.delay_first_probe_time = 5 +net.ipv6.neigh.vboxnet21.gc_stale_time = 60 +net.ipv6.neigh.vboxnet21.locktime = 0 +net.ipv6.neigh.vboxnet21.mcast_resolicit = 0 +net.ipv6.neigh.vboxnet21.mcast_solicit = 3 +net.ipv6.neigh.vboxnet21.proxy_delay = 80 +net.ipv6.neigh.vboxnet21.proxy_qlen = 64 +net.ipv6.neigh.vboxnet21.retrans_time_ms = 1000 +net.ipv6.neigh.vboxnet21.ucast_solicit = 3 +net.ipv6.neigh.vboxnet21.unres_qlen = 101 +net.ipv6.neigh.vboxnet21.unres_qlen_bytes = 212992 +net.ipv6.neigh.vboxnet24.anycast_delay = 100 +net.ipv6.neigh.vboxnet24.app_solicit = 0 +net.ipv6.neigh.vboxnet24.base_reachable_time_ms = 30000 +net.ipv6.neigh.vboxnet24.delay_first_probe_time = 5 +net.ipv6.neigh.vboxnet24.gc_stale_time = 60 +net.ipv6.neigh.vboxnet24.locktime = 0 +net.ipv6.neigh.vboxnet24.mcast_resolicit = 0 +net.ipv6.neigh.vboxnet24.mcast_solicit = 3 +net.ipv6.neigh.vboxnet24.proxy_delay = 80 +net.ipv6.neigh.vboxnet24.proxy_qlen = 64 +net.ipv6.neigh.vboxnet24.retrans_time_ms = 1000 +net.ipv6.neigh.vboxnet24.ucast_solicit = 3 +net.ipv6.neigh.vboxnet24.unres_qlen = 101 +net.ipv6.neigh.vboxnet24.unres_qlen_bytes = 212992 +net.ipv6.neigh.vboxnet25.anycast_delay = 100 +net.ipv6.neigh.vboxnet25.app_solicit = 0 +net.ipv6.neigh.vboxnet25.base_reachable_time_ms = 30000 +net.ipv6.neigh.vboxnet25.delay_first_probe_time = 5 +net.ipv6.neigh.vboxnet25.gc_stale_time = 60 +net.ipv6.neigh.vboxnet25.locktime = 0 +net.ipv6.neigh.vboxnet25.mcast_resolicit = 0 +net.ipv6.neigh.vboxnet25.mcast_solicit = 3 +net.ipv6.neigh.vboxnet25.proxy_delay = 80 +net.ipv6.neigh.vboxnet25.proxy_qlen = 64 +net.ipv6.neigh.vboxnet25.retrans_time_ms = 1000 +net.ipv6.neigh.vboxnet25.ucast_solicit = 3 +net.ipv6.neigh.vboxnet25.unres_qlen = 101 +net.ipv6.neigh.vboxnet25.unres_qlen_bytes = 212992 +net.ipv6.neigh.vboxnet3.anycast_delay = 100 +net.ipv6.neigh.vboxnet3.app_solicit = 0 +net.ipv6.neigh.vboxnet3.base_reachable_time_ms = 30000 +net.ipv6.neigh.vboxnet3.delay_first_probe_time = 5 +net.ipv6.neigh.vboxnet3.gc_stale_time = 60 +net.ipv6.neigh.vboxnet3.locktime = 0 +net.ipv6.neigh.vboxnet3.mcast_resolicit = 0 +net.ipv6.neigh.vboxnet3.mcast_solicit = 3 +net.ipv6.neigh.vboxnet3.proxy_delay = 80 +net.ipv6.neigh.vboxnet3.proxy_qlen = 64 +net.ipv6.neigh.vboxnet3.retrans_time_ms = 1000 +net.ipv6.neigh.vboxnet3.ucast_solicit = 3 +net.ipv6.neigh.vboxnet3.unres_qlen = 101 +net.ipv6.neigh.vboxnet3.unres_qlen_bytes = 212992 +net.ipv6.neigh.vboxnet4.anycast_delay = 100 +net.ipv6.neigh.vboxnet4.app_solicit = 0 +net.ipv6.neigh.vboxnet4.base_reachable_time_ms = 30000 +net.ipv6.neigh.vboxnet4.delay_first_probe_time = 5 +net.ipv6.neigh.vboxnet4.gc_stale_time = 60 +net.ipv6.neigh.vboxnet4.locktime = 0 +net.ipv6.neigh.vboxnet4.mcast_resolicit = 0 +net.ipv6.neigh.vboxnet4.mcast_solicit = 3 +net.ipv6.neigh.vboxnet4.proxy_delay = 80 +net.ipv6.neigh.vboxnet4.proxy_qlen = 64 +net.ipv6.neigh.vboxnet4.retrans_time_ms = 1000 +net.ipv6.neigh.vboxnet4.ucast_solicit = 3 +net.ipv6.neigh.vboxnet4.unres_qlen = 101 +net.ipv6.neigh.vboxnet4.unres_qlen_bytes = 212992 +net.ipv6.neigh.veth046457e1.anycast_delay = 100 +net.ipv6.neigh.veth046457e1.app_solicit = 0 +net.ipv6.neigh.veth046457e1.base_reachable_time_ms = 30000 +net.ipv6.neigh.veth046457e1.delay_first_probe_time = 5 +net.ipv6.neigh.veth046457e1.gc_stale_time = 60 +net.ipv6.neigh.veth046457e1.locktime = 0 +net.ipv6.neigh.veth046457e1.mcast_resolicit = 0 +net.ipv6.neigh.veth046457e1.mcast_solicit = 3 +net.ipv6.neigh.veth046457e1.proxy_delay = 80 +net.ipv6.neigh.veth046457e1.proxy_qlen = 64 +net.ipv6.neigh.veth046457e1.retrans_time_ms = 1000 +net.ipv6.neigh.veth046457e1.ucast_solicit = 3 +net.ipv6.neigh.veth046457e1.unres_qlen = 101 +net.ipv6.neigh.veth046457e1.unres_qlen_bytes = 212992 +net.ipv6.neigh.veth07d7db6b.anycast_delay = 100 +net.ipv6.neigh.veth07d7db6b.app_solicit = 0 +net.ipv6.neigh.veth07d7db6b.base_reachable_time_ms = 30000 +net.ipv6.neigh.veth07d7db6b.delay_first_probe_time = 5 +net.ipv6.neigh.veth07d7db6b.gc_stale_time = 60 +net.ipv6.neigh.veth07d7db6b.locktime = 0 +net.ipv6.neigh.veth07d7db6b.mcast_resolicit = 0 +net.ipv6.neigh.veth07d7db6b.mcast_solicit = 3 +net.ipv6.neigh.veth07d7db6b.proxy_delay = 80 +net.ipv6.neigh.veth07d7db6b.proxy_qlen = 64 +net.ipv6.neigh.veth07d7db6b.retrans_time_ms = 1000 +net.ipv6.neigh.veth07d7db6b.ucast_solicit = 3 +net.ipv6.neigh.veth07d7db6b.unres_qlen = 101 +net.ipv6.neigh.veth07d7db6b.unres_qlen_bytes = 212992 +net.ipv6.neigh.veth0bd575f6.anycast_delay = 100 +net.ipv6.neigh.veth0bd575f6.app_solicit = 0 +net.ipv6.neigh.veth0bd575f6.base_reachable_time_ms = 30000 +net.ipv6.neigh.veth0bd575f6.delay_first_probe_time = 5 +net.ipv6.neigh.veth0bd575f6.gc_stale_time = 60 +net.ipv6.neigh.veth0bd575f6.locktime = 0 +net.ipv6.neigh.veth0bd575f6.mcast_resolicit = 0 +net.ipv6.neigh.veth0bd575f6.mcast_solicit = 3 +net.ipv6.neigh.veth0bd575f6.proxy_delay = 80 +net.ipv6.neigh.veth0bd575f6.proxy_qlen = 64 +net.ipv6.neigh.veth0bd575f6.retrans_time_ms = 1000 +net.ipv6.neigh.veth0bd575f6.ucast_solicit = 3 +net.ipv6.neigh.veth0bd575f6.unres_qlen = 101 +net.ipv6.neigh.veth0bd575f6.unres_qlen_bytes = 212992 +net.ipv6.neigh.veth0c948a7c.anycast_delay = 100 +net.ipv6.neigh.veth0c948a7c.app_solicit = 0 +net.ipv6.neigh.veth0c948a7c.base_reachable_time_ms = 30000 +net.ipv6.neigh.veth0c948a7c.delay_first_probe_time = 5 +net.ipv6.neigh.veth0c948a7c.gc_stale_time = 60 +net.ipv6.neigh.veth0c948a7c.locktime = 0 +net.ipv6.neigh.veth0c948a7c.mcast_resolicit = 0 +net.ipv6.neigh.veth0c948a7c.mcast_solicit = 3 +net.ipv6.neigh.veth0c948a7c.proxy_delay = 80 +net.ipv6.neigh.veth0c948a7c.proxy_qlen = 64 +net.ipv6.neigh.veth0c948a7c.retrans_time_ms = 1000 +net.ipv6.neigh.veth0c948a7c.ucast_solicit = 3 +net.ipv6.neigh.veth0c948a7c.unres_qlen = 101 +net.ipv6.neigh.veth0c948a7c.unres_qlen_bytes = 212992 +net.ipv6.neigh.veth12219f8c.anycast_delay = 100 +net.ipv6.neigh.veth12219f8c.app_solicit = 0 +net.ipv6.neigh.veth12219f8c.base_reachable_time_ms = 30000 +net.ipv6.neigh.veth12219f8c.delay_first_probe_time = 5 +net.ipv6.neigh.veth12219f8c.gc_stale_time = 60 +net.ipv6.neigh.veth12219f8c.locktime = 0 +net.ipv6.neigh.veth12219f8c.mcast_resolicit = 0 +net.ipv6.neigh.veth12219f8c.mcast_solicit = 3 +net.ipv6.neigh.veth12219f8c.proxy_delay = 80 +net.ipv6.neigh.veth12219f8c.proxy_qlen = 64 +net.ipv6.neigh.veth12219f8c.retrans_time_ms = 1000 +net.ipv6.neigh.veth12219f8c.ucast_solicit = 3 +net.ipv6.neigh.veth12219f8c.unres_qlen = 101 +net.ipv6.neigh.veth12219f8c.unres_qlen_bytes = 212992 +net.ipv6.neigh.veth125aed80.anycast_delay = 100 +net.ipv6.neigh.veth125aed80.app_solicit = 0 +net.ipv6.neigh.veth125aed80.base_reachable_time_ms = 30000 +net.ipv6.neigh.veth125aed80.delay_first_probe_time = 5 +net.ipv6.neigh.veth125aed80.gc_stale_time = 60 +net.ipv6.neigh.veth125aed80.locktime = 0 +net.ipv6.neigh.veth125aed80.mcast_resolicit = 0 +net.ipv6.neigh.veth125aed80.mcast_solicit = 3 +net.ipv6.neigh.veth125aed80.proxy_delay = 80 +net.ipv6.neigh.veth125aed80.proxy_qlen = 64 +net.ipv6.neigh.veth125aed80.retrans_time_ms = 1000 +net.ipv6.neigh.veth125aed80.ucast_solicit = 3 +net.ipv6.neigh.veth125aed80.unres_qlen = 101 +net.ipv6.neigh.veth125aed80.unres_qlen_bytes = 212992 +net.ipv6.neigh.veth140b78c8.anycast_delay = 100 +net.ipv6.neigh.veth140b78c8.app_solicit = 0 +net.ipv6.neigh.veth140b78c8.base_reachable_time_ms = 30000 +net.ipv6.neigh.veth140b78c8.delay_first_probe_time = 5 +net.ipv6.neigh.veth140b78c8.gc_stale_time = 60 +net.ipv6.neigh.veth140b78c8.locktime = 0 +net.ipv6.neigh.veth140b78c8.mcast_resolicit = 0 +net.ipv6.neigh.veth140b78c8.mcast_solicit = 3 +net.ipv6.neigh.veth140b78c8.proxy_delay = 80 +net.ipv6.neigh.veth140b78c8.proxy_qlen = 64 +net.ipv6.neigh.veth140b78c8.retrans_time_ms = 1000 +net.ipv6.neigh.veth140b78c8.ucast_solicit = 3 +net.ipv6.neigh.veth140b78c8.unres_qlen = 101 +net.ipv6.neigh.veth140b78c8.unres_qlen_bytes = 212992 +net.ipv6.neigh.veth19c266ca.anycast_delay = 100 +net.ipv6.neigh.veth19c266ca.app_solicit = 0 +net.ipv6.neigh.veth19c266ca.base_reachable_time_ms = 30000 +net.ipv6.neigh.veth19c266ca.delay_first_probe_time = 5 +net.ipv6.neigh.veth19c266ca.gc_stale_time = 60 +net.ipv6.neigh.veth19c266ca.locktime = 0 +net.ipv6.neigh.veth19c266ca.mcast_resolicit = 0 +net.ipv6.neigh.veth19c266ca.mcast_solicit = 3 +net.ipv6.neigh.veth19c266ca.proxy_delay = 80 +net.ipv6.neigh.veth19c266ca.proxy_qlen = 64 +net.ipv6.neigh.veth19c266ca.retrans_time_ms = 1000 +net.ipv6.neigh.veth19c266ca.ucast_solicit = 3 +net.ipv6.neigh.veth19c266ca.unres_qlen = 101 +net.ipv6.neigh.veth19c266ca.unres_qlen_bytes = 212992 +net.ipv6.neigh.veth1a2f3a50.anycast_delay = 100 +net.ipv6.neigh.veth1a2f3a50.app_solicit = 0 +net.ipv6.neigh.veth1a2f3a50.base_reachable_time_ms = 30000 +net.ipv6.neigh.veth1a2f3a50.delay_first_probe_time = 5 +net.ipv6.neigh.veth1a2f3a50.gc_stale_time = 60 +net.ipv6.neigh.veth1a2f3a50.locktime = 0 +net.ipv6.neigh.veth1a2f3a50.mcast_resolicit = 0 +net.ipv6.neigh.veth1a2f3a50.mcast_solicit = 3 +net.ipv6.neigh.veth1a2f3a50.proxy_delay = 80 +net.ipv6.neigh.veth1a2f3a50.proxy_qlen = 64 +net.ipv6.neigh.veth1a2f3a50.retrans_time_ms = 1000 +net.ipv6.neigh.veth1a2f3a50.ucast_solicit = 3 +net.ipv6.neigh.veth1a2f3a50.unres_qlen = 101 +net.ipv6.neigh.veth1a2f3a50.unres_qlen_bytes = 212992 +net.ipv6.neigh.veth1e01ee50.anycast_delay = 100 +net.ipv6.neigh.veth1e01ee50.app_solicit = 0 +net.ipv6.neigh.veth1e01ee50.base_reachable_time_ms = 30000 +net.ipv6.neigh.veth1e01ee50.delay_first_probe_time = 5 +net.ipv6.neigh.veth1e01ee50.gc_stale_time = 60 +net.ipv6.neigh.veth1e01ee50.locktime = 0 +net.ipv6.neigh.veth1e01ee50.mcast_resolicit = 0 +net.ipv6.neigh.veth1e01ee50.mcast_solicit = 3 +net.ipv6.neigh.veth1e01ee50.proxy_delay = 80 +net.ipv6.neigh.veth1e01ee50.proxy_qlen = 64 +net.ipv6.neigh.veth1e01ee50.retrans_time_ms = 1000 +net.ipv6.neigh.veth1e01ee50.ucast_solicit = 3 +net.ipv6.neigh.veth1e01ee50.unres_qlen = 101 +net.ipv6.neigh.veth1e01ee50.unres_qlen_bytes = 212992 +net.ipv6.neigh.veth328abad5.anycast_delay = 100 +net.ipv6.neigh.veth328abad5.app_solicit = 0 +net.ipv6.neigh.veth328abad5.base_reachable_time_ms = 30000 +net.ipv6.neigh.veth328abad5.delay_first_probe_time = 5 +net.ipv6.neigh.veth328abad5.gc_stale_time = 60 +net.ipv6.neigh.veth328abad5.locktime = 0 +net.ipv6.neigh.veth328abad5.mcast_resolicit = 0 +net.ipv6.neigh.veth328abad5.mcast_solicit = 3 +net.ipv6.neigh.veth328abad5.proxy_delay = 80 +net.ipv6.neigh.veth328abad5.proxy_qlen = 64 +net.ipv6.neigh.veth328abad5.retrans_time_ms = 1000 +net.ipv6.neigh.veth328abad5.ucast_solicit = 3 +net.ipv6.neigh.veth328abad5.unres_qlen = 101 +net.ipv6.neigh.veth328abad5.unres_qlen_bytes = 212992 +net.ipv6.neigh.veth3bd42127.anycast_delay = 100 +net.ipv6.neigh.veth3bd42127.app_solicit = 0 +net.ipv6.neigh.veth3bd42127.base_reachable_time_ms = 30000 +net.ipv6.neigh.veth3bd42127.delay_first_probe_time = 5 +net.ipv6.neigh.veth3bd42127.gc_stale_time = 60 +net.ipv6.neigh.veth3bd42127.locktime = 0 +net.ipv6.neigh.veth3bd42127.mcast_resolicit = 0 +net.ipv6.neigh.veth3bd42127.mcast_solicit = 3 +net.ipv6.neigh.veth3bd42127.proxy_delay = 80 +net.ipv6.neigh.veth3bd42127.proxy_qlen = 64 +net.ipv6.neigh.veth3bd42127.retrans_time_ms = 1000 +net.ipv6.neigh.veth3bd42127.ucast_solicit = 3 +net.ipv6.neigh.veth3bd42127.unres_qlen = 101 +net.ipv6.neigh.veth3bd42127.unres_qlen_bytes = 212992 +net.ipv6.neigh.veth45fa2bdb.anycast_delay = 100 +net.ipv6.neigh.veth45fa2bdb.app_solicit = 0 +net.ipv6.neigh.veth45fa2bdb.base_reachable_time_ms = 30000 +net.ipv6.neigh.veth45fa2bdb.delay_first_probe_time = 5 +net.ipv6.neigh.veth45fa2bdb.gc_stale_time = 60 +net.ipv6.neigh.veth45fa2bdb.locktime = 0 +net.ipv6.neigh.veth45fa2bdb.mcast_resolicit = 0 +net.ipv6.neigh.veth45fa2bdb.mcast_solicit = 3 +net.ipv6.neigh.veth45fa2bdb.proxy_delay = 80 +net.ipv6.neigh.veth45fa2bdb.proxy_qlen = 64 +net.ipv6.neigh.veth45fa2bdb.retrans_time_ms = 1000 +net.ipv6.neigh.veth45fa2bdb.ucast_solicit = 3 +net.ipv6.neigh.veth45fa2bdb.unres_qlen = 101 +net.ipv6.neigh.veth45fa2bdb.unres_qlen_bytes = 212992 +net.ipv6.neigh.veth522c3e56.anycast_delay = 100 +net.ipv6.neigh.veth522c3e56.app_solicit = 0 +net.ipv6.neigh.veth522c3e56.base_reachable_time_ms = 30000 +net.ipv6.neigh.veth522c3e56.delay_first_probe_time = 5 +net.ipv6.neigh.veth522c3e56.gc_stale_time = 60 +net.ipv6.neigh.veth522c3e56.locktime = 0 +net.ipv6.neigh.veth522c3e56.mcast_resolicit = 0 +net.ipv6.neigh.veth522c3e56.mcast_solicit = 3 +net.ipv6.neigh.veth522c3e56.proxy_delay = 80 +net.ipv6.neigh.veth522c3e56.proxy_qlen = 64 +net.ipv6.neigh.veth522c3e56.retrans_time_ms = 1000 +net.ipv6.neigh.veth522c3e56.ucast_solicit = 3 +net.ipv6.neigh.veth522c3e56.unres_qlen = 101 +net.ipv6.neigh.veth522c3e56.unres_qlen_bytes = 212992 +net.ipv6.neigh.veth57871859.anycast_delay = 100 +net.ipv6.neigh.veth57871859.app_solicit = 0 +net.ipv6.neigh.veth57871859.base_reachable_time_ms = 30000 +net.ipv6.neigh.veth57871859.delay_first_probe_time = 5 +net.ipv6.neigh.veth57871859.gc_stale_time = 60 +net.ipv6.neigh.veth57871859.locktime = 0 +net.ipv6.neigh.veth57871859.mcast_resolicit = 0 +net.ipv6.neigh.veth57871859.mcast_solicit = 3 +net.ipv6.neigh.veth57871859.proxy_delay = 80 +net.ipv6.neigh.veth57871859.proxy_qlen = 64 +net.ipv6.neigh.veth57871859.retrans_time_ms = 1000 +net.ipv6.neigh.veth57871859.ucast_solicit = 3 +net.ipv6.neigh.veth57871859.unres_qlen = 101 +net.ipv6.neigh.veth57871859.unres_qlen_bytes = 212992 +net.ipv6.neigh.veth61f76055.anycast_delay = 100 +net.ipv6.neigh.veth61f76055.app_solicit = 0 +net.ipv6.neigh.veth61f76055.base_reachable_time_ms = 30000 +net.ipv6.neigh.veth61f76055.delay_first_probe_time = 5 +net.ipv6.neigh.veth61f76055.gc_stale_time = 60 +net.ipv6.neigh.veth61f76055.locktime = 0 +net.ipv6.neigh.veth61f76055.mcast_resolicit = 0 +net.ipv6.neigh.veth61f76055.mcast_solicit = 3 +net.ipv6.neigh.veth61f76055.proxy_delay = 80 +net.ipv6.neigh.veth61f76055.proxy_qlen = 64 +net.ipv6.neigh.veth61f76055.retrans_time_ms = 1000 +net.ipv6.neigh.veth61f76055.ucast_solicit = 3 +net.ipv6.neigh.veth61f76055.unres_qlen = 101 +net.ipv6.neigh.veth61f76055.unres_qlen_bytes = 212992 +net.ipv6.neigh.veth67de6880.anycast_delay = 100 +net.ipv6.neigh.veth67de6880.app_solicit = 0 +net.ipv6.neigh.veth67de6880.base_reachable_time_ms = 30000 +net.ipv6.neigh.veth67de6880.delay_first_probe_time = 5 +net.ipv6.neigh.veth67de6880.gc_stale_time = 60 +net.ipv6.neigh.veth67de6880.locktime = 0 +net.ipv6.neigh.veth67de6880.mcast_resolicit = 0 +net.ipv6.neigh.veth67de6880.mcast_solicit = 3 +net.ipv6.neigh.veth67de6880.proxy_delay = 80 +net.ipv6.neigh.veth67de6880.proxy_qlen = 64 +net.ipv6.neigh.veth67de6880.retrans_time_ms = 1000 +net.ipv6.neigh.veth67de6880.ucast_solicit = 3 +net.ipv6.neigh.veth67de6880.unres_qlen = 101 +net.ipv6.neigh.veth67de6880.unres_qlen_bytes = 212992 +net.ipv6.neigh.veth67e3da0.anycast_delay = 100 +net.ipv6.neigh.veth67e3da0.app_solicit = 0 +net.ipv6.neigh.veth67e3da0.base_reachable_time_ms = 30000 +net.ipv6.neigh.veth67e3da0.delay_first_probe_time = 5 +net.ipv6.neigh.veth67e3da0.gc_stale_time = 60 +net.ipv6.neigh.veth67e3da0.locktime = 0 +net.ipv6.neigh.veth67e3da0.mcast_resolicit = 0 +net.ipv6.neigh.veth67e3da0.mcast_solicit = 3 +net.ipv6.neigh.veth67e3da0.proxy_delay = 80 +net.ipv6.neigh.veth67e3da0.proxy_qlen = 64 +net.ipv6.neigh.veth67e3da0.retrans_time_ms = 1000 +net.ipv6.neigh.veth67e3da0.ucast_solicit = 3 +net.ipv6.neigh.veth67e3da0.unres_qlen = 101 +net.ipv6.neigh.veth67e3da0.unres_qlen_bytes = 212992 +net.ipv6.neigh.vetha245bad8.anycast_delay = 100 +net.ipv6.neigh.vetha245bad8.app_solicit = 0 +net.ipv6.neigh.vetha245bad8.base_reachable_time_ms = 30000 +net.ipv6.neigh.vetha245bad8.delay_first_probe_time = 5 +net.ipv6.neigh.vetha245bad8.gc_stale_time = 60 +net.ipv6.neigh.vetha245bad8.locktime = 0 +net.ipv6.neigh.vetha245bad8.mcast_resolicit = 0 +net.ipv6.neigh.vetha245bad8.mcast_solicit = 3 +net.ipv6.neigh.vetha245bad8.proxy_delay = 80 +net.ipv6.neigh.vetha245bad8.proxy_qlen = 64 +net.ipv6.neigh.vetha245bad8.retrans_time_ms = 1000 +net.ipv6.neigh.vetha245bad8.ucast_solicit = 3 +net.ipv6.neigh.vetha245bad8.unres_qlen = 101 +net.ipv6.neigh.vetha245bad8.unres_qlen_bytes = 212992 +net.ipv6.neigh.vetha67e3445.anycast_delay = 100 +net.ipv6.neigh.vetha67e3445.app_solicit = 0 +net.ipv6.neigh.vetha67e3445.base_reachable_time_ms = 30000 +net.ipv6.neigh.vetha67e3445.delay_first_probe_time = 5 +net.ipv6.neigh.vetha67e3445.gc_stale_time = 60 +net.ipv6.neigh.vetha67e3445.locktime = 0 +net.ipv6.neigh.vetha67e3445.mcast_resolicit = 0 +net.ipv6.neigh.vetha67e3445.mcast_solicit = 3 +net.ipv6.neigh.vetha67e3445.proxy_delay = 80 +net.ipv6.neigh.vetha67e3445.proxy_qlen = 64 +net.ipv6.neigh.vetha67e3445.retrans_time_ms = 1000 +net.ipv6.neigh.vetha67e3445.ucast_solicit = 3 +net.ipv6.neigh.vetha67e3445.unres_qlen = 101 +net.ipv6.neigh.vetha67e3445.unres_qlen_bytes = 212992 +net.ipv6.neigh.vethaa8f4de.anycast_delay = 100 +net.ipv6.neigh.vethaa8f4de.app_solicit = 0 +net.ipv6.neigh.vethaa8f4de.base_reachable_time_ms = 30000 +net.ipv6.neigh.vethaa8f4de.delay_first_probe_time = 5 +net.ipv6.neigh.vethaa8f4de.gc_stale_time = 60 +net.ipv6.neigh.vethaa8f4de.locktime = 0 +net.ipv6.neigh.vethaa8f4de.mcast_resolicit = 0 +net.ipv6.neigh.vethaa8f4de.mcast_solicit = 3 +net.ipv6.neigh.vethaa8f4de.proxy_delay = 80 +net.ipv6.neigh.vethaa8f4de.proxy_qlen = 64 +net.ipv6.neigh.vethaa8f4de.retrans_time_ms = 1000 +net.ipv6.neigh.vethaa8f4de.ucast_solicit = 3 +net.ipv6.neigh.vethaa8f4de.unres_qlen = 101 +net.ipv6.neigh.vethaa8f4de.unres_qlen_bytes = 212992 +net.ipv6.neigh.vethad45a55a.anycast_delay = 100 +net.ipv6.neigh.vethad45a55a.app_solicit = 0 +net.ipv6.neigh.vethad45a55a.base_reachable_time_ms = 30000 +net.ipv6.neigh.vethad45a55a.delay_first_probe_time = 5 +net.ipv6.neigh.vethad45a55a.gc_stale_time = 60 +net.ipv6.neigh.vethad45a55a.locktime = 0 +net.ipv6.neigh.vethad45a55a.mcast_resolicit = 0 +net.ipv6.neigh.vethad45a55a.mcast_solicit = 3 +net.ipv6.neigh.vethad45a55a.proxy_delay = 80 +net.ipv6.neigh.vethad45a55a.proxy_qlen = 64 +net.ipv6.neigh.vethad45a55a.retrans_time_ms = 1000 +net.ipv6.neigh.vethad45a55a.ucast_solicit = 3 +net.ipv6.neigh.vethad45a55a.unres_qlen = 101 +net.ipv6.neigh.vethad45a55a.unres_qlen_bytes = 212992 +net.ipv6.neigh.vethb2e8fb78.anycast_delay = 100 +net.ipv6.neigh.vethb2e8fb78.app_solicit = 0 +net.ipv6.neigh.vethb2e8fb78.base_reachable_time_ms = 30000 +net.ipv6.neigh.vethb2e8fb78.delay_first_probe_time = 5 +net.ipv6.neigh.vethb2e8fb78.gc_stale_time = 60 +net.ipv6.neigh.vethb2e8fb78.locktime = 0 +net.ipv6.neigh.vethb2e8fb78.mcast_resolicit = 0 +net.ipv6.neigh.vethb2e8fb78.mcast_solicit = 3 +net.ipv6.neigh.vethb2e8fb78.proxy_delay = 80 +net.ipv6.neigh.vethb2e8fb78.proxy_qlen = 64 +net.ipv6.neigh.vethb2e8fb78.retrans_time_ms = 1000 +net.ipv6.neigh.vethb2e8fb78.ucast_solicit = 3 +net.ipv6.neigh.vethb2e8fb78.unres_qlen = 101 +net.ipv6.neigh.vethb2e8fb78.unres_qlen_bytes = 212992 +net.ipv6.neigh.vethb9d2af0d.anycast_delay = 100 +net.ipv6.neigh.vethb9d2af0d.app_solicit = 0 +net.ipv6.neigh.vethb9d2af0d.base_reachable_time_ms = 30000 +net.ipv6.neigh.vethb9d2af0d.delay_first_probe_time = 5 +net.ipv6.neigh.vethb9d2af0d.gc_stale_time = 60 +net.ipv6.neigh.vethb9d2af0d.locktime = 0 +net.ipv6.neigh.vethb9d2af0d.mcast_resolicit = 0 +net.ipv6.neigh.vethb9d2af0d.mcast_solicit = 3 +net.ipv6.neigh.vethb9d2af0d.proxy_delay = 80 +net.ipv6.neigh.vethb9d2af0d.proxy_qlen = 64 +net.ipv6.neigh.vethb9d2af0d.retrans_time_ms = 1000 +net.ipv6.neigh.vethb9d2af0d.ucast_solicit = 3 +net.ipv6.neigh.vethb9d2af0d.unres_qlen = 101 +net.ipv6.neigh.vethb9d2af0d.unres_qlen_bytes = 212992 +net.ipv6.neigh.vethc33cb528.anycast_delay = 100 +net.ipv6.neigh.vethc33cb528.app_solicit = 0 +net.ipv6.neigh.vethc33cb528.base_reachable_time_ms = 30000 +net.ipv6.neigh.vethc33cb528.delay_first_probe_time = 5 +net.ipv6.neigh.vethc33cb528.gc_stale_time = 60 +net.ipv6.neigh.vethc33cb528.locktime = 0 +net.ipv6.neigh.vethc33cb528.mcast_resolicit = 0 +net.ipv6.neigh.vethc33cb528.mcast_solicit = 3 +net.ipv6.neigh.vethc33cb528.proxy_delay = 80 +net.ipv6.neigh.vethc33cb528.proxy_qlen = 64 +net.ipv6.neigh.vethc33cb528.retrans_time_ms = 1000 +net.ipv6.neigh.vethc33cb528.ucast_solicit = 3 +net.ipv6.neigh.vethc33cb528.unres_qlen = 101 +net.ipv6.neigh.vethc33cb528.unres_qlen_bytes = 212992 +net.ipv6.neigh.vethc52473d4.anycast_delay = 100 +net.ipv6.neigh.vethc52473d4.app_solicit = 0 +net.ipv6.neigh.vethc52473d4.base_reachable_time_ms = 30000 +net.ipv6.neigh.vethc52473d4.delay_first_probe_time = 5 +net.ipv6.neigh.vethc52473d4.gc_stale_time = 60 +net.ipv6.neigh.vethc52473d4.locktime = 0 +net.ipv6.neigh.vethc52473d4.mcast_resolicit = 0 +net.ipv6.neigh.vethc52473d4.mcast_solicit = 3 +net.ipv6.neigh.vethc52473d4.proxy_delay = 80 +net.ipv6.neigh.vethc52473d4.proxy_qlen = 64 +net.ipv6.neigh.vethc52473d4.retrans_time_ms = 1000 +net.ipv6.neigh.vethc52473d4.ucast_solicit = 3 +net.ipv6.neigh.vethc52473d4.unres_qlen = 101 +net.ipv6.neigh.vethc52473d4.unres_qlen_bytes = 212992 +net.ipv6.neigh.vethc532c32b.anycast_delay = 100 +net.ipv6.neigh.vethc532c32b.app_solicit = 0 +net.ipv6.neigh.vethc532c32b.base_reachable_time_ms = 30000 +net.ipv6.neigh.vethc532c32b.delay_first_probe_time = 5 +net.ipv6.neigh.vethc532c32b.gc_stale_time = 60 +net.ipv6.neigh.vethc532c32b.locktime = 0 +net.ipv6.neigh.vethc532c32b.mcast_resolicit = 0 +net.ipv6.neigh.vethc532c32b.mcast_solicit = 3 +net.ipv6.neigh.vethc532c32b.proxy_delay = 80 +net.ipv6.neigh.vethc532c32b.proxy_qlen = 64 +net.ipv6.neigh.vethc532c32b.retrans_time_ms = 1000 +net.ipv6.neigh.vethc532c32b.ucast_solicit = 3 +net.ipv6.neigh.vethc532c32b.unres_qlen = 101 +net.ipv6.neigh.vethc532c32b.unres_qlen_bytes = 212992 +net.ipv6.neigh.vethce7b9a4d.anycast_delay = 100 +net.ipv6.neigh.vethce7b9a4d.app_solicit = 0 +net.ipv6.neigh.vethce7b9a4d.base_reachable_time_ms = 30000 +net.ipv6.neigh.vethce7b9a4d.delay_first_probe_time = 5 +net.ipv6.neigh.vethce7b9a4d.gc_stale_time = 60 +net.ipv6.neigh.vethce7b9a4d.locktime = 0 +net.ipv6.neigh.vethce7b9a4d.mcast_resolicit = 0 +net.ipv6.neigh.vethce7b9a4d.mcast_solicit = 3 +net.ipv6.neigh.vethce7b9a4d.proxy_delay = 80 +net.ipv6.neigh.vethce7b9a4d.proxy_qlen = 64 +net.ipv6.neigh.vethce7b9a4d.retrans_time_ms = 1000 +net.ipv6.neigh.vethce7b9a4d.ucast_solicit = 3 +net.ipv6.neigh.vethce7b9a4d.unres_qlen = 101 +net.ipv6.neigh.vethce7b9a4d.unres_qlen_bytes = 212992 +net.ipv6.neigh.vethe8577b3d.anycast_delay = 100 +net.ipv6.neigh.vethe8577b3d.app_solicit = 0 +net.ipv6.neigh.vethe8577b3d.base_reachable_time_ms = 30000 +net.ipv6.neigh.vethe8577b3d.delay_first_probe_time = 5 +net.ipv6.neigh.vethe8577b3d.gc_stale_time = 60 +net.ipv6.neigh.vethe8577b3d.locktime = 0 +net.ipv6.neigh.vethe8577b3d.mcast_resolicit = 0 +net.ipv6.neigh.vethe8577b3d.mcast_solicit = 3 +net.ipv6.neigh.vethe8577b3d.proxy_delay = 80 +net.ipv6.neigh.vethe8577b3d.proxy_qlen = 64 +net.ipv6.neigh.vethe8577b3d.retrans_time_ms = 1000 +net.ipv6.neigh.vethe8577b3d.ucast_solicit = 3 +net.ipv6.neigh.vethe8577b3d.unres_qlen = 101 +net.ipv6.neigh.vethe8577b3d.unres_qlen_bytes = 212992 +net.ipv6.neigh.vethe8b73084.anycast_delay = 100 +net.ipv6.neigh.vethe8b73084.app_solicit = 0 +net.ipv6.neigh.vethe8b73084.base_reachable_time_ms = 30000 +net.ipv6.neigh.vethe8b73084.delay_first_probe_time = 5 +net.ipv6.neigh.vethe8b73084.gc_stale_time = 60 +net.ipv6.neigh.vethe8b73084.locktime = 0 +net.ipv6.neigh.vethe8b73084.mcast_resolicit = 0 +net.ipv6.neigh.vethe8b73084.mcast_solicit = 3 +net.ipv6.neigh.vethe8b73084.proxy_delay = 80 +net.ipv6.neigh.vethe8b73084.proxy_qlen = 64 +net.ipv6.neigh.vethe8b73084.retrans_time_ms = 1000 +net.ipv6.neigh.vethe8b73084.ucast_solicit = 3 +net.ipv6.neigh.vethe8b73084.unres_qlen = 101 +net.ipv6.neigh.vethe8b73084.unres_qlen_bytes = 212992 +net.ipv6.neigh.vethf5136d77.anycast_delay = 100 +net.ipv6.neigh.vethf5136d77.app_solicit = 0 +net.ipv6.neigh.vethf5136d77.base_reachable_time_ms = 30000 +net.ipv6.neigh.vethf5136d77.delay_first_probe_time = 5 +net.ipv6.neigh.vethf5136d77.gc_stale_time = 60 +net.ipv6.neigh.vethf5136d77.locktime = 0 +net.ipv6.neigh.vethf5136d77.mcast_resolicit = 0 +net.ipv6.neigh.vethf5136d77.mcast_solicit = 3 +net.ipv6.neigh.vethf5136d77.proxy_delay = 80 +net.ipv6.neigh.vethf5136d77.proxy_qlen = 64 +net.ipv6.neigh.vethf5136d77.retrans_time_ms = 1000 +net.ipv6.neigh.vethf5136d77.ucast_solicit = 3 +net.ipv6.neigh.vethf5136d77.unres_qlen = 101 +net.ipv6.neigh.vethf5136d77.unres_qlen_bytes = 212992 +net.ipv6.neigh.vethfa2d922.anycast_delay = 100 +net.ipv6.neigh.vethfa2d922.app_solicit = 0 +net.ipv6.neigh.vethfa2d922.base_reachable_time_ms = 30000 +net.ipv6.neigh.vethfa2d922.delay_first_probe_time = 5 +net.ipv6.neigh.vethfa2d922.gc_stale_time = 60 +net.ipv6.neigh.vethfa2d922.locktime = 0 +net.ipv6.neigh.vethfa2d922.mcast_resolicit = 0 +net.ipv6.neigh.vethfa2d922.mcast_solicit = 3 +net.ipv6.neigh.vethfa2d922.proxy_delay = 80 +net.ipv6.neigh.vethfa2d922.proxy_qlen = 64 +net.ipv6.neigh.vethfa2d922.retrans_time_ms = 1000 +net.ipv6.neigh.vethfa2d922.ucast_solicit = 3 +net.ipv6.neigh.vethfa2d922.unres_qlen = 101 +net.ipv6.neigh.vethfa2d922.unres_qlen_bytes = 212992 +net.ipv6.neigh.virbr0.anycast_delay = 100 +net.ipv6.neigh.virbr0.app_solicit = 0 +net.ipv6.neigh.virbr0.base_reachable_time_ms = 30000 +net.ipv6.neigh.virbr0.delay_first_probe_time = 5 +net.ipv6.neigh.virbr0.gc_stale_time = 60 +net.ipv6.neigh.virbr0.locktime = 0 +net.ipv6.neigh.virbr0.mcast_resolicit = 0 +net.ipv6.neigh.virbr0.mcast_solicit = 3 +net.ipv6.neigh.virbr0.proxy_delay = 80 +net.ipv6.neigh.virbr0.proxy_qlen = 64 +net.ipv6.neigh.virbr0.retrans_time_ms = 1000 +net.ipv6.neigh.virbr0.ucast_solicit = 3 +net.ipv6.neigh.virbr0.unres_qlen = 101 +net.ipv6.neigh.virbr0.unres_qlen_bytes = 212992 +net.ipv6.neigh.virbr0-nic.anycast_delay = 100 +net.ipv6.neigh.virbr0-nic.app_solicit = 0 +net.ipv6.neigh.virbr0-nic.base_reachable_time_ms = 30000 +net.ipv6.neigh.virbr0-nic.delay_first_probe_time = 5 +net.ipv6.neigh.virbr0-nic.gc_stale_time = 60 +net.ipv6.neigh.virbr0-nic.locktime = 0 +net.ipv6.neigh.virbr0-nic.mcast_resolicit = 0 +net.ipv6.neigh.virbr0-nic.mcast_solicit = 3 +net.ipv6.neigh.virbr0-nic.proxy_delay = 80 +net.ipv6.neigh.virbr0-nic.proxy_qlen = 64 +net.ipv6.neigh.virbr0-nic.retrans_time_ms = 1000 +net.ipv6.neigh.virbr0-nic.ucast_solicit = 3 +net.ipv6.neigh.virbr0-nic.unres_qlen = 101 +net.ipv6.neigh.virbr0-nic.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 = 4096 +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 = 65536 +net.netfilter.nf_conntrack_checksum = 1 +net.netfilter.nf_conntrack_count = 663 +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 = 1 +net.netfilter.nf_conntrack_expect_max = 1024 +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_helper = 0 +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 = 432000 +net.netfilter.nf_conntrack_sctp_timeout_heartbeat_acked = 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 = 0 +net.netfilter.nf_conntrack_sctp_timeout_shutdown_sent = 0 +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 = 60 +net.netfilter.nf_conntrack_tcp_timeout_established = 432000 +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_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 = nfnetlink_log +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 +sunrpc.max_resvport = 1023 +sunrpc.min_resvport = 665 +sunrpc.nfs_debug = 0x0000 +sunrpc.nfsd_debug = 0x0000 +sunrpc.nlm_debug = 0x0000 +sunrpc.rpc_debug = 0x0000 +sunrpc.tcp_fin_timeout = 15 +sunrpc.tcp_max_slot_table_entries = 65536 +sunrpc.tcp_slot_table_entries = 2 +sunrpc.transports = tcp 1048576 +sunrpc.transports = udp 32768 +sunrpc.udp_slot_table_entries = 16 +user.max_cgroup_namespaces = 773413 +user.max_inotify_instances = 1024 +user.max_inotify_watches = 65535 +user.max_ipc_namespaces = 773413 +user.max_mnt_namespaces = 773413 +user.max_net_namespaces = 773413 +user.max_pid_namespaces = 773413 +user.max_user_namespaces = 15000 +user.max_uts_namespaces = 773413 +vm.admin_reserve_kbytes = 8192 +vm.block_dump = 0 +vm.compact_unevictable_allowed = 1 +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.drop_caches = 2 +vm.extfrag_threshold = 500 +vm.hugetlb_shm_group = 0 +vm.laptop_mode = 0 +vm.legacy_va_layout = 0 +vm.lowmem_reserve_ratio = 256 256 32 0 0 +vm.max_map_count = 65530 +vm.memory_failure_early_kill = 0 +vm.memory_failure_recovery = 1 +vm.min_free_kbytes = 90112 +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 = 4330 +vm.nr_hugepages_mempolicy = 4330 +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 = 10000 +vm.page-cluster = 3 +vm.panic_on_oom = 0 +vm.percpu_pagelist_fraction = 0 +vm.stat_interval = 1 +vm.swappiness = 1 +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 diff --git a/t/pt-summary/samples/Linux/007/uptime b/t/pt-summary/samples/Linux/007/uptime new file mode 100644 index 00000000..e87a04cd --- /dev/null +++ b/t/pt-summary/samples/Linux/007/uptime @@ -0,0 +1 @@ + 14:08:12 up 38 days, 1:34, 6 users, load average: 3.72, 4.25, 4.97 diff --git a/t/pt-summary/samples/Linux/007/vgs b/t/pt-summary/samples/Linux/007/vgs new file mode 100644 index 00000000..d7ce10c5 --- /dev/null +++ b/t/pt-summary/samples/Linux/007/vgs @@ -0,0 +1,2 @@ + VG VSize VFree + raid10 <3.55t 562.86g diff --git a/t/pt-summary/samples/Linux/output_002.txt b/t/pt-summary/samples/Linux/output_002.txt index 76eee1c3..c47358a5 100644 --- a/t/pt-summary/samples/Linux/output_002.txt +++ b/t/pt-summary/samples/Linux/output_002.txt @@ -14,16 +14,16 @@ Architecture | CPU = 32-bit, OS = 32-bit Models | 1xQEMU Virtual CPU version 0.14.1 Caches | 1x4096 KB # Memory ##################################################### - Total | 1010.5M - Free | 784.4M - Used | physical = 226.1M, swap allocated = 2.0G, swap used = 0.0, virtual = 226.1M - Shared | 0.0 - Buffers | 48.8M - Caches | 122.2M - Dirty | 152 kB - UsedRSS | 63.2M - Swappiness | - DirtyPolicy | + Total | 1010.5M + Free | 784.4M + Used | physical = 226.1M, swap allocated = 2.0G, swap used = 0.0, virtual = 226.1M + Shared | 0.0 + Buffers | 48.8M + Caches | 122.2M + Dirty | 152 kB + UsedRSS | 63.2M + Swappiness | + DirtyPolicy | # Mounted Filesystems ######################################## Filesystem Size Used Type Opts Mountpoint /dev/hda1 99M 13% ext3 rw /boot diff --git a/t/pt-summary/samples/Linux/output_003.txt b/t/pt-summary/samples/Linux/output_003.txt index 5925aff9..48c692bf 100644 --- a/t/pt-summary/samples/Linux/output_003.txt +++ b/t/pt-summary/samples/Linux/output_003.txt @@ -14,16 +14,16 @@ Architecture | CPU = 32-bit, OS = 32-bit Models | 1xQEMU Virtual CPU version 0.14.1 Caches | 1x4096 KB # Memory ##################################################### - Total | 1010.5M - Free | 784.7M - Used | physical = 225.8M, swap allocated = 2.0G, swap used = 0.0, virtual = 225.8M - Shared | 1.3M - Buffers | 48.8M - Caches | 122.0M - Dirty | 80 kB - UsedRSS | 63.2M - Swappiness | - DirtyPolicy | + Total | 1010.5M + Free | 784.7M + Used | physical = 225.8M, swap allocated = 2.0G, swap used = 0.0, virtual = 225.8M + Shared | 1.3M + Buffers | 48.8M + Caches | 122.0M + Dirty | 80 kB + UsedRSS | 63.2M + Swappiness | + DirtyPolicy | # Mounted Filesystems ######################################## Filesystem Size Used Type Opts Mountpoint /dev/hda1 99M 13% ext3 rw /boot diff --git a/t/pt-summary/samples/Linux/output_005.txt b/t/pt-summary/samples/Linux/output_005.txt index 81bab533..8d3fc759 100644 --- a/t/pt-summary/samples/Linux/output_005.txt +++ b/t/pt-summary/samples/Linux/output_005.txt @@ -15,17 +15,17 @@ Architecture | CPU = 64-bit, OS = 64-bit Models | 4xIntel(R) Core(TM) i7-8565U CPU @ 1.80GHz Caches | 4x8192 KB # Memory ##################################################### - Total | 3.7G - Free | 2.9G - Used | physical = 383.7M, swap allocated = 2.0G, swap used = 0.0, virtual = 383.7M - Shared | 32.9M - Buffers | 2.0M - Caches | 396.0M - Dirty | 136 kB - UsedRSS | 464.8M - Swappiness | 30 - DirtyPolicy | 30, 10 - DirtyStatus | 0, 0 + Total | 3.7G + Free | 2.9G + Used | physical = 383.7M, swap allocated = 2.0G, swap used = 0.0, virtual = 383.7M + Shared | 32.9M + Buffers | 2.0M + Caches | 396.0M + Dirty | 136 kB + UsedRSS | 464.8M + Swappiness | 30 + DirtyPolicy | 30, 10 + DirtyStatus | 0, 0 Locator Size Speed Form Factor Type Type Detail ========= ======== ================= ============= ============= =========== DIMM_A1 8192 MB 1333 MT/s DIMM DDR3 Synchronous Registered (Buffered) diff --git a/t/pt-summary/samples/Linux/output_006.txt b/t/pt-summary/samples/Linux/output_006.txt new file mode 100644 index 00000000..a435a548 --- /dev/null +++ b/t/pt-summary/samples/Linux/output_006.txt @@ -0,0 +1,205 @@ + Hostname | Delly-7390 + Uptime | 1 day, 6:15, 1 user, load average: 0,40, 0,72, 0,86 + System | Dell Inc.; XPS 13 7390 2-in-1; vNot Specified (Convertible) + Service Tag | H3RJL13 + Platform | Linux + Release | Ubuntu 20.04.4 LTS (focal) + Kernel | 5.15.0-41-generic +Architecture | CPU = 64-bit, OS = 64-bit + Threading | NPTL 2.31 + SELinux | No SELinux detected + Virtualized | No virtualization detected +# Processor ################################################## + Processors | physical = 1, cores = 4, virtual = 8, hyperthreading = yes + Speeds | 7x1500.000, 1x3113.329 + Models | 8xIntel(R) Core(TM) i7-1065G7 CPU @ 1.30GHz + Caches | 8x8192 KB +# Memory ##################################################### + Total | 31.1G + Free | 2.2G + Used | physical = 12.6G, swap allocated = 976.0M, swap used = 122.5M, virtual = 12.7G + Shared | 5.5G + Buffers | 16.4G + Caches | 12.6G + Dirty | 3992 kB + UsedRSS | 19.6G + Swappiness | 60 + DirtyPolicy | 20, 10 + DirtyStatus | 0, 0 + Numa Nodes | 1 + Numa Policy | default +Preferred Node | current + Node Size Free CPUs + ==== ==== ==== ==== + node0 31877 MB 2282 MB 0 1 2 3 4 5 6 7 + + Locator Size Speed Form Factor Type Type Detail + ========= ======== ================= ============= ============= =========== + Motherboard 16384 MB 3733 MT/s Row Of Chips LPDDR4 Synchronous + Motherboard 16384 MB 3733 MT/s Row Of Chips LPDDR4 Synchronous +# Mounted Filesystems ######################################## + Filesystem Size Used Type Opts Mountpoint + /dev/mapper/vgubuntu-root 915G 75% ext4 rw,relatime,errors=remount-ro / + /dev/mmcblk0p1 239G 90% fuseblk rw,nosuid,nodev,relatime,user_id=0,group_id=0,default_permissions,allow_other,blksize=4096,uhelper=udisks2 /media/sveta/disk1 + /dev/nvme0n1p1 511M 4% vfat rw,relatime,fmask=0077,dmask=0077,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro /boot/efi + /dev/nvme0n1p2 704M 42% ext4 rw,relatime /boot + overlay 915G 75% overlay rw,relatime,lowerdir=/var/lib/docker/overlay2/l/FQIQG2VFFXJ426FBUGGBSCWRG2:/var/lib/docker/overlay2/l/33C2CVPTOUZAT35KSL6I6DIWBZ:/var/lib/docker/overlay2/l/JTYFHSFS4TSV4PYBIQ7R57HCJ7,upperdir=/var/lib/docker/overlay2/c9349dd66a824eb0883d69eb6114a6d713a48901579c45267ef1bea3c6ab7a1a/diff,workdir=/var/lib/docker/overlay2/c9349dd66a824eb0883d69eb6114a6d713a48901579c45267ef1bea3c6ab7a1a/work /var/lib/docker/overlay2/c9349dd66a824eb0883d69eb6114a6d713a48901579c45267ef1bea3c6ab7a1a/merged + overlay 915G 75% overlay rw,relatime,lowerdir=/var/lib/docker/overlay2/l/RFAP7AE62T2GF223V7KCEJDN64:/var/lib/docker/overlay2/l/33C2CVPTOUZAT35KSL6I6DIWBZ:/var/lib/docker/overlay2/l/JTYFHSFS4TSV4PYBIQ7R57HCJ7,upperdir=/var/lib/docker/overlay2/f70a41a21dd8b3172c92e29fe1b91dfde0a65cfc878ee78acfad91e47124385c/diff,workdir=/var/lib/docker/overlay2/f70a41a21dd8b3172c92e29fe1b91dfde0a65cfc878ee78acfad91e47124385c/work /var/lib/docker/overlay2/c9349dd66a824eb0883d69eb6114a6d713a48901579c45267ef1bea3c6ab7a1a/merged + overlay 915G 75% overlay rw,relatime,lowerdir=/var/lib/docker/overlay2/l/FQIQG2VFFXJ426FBUGGBSCWRG2:/var/lib/docker/overlay2/l/33C2CVPTOUZAT35KSL6I6DIWBZ:/var/lib/docker/overlay2/l/JTYFHSFS4TSV4PYBIQ7R57HCJ7,upperdir=/var/lib/docker/overlay2/c9349dd66a824eb0883d69eb6114a6d713a48901579c45267ef1bea3c6ab7a1a/diff,workdir=/var/lib/docker/overlay2/c9349dd66a824eb0883d69eb6114a6d713a48901579c45267ef1bea3c6ab7a1a/work /var/lib/docker/overlay2/f70a41a21dd8b3172c92e29fe1b91dfde0a65cfc878ee78acfad91e47124385c/merged + overlay 915G 75% overlay rw,relatime,lowerdir=/var/lib/docker/overlay2/l/RFAP7AE62T2GF223V7KCEJDN64:/var/lib/docker/overlay2/l/33C2CVPTOUZAT35KSL6I6DIWBZ:/var/lib/docker/overlay2/l/JTYFHSFS4TSV4PYBIQ7R57HCJ7,upperdir=/var/lib/docker/overlay2/f70a41a21dd8b3172c92e29fe1b91dfde0a65cfc878ee78acfad91e47124385c/diff,workdir=/var/lib/docker/overlay2/f70a41a21dd8b3172c92e29fe1b91dfde0a65cfc878ee78acfad91e47124385c/work /var/lib/docker/overlay2/f70a41a21dd8b3172c92e29fe1b91dfde0a65cfc878ee78acfad91e47124385c/merged + tmpfs 16G 0% tmpfs rw,nosuid,nodev,inode64 /sys/fs/cgroup + tmpfs 16G 0% tmpfs rw,nosuid,nodev,noexec,relatime,size=5120k,inode64 /sys/fs/cgroup + tmpfs 16G 0% tmpfs rw,nosuid,nodev,noexec,relatime,size=3264260k,mode=755,inode64 /sys/fs/cgroup + tmpfs 16G 0% tmpfs rw,nosuid,nodev,noexec,relatime,size=3264260k,mode=755,inode64 /sys/fs/cgroup + tmpfs 16G 0% tmpfs rw,nosuid,nodev,relatime,size=3264256k,mode=700,uid=1000,gid=1000,inode64 /sys/fs/cgroup + tmpfs 16G 0% tmpfs ro,nosuid,nodev,noexec,mode=755,inode64 /sys/fs/cgroup + tmpfs 16G 2% tmpfs rw,nosuid,nodev,inode64 /dev/shm + tmpfs 16G 2% tmpfs rw,nosuid,nodev,noexec,relatime,size=5120k,inode64 /dev/shm + tmpfs 16G 2% tmpfs rw,nosuid,nodev,noexec,relatime,size=3264260k,mode=755,inode64 /dev/shm + tmpfs 16G 2% tmpfs rw,nosuid,nodev,noexec,relatime,size=3264260k,mode=755,inode64 /dev/shm + tmpfs 16G 2% tmpfs rw,nosuid,nodev,relatime,size=3264256k,mode=700,uid=1000,gid=1000,inode64 /dev/shm + tmpfs 16G 2% tmpfs ro,nosuid,nodev,noexec,mode=755,inode64 /dev/shm + tmpfs 3,2G 1% tmpfs rw,nosuid,nodev,inode64 /run + tmpfs 3,2G 1% tmpfs rw,nosuid,nodev,noexec,relatime,size=5120k,inode64 /run + tmpfs 3,2G 1% tmpfs rw,nosuid,nodev,noexec,relatime,size=3264260k,mode=755,inode64 /run + tmpfs 3,2G 1% tmpfs rw,nosuid,nodev,noexec,relatime,size=3264260k,mode=755,inode64 /run + tmpfs 3,2G 1% tmpfs rw,nosuid,nodev,relatime,size=3264256k,mode=700,uid=1000,gid=1000,inode64 /run + tmpfs 3,2G 1% tmpfs ro,nosuid,nodev,noexec,mode=755,inode64 /run + tmpfs 3,2G 1% tmpfs rw,nosuid,nodev,inode64 /run/user/1000 + tmpfs 3,2G 1% tmpfs rw,nosuid,nodev,noexec,relatime,size=5120k,inode64 /run/user/1000 + tmpfs 3,2G 1% tmpfs rw,nosuid,nodev,noexec,relatime,size=3264260k,mode=755,inode64 /run/user/1000 + tmpfs 3,2G 1% tmpfs rw,nosuid,nodev,noexec,relatime,size=3264260k,mode=755,inode64 /run/user/1000 + tmpfs 3,2G 1% tmpfs rw,nosuid,nodev,relatime,size=3264256k,mode=700,uid=1000,gid=1000,inode64 /run/user/1000 + tmpfs 3,2G 1% tmpfs ro,nosuid,nodev,noexec,mode=755,inode64 /run/user/1000 + tmpfs 5,0M 1% tmpfs rw,nosuid,nodev,inode64 /run/lock + tmpfs 5,0M 1% tmpfs rw,nosuid,nodev,noexec,relatime,size=5120k,inode64 /run/lock + tmpfs 5,0M 1% tmpfs rw,nosuid,nodev,noexec,relatime,size=3264260k,mode=755,inode64 /run/lock + tmpfs 5,0M 1% tmpfs rw,nosuid,nodev,noexec,relatime,size=3264260k,mode=755,inode64 /run/lock + tmpfs 5,0M 1% tmpfs rw,nosuid,nodev,relatime,size=3264256k,mode=700,uid=1000,gid=1000,inode64 /run/lock + tmpfs 5,0M 1% tmpfs ro,nosuid,nodev,noexec,mode=755,inode64 /run/lock + udev 16G 0% devtmpfs rw,nosuid,noexec,relatime,size=16256608k,nr_inodes=4064152,mode=755,inode64 /dev +# Disk Schedulers And Queue Size ############################# + dm-0 | 128 + dm-1 | 128 + dm-2 | 128 + mmcblk0 | [mq-deadline] 128 + nvme0n1 | [none] 127 +# Disk Partioning ############################################ +Device Type Start End Size +============ ==== ========== ========== ================== +/dev/dm-0 Disk 1022886936576 +/dev/dm-1 Disk 998974160896 +/dev/dm-2 Disk 1023410176 +/dev/mmcblk0 Disk 256087425024 +/dev/mmcblk0p1 Part 65536 500170751 0 +/dev/nvme0n1 Disk 1024209543168 +/dev/nvme0n1p1 Part 2048 1050623 0 +/dev/nvme0n1p2 Part 1050624 2549759 0 +/dev/nvme0n1p3 Part 2549760 2000408575 0 +# Kernel Inode State ######################################### +dentry-state | 456513 375385 45 0 141719 0 + file-nr | 30570 0 9223372036854775807 + inode-nr | 399300 88416 +# LVM Volumes ################################################ + LV VG Attr LSize Pool Origin Data% Meta% Move Log Cpy%Sync Convert + root vgubuntu -wi-ao---- <930,37g + swap_1 vgubuntu -wi-ao---- 976,00m +# LVM Volume Groups ########################################## + VG VSize VFree + vgubuntu <952,64g <21,32g +# RAID Controller ############################################ + Controller | No RAID controller detected +# Network Config ############################################# + FIN Timeout | 60 + Port Range | 60999 +# Interface Statistics ####################################### + interface rx_bytes rx_packets rx_errors tx_bytes tx_packets tx_errors + ========= ========= ========== ========== ========== ========== ========== + lo 8000000 70000 0 8000000 70000 0 + wlp0s20f3 1750000000 1750000 0 450000000 1000000 0 + br-5bbb6abaea1c 0 0 0 0 0 0 + docker0 9000000 70000 0 40000000 80000 0 + veth311b798@if5 9000000 60000 0 9000000 70000 0 + veth505c1de@if7 1000000 12500 0 30000000 20000 0 +# Network Devices ############################################ + Device Speed Duplex + ========= ========= ========= + br-5bbb6abaea1c Unknown! Unknown! + docker0 10000Mb/s Unknown! + wlp0s20f3 +# Network Connections ######################################## + Connections from remote IP addresses + 3.67.131.16 1 + 3.126.186.102 1 + 3.233.54.64 1 + 18.197.249.189 7 + 23.61.80.242 1 + 34.117.237.239 1 + 35.168.140.53 4 + 35.174.127.31 2 + 35.174.188.51 1 + 35.186.227.140 1 + 52.59.193.28 1 + 52.73.62.51 1 + 54.146.182.72 1 + 54.244.16.100 1 + 82.202.226.23 1 + 84.38.188.87 1 + 93.184.220.29 2 + 108.139.241.22 1 + 108.157.4.6 1 + 108.177.119.109 1 + 108.177.126.188 1 + 108.177.127.108 1 + 127.0.0.1 2 + 142.132.213.154 1 + 149.96.232.184 2 + 149.154.167.51 1 + 157.240.9.53 1 + 162.125.19.9 1 + 162.125.19.131 1 + 162.220.4.198 1 + 172.17.0.2 4 + 172.67.8.157 1 + 173.194.69.108 1 + 173.194.79.109 2 + 185.166.143.25 1 + 198.57.27.221 1 + Connections to local IP addresses + 127.0.0.1 2 + 172.17.0.1 4 + 192.168.1.25 40 + 192.168.11.22 9 + Connections to top 10 local ports + 54208 1 + 55614 1 + 56862 1 + 57302 1 + 58452 1 + 58620 1 + 59664 1 + 59964 1 + 60640 1 + 60766 1 + States of connections + CLOSE_WAIT 9 + ESTABLISHED 40 + LISTEN 30 + TIME_WAIT 5 +# Top Processes ############################################## + PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND + 1836 root 20 0 1862488 39156 14168 S 6,2 0,1 6:31.69 contain+ + 5074 sveta 20 0 715908 14380 3312 S 6,2 0,0 2:32.24 vmalert + 5511 sveta 20 0 5958132 675752 593316 S 6,2 2,1 23:18.64 Xorg + 5582 sveta 20 0 992772 140588 5952 S 6,2 0,4 1:32.41 percona+ + 5583 sveta 20 0 992516 246840 5964 S 6,2 0,8 1:29.62 percona+ + 5819 sveta 20 0 5997200 367992 81312 S 6,2 1,1 42:19.42 gnome-s+ + 13430 sveta 20 0 1124,6g 172364 74192 S 6,2 0,5 16:06.71 wavebox + 14886 sveta 20 0 1124,5g 138544 72440 S 6,2 0,4 0:32.75 wavebox + 474260 sveta 20 0 5069828 795952 162860 S 6,2 2,4 33:45.76 thunder+ +# Notable Processes ########################################## + PID OOM COMMAND + ? ? sshd doesn't appear to be running +# Memory management ########################################## +Transparent huge pages are enabled. +# The End #################################################### diff --git a/t/pt-summary/samples/Linux/output_007.txt b/t/pt-summary/samples/Linux/output_007.txt new file mode 100644 index 00000000..89d7d798 --- /dev/null +++ b/t/pt-summary/samples/Linux/output_007.txt @@ -0,0 +1,564 @@ + Hostname | bm-support01.bm.int.percona.com + Uptime | 38 days, 1:34, 6 users, load average: 3.72, 4.25, 4.97 + System | Dell Inc.; PowerEdge R520; vNot Specified (Rack Mount Chassis) + Service Tag | 6J6X9Y1 + Platform | Linux + Release | CentOS Linux release 7.9.2009 (Core) + Kernel | 5.1.7-1.el7.elrepo.x86_64 +Architecture | CPU = 64-bit, OS = 64-bit + Threading | NPTL 2.17 + Compiler | GNU CC version 4.8.5 20150623 (Red Hat 4.8.5-44). + SELinux | Enforcing + Virtualized | No virtualization detected +# Processor ################################################## + Processors | physical = 2, cores = 12, virtual = 24, hyperthreading = yes + Speeds | 1x1348.923, 1x1456.632, 1x1494.384, 1x1522.090, 1x1525.616, 1x1544.334, 1x1580.156, 1x1604.659, 1x1620.505, 1x1649.961, 1x1667.597, 1x1780.690, 1x2084.880, 1x2109.796, 1x2194.581, 1x2211.704, 1x2246.397, 1x2265.713, 1x2307.331, 1x2320.030, 1x2345.087, 1x2385.594, 1x2389.942, 1x2452.398 + Models | 24xIntel(R) Xeon(R) CPU E5-2430 0 @ 2.20GHz + Caches | 24x15360 KB +# Memory ##################################################### + Total | 188.8G + Free | 72.1G + Used | physical = 32.0G, swap allocated = 4.0G, swap used = 217.0M, virtual = 32.2G + Shared | 4.2G + Buffers | 84.7G + Caches | 152.1G + Dirty | 7340 kB + UsedRSS | 22.9G + Swappiness | 1 + DirtyPolicy | 20, 10 + DirtyStatus | 0, 0 + Numa Nodes | 2 + Numa Policy | default +Preferred Node | current + Node Size Free CPUs + ==== ==== ==== ==== + node1 96762 MB 20083 MB 1 3 5 7 9 11 13 15 17 19 21 23 + node0 96614 MB 53769 MB 0 2 4 6 8 10 12 14 16 18 20 22 + + Locator Size Speed Form Factor Type Type Detail + ========= ======== ================= ============= ============= =========== + DIMM_A1 16384 MB 1333 MT/s DIMM DDR3 Synchronous Registered (Buffered) + DIMM_A2 16384 MB 1333 MT/s DIMM DDR3 Synchronous Registered (Buffered) + DIMM_A3 16384 MB 1333 MT/s DIMM DDR3 Synchronous Registered (Buffered) + DIMM_A4 16384 MB 1333 MT/s DIMM DDR3 Synchronous Registered (Buffered) + DIMM_A5 16384 MB 1333 MT/s DIMM DDR3 Synchronous Registered (Buffered) + DIMM_A6 16384 MB 1333 MT/s DIMM DDR3 Synchronous Registered (Buffered) + DIMM_B1 16384 MB 1333 MT/s DIMM DDR3 Synchronous Registered (Buffered) + DIMM_B2 16384 MB 1333 MT/s DIMM DDR3 Synchronous Registered (Buffered) + DIMM_B3 16384 MB 1333 MT/s DIMM DDR3 Synchronous Registered (Buffered) + DIMM_B4 16384 MB 1333 MT/s DIMM DDR3 Synchronous Registered (Buffered) + DIMM_B5 16384 MB 1333 MT/s DIMM DDR3 Synchronous Registered (Buffered) + DIMM_B6 16384 MB 1333 MT/s DIMM DDR3 Synchronous Registered (Buffered) +# Mounted Filesystems ######################################## + Filesystem Size Used Type Opts Mountpoint + 10.10.8.124:/srv/ftp 1.2T 53% nfs4 ro,relatime,vers=4.1,rsize=524288,wsize=524288,namlen=255,hard,proto=tcp,timeo=600,retrans=2,sec=krb5p,clientaddr=10.10.8.141,local_lock=none,addr=10.10.8.124 /srv/ftp + /dev/mapper/bigdisk_crypt 5.5T 38% ext4 rw,relatime,seclabel /bigdisk + /dev/mapper/home_crypt 2.8T 63% ext4 rw,relatime,seclabel /home + /dev/mapper/root_crypt 99G 30% ext4 rw,relatime,seclabel /root + /dev/nvme0n1 367G 10% ext4 rw,relatime,seclabel /mnt/nvme + /dev/nvme1n1 367G 20% ext4 rw,relatime,seclabel /mnt/nvme2 + /dev/sda1 190M 6% vfat rw,relatime,fmask=0077,dmask=0077,codepage=437,iocharset=ascii,shortname=winnt,errors=remount-ro /boot/efi + /dev/sda2 1014M 26% xfs rw,relatime,seclabel,attr2,inode64,noquota /boot + /dev/sda3 150G 100% xfs rw,relatime,seclabel,attr2,inode64,noquota /opt + /dev/sda5 310G 53% xfs rw,relatime,seclabel,attr2,inode64,noquota / + devtmpfs 95G 0% devtmpfs rw,nosuid,seclabel,size=98996900k,nr_inodes=24749225,mode=755 /dev + overlay 5.5T 38% overlay rw,relatime,seclabel,lowerdir=/bigdisk/docker/overlay2/l/FTER5Z3KRDVUU5BZIQ5V2CBAEX:/bigdisk/docker/overlay2/l/WIAH4GSCWZ7ELFH2QQBLBPG2ME:/bigdisk/docker/overlay2/l/YF4GRKV3GEMT3LC2AC2RQRPAQP,upperdir=/bigdisk/docker/overlay2/109ef036e6f60478d1e17515dc9c6424f0f979fa6d4d353fcd4e27aa9852e5e6/diff,workdir=/bigdisk/docker/overlay2/109ef036e6f60478d1e17515dc9c6424f0f979fa6d4d353fcd4e27aa9852e5e6/work /bigdisk/docker/overlay2/109ef036e6f60478d1e17515dc9c6424f0f979fa6d4d353fcd4e27aa9852e5e6/merged + overlay 5.5T 38% overlay rw,relatime,seclabel,lowerdir=/bigdisk/docker/overlay2/l/WCTE4ONPX6H43KHAQG2LQBRR65:/bigdisk/docker/overlay2/l/QNL4DERUZUQ6PMHLBW5E6JKSYJ:/bigdisk/docker/overlay2/l/YF4GRKV3GEMT3LC2AC2RQRPAQP,upperdir=/bigdisk/docker/overlay2/3d094130f6d9423fca205ff4a74634779080af9873c72a3e234e6e987a8d4c21/diff,workdir=/bigdisk/docker/overlay2/3d094130f6d9423fca205ff4a74634779080af9873c72a3e234e6e987a8d4c21/work /bigdisk/docker/overlay2/109ef036e6f60478d1e17515dc9c6424f0f979fa6d4d353fcd4e27aa9852e5e6/merged + overlay 5.5T 38% overlay rw,relatime,seclabel,lowerdir=/bigdisk/docker/overlay2/l/TFR4MO7WBKLH5P6MJFNL3OX47C:/bigdisk/docker/overlay2/l/QNL4DERUZUQ6PMHLBW5E6JKSYJ:/bigdisk/docker/overlay2/l/YF4GRKV3GEMT3LC2AC2RQRPAQP,upperdir=/bigdisk/docker/overlay2/97bbe65b7ed61b25671a69e6520051c4d01a64e5035768b787b5754b2d69a2cf/diff,workdir=/bigdisk/docker/overlay2/97bbe65b7ed61b25671a69e6520051c4d01a64e5035768b787b5754b2d69a2cf/work /bigdisk/docker/overlay2/109ef036e6f60478d1e17515dc9c6424f0f979fa6d4d353fcd4e27aa9852e5e6/merged + overlay 5.5T 38% overlay rw,relatime,seclabel,lowerdir=/bigdisk/docker/overlay2/l/FTER5Z3KRDVUU5BZIQ5V2CBAEX:/bigdisk/docker/overlay2/l/WIAH4GSCWZ7ELFH2QQBLBPG2ME:/bigdisk/docker/overlay2/l/YF4GRKV3GEMT3LC2AC2RQRPAQP,upperdir=/bigdisk/docker/overlay2/109ef036e6f60478d1e17515dc9c6424f0f979fa6d4d353fcd4e27aa9852e5e6/diff,workdir=/bigdisk/docker/overlay2/109ef036e6f60478d1e17515dc9c6424f0f979fa6d4d353fcd4e27aa9852e5e6/work /bigdisk/docker/overlay2/3d094130f6d9423fca205ff4a74634779080af9873c72a3e234e6e987a8d4c21/merged + overlay 5.5T 38% overlay rw,relatime,seclabel,lowerdir=/bigdisk/docker/overlay2/l/WCTE4ONPX6H43KHAQG2LQBRR65:/bigdisk/docker/overlay2/l/QNL4DERUZUQ6PMHLBW5E6JKSYJ:/bigdisk/docker/overlay2/l/YF4GRKV3GEMT3LC2AC2RQRPAQP,upperdir=/bigdisk/docker/overlay2/3d094130f6d9423fca205ff4a74634779080af9873c72a3e234e6e987a8d4c21/diff,workdir=/bigdisk/docker/overlay2/3d094130f6d9423fca205ff4a74634779080af9873c72a3e234e6e987a8d4c21/work /bigdisk/docker/overlay2/3d094130f6d9423fca205ff4a74634779080af9873c72a3e234e6e987a8d4c21/merged + overlay 5.5T 38% overlay rw,relatime,seclabel,lowerdir=/bigdisk/docker/overlay2/l/TFR4MO7WBKLH5P6MJFNL3OX47C:/bigdisk/docker/overlay2/l/QNL4DERUZUQ6PMHLBW5E6JKSYJ:/bigdisk/docker/overlay2/l/YF4GRKV3GEMT3LC2AC2RQRPAQP,upperdir=/bigdisk/docker/overlay2/97bbe65b7ed61b25671a69e6520051c4d01a64e5035768b787b5754b2d69a2cf/diff,workdir=/bigdisk/docker/overlay2/97bbe65b7ed61b25671a69e6520051c4d01a64e5035768b787b5754b2d69a2cf/work /bigdisk/docker/overlay2/3d094130f6d9423fca205ff4a74634779080af9873c72a3e234e6e987a8d4c21/merged + overlay 5.5T 38% overlay rw,relatime,seclabel,lowerdir=/bigdisk/docker/overlay2/l/FTER5Z3KRDVUU5BZIQ5V2CBAEX:/bigdisk/docker/overlay2/l/WIAH4GSCWZ7ELFH2QQBLBPG2ME:/bigdisk/docker/overlay2/l/YF4GRKV3GEMT3LC2AC2RQRPAQP,upperdir=/bigdisk/docker/overlay2/109ef036e6f60478d1e17515dc9c6424f0f979fa6d4d353fcd4e27aa9852e5e6/diff,workdir=/bigdisk/docker/overlay2/109ef036e6f60478d1e17515dc9c6424f0f979fa6d4d353fcd4e27aa9852e5e6/work /bigdisk/docker/overlay2/97bbe65b7ed61b25671a69e6520051c4d01a64e5035768b787b5754b2d69a2cf/merged + overlay 5.5T 38% overlay rw,relatime,seclabel,lowerdir=/bigdisk/docker/overlay2/l/WCTE4ONPX6H43KHAQG2LQBRR65:/bigdisk/docker/overlay2/l/QNL4DERUZUQ6PMHLBW5E6JKSYJ:/bigdisk/docker/overlay2/l/YF4GRKV3GEMT3LC2AC2RQRPAQP,upperdir=/bigdisk/docker/overlay2/3d094130f6d9423fca205ff4a74634779080af9873c72a3e234e6e987a8d4c21/diff,workdir=/bigdisk/docker/overlay2/3d094130f6d9423fca205ff4a74634779080af9873c72a3e234e6e987a8d4c21/work /bigdisk/docker/overlay2/97bbe65b7ed61b25671a69e6520051c4d01a64e5035768b787b5754b2d69a2cf/merged + overlay 5.5T 38% overlay rw,relatime,seclabel,lowerdir=/bigdisk/docker/overlay2/l/TFR4MO7WBKLH5P6MJFNL3OX47C:/bigdisk/docker/overlay2/l/QNL4DERUZUQ6PMHLBW5E6JKSYJ:/bigdisk/docker/overlay2/l/YF4GRKV3GEMT3LC2AC2RQRPAQP,upperdir=/bigdisk/docker/overlay2/97bbe65b7ed61b25671a69e6520051c4d01a64e5035768b787b5754b2d69a2cf/diff,workdir=/bigdisk/docker/overlay2/97bbe65b7ed61b25671a69e6520051c4d01a64e5035768b787b5754b2d69a2cf/work /bigdisk/docker/overlay2/97bbe65b7ed61b25671a69e6520051c4d01a64e5035768b787b5754b2d69a2cf/merged + tmpfs 1.0M 0% tmpfs rw,nosuid,nodev,seclabel /var/snap/lxd/common/ns + tmpfs 1.0M 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /var/snap/lxd/common/ns + tmpfs 1.0M 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /var/snap/lxd/common/ns + tmpfs 1.0M 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000 /var/snap/lxd/common/ns + tmpfs 1.0M 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000 /var/snap/lxd/common/ns + tmpfs 1.0M 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000 /var/snap/lxd/common/ns + tmpfs 1.0M 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000 /var/snap/lxd/common/ns + tmpfs 1.0M 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000 /var/snap/lxd/common/ns + tmpfs 1.0M 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000 /var/snap/lxd/common/ns + tmpfs 1.0M 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077 /var/snap/lxd/common/ns + tmpfs 1.0M 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000 /var/snap/lxd/common/ns + tmpfs 1.0M 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000 /var/snap/lxd/common/ns + tmpfs 1.0M 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000 /var/snap/lxd/common/ns + tmpfs 1.0M 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000 /var/snap/lxd/common/ns + tmpfs 1.0M 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000 /var/snap/lxd/common/ns + tmpfs 1.0M 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000 /var/snap/lxd/common/ns + tmpfs 1.0M 0% tmpfs ro,nosuid,nodev,noexec,seclabel,mode=755 /var/snap/lxd/common/ns + tmpfs 1.0M 0% tmpfs rw,relatime,seclabel,size=1024k,mode=700 /var/snap/lxd/common/ns + tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel /run/user/10006 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run/user/10006 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run/user/10006 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000 /run/user/10006 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000 /run/user/10006 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000 /run/user/10006 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000 /run/user/10006 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000 /run/user/10006 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000 /run/user/10006 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077 /run/user/10006 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000 /run/user/10006 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000 /run/user/10006 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000 /run/user/10006 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000 /run/user/10006 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000 /run/user/10006 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000 /run/user/10006 + tmpfs 19G 0% tmpfs ro,nosuid,nodev,noexec,seclabel,mode=755 /run/user/10006 + tmpfs 19G 0% tmpfs rw,relatime,seclabel,size=1024k,mode=700 /run/user/10006 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel /run/user/10008 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run/user/10008 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run/user/10008 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000 /run/user/10008 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000 /run/user/10008 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000 /run/user/10008 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000 /run/user/10008 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000 /run/user/10008 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000 /run/user/10008 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077 /run/user/10008 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000 /run/user/10008 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000 /run/user/10008 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000 /run/user/10008 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000 /run/user/10008 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000 /run/user/10008 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000 /run/user/10008 + tmpfs 19G 0% tmpfs ro,nosuid,nodev,noexec,seclabel,mode=755 /run/user/10008 + tmpfs 19G 0% tmpfs rw,relatime,seclabel,size=1024k,mode=700 /run/user/10008 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel /run/user/10014 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run/user/10014 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run/user/10014 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000 /run/user/10014 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000 /run/user/10014 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000 /run/user/10014 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000 /run/user/10014 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000 /run/user/10014 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000 /run/user/10014 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077 /run/user/10014 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000 /run/user/10014 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000 /run/user/10014 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000 /run/user/10014 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000 /run/user/10014 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000 /run/user/10014 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000 /run/user/10014 + tmpfs 19G 0% tmpfs ro,nosuid,nodev,noexec,seclabel,mode=755 /run/user/10014 + tmpfs 19G 0% tmpfs rw,relatime,seclabel,size=1024k,mode=700 /run/user/10014 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel /run/user/10045 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run/user/10045 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run/user/10045 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000 /run/user/10045 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000 /run/user/10045 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000 /run/user/10045 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000 /run/user/10045 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000 /run/user/10045 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000 /run/user/10045 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077 /run/user/10045 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000 /run/user/10045 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000 /run/user/10045 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000 /run/user/10045 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000 /run/user/10045 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000 /run/user/10045 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000 /run/user/10045 + tmpfs 19G 0% tmpfs ro,nosuid,nodev,noexec,seclabel,mode=755 /run/user/10045 + tmpfs 19G 0% tmpfs rw,relatime,seclabel,size=1024k,mode=700 /run/user/10045 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel /run/user/10078 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run/user/10078 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run/user/10078 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000 /run/user/10078 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000 /run/user/10078 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000 /run/user/10078 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000 /run/user/10078 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000 /run/user/10078 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000 /run/user/10078 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077 /run/user/10078 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000 /run/user/10078 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000 /run/user/10078 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000 /run/user/10078 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000 /run/user/10078 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000 /run/user/10078 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000 /run/user/10078 + tmpfs 19G 0% tmpfs ro,nosuid,nodev,noexec,seclabel,mode=755 /run/user/10078 + tmpfs 19G 0% tmpfs rw,relatime,seclabel,size=1024k,mode=700 /run/user/10078 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel /run/user/10125 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run/user/10125 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run/user/10125 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000 /run/user/10125 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000 /run/user/10125 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000 /run/user/10125 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000 /run/user/10125 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000 /run/user/10125 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000 /run/user/10125 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077 /run/user/10125 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000 /run/user/10125 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000 /run/user/10125 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000 /run/user/10125 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000 /run/user/10125 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000 /run/user/10125 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000 /run/user/10125 + tmpfs 19G 0% tmpfs ro,nosuid,nodev,noexec,seclabel,mode=755 /run/user/10125 + tmpfs 19G 0% tmpfs rw,relatime,seclabel,size=1024k,mode=700 /run/user/10125 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel /run/user/10201 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run/user/10201 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run/user/10201 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000 /run/user/10201 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000 /run/user/10201 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000 /run/user/10201 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000 /run/user/10201 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000 /run/user/10201 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000 /run/user/10201 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077 /run/user/10201 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000 /run/user/10201 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000 /run/user/10201 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000 /run/user/10201 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000 /run/user/10201 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000 /run/user/10201 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000 /run/user/10201 + tmpfs 19G 0% tmpfs ro,nosuid,nodev,noexec,seclabel,mode=755 /run/user/10201 + tmpfs 19G 0% tmpfs rw,relatime,seclabel,size=1024k,mode=700 /run/user/10201 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel /run/user/10205 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run/user/10205 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run/user/10205 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000 /run/user/10205 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000 /run/user/10205 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000 /run/user/10205 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000 /run/user/10205 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000 /run/user/10205 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000 /run/user/10205 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077 /run/user/10205 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000 /run/user/10205 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000 /run/user/10205 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000 /run/user/10205 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000 /run/user/10205 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000 /run/user/10205 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000 /run/user/10205 + tmpfs 19G 0% tmpfs ro,nosuid,nodev,noexec,seclabel,mode=755 /run/user/10205 + tmpfs 19G 0% tmpfs rw,relatime,seclabel,size=1024k,mode=700 /run/user/10205 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel /run/user/955600026 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run/user/955600026 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run/user/955600026 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000 /run/user/955600026 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000 /run/user/955600026 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000 /run/user/955600026 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000 /run/user/955600026 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000 /run/user/955600026 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000 /run/user/955600026 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077 /run/user/955600026 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000 /run/user/955600026 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000 /run/user/955600026 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000 /run/user/955600026 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000 /run/user/955600026 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000 /run/user/955600026 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000 /run/user/955600026 + tmpfs 19G 0% tmpfs ro,nosuid,nodev,noexec,seclabel,mode=755 /run/user/955600026 + tmpfs 19G 0% tmpfs rw,relatime,seclabel,size=1024k,mode=700 /run/user/955600026 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel /run/user/955600330 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run/user/955600330 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run/user/955600330 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000 /run/user/955600330 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000 /run/user/955600330 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000 /run/user/955600330 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000 /run/user/955600330 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000 /run/user/955600330 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000 /run/user/955600330 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077 /run/user/955600330 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000 /run/user/955600330 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000 /run/user/955600330 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000 /run/user/955600330 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000 /run/user/955600330 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000 /run/user/955600330 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000 /run/user/955600330 + tmpfs 19G 0% tmpfs ro,nosuid,nodev,noexec,seclabel,mode=755 /run/user/955600330 + tmpfs 19G 0% tmpfs rw,relatime,seclabel,size=1024k,mode=700 /run/user/955600330 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel /run/user/955600334 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run/user/955600334 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run/user/955600334 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000 /run/user/955600334 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000 /run/user/955600334 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000 /run/user/955600334 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000 /run/user/955600334 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000 /run/user/955600334 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000 /run/user/955600334 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077 /run/user/955600334 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000 /run/user/955600334 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000 /run/user/955600334 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000 /run/user/955600334 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000 /run/user/955600334 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000 /run/user/955600334 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000 /run/user/955600334 + tmpfs 19G 0% tmpfs ro,nosuid,nodev,noexec,seclabel,mode=755 /run/user/955600334 + tmpfs 19G 0% tmpfs rw,relatime,seclabel,size=1024k,mode=700 /run/user/955600334 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel /run/user/955600366 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run/user/955600366 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run/user/955600366 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000 /run/user/955600366 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000 /run/user/955600366 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000 /run/user/955600366 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000 /run/user/955600366 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000 /run/user/955600366 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000 /run/user/955600366 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077 /run/user/955600366 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000 /run/user/955600366 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000 /run/user/955600366 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000 /run/user/955600366 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000 /run/user/955600366 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000 /run/user/955600366 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000 /run/user/955600366 + tmpfs 19G 0% tmpfs ro,nosuid,nodev,noexec,seclabel,mode=755 /run/user/955600366 + tmpfs 19G 0% tmpfs rw,relatime,seclabel,size=1024k,mode=700 /run/user/955600366 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel /run/user/955600371 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run/user/955600371 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run/user/955600371 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000 /run/user/955600371 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000 /run/user/955600371 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000 /run/user/955600371 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000 /run/user/955600371 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000 /run/user/955600371 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000 /run/user/955600371 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077 /run/user/955600371 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000 /run/user/955600371 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000 /run/user/955600371 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000 /run/user/955600371 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000 /run/user/955600371 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000 /run/user/955600371 + tmpfs 19G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000 /run/user/955600371 + tmpfs 19G 0% tmpfs ro,nosuid,nodev,noexec,seclabel,mode=755 /run/user/955600371 + tmpfs 19G 0% tmpfs rw,relatime,seclabel,size=1024k,mode=700 /run/user/955600371 + tmpfs 95G 0% tmpfs rw,nosuid,nodev,seclabel /dev/shm + tmpfs 95G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /dev/shm + tmpfs 95G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /dev/shm + tmpfs 95G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000 /dev/shm + tmpfs 95G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000 /dev/shm + tmpfs 95G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000 /dev/shm + tmpfs 95G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000 /dev/shm + tmpfs 95G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000 /dev/shm + tmpfs 95G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000 /dev/shm + tmpfs 95G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077 /dev/shm + tmpfs 95G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000 /dev/shm + tmpfs 95G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000 /dev/shm + tmpfs 95G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000 /dev/shm + tmpfs 95G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000 /dev/shm + tmpfs 95G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000 /dev/shm + tmpfs 95G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000 /dev/shm + tmpfs 95G 0% tmpfs ro,nosuid,nodev,noexec,seclabel,mode=755 /dev/shm + tmpfs 95G 0% tmpfs rw,relatime,seclabel,size=1024k,mode=700 /dev/shm + tmpfs 95G 0% tmpfs rw,nosuid,nodev,seclabel /sys/fs/cgroup + tmpfs 95G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /sys/fs/cgroup + tmpfs 95G 0% tmpfs rw,nosuid,nodev,seclabel,mode=755 /sys/fs/cgroup + tmpfs 95G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000 /sys/fs/cgroup + tmpfs 95G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000 /sys/fs/cgroup + tmpfs 95G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000 /sys/fs/cgroup + tmpfs 95G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000 /sys/fs/cgroup + tmpfs 95G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000 /sys/fs/cgroup + tmpfs 95G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000 /sys/fs/cgroup + tmpfs 95G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077 /sys/fs/cgroup + tmpfs 95G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000 /sys/fs/cgroup + tmpfs 95G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000 /sys/fs/cgroup + tmpfs 95G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000 /sys/fs/cgroup + tmpfs 95G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000 /sys/fs/cgroup + tmpfs 95G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000 /sys/fs/cgroup + tmpfs 95G 0% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000 /sys/fs/cgroup + tmpfs 95G 0% tmpfs ro,nosuid,nodev,noexec,seclabel,mode=755 /sys/fs/cgroup + tmpfs 95G 0% tmpfs rw,relatime,seclabel,size=1024k,mode=700 /sys/fs/cgroup + tmpfs 95G 5% tmpfs rw,nosuid,nodev,seclabel /run + tmpfs 95G 5% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run + tmpfs 95G 5% tmpfs rw,nosuid,nodev,seclabel,mode=755 /run + tmpfs 95G 5% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10006,gid=10000 /run + tmpfs 95G 5% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10008,gid=10000 /run + tmpfs 95G 5% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10014,gid=10000 /run + tmpfs 95G 5% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10045,gid=10000 /run + tmpfs 95G 5% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10078,gid=10000 /run + tmpfs 95G 5% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10125,gid=10000 /run + tmpfs 95G 5% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10201,gid=10077 /run + tmpfs 95G 5% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=10205,gid=10000 /run + tmpfs 95G 5% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600026,gid=10000 /run + tmpfs 95G 5% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600330,gid=10000 /run + tmpfs 95G 5% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600334,gid=10000 /run + tmpfs 95G 5% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600366,gid=10000 /run + tmpfs 95G 5% tmpfs rw,nosuid,nodev,relatime,seclabel,size=19801800k,mode=700,uid=955600371,gid=10000 /run + tmpfs 95G 5% tmpfs ro,nosuid,nodev,noexec,seclabel,mode=755 /run + tmpfs 95G 5% tmpfs rw,relatime,seclabel,size=1024k,mode=700 /run +# Disk Schedulers And Queue Size ############################# + dm-0 | 128 + dm-1 | 128 + dm-2 | 128 + dm-3 | 128 + dm-4 | 128 + dm-5 | 128 + dm-6 | 128 + dm-7 | 128 + nvme0n1 | [none] 1023 + nvme1n1 | [none] 1023 + sda | [mq-deadline] 256 + sdb | [mq-deadline] 256 + sdc | [mq-deadline] 256 + sr0 | [mq-deadline] 64 +# Disk Partioning ############################################ +Device Type Start End Size +============ ==== ========== ========== ================== +/dev/dm-0 Disk 3032246910976 +/dev/dm-1 Disk 37580963840 +/dev/dm-2 Disk 10737418240 +/dev/dm-3 Disk 107374182400 +/dev/dm-4 Disk 107374182400 +/dev/dm-5 Disk 6000065118208 +/dev/dm-6 Disk 107372085248 +/dev/dm-7 Disk 3032244813824 +/dev/nvme0n1 Disk 400088457216 +/dev/nvme1n1 Disk 400088457216 +/dev/sda Disk 499558383616 +/dev/sdb Disk 3999688294400 +/dev/sdc Disk 6000069312512 +# Kernel Inode State ######################################### +dentry-state | 10194137 9907146 45 0 2973650 0 + file-nr | 27248 0 19768804 + inode-nr | 8232199 1009287 +# LVM Volumes ################################################ + LV VG Attr LSize Pool Origin Data% Meta% Move Log Cpy%Sync Convert + home raid10 -wi-ao---- <2.76t + root raid10 -wi-ao---- 100.00g + testlv raid10 -wi-a----- 10.00g + tokutest1 raid10 -wi-a----- 35.00g + vinicius-test raid10 -wi-a----- 100.00g +# LVM Volume Groups ########################################## + VG VSize VFree + raid10 <3.55t 562.86g +# RAID Controller ############################################ + Controller | Broadcom / LSI MegaRAID SAS 2208 [Thunderbolt] (rev 05) +# Network Config ############################################# + Controller | Broadcom Inc. and subsidiaries NetXtreme BCM5720 2-port Gigabit Ethernet PCIe + Controller | Broadcom Inc. and subsidiaries NetXtreme BCM5720 2-port Gigabit Ethernet PCIe + FIN Timeout | 30 + Port Range | 60999 +# Interface Statistics ####################################### + interface rx_bytes rx_packets rx_errors tx_bytes tx_packets tx_errors + ========= ========= ========== ========== ========== ========== ========== + lo 300000000000 600000000 0 300000000000 600000000 0 + em1 125000000000 175000000 0 90000000000 125000000 0 + em2 400000000 5000000 0 225 2 0 + bond0 125000000000 175000000 0 90000000000 125000000 0 + virbr0 0 0 0 0 0 0 + virbr0-nic 0 0 0 0 0 0 + br-5f8d81e2374e 0 0 0 0 0 0 + docker0 3000000000 10000000 0 20000000000 15000000 0 + br-294661236c88 0 0 0 0 0 0 + vethe8b73084@if266 2250000 35000 0 500000000 90000 0 + veth1a2f3a50@if268 250000000 2000000 0 500000000 2000000 0 + vethb2e8fb78@if270 250000000 2000000 0 500000000 2000000 0 + vethc33cb528@if272 200000000 1750000 0 500000000 1750000 0 + vethc52473d4@if274 500000000 45000 0 100000000 70000 0 + vethf5136d77@if276 1000000 15000 0 175000000 30000 0 + vethfa2d922@if20 70000000 450000 0 450000000 1000000 0 + veth046457e1@if278 1250000 17500 0 175000000 35000 0 + veth522c3e56@if280 450000 6000 0 35000000 9000 0 + vethc532c32b@if282 250000 3500 0 25000000 6000 0 + vboxnet12 0 0 0 0 0 0 + vboxnet18 0 0 0 0 0 0 + vboxnet19 0 0 0 0 0 0 + vboxnet20 0 0 0 0 0 0 + veth67e3da0@if145 25000000 300000 0 1750000000 500000 0 + vboxnet0 0 0 0 0 0 0 + vboxnet21 0 0 0 0 0 0 + vboxnet24 0 0 0 0 0 0 + vboxnet25 0 0 0 25000 250 0 + vboxnet3 0 0 0 0 0 0 + vboxnet4 0 0 0 0 0 0 + vethaa8f4de@if153 2500000000 6000000 0 10000000000 8000000 0 + lxdbr0 100000000 1500000 0 7000000000 1750000 0 + veth0bd575f6@if156 400000 4000 0 3500000 50000 0 + veth1e01ee50@if158 400000 4000 0 3500000 50000 0 + veth07d7db6b@if160 400000 4000 0 3500000 50000 0 + veth12219f8c@if176 400000 4000 0 3500000 50000 0 + vethb9d2af0d@if178 400000 4000 0 3500000 50000 0 + veth0c948a7c@if180 400000 4000 0 3500000 50000 0 + vethad45a55a@if182 400000 4000 0 3500000 50000 0 + veth3bd42127@if184 400000 4000 0 3500000 50000 0 + vetha67e3445@if186 400000 4000 0 3500000 50000 0 + veth57871859@if188 400000 4000 0 3500000 50000 0 + veth61f76055@if190 400000 4000 0 3500000 50000 0 + veth67de6880@if192 1250000 12500 0 3500000 50000 0 + veth45fa2bdb@if208 400000 4000 0 3500000 50000 0 + vethce7b9a4d@if218 2000000 20000 0 60000000 60000 0 + veth19c266ca@if220 400000 4000 0 3500000 50000 0 + veth140b78c8@if224 450000 5000 0 3500000 50000 0 + veth328abad5@if226 600000 7000 0 3500000 60000 0 + veth125aed80@if228 500000 5000 0 3500000 50000 0 + vetha245bad8@if230 25000000 400000 0 2500000000 500000 0 + vethe8577b3d@if244 1250000 17500 0 150000000 60000 0 +# Network Devices ############################################ + Device Speed Duplex + ========= ========= ========= + em1 1000Mb/s Full + vboxnet24 10Mb/s Full + em2 1000Mb/s Full + vboxnet25 10Mb/s Full + br-294661236c88 + bond0 1000Mb/s Full + virbr0-nic 10Mb/s Full + vboxnet18 10Mb/s Full + vboxnet19 10Mb/s Full + vboxnet0 10Mb/s Full + lxdbr0 + vboxnet3 10Mb/s Full + vboxnet4 10Mb/s Full + vboxnet20 10Mb/s Full + docker0 + br-5f8d81e2374e + virbr0 + vboxnet21 10Mb/s Full + vboxnet12 10Mb/s Full +# Network Connections ######################################## + Connections from remote IP addresses + 10.10.1.31 1 + 10.10.4.99 60 + 10.10.8.124 1 + 34.83.110.184 1 + 35.164.176.181 1 + 49.206.39.19 1 + 127.0.0.1 800 + 172.17.0.3 15 + 185.117.120.39 1 + 186.48.240.119 2 + 189.4.76.225 2 + 208.85.240.29 1 + Connections to local IP addresses + 10.10.8.141 70 + 127.0.0.1 800 + 172.17.0.1 15 + Connections to top 10 local ports + 10050 60 + 37018 25 + 37022 25 + 37023 20 + 37024 20 + 37025 25 + 37026 20 + 37027 20 + 37028 25 + 37029 20 + States of connections + CLOSE_WAIT 2 + ESTABLISHED 800 + FIN_WAIT2 1 + LISTEN 100 + TIME_WAIT 70 +# Top Processes ############################################## + PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND +21837 root 20 0 118472 5284 1912 R 76.9 0.0 6876:45 bash +22324 root 20 0 118472 5256 1912 R 76.9 0.0 6930:46 bash +27315 root 20 0 173656 6052 4560 R 15.4 0.0 0:00.07 top +30550 deepak.+ 20 0 1832784 106312 35024 S 7.7 0.1 7:24.20 mongod + 11 root 20 0 0 0 0 I 3.8 0.0 218:16.07 rcu_sched + 313 grafana 20 0 2853776 44376 15448 S 3.8 0.0 58:38.07 grafana-se+ + 4362 viniciu+ 20 0 2056504 198048 33000 S 3.8 0.1 66:13.66 mongod + 6837 viniciu+ 20 0 2020216 124284 33192 S 3.8 0.1 55:09.11 mongod + 7827 mydba 20 0 2329572 680728 11272 S 3.8 0.3 1644:16 victoriame+ +# Notable Processes ########################################## + PID OOM COMMAND + 2061 +0 sshd +42899 -17 sshd +44001 -17 sshd +44034 -17 sshd +48761 -17 sshd +# Memory management ########################################## +Transparent huge pages are enabled. +# The End ####################################################