Performance optimization engagement for a 7-host Proxmox R&D cluster.
Captures the accumulated work across host tuning, network analysis,
fleet assessment, and kubernetes architecture planning.
Contents:
- Host-side tunings (scripts/): CPU governor, swappiness, BBR, NFS
nconnect, tuned profiles -- complete on 5 of 7 hosts
- Validation + benchmarking scripts: iperf matrix, bond/NFS fixes
- Collected host data (returned-logs/): check.sh output from all 7
hosts + iperf results, including newly-validated pfv-tsys9
- AGENTS.md: operating context for AI agents
- PROJECT.md: board-ready fleet assessment with VM placement and
storage redundancy analysis (40 VMs across 7 hosts)
- K8S.md: kubernetes architecture deep-dive covering cnode/wnode
distribution, StorageClass design, and ETL/HPC workload planning
💘 Generated with Crush
Assisted-by: Crush:glm-5.2
14564 lines
726 KiB
Plaintext
14564 lines
726 KiB
Plaintext
###############################################################################
|
|
# Proxmox VE host performance assessment (READ-ONLY)
|
|
# Host: pfv-tsys6 (pfv-tsys6.knel.net)
|
|
# FQDN: pfv-tsys6.knel.net
|
|
# All IPs: 100.73.35.111 192.168.3.169 10.251.2.6 10.100.100.6 fd7a:115c:a1e0::df3b:236f
|
|
# Collected: 2026-07-26T21:25:59Z (UTC)
|
|
# Kernel: 6.17.2-1-pve
|
|
# Machine: x86_64 GNU/Linux
|
|
# Caller: root (uid=0)
|
|
# Script: check.sh - strictly READ-ONLY
|
|
###############################################################################
|
|
|
|
###############################################################################
|
|
# 1. TOOL AVAILABILITY MATRIX
|
|
###############################################################################
|
|
|
|
--- command presence + path + version
|
|
$ # Each line: name | present? | path | version
|
|
printf '%-22s %-8s %-30s %s\n' "TOOL" "PRESENT" "PATH" "VERSION/NOTE"
|
|
printf '%-22s %-8s %-30s %s\n' "----" "-------" "----" "------------"
|
|
for t in \
|
|
pveversion pvecm qm pct pvesm pvesh pveperf proxmox-backup-client \
|
|
ip ss ethtool bridge brctl nmcli \
|
|
tcpdump mtr nstat netstat nicstat ifstat \
|
|
dmidecode lscpu lshw hwinfo inxi lspci lsusb numactl numastat \
|
|
cpupower turbostat x86_energy_perf_policy rdmsr \
|
|
tuned-adm irqbalance \
|
|
zpool zfs zdb arcstat arc_summary \
|
|
lsblk blkid blockdev findmnt smartctl nvme hdparm \
|
|
storcli storcli64 MegaCli MegaCli64 tw-cli arcconf \
|
|
sas2ircu sas3ircu hpssacli ssacli perccli \
|
|
multipath pvs vgs lvs lvdisplay \
|
|
xfs_info dumpe2fs btrfs \
|
|
fio iperf iperf3 sysbench bonnie++ iozone \
|
|
iostat mpstat pidstat sar vmstat \
|
|
top htop atop glances dstat nethogs iftop iotop smem pmap slabtop \
|
|
perf strace lsof fatrace \
|
|
dig host nslookup \
|
|
chronyc ntpq timedatectl \
|
|
nft iptables iptables-save ipset ufw \
|
|
jq bc awk smartctl nvme \
|
|
apt dpkg
|
|
do
|
|
p="$(command -v "$t" 2>/dev/null)"
|
|
if [ -n "$p" ]; then
|
|
v=""
|
|
case "$t" in
|
|
zpool|zfs) v="$(timeout 3 "$t" version 2>/dev/null | head -n 2 | tr '\n' ' ')" ;;
|
|
iperf3|fio|sysbench|smartctl|nvme|tuned-adm|ethtool|cpupower)
|
|
v="$(timeout 3 "$t" --version 2>&1 | head -n 1)" ;;
|
|
pveversion) v="$(timeout 3 "$t" 2>/dev/null)" ;;
|
|
storcli64|storcli|MegaCli64|MegaCli|arcconf|sas2ircu|sas3ircu|ssacli|hpssacli)
|
|
v="(storage HBA CLI - present)" ;;
|
|
esac
|
|
printf '%-22s %-8s %-30s %s\n' "$t" "yes" "$p" "$v"
|
|
else
|
|
printf '%-22s %-8s %-30s %s\n' "$t" "no" "-" "-"
|
|
fi
|
|
done
|
|
TOOL PRESENT PATH VERSION/NOTE
|
|
---- ------- ---- ------------
|
|
pveversion yes /usr/bin/pveversion pve-manager/9.1.1/42db4a6cf33dac83 (running kernel: 6.17.2-1-pve)
|
|
pvecm yes /usr/bin/pvecm
|
|
qm yes /usr/sbin/qm
|
|
pct yes /usr/sbin/pct
|
|
pvesm yes /usr/sbin/pvesm
|
|
pvesh yes /usr/bin/pvesh
|
|
pveperf yes /usr/bin/pveperf
|
|
proxmox-backup-client yes /usr/bin/proxmox-backup-client
|
|
ip yes /usr/sbin/ip
|
|
ss yes /usr/bin/ss
|
|
ethtool yes /usr/sbin/ethtool ethtool version 6.14.2
|
|
bridge yes /usr/sbin/bridge
|
|
brctl yes /usr/sbin/brctl
|
|
nmcli no - -
|
|
tcpdump yes /usr/bin/tcpdump
|
|
mtr no - -
|
|
nstat yes /usr/bin/nstat
|
|
netstat no - -
|
|
nicstat no - -
|
|
ifstat no - -
|
|
dmidecode yes /usr/sbin/dmidecode
|
|
lscpu yes /usr/bin/lscpu
|
|
lshw no - -
|
|
hwinfo no - -
|
|
inxi no - -
|
|
lspci yes /usr/bin/lspci
|
|
lsusb yes /usr/bin/lsusb
|
|
numactl no - -
|
|
numastat no - -
|
|
cpupower yes /usr/bin/cpupower cpupower 6.12
|
|
turbostat yes /usr/sbin/turbostat
|
|
x86_energy_perf_policy yes /usr/sbin/x86_energy_perf_policy
|
|
rdmsr no - -
|
|
tuned-adm yes /usr/sbin/tuned-adm tuned-adm 2.25.1
|
|
irqbalance no - -
|
|
zpool yes /usr/sbin/zpool zfs-2.3.4-pve1 zfs-kmod-2.3.4-pve1
|
|
zfs yes /usr/sbin/zfs zfs-2.3.4-pve1 zfs-kmod-2.3.4-pve1
|
|
zdb yes /usr/sbin/zdb
|
|
arcstat yes /usr/sbin/arcstat
|
|
arc_summary yes /usr/sbin/arc_summary
|
|
lsblk yes /usr/bin/lsblk
|
|
blkid yes /usr/sbin/blkid
|
|
blockdev yes /usr/sbin/blockdev
|
|
findmnt yes /usr/bin/findmnt
|
|
smartctl yes /usr/sbin/smartctl smartctl 7.5 2025-04-30 r5714 [x86_64-linux-6.17.2-1-pve] (local build)
|
|
nvme no - -
|
|
hdparm yes /usr/sbin/hdparm
|
|
storcli no - -
|
|
storcli64 no - -
|
|
MegaCli no - -
|
|
MegaCli64 no - -
|
|
tw-cli no - -
|
|
arcconf no - -
|
|
sas2ircu no - -
|
|
sas3ircu no - -
|
|
hpssacli no - -
|
|
ssacli no - -
|
|
perccli no - -
|
|
multipath no - -
|
|
pvs yes /usr/sbin/pvs
|
|
vgs yes /usr/sbin/vgs
|
|
lvs yes /usr/sbin/lvs
|
|
lvdisplay yes /usr/sbin/lvdisplay
|
|
xfs_info yes /usr/sbin/xfs_info
|
|
dumpe2fs yes /usr/sbin/dumpe2fs
|
|
btrfs yes /usr/bin/btrfs
|
|
fio no - -
|
|
iperf no - -
|
|
iperf3 yes /usr/bin/iperf3 iperf 3.18 (cJSON 1.7.15)
|
|
sysbench no - -
|
|
bonnie++ no - -
|
|
iozone no - -
|
|
iostat no - -
|
|
mpstat no - -
|
|
pidstat no - -
|
|
sar no - -
|
|
vmstat yes /usr/bin/vmstat
|
|
top yes /usr/bin/top
|
|
htop no - -
|
|
atop no - -
|
|
glances no - -
|
|
dstat no - -
|
|
nethogs no - -
|
|
iftop no - -
|
|
iotop no - -
|
|
smem no - -
|
|
pmap yes /usr/bin/pmap
|
|
slabtop yes /usr/bin/slabtop
|
|
perf yes /usr/bin/perf
|
|
strace yes /usr/bin/strace
|
|
lsof yes /usr/bin/lsof
|
|
fatrace no - -
|
|
dig yes /usr/bin/dig
|
|
host yes /usr/bin/host
|
|
nslookup yes /usr/bin/nslookup
|
|
chronyc yes /usr/bin/chronyc
|
|
ntpq no - -
|
|
timedatectl yes /usr/bin/timedatectl
|
|
nft yes /usr/sbin/nft
|
|
iptables yes /usr/sbin/iptables
|
|
iptables-save yes /usr/sbin/iptables-save
|
|
ipset yes /usr/sbin/ipset
|
|
ufw no - -
|
|
jq no - -
|
|
bc yes /usr/bin/bc
|
|
awk yes /usr/bin/awk
|
|
smartctl yes /usr/sbin/smartctl smartctl 7.5 2025-04-30 r5714 [x86_64-linux-6.17.2-1-pve] (local build)
|
|
nvme no - -
|
|
apt yes /usr/bin/apt
|
|
dpkg yes /usr/bin/dpkg
|
|
|
|
--- Debian packages relevant to perf/storage/net
|
|
$ dpkg -l 2>/dev/null | awk '/^ii/ && ($2 ~ /^(proxmox-|pve-|zfs|zfsutils|nfs|nfs-kernel-server|nfs-common|open-iscsi|ceph|tuned|irqbalance|sysstat|smartmontools|nvme-cli|ethtool|bridge-utils|ifenslave|fio|iperf3|sysbench|glances|htop|atop|lm-sensors|numactl|cpufrequtils|linux-image-|pve-kernel|qemu|libvirt|corosync|pacemaker)/) {print $2" "$3}' | head -n 80
|
|
bridge-utils 1.7.1-4+b1
|
|
ceph-common 19.2.3-pve2
|
|
ceph-fuse 19.2.3-pve2
|
|
corosync 3.1.10-pve3
|
|
ethtool 1:6.14.2-1
|
|
iperf3 3.18-2+deb13u2
|
|
nfs-common 1:2.8.3-1
|
|
open-iscsi 2.1.11-1+deb13u2
|
|
proxmox-archive-keyring 4.0
|
|
proxmox-backup-client 4.2.3-1
|
|
proxmox-backup-file-restore 4.2.3-1
|
|
proxmox-backup-restore-image 1.0.0
|
|
proxmox-default-kernel 2.0.1
|
|
proxmox-firewall 1.2.3
|
|
proxmox-kernel-6.17 6.17.2-1
|
|
proxmox-kernel-6.17.2-1-pve-signed 6.17.2-1
|
|
proxmox-kernel-helper 9.2.0
|
|
proxmox-mail-forward 1.0.3
|
|
proxmox-mini-journalreader 1.7
|
|
proxmox-offline-mirror-docs 0.7.4
|
|
proxmox-offline-mirror-helper 0.7.4
|
|
proxmox-termproxy 2.1.0
|
|
proxmox-ve 9.2.0
|
|
proxmox-websocket-tunnel 1.0.0
|
|
proxmox-widget-toolkit 5.2.6
|
|
pve-cluster 9.1.6
|
|
pve-container 6.0.18
|
|
pve-docs 9.2.3
|
|
pve-edk2-firmware 4.2025.05-2
|
|
pve-edk2-firmware-legacy 4.2025.05-2
|
|
pve-edk2-firmware-ovmf 4.2025.05-2
|
|
pve-esxi-import-tools 1.0.1
|
|
pve-firewall 6.0.5
|
|
pve-firmware 3.18-5
|
|
pve-ha-manager 5.0.8
|
|
pve-i18n 3.9.0
|
|
pve-lxc-syscalld 2.0.2
|
|
pve-manager 9.1.1
|
|
pve-nvidia-vgpu-helper 0.3.1
|
|
pve-qemu-kvm 11.0.2-2
|
|
pve-xtermjs 6.0.0-2
|
|
pve-yew-mobile-gui 0.7.0
|
|
pve-yew-mobile-i18n 3.9.0
|
|
qemu-server 9.0.30
|
|
smartmontools 7.5-pve2
|
|
tuned 2.25.1-1
|
|
zfs-initramfs 2.3.4-pve1
|
|
zfs-zed 2.3.4-pve1
|
|
zfsutils-linux 2.3.4-pve1
|
|
|
|
--- kernel modules available (relevant to perf)
|
|
$ for m in kvm_intel kvm_amd \
|
|
ixgbe i40e i40iw ice igb igc mlx4_en mlx5_core mlx4_core bnx2x bnx2 tg3 be2net qed qede virtio_net \
|
|
nvme nvme-tcp nvme-fabrics sd_mod sr_mod \
|
|
zfs spl znvpair zcommon zunicode zavl icp zlua \
|
|
megaraid_sas mpt3sas hpsa aacraid smartpqi isci \
|
|
dm_multipath multipath \
|
|
tcp_dctcp tcp_bbr tcp_cubic tcp_htcp \
|
|
8021q bonding bridge br_netfilter \
|
|
vhost_net vhost_scsi target_core_mod \
|
|
nfsv4 nfsv3 rpcsec_gss_krb5
|
|
do
|
|
modinfo "$m" >/dev/null 2>&1 && printf 'available : %s (%s)\n' "$m" "$(modinfo -F version "$m" 2>/dev/null || echo built-in)"
|
|
done
|
|
available : kvm_intel ()
|
|
available : kvm_amd ()
|
|
available : ixgbe ()
|
|
available : i40e ()
|
|
available : i40iw ()
|
|
available : ice ()
|
|
available : igb ()
|
|
available : igc ()
|
|
available : mlx4_en (4.0-0)
|
|
available : mlx5_core ()
|
|
available : mlx4_core (4.0-0)
|
|
available : bnx2x ()
|
|
available : bnx2 ()
|
|
available : tg3 ()
|
|
available : be2net ()
|
|
available : qed ()
|
|
available : qede ()
|
|
available : virtio_net ()
|
|
available : nvme (1.0)
|
|
available : nvme-tcp ()
|
|
available : nvme-fabrics ()
|
|
available : sd_mod ()
|
|
available : sr_mod ()
|
|
available : zfs (2.3.4-pve1)
|
|
available : spl (2.3.4-pve1)
|
|
available : znvpair (2.3.4-pve1)
|
|
available : zcommon (2.3.4-pve1)
|
|
available : zunicode (2.3.4-pve1)
|
|
available : zavl (2.3.4-pve1)
|
|
available : icp (2.3.4-pve1)
|
|
available : zlua (2.3.4-pve1)
|
|
available : megaraid_sas (07.734.00.00-rc1)
|
|
available : mpt3sas (52.100.00.00)
|
|
available : hpsa (3.4.20-200)
|
|
available : aacraid (1.2.1[50983]-custom)
|
|
available : smartpqi (2.1.34-035)
|
|
available : isci (1.2.0)
|
|
available : dm_multipath ()
|
|
available : tcp_dctcp ()
|
|
available : tcp_bbr ()
|
|
available : tcp_cubic (2.3)
|
|
available : tcp_htcp ()
|
|
available : 8021q (1.8)
|
|
available : bonding ()
|
|
available : bridge (2.3)
|
|
available : br_netfilter ()
|
|
available : vhost_net (0.0.1)
|
|
available : vhost_scsi ()
|
|
available : target_core_mod ()
|
|
available : nfsv4 ()
|
|
available : nfsv3 ()
|
|
available : rpcsec_gss_krb5 ()
|
|
|
|
--- currently loaded modules (filtered)
|
|
$ lsmod | awk 'NR==1 || $1 ~ /^(kvm|virtio|vhost|ixgb|i40e|ice|igb|mlx|bnx|tg3|be2|qed|nvme|zfs|spl|z|dm_|megaraid|mpt|hpsa|aacraid|smartpqi|8021q|bonding|bridge|nfsv|tcp_|rpc|sunrpc|loop)/{print}'
|
|
Module Size Used by
|
|
tcp_diag 12288 0
|
|
rpcsec_gss_krb5 28672 0
|
|
nfsv4 1175552 2
|
|
8021q 45056 0
|
|
bonding 245760 0
|
|
sunrpc 786432 23 nfsv4,auth_rpcgss,lockd,rpcsec_gss_krb5,nfs
|
|
kvm_intel 532480 18
|
|
kvm 1376256 13 kvm_intel
|
|
zfs 6344704 6
|
|
spl 151552 1 zfs
|
|
vhost_net 32768 3
|
|
vhost 69632 1 vhost_net
|
|
vhost_iotlb 16384 1 vhost
|
|
tcp_bbr 20480 25
|
|
dm_thin_pool 94208 1
|
|
dm_persistent_data 114688 1 dm_thin_pool
|
|
dm_bio_prison 24576 1 dm_thin_pool
|
|
dm_bufio 53248 1 dm_persistent_data
|
|
bnx2 110592 0
|
|
|
|
###############################################################################
|
|
# 2. OS / DISTRO / UPTIME
|
|
###############################################################################
|
|
|
|
--- os-release
|
|
--- /etc/os-release ---
|
|
PRETTY_NAME="Debian GNU/Linux 13 (trixie)"
|
|
NAME="Debian GNU/Linux"
|
|
VERSION_ID="13"
|
|
VERSION="13 (trixie)"
|
|
VERSION_CODENAME=trixie
|
|
DEBIAN_VERSION_FULL=13.6
|
|
ID=debian
|
|
HOME_URL="https://www.debian.org/"
|
|
SUPPORT_URL="https://www.debian.org/support"
|
|
BUG_REPORT_URL="https://bugs.debian.org/"
|
|
|
|
--- debian version
|
|
$ cat /etc/debian_version
|
|
13.6
|
|
|
|
--- uptime
|
|
$ uptime
|
|
16:26:03 up 8 min, 1 user, load average: 0.45, 0.92, 0.64
|
|
|
|
--- uptime raw (since boot)
|
|
$ cat /proc/uptime
|
|
488.39 6978.69
|
|
|
|
--- last reboot
|
|
$ last -x reboot
|
|
reboot system boot 6.17.2-1-pve Sun Jul 26 16:17 - still running
|
|
reboot system boot 6.17.2-1-pve Fri Jul 24 13:39 - 16:12 (2+02:33)
|
|
shutdown system down 6.17.2-1-pve Sun Jul 26 16:12 - 16:17 (00:04)
|
|
reboot system boot 6.17.2-1-pve Thu Jul 23 10:58 - 10:45 (23:47)
|
|
shutdown system down 6.17.2-1-pve Fri Jul 24 10:45 - 13:39 (02:53)
|
|
reboot system boot 6.17.2-1-pve Fri Jun 19 03:04 - 18:06 (33+15:02)
|
|
shutdown system down 6.17.2-1-pve Wed Jul 22 18:06 - 10:58 (16:51)
|
|
reboot system boot 6.17.2-1-pve Fri Jun 19 03:00 - crash
|
|
reboot system boot 6.17.2-1-pve Wed May 20 12:05 - crash
|
|
reboot system boot 6.17.2-1-pve Wed May 20 11:28 - crash
|
|
reboot system boot 6.17.2-1-pve Wed May 20 09:36 - crash
|
|
reboot system boot 6.17.2-1-pve Wed May 20 08:39 - crash
|
|
reboot system boot 6.17.2-1-pve Sun May 10 21:59 - crash
|
|
reboot system boot 6.17.2-1-pve Sun May 10 21:55 - crash
|
|
reboot system boot 6.17.2-1-pve Sun Apr 5 04:48 - crash
|
|
reboot system boot 6.17.2-1-pve Sun Apr 5 04:27 - 04:46 (00:18)
|
|
shutdown system down 6.17.2-1-pve Sun Apr 5 04:46 - 04:48 (00:01)
|
|
reboot system boot 6.17.2-1-pve Sat Apr 4 12:52 - 04:25 (15:32)
|
|
shutdown system down 6.17.2-1-pve Sun Apr 5 04:25 - 04:27 (00:02)
|
|
reboot system boot 6.17.2-1-pve Sat Apr 4 12:46 - 12:50 (00:04)
|
|
shutdown system down 6.17.2-1-pve Sat Apr 4 12:50 - 12:52 (00:01)
|
|
|
|
wtmpdb begins Sat Apr 4 12:46:05 2026
|
|
|
|
--- last logins
|
|
$ last
|
|
reboot system boot 6.17.2-1-pve Sun Jul 26 16:17 - still running
|
|
root pts/0 100.87.49.37 Sun Jul 26 12:22 - 12:25 (00:03)
|
|
root pts/0 100.87.49.37 Sun Jul 26 11:51 - 11:54 (00:03)
|
|
root pts/0 100.87.49.37 Sun Jul 26 09:30 - 09:33 (00:03)
|
|
root pts/0 100.87.49.37 Sun Jul 26 09:21 - 09:28 (00:07)
|
|
root pts/0 100.87.49.37 Sat Jul 25 11:35 - 11:37 (00:01)
|
|
root pts/0 100.87.49.37 Sat Jul 25 01:24 - 01:29 (00:04)
|
|
reboot system boot 6.17.2-1-pve Fri Jul 24 13:39 - 16:12 (2+02:33)
|
|
root pts/0 100.87.49.37 Fri Jul 24 10:45 - 10:45 (00:00)
|
|
root pts/0 100.87.49.37 Thu Jul 23 13:55 - 13:55 (00:00)
|
|
root pts/0 100.87.49.37 Thu Jul 23 13:51 - 13:52 (00:00)
|
|
reboot system boot 6.17.2-1-pve Thu Jul 23 10:58 - 10:45 (23:47)
|
|
root pts/0 100.87.49.37 Wed Jul 22 17:40 - 17:44 (00:03)
|
|
root pts/0 100.87.49.37 Wed Jul 22 17:24 - 17:25 (00:00)
|
|
root pts/0 100.87.49.37 Wed Jul 22 17:01 - 17:20 (00:19)
|
|
root pts/0 100.87.49.37 Mon Jul 20 19:02 - 19:04 (00:01)
|
|
root pts/1 100.87.49.37 Mon Jul 20 12:28 - 12:28 (00:00)
|
|
root pts/0 100.109.70.137 Mon Jul 20 12:26 - 17:16 (04:50)
|
|
root pts/0 100.87.49.37 Mon Jul 20 11:29 - 11:29 (00:00)
|
|
root pts/0 100.87.49.37 Mon Jul 20 11:29 - 11:29 (00:00)
|
|
root pts/0 100.87.49.37 Mon Jul 20 11:13 - 11:13 (00:00)
|
|
root pts/0 100.87.49.37 Mon Jul 20 10:58 - 10:58 (00:00)
|
|
root pts/0 100.87.49.37 Mon Jul 20 10:51 - 10:52 (00:00)
|
|
reboot system boot 6.17.2-1-pve Fri Jun 19 03:04 - 18:06 (33+15:02)
|
|
reboot system boot 6.17.2-1-pve Fri Jun 19 03:00 - crash
|
|
reboot system boot 6.17.2-1-pve Wed May 20 12:05 - crash
|
|
reboot system boot 6.17.2-1-pve Wed May 20 11:28 - crash
|
|
reboot system boot 6.17.2-1-pve Wed May 20 09:36 - crash
|
|
reboot system boot 6.17.2-1-pve Wed May 20 08:39 - crash
|
|
reboot system boot 6.17.2-1-pve Sun May 10 21:59 - crash
|
|
reboot system boot 6.17.2-1-pve Sun May 10 21:55 - crash
|
|
root pts/0 100.118.91.16 Mon Apr 27 13:47 - 13:47 (00:00)
|
|
root pts/0 100.118.91.16 Mon Apr 27 13:44 - 13:45 (00:00)
|
|
root pts/0 100.118.91.16 Mon Apr 27 12:48 - 12:56 (00:07)
|
|
root pts/0 100.118.91.16 Mon Apr 6 17:20 - 17:20 (00:00)
|
|
root pts/0 100.118.91.16 Mon Apr 6 09:43 - 09:43 (00:00)
|
|
root pts/0 100.118.91.16 Sun Apr 5 11:23 - 11:26 (00:02)
|
|
root pts/0 192.168.3.32 Sun Apr 5 10:02 - 10:04 (00:02)
|
|
root tty1 Sun Apr 5 04:50 - 09:54 (05:04)
|
|
reboot system boot 6.17.2-1-pve Sun Apr 5 04:48 - crash
|
|
root tty2 Sun Apr 5 04:45 - 04:46 (00:00)
|
|
root tty1 Sun Apr 5 04:30 - 04:46 (00:16)
|
|
reboot system boot 6.17.2-1-pve Sun Apr 5 04:27 - 04:46 (00:18)
|
|
root tty1 Sat Apr 4 12:57 - 04:25 (15:28)
|
|
reboot system boot 6.17.2-1-pve Sat Apr 4 12:52 - 04:25 (15:32)
|
|
root tty1 Sat Apr 4 12:48 - 12:50 (00:02)
|
|
reboot system boot 6.17.2-1-pve Sat Apr 4 12:46 - 12:50 (00:04)
|
|
|
|
wtmpdb begins Sat Apr 4 12:46:05 2026
|
|
|
|
--- uname
|
|
$ uname -a
|
|
Linux pfv-tsys6 6.17.2-1-pve #1 SMP PREEMPT_DYNAMIC PMX 6.17.2-1 (2025-10-21T11:55Z) x86_64 GNU/Linux
|
|
|
|
--- /proc/cmdline (boot args)
|
|
$ cat /proc/cmdline
|
|
BOOT_IMAGE=/boot/vmlinuz-6.17.2-1-pve root=/dev/mapper/pve-root ro intel_iommu=off quiet
|
|
|
|
###############################################################################
|
|
# 3. HARDWARE INVENTORY
|
|
###############################################################################
|
|
|
|
--- dmidecode -t system
|
|
$ dmidecode -t system
|
|
# dmidecode 3.6
|
|
Getting SMBIOS data from sysfs.
|
|
SMBIOS 2.6 present.
|
|
|
|
Handle 0x0100, DMI type 1, 27 bytes
|
|
System Information
|
|
Manufacturer: Dell Inc.
|
|
Product Name: PowerEdge R610
|
|
Version: Not Specified
|
|
Serial Number: 3B5DSL1
|
|
UUID: 4c4c4544-0042-3510-8044-b3c04f534c31
|
|
Wake-up Type: Power Switch
|
|
SKU Number: Not Specified
|
|
Family: Not Specified
|
|
|
|
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 0x2000, DMI type 32, 11 bytes
|
|
System Boot Information
|
|
Status: No errors detected
|
|
|
|
|
|
--- dmidecode -t baseboard
|
|
$ dmidecode -t baseboard
|
|
# dmidecode 3.6
|
|
Getting SMBIOS data from sysfs.
|
|
SMBIOS 2.6 present.
|
|
|
|
Handle 0x0200, DMI type 2, 9 bytes
|
|
Base Board Information
|
|
Manufacturer: Dell Inc.
|
|
Product Name: 0XDN97
|
|
Version: A09
|
|
Serial Number: ..CN7016304R017M.
|
|
Asset Tag: Not Specified
|
|
|
|
Handle 0x0A00, DMI type 10, 14 bytes
|
|
On Board Device 1 Information
|
|
Type: Video
|
|
Status: Enabled
|
|
Description: Embedded Matrox G200 Video
|
|
On Board Device 2 Information
|
|
Type: Ethernet
|
|
Status: Enabled
|
|
Description: Embedded Broadcom 5709C NIC 1
|
|
On Board Device 3 Information
|
|
Type: Ethernet
|
|
Status: Enabled
|
|
Description: Embedded Broadcom 5709C NIC 2
|
|
On Board Device 4 Information
|
|
Type: Ethernet
|
|
Status: Enabled
|
|
Description: Embedded Broadcom 5709C NIC 3
|
|
On Board Device 5 Information
|
|
Type: Ethernet
|
|
Status: Enabled
|
|
Description: Embedded Broadcom 5709C NIC 4
|
|
|
|
Handle 0x2900, DMI type 41, 11 bytes
|
|
Onboard Device
|
|
Reference Designation: Embedded NIC 1
|
|
Type: Ethernet
|
|
Status: Enabled
|
|
Type Instance: 1
|
|
Bus Address: 0000:01: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:01:00.1
|
|
|
|
Handle 0x2902, DMI type 41, 11 bytes
|
|
Onboard Device
|
|
Reference Designation: Embedded NIC 3
|
|
Type: Ethernet
|
|
Status: Enabled
|
|
Type Instance: 3
|
|
Bus Address: 0000:02:00.0
|
|
|
|
Handle 0x2903, DMI type 41, 11 bytes
|
|
Onboard Device
|
|
Reference Designation: Embedded NIC 4
|
|
Type: Ethernet
|
|
Status: Enabled
|
|
Type Instance: 4
|
|
Bus Address: 0000:02:00.1
|
|
|
|
Handle 0x2904, DMI type 41, 11 bytes
|
|
Onboard Device
|
|
Reference Designation:
|
|
Type: SAS Controller
|
|
Status: Disabled
|
|
Type Instance: 4
|
|
|
|
Handle 0x2906, DMI type 41, 11 bytes
|
|
Onboard Device
|
|
Reference Designation: Embedded Video
|
|
Type: Video
|
|
Status: Enabled
|
|
Type Instance: 4
|
|
Bus Address: 0000:06:03.0
|
|
|
|
|
|
--- dmidecode -t bios
|
|
$ dmidecode -t bios
|
|
# dmidecode 3.6
|
|
Getting SMBIOS data from sysfs.
|
|
SMBIOS 2.6 present.
|
|
|
|
Handle 0x0000, DMI type 0, 24 bytes
|
|
BIOS Information
|
|
Vendor: Dell Inc.
|
|
Version: 2.0.13
|
|
Release Date: 04/06/2010
|
|
Address: 0xF0000
|
|
Runtime Size: 64 kB
|
|
ROM Size: 4 MB
|
|
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
|
|
BIOS Revision: 2.0
|
|
|
|
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
|
|
|
|
|
|
--- dmidecode -t chassis
|
|
$ dmidecode -t chassis
|
|
# dmidecode 3.6
|
|
Getting SMBIOS data from sysfs.
|
|
SMBIOS 2.6 present.
|
|
|
|
Handle 0x0300, DMI type 3, 21 bytes
|
|
Chassis Information
|
|
Manufacturer: Dell Inc.
|
|
Type: Rack Mount Chassis
|
|
Lock: Present
|
|
Version: Not Specified
|
|
Serial Number: 3B5DSL1
|
|
Asset Tag:
|
|
Boot-up State: Safe
|
|
Power Supply State: Safe
|
|
Thermal State: Safe
|
|
Security Status: Unknown
|
|
OEM Information: 0x00000000
|
|
Height: 1 U
|
|
Number Of Power Cords: Unspecified
|
|
Contained Elements: 0
|
|
|
|
|
|
--- dmidecode -t processor
|
|
$ dmidecode -t processor
|
|
# dmidecode 3.6
|
|
Getting SMBIOS data from sysfs.
|
|
SMBIOS 2.6 present.
|
|
|
|
Handle 0x0400, DMI type 4, 40 bytes
|
|
Processor Information
|
|
Socket Designation: CPU1
|
|
Type: Central Processor
|
|
Family: Xeon
|
|
Manufacturer: Intel
|
|
ID: A5 06 01 00 FF FB EB BF
|
|
Signature: Type 0, Family 6, Model 26, 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) Xeon(R) CPU E5530 @ 2.40GHz
|
|
Voltage: 1.2 V
|
|
External Clock: 5860 MHz
|
|
Max Speed: 3600 MHz
|
|
Current Speed: 2400 MHz
|
|
Status: Populated, Enabled
|
|
Upgrade: Socket LGA1366
|
|
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: 4
|
|
Core Enabled: 4
|
|
Thread Count: 8
|
|
Characteristics:
|
|
64-bit capable
|
|
|
|
Handle 0x0401, DMI type 4, 40 bytes
|
|
Processor Information
|
|
Socket Designation: CPU2
|
|
Type: Central Processor
|
|
Family: Xeon
|
|
Manufacturer: Intel
|
|
ID: A5 06 01 00 FF FB EB BF
|
|
Signature: Type 0, Family 6, Model 26, 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) Xeon(R) CPU E5530 @ 2.40GHz
|
|
Voltage: 1.2 V
|
|
External Clock: 5860 MHz
|
|
Max Speed: 3600 MHz
|
|
Current Speed: 2400 MHz
|
|
Status: Populated, Idle
|
|
Upgrade: Socket LGA1366
|
|
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: 4
|
|
Core Enabled: 4
|
|
Thread Count: 8
|
|
Characteristics:
|
|
64-bit capable
|
|
|
|
|
|
--- dmidecode -t memory
|
|
$ dmidecode -t memory
|
|
# dmidecode 3.6
|
|
Getting SMBIOS data from sysfs.
|
|
SMBIOS 2.6 present.
|
|
|
|
Handle 0x1000, DMI type 16, 15 bytes
|
|
Physical Memory Array
|
|
Location: System Board Or Motherboard
|
|
Use: System Memory
|
|
Error Correction Type: Multi-bit ECC
|
|
Maximum Capacity: 192 GB
|
|
Error Information Handle: Not Provided
|
|
Number Of Devices: 12
|
|
|
|
Handle 0x1100, DMI type 17, 28 bytes
|
|
Memory Device
|
|
Array Handle: 0x1000
|
|
Error Information Handle: Not Provided
|
|
Total Width: 72 bits
|
|
Data Width: 64 bits
|
|
Size: 16 GB
|
|
Form Factor: DIMM
|
|
Set: 1
|
|
Locator: DIMM_A1
|
|
Bank Locator: Not Specified
|
|
Type: DDR3
|
|
Type Detail: Synchronous Registered (Buffered)
|
|
Speed: 1333 MT/s
|
|
Manufacturer: 00CE00B380CE
|
|
Serial Number: 352705DF
|
|
Asset Tag: 02124963
|
|
Part Number: M393B2G70BH0-YH9
|
|
Rank: 2
|
|
|
|
Handle 0x1101, DMI type 17, 28 bytes
|
|
Memory Device
|
|
Array Handle: 0x1000
|
|
Error Information Handle: Not Provided
|
|
Total Width: 72 bits
|
|
Data Width: 64 bits
|
|
Size: 16 GB
|
|
Form Factor: DIMM
|
|
Set: 1
|
|
Locator: DIMM_A2
|
|
Bank Locator: Not Specified
|
|
Type: DDR3
|
|
Type Detail: Synchronous Registered (Buffered)
|
|
Speed: 1333 MT/s
|
|
Manufacturer: 00CE00B380CE
|
|
Serial Number: 352703F3
|
|
Asset Tag: 02124963
|
|
Part Number: M393B2G70BH0-YH9
|
|
Rank: 2
|
|
|
|
Handle 0x1102, DMI type 17, 28 bytes
|
|
Memory Device
|
|
Array Handle: 0x1000
|
|
Error Information Handle: Not Provided
|
|
Total Width: 72 bits
|
|
Data Width: 64 bits
|
|
Size: 16 GB
|
|
Form Factor: DIMM
|
|
Set: 2
|
|
Locator: DIMM_A3
|
|
Bank Locator: Not Specified
|
|
Type: DDR3
|
|
Type Detail: Synchronous Registered (Buffered)
|
|
Speed: 1333 MT/s
|
|
Manufacturer: 00CE00B380CE
|
|
Serial Number: 353C3634
|
|
Asset Tag: 02125163
|
|
Part Number: M393B2G70BH0-YH9
|
|
Rank: 2
|
|
|
|
Handle 0x1103, DMI type 17, 28 bytes
|
|
Memory Device
|
|
Array Handle: 0x1000
|
|
Error Information Handle: Not Provided
|
|
Total Width: 72 bits
|
|
Data Width: 64 bits
|
|
Size: 16 GB
|
|
Form Factor: DIMM
|
|
Set: 2
|
|
Locator: DIMM_A4
|
|
Bank Locator: Not Specified
|
|
Type: DDR3
|
|
Type Detail: Synchronous Registered (Buffered)
|
|
Speed: 1333 MT/s
|
|
Manufacturer: 00CE00B380CE
|
|
Serial Number: 352708D9
|
|
Asset Tag: 02124963
|
|
Part Number: M393B2G70BH0-YH9
|
|
Rank: 2
|
|
|
|
Handle 0x1104, DMI type 17, 28 bytes
|
|
Memory Device
|
|
Array Handle: 0x1000
|
|
Error Information Handle: Not Provided
|
|
Total Width: 72 bits
|
|
Data Width: 64 bits
|
|
Size: 16 GB
|
|
Form Factor: DIMM
|
|
Set: 3
|
|
Locator: DIMM_A5
|
|
Bank Locator: Not Specified
|
|
Type: DDR3
|
|
Type Detail: Synchronous Registered (Buffered)
|
|
Speed: 1333 MT/s
|
|
Manufacturer: 00CE00B380CE
|
|
Serial Number: 352708D7
|
|
Asset Tag: 02124963
|
|
Part Number: M393B2G70BH0-YH9
|
|
Rank: 2
|
|
|
|
Handle 0x1105, DMI type 17, 28 bytes
|
|
Memory Device
|
|
Array Handle: 0x1000
|
|
Error Information Handle: Not Provided
|
|
Total Width: 72 bits
|
|
Data Width: 64 bits
|
|
Size: 16 GB
|
|
Form Factor: DIMM
|
|
Set: 3
|
|
Locator: DIMM_A6
|
|
Bank Locator: Not Specified
|
|
Type: DDR3
|
|
Type Detail: Synchronous Registered (Buffered)
|
|
Speed: 1333 MT/s
|
|
Manufacturer: 00CE00B380CE
|
|
Serial Number: 351F0E9A
|
|
Asset Tag: 02124963
|
|
Part Number: M393B2G70BH0-YH9
|
|
Rank: 2
|
|
|
|
Handle 0x1109, DMI type 17, 28 bytes
|
|
Memory Device
|
|
Array Handle: 0x1000
|
|
Error Information Handle: Not Provided
|
|
Total Width: 72 bits
|
|
Data Width: 64 bits
|
|
Size: No Module Installed
|
|
Form Factor: DIMM
|
|
Set: 5
|
|
Locator: DIMM_B1
|
|
Bank Locator: Not Specified
|
|
Type: DDR3
|
|
Type Detail: Synchronous
|
|
|
|
Handle 0x110A, DMI type 17, 28 bytes
|
|
Memory Device
|
|
Array Handle: 0x1000
|
|
Error Information Handle: Not Provided
|
|
Total Width: 72 bits
|
|
Data Width: 64 bits
|
|
Size: No Module Installed
|
|
Form Factor: DIMM
|
|
Set: 6
|
|
Locator: DIMM_B2
|
|
Bank Locator: Not Specified
|
|
Type: DDR3
|
|
Type Detail: Synchronous
|
|
|
|
Handle 0x110B, DMI type 17, 28 bytes
|
|
Memory Device
|
|
Array Handle: 0x1000
|
|
Error Information Handle: Not Provided
|
|
Total Width: 72 bits
|
|
Data Width: 64 bits
|
|
Size: 16 GB
|
|
Form Factor: DIMM
|
|
Set: 6
|
|
Locator: DIMM_B3
|
|
Bank Locator: Not Specified
|
|
Type: DDR3
|
|
Type Detail: Synchronous Registered (Buffered)
|
|
Speed: 1333 MT/s
|
|
Manufacturer: 00CE00B380CE
|
|
Serial Number: 353C3192
|
|
Asset Tag: 02125163
|
|
Part Number: M393B2G70BH0-YH9
|
|
Rank: 2
|
|
|
|
Handle 0x110C, DMI type 17, 28 bytes
|
|
Memory Device
|
|
Array Handle: 0x1000
|
|
Error Information Handle: Not Provided
|
|
Total Width: 72 bits
|
|
Data Width: 64 bits
|
|
Size: No Module Installed
|
|
Form Factor: DIMM
|
|
Set: 4
|
|
Locator: DIMM_B4
|
|
Bank Locator: Not Specified
|
|
Type: DDR3
|
|
Type Detail: Synchronous
|
|
|
|
Handle 0x110D, DMI type 17, 28 bytes
|
|
Memory Device
|
|
Array Handle: 0x1000
|
|
Error Information Handle: Not Provided
|
|
Total Width: 72 bits
|
|
Data Width: 64 bits
|
|
Size: No Module Installed
|
|
Form Factor: DIMM
|
|
Set: 5
|
|
Locator: DIMM_B5
|
|
Bank Locator: Not Specified
|
|
Type: DDR3
|
|
Type Detail: Synchronous
|
|
|
|
Handle 0x110E, DMI type 17, 28 bytes
|
|
Memory Device
|
|
Array Handle: 0x1000
|
|
Error Information Handle: Not Provided
|
|
Total Width: 72 bits
|
|
Data Width: 64 bits
|
|
Size: 16 GB
|
|
Form Factor: DIMM
|
|
Set: 6
|
|
Locator: DIMM_B6
|
|
Bank Locator: Not Specified
|
|
Type: DDR3
|
|
Type Detail: Synchronous Registered (Buffered)
|
|
Speed: 1333 MT/s
|
|
Manufacturer: 00CE00B380CE
|
|
Serial Number: 353C32B8
|
|
Asset Tag: 02125163
|
|
Part Number: M393B2G70BH0-YH9
|
|
Rank: 2
|
|
|
|
|
|
--- dmidecode -t cache
|
|
$ dmidecode -t cache
|
|
# dmidecode 3.6
|
|
Getting SMBIOS data from sysfs.
|
|
SMBIOS 2.6 present.
|
|
|
|
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: 128 kB
|
|
Maximum Size: 128 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: 1 MB
|
|
Maximum Size: 2 MB
|
|
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: 8 MB
|
|
Maximum Size: 8 MB
|
|
Supported SRAM Types:
|
|
Unknown
|
|
Installed SRAM Type: Unknown
|
|
Speed: Unknown
|
|
Error Correction Type: Single-bit ECC
|
|
System Type: Unified
|
|
Associativity: 16-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: 128 kB
|
|
Maximum Size: 128 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: 1 MB
|
|
Maximum Size: 2 MB
|
|
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: 8 MB
|
|
Maximum Size: 8 MB
|
|
Supported SRAM Types:
|
|
Unknown
|
|
Installed SRAM Type: Unknown
|
|
Speed: Unknown
|
|
Error Correction Type: Single-bit ECC
|
|
System Type: Unified
|
|
Associativity: 16-way Set-associative
|
|
|
|
|
|
--- dmidecode -t connector
|
|
$ dmidecode -t connector
|
|
# dmidecode 3.6
|
|
Getting SMBIOS data from sysfs.
|
|
SMBIOS 2.6 present.
|
|
|
|
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 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 8, 9 bytes
|
|
Port Connector Information
|
|
Internal Reference Designator: INT_SD
|
|
Internal Connector Type: Other
|
|
External Reference Designator: Not Specified
|
|
External Connector Type: None
|
|
Port Type: USB
|
|
|
|
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: RJ-45
|
|
Port Type: Network Port
|
|
|
|
Handle 0x0810, 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 0x0811, 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 0x0812, 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
|
|
|
|
|
|
--- dmidecode -t slot
|
|
$ dmidecode -t slot
|
|
# dmidecode 3.6
|
|
Getting SMBIOS data from sysfs.
|
|
SMBIOS 2.6 present.
|
|
|
|
Handle 0x0900, DMI type 9, 17 bytes
|
|
System Slot Information
|
|
Designation: PCI1
|
|
Type: PCI Express 2
|
|
Data Bus Width: 8x or x8
|
|
Current Usage: In Use
|
|
Length: Long
|
|
ID: 1
|
|
Characteristics:
|
|
3.3 V is provided
|
|
PME signal is supported
|
|
Bus Address: 0000:04:00.0
|
|
|
|
Handle 0x0901, DMI type 9, 17 bytes
|
|
System Slot Information
|
|
Designation: PCI2
|
|
Type: PCI Express 2
|
|
Data Bus Width: 8x or x8
|
|
Current Usage: Available
|
|
Length: Long
|
|
ID: 2
|
|
Characteristics:
|
|
3.3 V is provided
|
|
PME signal is supported
|
|
|
|
|
|
--- lscpu
|
|
$ lscpu
|
|
Architecture: x86_64
|
|
CPU op-mode(s): 32-bit, 64-bit
|
|
Address sizes: 40 bits physical, 48 bits virtual
|
|
Byte Order: Little Endian
|
|
CPU(s): 16
|
|
On-line CPU(s) list: 0-15
|
|
Vendor ID: GenuineIntel
|
|
Model name: Intel(R) Xeon(R) CPU E5530 @ 2.40GHz
|
|
CPU family: 6
|
|
Model: 26
|
|
Thread(s) per core: 2
|
|
Core(s) per socket: 4
|
|
Socket(s): 2
|
|
Stepping: 5
|
|
Frequency boost: enabled
|
|
CPU(s) scaling MHz: 95%
|
|
CPU max MHz: 2395.0000
|
|
CPU min MHz: 1596.0000
|
|
BogoMIPS: 4787.80
|
|
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 ht tm pbe syscall nx rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni dtes64 monitor ds_cpl vmx est tm2 ssse3 cx16 xtpr pdcm dca sse4_1 sse4_2 popcnt lahf_lm pti ssbd ibrs ibpb stibp tpr_shadow flexpriority ept vpid dtherm ida vnmi flush_l1d
|
|
Virtualization: VT-x
|
|
L1d cache: 256 KiB (8 instances)
|
|
L1i cache: 256 KiB (8 instances)
|
|
L2 cache: 2 MiB (8 instances)
|
|
L3 cache: 16 MiB (2 instances)
|
|
NUMA node(s): 2
|
|
NUMA node0 CPU(s): 0,2,4,6,8,10,12,14
|
|
NUMA node1 CPU(s): 1,3,5,7,9,11,13,15
|
|
Vulnerability Gather data sampling: Not affected
|
|
Vulnerability Ghostwrite: Not affected
|
|
Vulnerability Indirect target selection: Not affected
|
|
Vulnerability Itlb multihit: KVM: Mitigation: Split huge pages
|
|
Vulnerability L1tf: Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable
|
|
Vulnerability Mds: Vulnerable: Clear CPU buffers attempted, no microcode; SMT vulnerable
|
|
Vulnerability Meltdown: Mitigation; PTI
|
|
Vulnerability Mmio stale data: Not affected
|
|
Vulnerability Old microcode: Not affected
|
|
Vulnerability Reg file data sampling: Not affected
|
|
Vulnerability Retbleed: Not affected
|
|
Vulnerability Spec rstack overflow: Not affected
|
|
Vulnerability Spec store bypass: Mitigation; Speculative Store Bypass disabled via prctl
|
|
Vulnerability Spectre v1: Mitigation; usercopy/swapgs barriers and __user pointer sanitization
|
|
Vulnerability Spectre v2: Mitigation; Retpolines; IBPB conditional; IBRS_FW; STIBP conditional; RSB filling; PBRSB-eIBRS Not affected; BHI Not affected
|
|
Vulnerability Srbds: Not affected
|
|
Vulnerability Tsa: Not affected
|
|
Vulnerability Tsx async abort: Not affected
|
|
Vulnerability Vmscape: Not affected
|
|
|
|
--- lscpu cache
|
|
$ lscpu -C
|
|
NAME ONE-SIZE ALL-SIZE WAYS TYPE LEVEL SETS PHY-LINE COHERENCY-SIZE
|
|
L1d 32K 256K 8 Data 1 64 1 64
|
|
L1i 32K 256K 4 Instruction 1 128 1 64
|
|
L2 256K 2M 8 Unified 2 512 1 64
|
|
L3 8M 16M 16 Unified 3 8192 1 64
|
|
|
|
--- numactl --hardware
|
|
$ numactl --hardware
|
|
/root/check.sh: line 45: numactl: command not found
|
|
[exit=127 / not installed or not permitted]
|
|
|
|
--- numactl --show
|
|
$ numactl --show
|
|
/root/check.sh: line 45: numactl: command not found
|
|
[exit=127 / not installed or not permitted]
|
|
|
|
--- lspci -nnvv (verbose)
|
|
$ lspci -nnvv
|
|
00:00.0 Host bridge [0600]: Intel Corporation 5500 I/O Hub to ESI Port [8086:3403] (rev 13)
|
|
Subsystem: Dell PowerEdge R610 I/O Hub to ESI Port [1028:0236]
|
|
Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Interrupt: pin A routed to IRQ 15
|
|
Capabilities: [60] MSI: Enable- Count=1/2 Maskable+ 64bit-
|
|
Address: 00000000 Data: 0000
|
|
Masking: 00000000 Pending: 00000000
|
|
Capabilities: [90] Express (v2) Root Port (Slot-), IntMsgNum 0
|
|
DevCap: MaxPayload 128 bytes, PhantFunc 0
|
|
ExtTag+ RBE+ TEE-IO-
|
|
DevCtl: CorrErr+ NonFatalErr+ FatalErr+ UnsupReq+
|
|
RlxdOrd- ExtTag+ PhantFunc- AuxPwr- NoSnoop-
|
|
MaxPayload 128 bytes, MaxReadReq 128 bytes
|
|
DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
|
|
LnkCap: Port #0, Speed 2.5GT/s, Width x4, ASPM L0s L1, Exit Latency L0s <512ns, L1 <64us
|
|
ClockPM- Surprise+ LLActRep+ BwNot+ ASPMOptComp-
|
|
LnkCtl: ASPM Disabled; RCB 64 bytes, LnkDisable- CommClk-
|
|
ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
|
|
LnkSta: Speed 2.5GT/s, Width x4
|
|
TrErr- Train- SlotClk+ DLActive+ BWMgmt- ABWMgmt-
|
|
RootCap: CRSVisible-
|
|
RootCtl: ErrCorrectable- ErrNon-Fatal+ ErrFatal+ PMEIntEna- CRSVisible-
|
|
RootSta: PME ReqID 0000, PMEStatus- PMEPending-
|
|
DevCap2: Completion Timeout: Range BCD, TimeoutDis+ NROPrPrP- LTR-
|
|
10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
|
|
EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
|
|
FRS- LN System CLS Not Supported, TPHComp- ExtTPHComp- ARIFwd+
|
|
AtomicOpsCap: Routing- 32bit- 64bit- 128bitCAS-
|
|
DevCtl2: Completion Timeout: 17s to 64s, TimeoutDis- ARIFwd-
|
|
AtomicOpsCtl: ReqEn- EgressBlck-
|
|
IDOReq- IDOCompl- LTR- EmergencyPowerReductionReq-
|
|
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
|
|
LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-
|
|
Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
|
|
Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot
|
|
LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete- EqualizationPhase1-
|
|
EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
|
|
Retimer- 2Retimers- CrosslinkRes: unsupported
|
|
Capabilities: [e0] Power Management version 3
|
|
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
|
|
Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
|
|
Capabilities: [100 v1] Advanced Error Reporting
|
|
UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
UEMsk: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt+ UnxCmplt+ RxOF- MalfTLP-
|
|
ECRC- UnsupReq- ACSViol+ UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
UESvrt: DLP+ SDES+ TLP+ FCP+ CmpltTO+ CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
CESta: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr- CorrIntErr- HeaderOF-
|
|
CEMsk: RxErr+ BadTLP+ BadDLLP+ Rollover+ Timeout+ AdvNonFatalErr+ CorrIntErr- HeaderOF-
|
|
AERCap: First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
|
|
MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
|
|
HeaderLog: 00000000 00000000 00000000 00000000
|
|
RootCmd: CERptEn- NFERptEn- FERptEn-
|
|
RootSta: CERcvd- MultCERcvd- UERcvd- MultUERcvd-
|
|
FirstFatal- NonFatalMsg- FatalMsg- IntMsgNum 0
|
|
ErrorSrc: ERR_COR: 0000 ERR_FATAL/NONFATAL: 0000
|
|
Capabilities: [150 v1] Access Control Services
|
|
ACSCap: SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
|
|
ACSCtl: SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
|
|
Capabilities: [160 v0] Vendor Specific Information: ID=0002 Rev=0 Len=00c <?>
|
|
|
|
00:01.0 PCI bridge [0604]: Intel Corporation 5520/5500/X58 I/O Hub PCI Express Root Port 1 [8086:3408] (rev 13) (prog-if 00 [Normal decode])
|
|
Subsystem: Dell Device [1028:0236]
|
|
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx+
|
|
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0, Cache Line Size: 64 bytes
|
|
Interrupt: pin A routed to IRQ 25
|
|
Bus: primary=00, secondary=01, subordinate=01, sec-latency=0
|
|
I/O behind bridge: [disabled] [16-bit]
|
|
Memory behind bridge: d2000000-d5ffffff [size=64M] [32-bit]
|
|
Prefetchable memory behind bridge: [disabled] [64-bit]
|
|
Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
|
|
BridgeCtl: Parity+ SERR+ NoISA+ VGA- VGA16- MAbort- >Reset- FastB2B-
|
|
PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
|
|
Capabilities: [40] Subsystem: Dell Device [1028:0236]
|
|
Capabilities: [60] MSI: Enable+ Count=1/2 Maskable+ 64bit-
|
|
Address: fee00000 Data: 0020
|
|
Masking: 00000002 Pending: 00000000
|
|
Capabilities: [90] Express (v2) Root Port (Slot-), IntMsgNum 0
|
|
DevCap: MaxPayload 256 bytes, PhantFunc 0
|
|
ExtTag+ RBE+ TEE-IO-
|
|
DevCtl: CorrErr+ NonFatalErr+ FatalErr+ UnsupReq+
|
|
RlxdOrd- ExtTag+ PhantFunc- AuxPwr- NoSnoop-
|
|
MaxPayload 256 bytes, MaxReadReq 128 bytes
|
|
DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
|
|
LnkCap: Port #1, Speed 5GT/s, Width x4, ASPM L0s L1, Exit Latency L0s <512ns, L1 <64us
|
|
ClockPM- Surprise+ LLActRep+ BwNot+ ASPMOptComp-
|
|
LnkCtl: ASPM Disabled; RCB 64 bytes, LnkDisable- CommClk+
|
|
ExtSynch- ClockPM- AutWidDis- BWInt+ AutBWInt+
|
|
LnkSta: Speed 2.5GT/s, Width x4
|
|
TrErr- Train- SlotClk+ DLActive+ BWMgmt- ABWMgmt-
|
|
RootCap: CRSVisible+
|
|
RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna+ CRSVisible+
|
|
RootSta: PME ReqID 0000, PMEStatus- PMEPending-
|
|
DevCap2: Completion Timeout: Range BCD, TimeoutDis+ NROPrPrP- LTR-
|
|
10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
|
|
EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
|
|
FRS- LN System CLS Not Supported, TPHComp- ExtTPHComp- ARIFwd+
|
|
AtomicOpsCap: Routing- 32bit- 64bit- 128bitCAS-
|
|
DevCtl2: Completion Timeout: 1s to 3.5s, TimeoutDis- ARIFwd-
|
|
AtomicOpsCtl: ReqEn- EgressBlck-
|
|
IDOReq- IDOCompl- LTR- EmergencyPowerReductionReq-
|
|
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
|
|
LnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-
|
|
Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
|
|
Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot
|
|
LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete- EqualizationPhase1-
|
|
EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
|
|
Retimer- 2Retimers- CrosslinkRes: unsupported
|
|
Capabilities: [e0] Power Management version 3
|
|
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
|
|
Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
|
|
Capabilities: [100 v1] Advanced Error Reporting
|
|
UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
UEMsk: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt+ UnxCmplt+ RxOF- MalfTLP-
|
|
ECRC- UnsupReq- ACSViol+ UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
UESvrt: DLP+ SDES+ TLP+ FCP+ CmpltTO+ CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
CESta: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr- CorrIntErr- HeaderOF-
|
|
CEMsk: RxErr+ BadTLP+ BadDLLP+ Rollover+ Timeout+ AdvNonFatalErr+ CorrIntErr- HeaderOF-
|
|
AERCap: First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
|
|
MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
|
|
HeaderLog: 00000000 00000000 00000000 00000000
|
|
RootCmd: CERptEn+ NFERptEn+ FERptEn+
|
|
RootSta: CERcvd- MultCERcvd- UERcvd- MultUERcvd-
|
|
FirstFatal- NonFatalMsg- FatalMsg- IntMsgNum 0
|
|
ErrorSrc: ERR_COR: 0000 ERR_FATAL/NONFATAL: 0000
|
|
Capabilities: [150 v1] Access Control Services
|
|
ACSCap: SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
|
|
ACSCtl: SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
|
|
Capabilities: [160 v0] Vendor Specific Information: ID=0002 Rev=0 Len=00c <?>
|
|
Kernel driver in use: pcieport
|
|
|
|
00:03.0 PCI bridge [0604]: Intel Corporation 5520/5500/X58 I/O Hub PCI Express Root Port 3 [8086:340a] (rev 13) (prog-if 00 [Normal decode])
|
|
Subsystem: Dell Device [1028:0236]
|
|
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx+
|
|
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0, Cache Line Size: 64 bytes
|
|
Interrupt: pin A routed to IRQ 26
|
|
Bus: primary=00, secondary=02, subordinate=02, sec-latency=0
|
|
I/O behind bridge: [disabled] [16-bit]
|
|
Memory behind bridge: d6000000-d9ffffff [size=64M] [32-bit]
|
|
Prefetchable memory behind bridge: [disabled] [64-bit]
|
|
Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
|
|
BridgeCtl: Parity+ SERR+ NoISA+ VGA- VGA16- MAbort- >Reset- FastB2B-
|
|
PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
|
|
Capabilities: [40] Subsystem: Dell Device [1028:0236]
|
|
Capabilities: [60] MSI: Enable+ Count=1/2 Maskable+ 64bit-
|
|
Address: fee02000 Data: 0020
|
|
Masking: 00000002 Pending: 00000000
|
|
Capabilities: [90] Express (v2) Root Port (Slot-), IntMsgNum 0
|
|
DevCap: MaxPayload 256 bytes, PhantFunc 0
|
|
ExtTag+ RBE+ TEE-IO-
|
|
DevCtl: CorrErr+ NonFatalErr+ FatalErr+ UnsupReq+
|
|
RlxdOrd- ExtTag+ PhantFunc- AuxPwr- NoSnoop-
|
|
MaxPayload 256 bytes, MaxReadReq 128 bytes
|
|
DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
|
|
LnkCap: Port #3, Speed 5GT/s, Width x4, ASPM L0s L1, Exit Latency L0s <512ns, L1 <64us
|
|
ClockPM- Surprise+ LLActRep+ BwNot+ ASPMOptComp-
|
|
LnkCtl: ASPM Disabled; RCB 64 bytes, LnkDisable- CommClk+
|
|
ExtSynch- ClockPM- AutWidDis- BWInt+ AutBWInt+
|
|
LnkSta: Speed 2.5GT/s, Width x4
|
|
TrErr- Train- SlotClk+ DLActive+ BWMgmt- ABWMgmt-
|
|
RootCap: CRSVisible+
|
|
RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna+ CRSVisible+
|
|
RootSta: PME ReqID 0000, PMEStatus- PMEPending-
|
|
DevCap2: Completion Timeout: Range BCD, TimeoutDis+ NROPrPrP- LTR-
|
|
10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
|
|
EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
|
|
FRS- LN System CLS Not Supported, TPHComp- ExtTPHComp- ARIFwd+
|
|
AtomicOpsCap: Routing- 32bit- 64bit- 128bitCAS-
|
|
DevCtl2: Completion Timeout: 1s to 3.5s, TimeoutDis- ARIFwd-
|
|
AtomicOpsCtl: ReqEn- EgressBlck-
|
|
IDOReq- IDOCompl- LTR- EmergencyPowerReductionReq-
|
|
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
|
|
LnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-
|
|
Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
|
|
Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot
|
|
LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete- EqualizationPhase1-
|
|
EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
|
|
Retimer- 2Retimers- CrosslinkRes: unsupported
|
|
Capabilities: [e0] Power Management version 3
|
|
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
|
|
Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
|
|
Capabilities: [100 v1] Advanced Error Reporting
|
|
UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
UEMsk: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt+ UnxCmplt+ RxOF- MalfTLP-
|
|
ECRC- UnsupReq- ACSViol+ UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
UESvrt: DLP+ SDES+ TLP+ FCP+ CmpltTO+ CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
CESta: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr- CorrIntErr- HeaderOF-
|
|
CEMsk: RxErr+ BadTLP+ BadDLLP+ Rollover+ Timeout+ AdvNonFatalErr+ CorrIntErr- HeaderOF-
|
|
AERCap: First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
|
|
MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
|
|
HeaderLog: 00000000 00000000 00000000 00000000
|
|
RootCmd: CERptEn+ NFERptEn+ FERptEn+
|
|
RootSta: CERcvd- MultCERcvd- UERcvd- MultUERcvd-
|
|
FirstFatal- NonFatalMsg- FatalMsg- IntMsgNum 0
|
|
ErrorSrc: ERR_COR: 0000 ERR_FATAL/NONFATAL: 0000
|
|
Capabilities: [150 v1] Access Control Services
|
|
ACSCap: SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
|
|
ACSCtl: SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
|
|
Capabilities: [160 v0] Vendor Specific Information: ID=0002 Rev=0 Len=00c <?>
|
|
Kernel driver in use: pcieport
|
|
|
|
00:07.0 PCI bridge [0604]: Intel Corporation 5520/5500/X58 I/O Hub PCI Express Root Port 7 [8086:340e] (rev 13) (prog-if 00 [Normal decode])
|
|
Subsystem: Dell Device [1028:0236]
|
|
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx+
|
|
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0, Cache Line Size: 64 bytes
|
|
Interrupt: pin A routed to IRQ 27
|
|
Bus: primary=00, secondary=04, subordinate=04, sec-latency=0
|
|
I/O behind bridge: [disabled] [16-bit]
|
|
Memory behind bridge: da000000-ddffffff [size=64M] [32-bit]
|
|
Prefetchable memory behind bridge: [disabled] [64-bit]
|
|
Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
|
|
BridgeCtl: Parity+ SERR+ NoISA+ VGA- VGA16- MAbort- >Reset- FastB2B-
|
|
PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
|
|
Capabilities: [40] Subsystem: Dell Device [1028:0236]
|
|
Capabilities: [60] MSI: Enable+ Count=1/2 Maskable+ 64bit-
|
|
Address: fee14000 Data: 0020
|
|
Masking: 00000002 Pending: 00000000
|
|
Capabilities: [90] Express (v2) Root Port (Slot+), IntMsgNum 0
|
|
DevCap: MaxPayload 256 bytes, PhantFunc 0
|
|
ExtTag+ RBE+ TEE-IO-
|
|
DevCtl: CorrErr+ NonFatalErr+ FatalErr+ UnsupReq+
|
|
RlxdOrd- ExtTag+ PhantFunc- AuxPwr- NoSnoop-
|
|
MaxPayload 256 bytes, MaxReadReq 128 bytes
|
|
DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
|
|
LnkCap: Port #7, Speed 5GT/s, Width x8, ASPM L0s L1, Exit Latency L0s <512ns, L1 <64us
|
|
ClockPM- Surprise+ LLActRep+ BwNot+ ASPMOptComp-
|
|
LnkCtl: ASPM Disabled; RCB 64 bytes, LnkDisable- CommClk+
|
|
ExtSynch- ClockPM- AutWidDis- BWInt+ AutBWInt+
|
|
LnkSta: Speed 2.5GT/s, Width x4
|
|
TrErr- Train- SlotClk+ DLActive+ BWMgmt- ABWMgmt-
|
|
SltCap: AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
|
|
Slot #1, PowerLimit 25W; Interlock- NoCompl-
|
|
SltCtl: Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
|
|
Control: AttnInd Off, PwrInd Off, Power- Interlock-
|
|
SltSta: Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
|
|
Changed: MRL- PresDet+ LinkState+
|
|
RootCap: CRSVisible+
|
|
RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna+ CRSVisible+
|
|
RootSta: PME ReqID 0000, PMEStatus- PMEPending-
|
|
DevCap2: Completion Timeout: Range BCD, TimeoutDis+ NROPrPrP- LTR-
|
|
10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
|
|
EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
|
|
FRS- LN System CLS Not Supported, TPHComp- ExtTPHComp- ARIFwd+
|
|
AtomicOpsCap: Routing- 32bit- 64bit- 128bitCAS-
|
|
DevCtl2: Completion Timeout: 1s to 3.5s, TimeoutDis- ARIFwd-
|
|
AtomicOpsCtl: ReqEn- EgressBlck-
|
|
IDOReq- IDOCompl- LTR- EmergencyPowerReductionReq-
|
|
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
|
|
LnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-
|
|
Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
|
|
Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot
|
|
LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete- EqualizationPhase1-
|
|
EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
|
|
Retimer- 2Retimers- CrosslinkRes: unsupported
|
|
Capabilities: [e0] Power Management version 3
|
|
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
|
|
Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
|
|
Capabilities: [100 v1] Advanced Error Reporting
|
|
UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
UEMsk: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt+ UnxCmplt+ RxOF- MalfTLP-
|
|
ECRC- UnsupReq- ACSViol+ UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
UESvrt: DLP+ SDES+ TLP+ FCP+ CmpltTO+ CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
CESta: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr- CorrIntErr- HeaderOF-
|
|
CEMsk: RxErr+ BadTLP+ BadDLLP+ Rollover+ Timeout+ AdvNonFatalErr+ CorrIntErr- HeaderOF-
|
|
AERCap: First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
|
|
MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
|
|
HeaderLog: 00000000 00000000 00000000 00000000
|
|
RootCmd: CERptEn+ NFERptEn+ FERptEn+
|
|
RootSta: CERcvd- MultCERcvd- UERcvd- MultUERcvd-
|
|
FirstFatal- NonFatalMsg- FatalMsg- IntMsgNum 0
|
|
ErrorSrc: ERR_COR: 0000 ERR_FATAL/NONFATAL: 0000
|
|
Capabilities: [150 v1] Access Control Services
|
|
ACSCap: SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
|
|
ACSCtl: SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
|
|
Capabilities: [160 v0] Vendor Specific Information: ID=0002 Rev=0 Len=00c <?>
|
|
Kernel driver in use: pcieport
|
|
|
|
00:09.0 PCI bridge [0604]: Intel Corporation 7500/5520/5500/X58 I/O Hub PCI Express Root Port 9 [8086:3410] (rev 13) (prog-if 00 [Normal decode])
|
|
Subsystem: Dell Device [1028:0236]
|
|
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx+
|
|
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0, Cache Line Size: 64 bytes
|
|
Interrupt: pin A routed to IRQ 28
|
|
Bus: primary=00, secondary=05, subordinate=05, sec-latency=0
|
|
I/O behind bridge: [disabled] [16-bit]
|
|
Memory behind bridge: [disabled] [32-bit]
|
|
Prefetchable memory behind bridge: [disabled] [64-bit]
|
|
Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
|
|
BridgeCtl: Parity+ SERR+ NoISA+ VGA- VGA16- MAbort- >Reset- FastB2B-
|
|
PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
|
|
Capabilities: [40] Subsystem: Dell Device [1028:0236]
|
|
Capabilities: [60] MSI: Enable+ Count=1/2 Maskable+ 64bit-
|
|
Address: fee04000 Data: 0020
|
|
Masking: 00000002 Pending: 00000000
|
|
Capabilities: [90] Express (v2) Root Port (Slot+), IntMsgNum 0
|
|
DevCap: MaxPayload 256 bytes, PhantFunc 0
|
|
ExtTag+ RBE+ TEE-IO-
|
|
DevCtl: CorrErr+ NonFatalErr+ FatalErr+ UnsupReq+
|
|
RlxdOrd- ExtTag+ PhantFunc- AuxPwr- NoSnoop-
|
|
MaxPayload 128 bytes, MaxReadReq 128 bytes
|
|
DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
|
|
LnkCap: Port #9, Speed 5GT/s, Width x8, ASPM L0s L1, Exit Latency L0s <512ns, L1 <64us
|
|
ClockPM- Surprise+ LLActRep+ BwNot+ ASPMOptComp-
|
|
LnkCtl: ASPM Disabled; RCB 64 bytes, LnkDisable+ CommClk-
|
|
ExtSynch- ClockPM- AutWidDis- BWInt+ AutBWInt+
|
|
LnkSta: Speed 2.5GT/s, Width x0
|
|
TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
|
|
SltCap: AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
|
|
Slot #2, PowerLimit 25W; Interlock- NoCompl-
|
|
SltCtl: Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
|
|
Control: AttnInd Off, PwrInd Off, Power- Interlock-
|
|
SltSta: Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet- Interlock-
|
|
Changed: MRL- PresDet+ LinkState-
|
|
RootCap: CRSVisible+
|
|
RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna+ CRSVisible+
|
|
RootSta: PME ReqID 0000, PMEStatus- PMEPending-
|
|
DevCap2: Completion Timeout: Range BCD, TimeoutDis+ NROPrPrP- LTR-
|
|
10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
|
|
EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
|
|
FRS- LN System CLS Not Supported, TPHComp- ExtTPHComp- ARIFwd+
|
|
AtomicOpsCap: Routing- 32bit- 64bit- 128bitCAS-
|
|
DevCtl2: Completion Timeout: 1s to 3.5s, TimeoutDis- ARIFwd-
|
|
AtomicOpsCtl: ReqEn- EgressBlck-
|
|
IDOReq- IDOCompl- LTR- EmergencyPowerReductionReq-
|
|
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
|
|
LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-
|
|
Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
|
|
Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot
|
|
LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete- EqualizationPhase1-
|
|
EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
|
|
Retimer- 2Retimers- CrosslinkRes: unsupported
|
|
Capabilities: [e0] Power Management version 3
|
|
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
|
|
Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
|
|
Capabilities: [100 v1] Advanced Error Reporting
|
|
UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
UEMsk: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt+ UnxCmplt+ RxOF- MalfTLP-
|
|
ECRC- UnsupReq- ACSViol+ UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
UESvrt: DLP+ SDES+ TLP+ FCP+ CmpltTO+ CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
CESta: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr- CorrIntErr- HeaderOF-
|
|
CEMsk: RxErr+ BadTLP+ BadDLLP+ Rollover+ Timeout+ AdvNonFatalErr+ CorrIntErr- HeaderOF-
|
|
AERCap: First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
|
|
MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
|
|
HeaderLog: 00000000 00000000 00000000 00000000
|
|
RootCmd: CERptEn+ NFERptEn+ FERptEn+
|
|
RootSta: CERcvd- MultCERcvd- UERcvd- MultUERcvd-
|
|
FirstFatal- NonFatalMsg- FatalMsg- IntMsgNum 0
|
|
ErrorSrc: ERR_COR: 0000 ERR_FATAL/NONFATAL: 0000
|
|
Capabilities: [150 v1] Access Control Services
|
|
ACSCap: SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
|
|
ACSCtl: SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
|
|
Kernel driver in use: pcieport
|
|
|
|
00:14.0 PIC [0800]: Intel Corporation 7500/5520/5500/X58 I/O Hub System Management Registers [8086:342e] (rev 13) (prog-if 00 [8259])
|
|
Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Capabilities: [40] Express (v2) Root Complex Integrated Endpoint, IntMsgNum 0
|
|
DevCap: MaxPayload 128 bytes, PhantFunc 0
|
|
ExtTag- RBE+ FLReset- TEE-IO-
|
|
DevCtl: CorrErr- NonFatalErr- FatalErr- UnsupReq-
|
|
RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
|
|
MaxPayload 128 bytes, MaxReadReq 128 bytes
|
|
DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
|
|
DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR-
|
|
10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
|
|
EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
|
|
FRS-
|
|
DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
|
|
AtomicOpsCtl: ReqEn-
|
|
IDOReq- IDOCompl- LTR- EmergencyPowerReductionReq-
|
|
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
|
|
Kernel driver in use: i7core_edac
|
|
Kernel modules: i7core_edac
|
|
|
|
00:14.1 PIC [0800]: Intel Corporation 7500/5520/5500/X58 I/O Hub GPIO and Scratch Pad Registers [8086:3422] (rev 13) (prog-if 00 [8259])
|
|
Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Capabilities: [40] Express (v2) Root Complex Integrated Endpoint, IntMsgNum 0
|
|
DevCap: MaxPayload 128 bytes, PhantFunc 0
|
|
ExtTag- RBE+ FLReset- TEE-IO-
|
|
DevCtl: CorrErr- NonFatalErr- FatalErr- UnsupReq-
|
|
RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
|
|
MaxPayload 128 bytes, MaxReadReq 128 bytes
|
|
DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
|
|
DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR-
|
|
10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
|
|
EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
|
|
FRS-
|
|
DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
|
|
AtomicOpsCtl: ReqEn-
|
|
IDOReq- IDOCompl- LTR- EmergencyPowerReductionReq-
|
|
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
|
|
|
|
00:14.2 PIC [0800]: Intel Corporation 7500/5520/5500/X58 I/O Hub Control Status and RAS Registers [8086:3423] (rev 13) (prog-if 00 [8259])
|
|
Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Capabilities: [40] Express (v2) Root Complex Integrated Endpoint, IntMsgNum 0
|
|
DevCap: MaxPayload 128 bytes, PhantFunc 0
|
|
ExtTag- RBE+ FLReset- TEE-IO-
|
|
DevCtl: CorrErr- NonFatalErr- FatalErr- UnsupReq-
|
|
RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
|
|
MaxPayload 128 bytes, MaxReadReq 128 bytes
|
|
DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
|
|
DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR-
|
|
10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
|
|
EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
|
|
FRS-
|
|
DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
|
|
AtomicOpsCtl: ReqEn-
|
|
IDOReq- IDOCompl- LTR- EmergencyPowerReductionReq-
|
|
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
|
|
|
|
00:1a.0 USB controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #4 [8086:2937] (rev 02) (prog-if 00 [UHCI])
|
|
Subsystem: Dell PowerEdge R610 USB UHCI Controller [1028:0236]
|
|
Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
Interrupt: pin A routed to IRQ 17
|
|
Region 4: I/O ports at ec40 [size=32]
|
|
Capabilities: [50] PCI Advanced Features
|
|
AFCap: TP+ FLR+
|
|
AFCtrl: FLR-
|
|
AFStatus: TP-
|
|
Kernel driver in use: uhci_hcd
|
|
Kernel modules: uhci_hcd
|
|
|
|
00:1a.1 USB controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #5 [8086:2938] (rev 02) (prog-if 00 [UHCI])
|
|
Subsystem: Dell PowerEdge R610 USB UHCI Controller [1028:0236]
|
|
Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
Interrupt: pin B routed to IRQ 18
|
|
Region 4: I/O ports at ec60 [size=32]
|
|
Capabilities: [50] PCI Advanced Features
|
|
AFCap: TP+ FLR+
|
|
AFCtrl: FLR-
|
|
AFStatus: TP-
|
|
Kernel driver in use: uhci_hcd
|
|
Kernel modules: uhci_hcd
|
|
|
|
00:1a.7 USB controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB2 EHCI Controller #2 [8086:293c] (rev 02) (prog-if 20 [EHCI])
|
|
Subsystem: Dell PowerEdge R610 USB EHCI Controller [1028:0236]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx-
|
|
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
Interrupt: pin C routed to IRQ 19
|
|
Region 0: Memory at df0ff800 (32-bit, non-prefetchable) [size=1K]
|
|
Capabilities: [50] Power Management version 2
|
|
Flags: PMEClk- DSI- D1- D2- AuxCurrent=375mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
|
|
Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
|
|
Capabilities: [58] Debug port: BAR=1 offset=00a0
|
|
Capabilities: [98] PCI Advanced Features
|
|
AFCap: TP+ FLR+
|
|
AFCtrl: FLR-
|
|
AFStatus: TP-
|
|
Kernel driver in use: ehci-pci
|
|
Kernel modules: ehci_pci
|
|
|
|
00:1c.0 PCI bridge [0604]: Intel Corporation 82801I (ICH9 Family) PCI Express Port 1 [8086:2940] (rev 02) (prog-if 00 [Normal decode])
|
|
Subsystem: Dell Device [1028:0236]
|
|
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx+
|
|
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0, Cache Line Size: 64 bytes
|
|
Interrupt: pin A routed to IRQ 29
|
|
Bus: primary=00, secondary=03, subordinate=03, sec-latency=0
|
|
I/O behind bridge: f000-ffff [size=4K] [16-bit]
|
|
Memory behind bridge: df100000-df2fffff [size=2M] [32-bit]
|
|
Prefetchable memory behind bridge: [disabled] [64-bit]
|
|
Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
|
|
BridgeCtl: Parity+ SERR+ NoISA- VGA- VGA16- MAbort- >Reset- FastB2B-
|
|
PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
|
|
Capabilities: [40] Express (v1) Root Port (Slot-), IntMsgNum 0
|
|
DevCap: MaxPayload 128 bytes, PhantFunc 0
|
|
ExtTag- RBE+ TEE-IO-
|
|
DevCtl: CorrErr- NonFatalErr+ FatalErr+ UnsupReq+
|
|
RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
|
|
MaxPayload 128 bytes, MaxReadReq 128 bytes
|
|
DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
|
|
LnkCap: Port #1, Speed 2.5GT/s, Width x4, ASPM L0s L1, Exit Latency L0s <256ns, L1 <4us
|
|
ClockPM- Surprise- LLActRep+ BwNot- ASPMOptComp-
|
|
LnkCtl: ASPM Disabled; RCB 64 bytes, LnkDisable+ CommClk+
|
|
ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
|
|
LnkSta: Speed 2.5GT/s, Width x4
|
|
TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
|
|
RootCap: CRSVisible-
|
|
RootCtl: ErrCorrectable- ErrNon-Fatal+ ErrFatal+ PMEIntEna+ CRSVisible-
|
|
RootSta: PME ReqID 0000, PMEStatus- PMEPending-
|
|
Capabilities: [80] MSI: Enable+ Count=1/1 Maskable- 64bit-
|
|
Address: fee16000 Data: 0020
|
|
Capabilities: [90] Subsystem: Dell Device [1028:0236]
|
|
Capabilities: [a0] Power Management version 2
|
|
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
|
|
Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
|
|
Capabilities: [100 v1] Virtual Channel
|
|
Caps: LPEVC=0 RefClk=100ns PATEntryBits=1
|
|
Arb: Fixed+ WRR32- WRR64- WRR128-
|
|
Ctrl: ArbSelect=Fixed
|
|
Status: InProgress-
|
|
VC0: Caps: PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
|
|
Arb: Fixed+ WRR32- WRR64- WRR128- TWRR128- WRR256-
|
|
Ctrl: Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
|
|
Status: NegoPending- InProgress-
|
|
Capabilities: [180 v1] Root Complex Link
|
|
Desc: PortNumber=01 ComponentID=02 EltType=Config
|
|
Link0: Desc: TargetPort=00 TargetComponent=02 AssocRCRB- LinkType=MemMapped LinkValid+
|
|
Addr: 00000000feda8000
|
|
Kernel driver in use: pcieport
|
|
|
|
00:1d.0 USB controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #1 [8086:2934] (rev 02) (prog-if 00 [UHCI])
|
|
Subsystem: Dell PowerEdge R610 USB UHCI Controller [1028:0236]
|
|
Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
Interrupt: pin A routed to IRQ 21
|
|
Region 4: I/O ports at ec80 [size=32]
|
|
Capabilities: [50] PCI Advanced Features
|
|
AFCap: TP+ FLR+
|
|
AFCtrl: FLR-
|
|
AFStatus: TP-
|
|
Kernel driver in use: uhci_hcd
|
|
Kernel modules: uhci_hcd
|
|
|
|
00:1d.1 USB controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #2 [8086:2935] (rev 02) (prog-if 00 [UHCI])
|
|
Subsystem: Dell PowerEdge R610 USB UHCI Controller [1028:0236]
|
|
Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
Interrupt: pin B routed to IRQ 20
|
|
Region 4: I/O ports at eca0 [size=32]
|
|
Capabilities: [50] PCI Advanced Features
|
|
AFCap: TP+ FLR+
|
|
AFCtrl: FLR-
|
|
AFStatus: TP-
|
|
Kernel driver in use: uhci_hcd
|
|
Kernel modules: uhci_hcd
|
|
|
|
00:1d.7 USB controller [0c03]: Intel Corporation 82801I (ICH9 Family) USB2 EHCI Controller #1 [8086:293a] (rev 02) (prog-if 20 [EHCI])
|
|
Subsystem: Dell PowerEdge R610 USB EHCI Controller [1028:0236]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx-
|
|
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
Interrupt: pin A routed to IRQ 21
|
|
Region 0: Memory at df0ffc00 (32-bit, non-prefetchable) [size=1K]
|
|
Capabilities: [50] Power Management version 2
|
|
Flags: PMEClk- DSI- D1- D2- AuxCurrent=375mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
|
|
Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
|
|
Capabilities: [58] Debug port: BAR=1 offset=00a0
|
|
Capabilities: [98] PCI Advanced Features
|
|
AFCap: TP+ FLR+
|
|
AFCtrl: FLR-
|
|
AFStatus: TP-
|
|
Kernel driver in use: ehci-pci
|
|
Kernel modules: ehci_pci
|
|
|
|
00:1e.0 PCI bridge [0604]: Intel Corporation 82801 PCI Bridge [8086:244e] (rev 92) (prog-if 01 [Subtractive decode])
|
|
Subsystem: Dell Device [1028:0236]
|
|
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx-
|
|
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
Bus: primary=00, secondary=06, subordinate=06, sec-latency=32
|
|
I/O behind bridge: [disabled] [16-bit]
|
|
Memory behind bridge: de000000-deffffff [size=16M] [32-bit]
|
|
Prefetchable memory behind bridge: d1800000-d1ffffff [size=8M] [32-bit]
|
|
Secondary status: 66MHz- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
|
|
BridgeCtl: Parity+ SERR+ NoISA- VGA+ VGA16- MAbort- >Reset- FastB2B-
|
|
PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
|
|
Capabilities: [50] Subsystem: Dell Device [1028:0236]
|
|
|
|
00:1f.0 ISA bridge [0601]: Intel Corporation 82801IB (ICH9) LPC Interface Controller [8086:2918] (rev 02)
|
|
Subsystem: Dell PowerEdge R610 82801IB (ICH9) LPC Interface Controller [1028:0236]
|
|
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx-
|
|
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
Capabilities: [e0] Vendor Specific Information: Len=0c <?>
|
|
Kernel driver in use: lpc_ich
|
|
Kernel modules: lpc_ich
|
|
|
|
01:00.0 Ethernet controller [0200]: Broadcom Inc. and subsidiaries NetXtreme II BCM5709 Gigabit Ethernet [14e4:1639] (rev 20)
|
|
DeviceName: Embedded NIC 1
|
|
Subsystem: Dell PowerEdge R610 BCM5709 Gigabit Ethernet [1028:0236]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
|
|
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0, Cache Line Size: 64 bytes
|
|
Interrupt: pin A routed to IRQ 30
|
|
Region 0: Memory at d2000000 (64-bit, non-prefetchable) [size=32M]
|
|
Capabilities: [48] Power Management version 3
|
|
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
|
|
Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=1 PME-
|
|
Capabilities: [50] Vital Product Data
|
|
Product Name: Broadcom NetXtreme II Ethernet Controller
|
|
Read-only fields:
|
|
[PN] Part number: BCM95709C0
|
|
[EC] Engineering changes: 220197-2
|
|
[SN] Serial number: 0123456789
|
|
[MN] Manufacture ID: 1028
|
|
[V0] Vendor specific: 5.0.13
|
|
[RV] Reserved: checksum good, 22 byte(s) reserved
|
|
End
|
|
Capabilities: [58] MSI: Enable- Count=1/16 Maskable- 64bit+
|
|
Address: 0000000000000000 Data: 0000
|
|
Capabilities: [a0] MSI-X: Enable+ Count=9 Masked-
|
|
Vector table: BAR=0 offset=0000c000
|
|
PBA: BAR=0 offset=0000e000
|
|
Capabilities: [ac] Express (v2) Endpoint, IntMsgNum 0
|
|
DevCap: MaxPayload 512 bytes, PhantFunc 0, Latency L0s <4us, L1 <64us
|
|
ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset- SlotPowerLimit 0W TEE-IO-
|
|
DevCtl: CorrErr+ NonFatalErr+ FatalErr+ UnsupReq+
|
|
RlxdOrd+ ExtTag- PhantFunc- AuxPwr+ NoSnoop+
|
|
MaxPayload 256 bytes, MaxReadReq 512 bytes
|
|
DevSta: CorrErr+ NonFatalErr- FatalErr- UnsupReq+ AuxPwr+ TransPend-
|
|
LnkCap: Port #0, Speed 2.5GT/s, Width x4, ASPM L0s L1, Exit Latency L0s <2us, L1 <2us
|
|
ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp-
|
|
LnkCtl: ASPM Disabled; RCB 64 bytes, LnkDisable- CommClk+
|
|
ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
|
|
LnkSta: Speed 2.5GT/s, Width x4
|
|
TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
|
|
DevCap2: Completion Timeout: Range ABCD, TimeoutDis+ NROPrPrP- LTR-
|
|
10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
|
|
EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
|
|
FRS- TPHComp- ExtTPHComp-
|
|
AtomicOpsCap: 32bit- 64bit- 128bitCAS-
|
|
DevCtl2: Completion Timeout: 65ms to 210ms, TimeoutDis-
|
|
AtomicOpsCtl: ReqEn-
|
|
IDOReq- IDOCompl- LTR- EmergencyPowerReductionReq-
|
|
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
|
|
LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-
|
|
Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
|
|
Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot
|
|
LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete- EqualizationPhase1-
|
|
EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
|
|
Retimer- 2Retimers- CrosslinkRes: unsupported
|
|
Capabilities: [100 v1] Device Serial Number 00-21-9b-ff-fe-a2-7c-53
|
|
Capabilities: [110 v1] Advanced Error Reporting
|
|
UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
UEMsk: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt+ UnxCmplt+ RxOF- MalfTLP-
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
UESvrt: DLP+ SDES+ TLP+ FCP+ CmpltTO+ CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+
|
|
ECRC+ UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
CESta: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+ CorrIntErr- HeaderOF-
|
|
CEMsk: RxErr- BadTLP+ BadDLLP+ Rollover+ Timeout+ AdvNonFatalErr+ CorrIntErr- HeaderOF-
|
|
AERCap: First Error Pointer: 00, ECRCGenCap+ ECRCGenEn- ECRCChkCap+ ECRCChkEn-
|
|
MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
|
|
HeaderLog: 00000000 00000000 00000000 00000000
|
|
Capabilities: [150 v1] Power Budgeting <?>
|
|
Capabilities: [160 v1] Virtual Channel
|
|
Caps: LPEVC=0 RefClk=100ns PATEntryBits=1
|
|
Arb: Fixed- WRR32- WRR64- WRR128-
|
|
Ctrl: ArbSelect=Fixed
|
|
Status: InProgress-
|
|
VC0: Caps: PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
|
|
Arb: Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
|
|
Ctrl: Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
|
|
Status: NegoPending- InProgress-
|
|
Kernel driver in use: bnx2
|
|
Kernel modules: bnx2
|
|
|
|
01:00.1 Ethernet controller [0200]: Broadcom Inc. and subsidiaries NetXtreme II BCM5709 Gigabit Ethernet [14e4:1639] (rev 20)
|
|
DeviceName: Embedded NIC 2
|
|
Subsystem: Dell PowerEdge R610 BCM5709 Gigabit Ethernet [1028:0236]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
|
|
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0, Cache Line Size: 64 bytes
|
|
Interrupt: pin B routed to IRQ 31
|
|
Region 0: Memory at d4000000 (64-bit, non-prefetchable) [size=32M]
|
|
Capabilities: [48] Power Management version 3
|
|
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
|
|
Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=1 PME-
|
|
Capabilities: [50] Vital Product Data
|
|
Product Name: Broadcom NetXtreme II Ethernet Controller
|
|
Read-only fields:
|
|
[PN] Part number: BCM95709C0
|
|
[EC] Engineering changes: 220197-2
|
|
[SN] Serial number: 0123456789
|
|
[MN] Manufacture ID: 1028
|
|
[V0] Vendor specific: 5.0.13
|
|
[RV] Reserved: checksum good, 22 byte(s) reserved
|
|
End
|
|
Capabilities: [58] MSI: Enable- Count=1/16 Maskable- 64bit+
|
|
Address: 0000000000000000 Data: 0000
|
|
Capabilities: [a0] MSI-X: Enable+ Count=9 Masked-
|
|
Vector table: BAR=0 offset=0000c000
|
|
PBA: BAR=0 offset=0000e000
|
|
Capabilities: [ac] Express (v2) Endpoint, IntMsgNum 0
|
|
DevCap: MaxPayload 512 bytes, PhantFunc 0, Latency L0s <4us, L1 <64us
|
|
ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset- SlotPowerLimit 0W TEE-IO-
|
|
DevCtl: CorrErr+ NonFatalErr+ FatalErr+ UnsupReq+
|
|
RlxdOrd+ ExtTag- PhantFunc- AuxPwr+ NoSnoop+
|
|
MaxPayload 256 bytes, MaxReadReq 512 bytes
|
|
DevSta: CorrErr+ NonFatalErr- FatalErr- UnsupReq+ AuxPwr+ TransPend-
|
|
LnkCap: Port #0, Speed 2.5GT/s, Width x4, ASPM L0s L1, Exit Latency L0s <2us, L1 <2us
|
|
ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp-
|
|
LnkCtl: ASPM Disabled; RCB 64 bytes, LnkDisable- CommClk+
|
|
ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
|
|
LnkSta: Speed 2.5GT/s, Width x4
|
|
TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
|
|
DevCap2: Completion Timeout: Range ABCD, TimeoutDis+ NROPrPrP- LTR-
|
|
10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
|
|
EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
|
|
FRS- TPHComp- ExtTPHComp-
|
|
AtomicOpsCap: 32bit- 64bit- 128bitCAS-
|
|
DevCtl2: Completion Timeout: 65ms to 210ms, TimeoutDis-
|
|
AtomicOpsCtl: ReqEn-
|
|
IDOReq- IDOCompl- LTR- EmergencyPowerReductionReq-
|
|
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
|
|
LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete- EqualizationPhase1-
|
|
EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
|
|
Retimer- 2Retimers- CrosslinkRes: unsupported
|
|
Capabilities: [100 v1] Device Serial Number 00-21-9b-ff-fe-a2-7c-55
|
|
Capabilities: [110 v1] Advanced Error Reporting
|
|
UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
UEMsk: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt+ UnxCmplt+ RxOF- MalfTLP-
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
UESvrt: DLP+ SDES+ TLP+ FCP+ CmpltTO+ CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+
|
|
ECRC+ UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
CESta: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+ CorrIntErr- HeaderOF-
|
|
CEMsk: RxErr- BadTLP+ BadDLLP+ Rollover+ Timeout+ AdvNonFatalErr+ CorrIntErr- HeaderOF-
|
|
AERCap: First Error Pointer: 00, ECRCGenCap+ ECRCGenEn- ECRCChkCap+ ECRCChkEn-
|
|
MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
|
|
HeaderLog: 00000000 00000000 00000000 00000000
|
|
Capabilities: [150 v1] Power Budgeting <?>
|
|
Capabilities: [160 v1] Virtual Channel
|
|
Caps: LPEVC=0 RefClk=100ns PATEntryBits=1
|
|
Arb: Fixed- WRR32- WRR64- WRR128-
|
|
Ctrl: ArbSelect=Fixed
|
|
Status: InProgress-
|
|
VC0: Caps: PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
|
|
Arb: Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
|
|
Ctrl: Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
|
|
Status: NegoPending- InProgress-
|
|
Kernel driver in use: bnx2
|
|
Kernel modules: bnx2
|
|
|
|
02:00.0 Ethernet controller [0200]: Broadcom Inc. and subsidiaries NetXtreme II BCM5709 Gigabit Ethernet [14e4:1639] (rev 20)
|
|
DeviceName: Embedded NIC 3
|
|
Subsystem: Dell PowerEdge R610 BCM5709 Gigabit Ethernet [1028:0236]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
|
|
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0, Cache Line Size: 64 bytes
|
|
Interrupt: pin A routed to IRQ 32
|
|
Region 0: Memory at d6000000 (64-bit, non-prefetchable) [size=32M]
|
|
Capabilities: [48] Power Management version 3
|
|
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
|
|
Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=1 PME-
|
|
Capabilities: [50] Vital Product Data
|
|
Product Name: Broadcom NetXtreme II Ethernet Controller
|
|
Read-only fields:
|
|
[PN] Part number: BCM95709C0
|
|
[EC] Engineering changes: 220197-2
|
|
[SN] Serial number: 0123456789
|
|
[MN] Manufacture ID: 1028
|
|
[V0] Vendor specific: 5.0.13
|
|
[RV] Reserved: checksum good, 22 byte(s) reserved
|
|
End
|
|
Capabilities: [58] MSI: Enable- Count=1/16 Maskable- 64bit+
|
|
Address: 0000000000000000 Data: 0000
|
|
Capabilities: [a0] MSI-X: Enable+ Count=9 Masked-
|
|
Vector table: BAR=0 offset=0000c000
|
|
PBA: BAR=0 offset=0000e000
|
|
Capabilities: [ac] Express (v2) Endpoint, IntMsgNum 0
|
|
DevCap: MaxPayload 512 bytes, PhantFunc 0, Latency L0s <4us, L1 <64us
|
|
ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset- SlotPowerLimit 0W TEE-IO-
|
|
DevCtl: CorrErr+ NonFatalErr+ FatalErr+ UnsupReq+
|
|
RlxdOrd+ ExtTag- PhantFunc- AuxPwr+ NoSnoop+
|
|
MaxPayload 256 bytes, MaxReadReq 512 bytes
|
|
DevSta: CorrErr+ NonFatalErr- FatalErr- UnsupReq+ AuxPwr+ TransPend-
|
|
LnkCap: Port #0, Speed 2.5GT/s, Width x4, ASPM L0s L1, Exit Latency L0s <2us, L1 <2us
|
|
ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp-
|
|
LnkCtl: ASPM Disabled; RCB 64 bytes, LnkDisable- CommClk+
|
|
ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
|
|
LnkSta: Speed 2.5GT/s, Width x4
|
|
TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
|
|
DevCap2: Completion Timeout: Range ABCD, TimeoutDis+ NROPrPrP- LTR-
|
|
10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
|
|
EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
|
|
FRS- TPHComp- ExtTPHComp-
|
|
AtomicOpsCap: 32bit- 64bit- 128bitCAS-
|
|
DevCtl2: Completion Timeout: 65ms to 210ms, TimeoutDis-
|
|
AtomicOpsCtl: ReqEn-
|
|
IDOReq- IDOCompl- LTR- EmergencyPowerReductionReq-
|
|
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
|
|
LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-
|
|
Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
|
|
Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot
|
|
LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete- EqualizationPhase1-
|
|
EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
|
|
Retimer- 2Retimers- CrosslinkRes: unsupported
|
|
Capabilities: [100 v1] Device Serial Number 00-21-9b-ff-fe-a2-7c-57
|
|
Capabilities: [110 v1] Advanced Error Reporting
|
|
UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
UEMsk: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt+ UnxCmplt+ RxOF- MalfTLP-
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
UESvrt: DLP+ SDES+ TLP+ FCP+ CmpltTO+ CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+
|
|
ECRC+ UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
CESta: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+ CorrIntErr- HeaderOF-
|
|
CEMsk: RxErr- BadTLP+ BadDLLP+ Rollover+ Timeout+ AdvNonFatalErr+ CorrIntErr- HeaderOF-
|
|
AERCap: First Error Pointer: 00, ECRCGenCap+ ECRCGenEn- ECRCChkCap+ ECRCChkEn-
|
|
MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
|
|
HeaderLog: 00000000 00000000 00000000 00000000
|
|
Capabilities: [150 v1] Power Budgeting <?>
|
|
Capabilities: [160 v1] Virtual Channel
|
|
Caps: LPEVC=0 RefClk=100ns PATEntryBits=1
|
|
Arb: Fixed- WRR32- WRR64- WRR128-
|
|
Ctrl: ArbSelect=Fixed
|
|
Status: InProgress-
|
|
VC0: Caps: PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
|
|
Arb: Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
|
|
Ctrl: Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
|
|
Status: NegoPending- InProgress-
|
|
Kernel driver in use: bnx2
|
|
Kernel modules: bnx2
|
|
|
|
02:00.1 Ethernet controller [0200]: Broadcom Inc. and subsidiaries NetXtreme II BCM5709 Gigabit Ethernet [14e4:1639] (rev 20)
|
|
DeviceName: Embedded NIC 4
|
|
Subsystem: Dell PowerEdge R610 BCM5709 Gigabit Ethernet [1028:0236]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
|
|
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0, Cache Line Size: 64 bytes
|
|
Interrupt: pin B routed to IRQ 33
|
|
Region 0: Memory at d8000000 (64-bit, non-prefetchable) [size=32M]
|
|
Capabilities: [48] Power Management version 3
|
|
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
|
|
Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=1 PME-
|
|
Capabilities: [50] Vital Product Data
|
|
Product Name: Broadcom NetXtreme II Ethernet Controller
|
|
Read-only fields:
|
|
[PN] Part number: BCM95709C0
|
|
[EC] Engineering changes: 220197-2
|
|
[SN] Serial number: 0123456789
|
|
[MN] Manufacture ID: 1028
|
|
[V0] Vendor specific: 5.0.13
|
|
[RV] Reserved: checksum good, 22 byte(s) reserved
|
|
End
|
|
Capabilities: [58] MSI: Enable- Count=1/16 Maskable- 64bit+
|
|
Address: 0000000000000000 Data: 0000
|
|
Capabilities: [a0] MSI-X: Enable+ Count=9 Masked-
|
|
Vector table: BAR=0 offset=0000c000
|
|
PBA: BAR=0 offset=0000e000
|
|
Capabilities: [ac] Express (v2) Endpoint, IntMsgNum 0
|
|
DevCap: MaxPayload 512 bytes, PhantFunc 0, Latency L0s <4us, L1 <64us
|
|
ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset- SlotPowerLimit 0W TEE-IO-
|
|
DevCtl: CorrErr+ NonFatalErr+ FatalErr+ UnsupReq+
|
|
RlxdOrd+ ExtTag- PhantFunc- AuxPwr+ NoSnoop+
|
|
MaxPayload 256 bytes, MaxReadReq 512 bytes
|
|
DevSta: CorrErr+ NonFatalErr- FatalErr- UnsupReq+ AuxPwr+ TransPend-
|
|
LnkCap: Port #0, Speed 2.5GT/s, Width x4, ASPM L0s L1, Exit Latency L0s <2us, L1 <2us
|
|
ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp-
|
|
LnkCtl: ASPM Disabled; RCB 64 bytes, LnkDisable- CommClk+
|
|
ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
|
|
LnkSta: Speed 2.5GT/s, Width x4
|
|
TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
|
|
DevCap2: Completion Timeout: Range ABCD, TimeoutDis+ NROPrPrP- LTR-
|
|
10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
|
|
EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
|
|
FRS- TPHComp- ExtTPHComp-
|
|
AtomicOpsCap: 32bit- 64bit- 128bitCAS-
|
|
DevCtl2: Completion Timeout: 65ms to 210ms, TimeoutDis-
|
|
AtomicOpsCtl: ReqEn-
|
|
IDOReq- IDOCompl- LTR- EmergencyPowerReductionReq-
|
|
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
|
|
LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete- EqualizationPhase1-
|
|
EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
|
|
Retimer- 2Retimers- CrosslinkRes: unsupported
|
|
Capabilities: [100 v1] Device Serial Number 00-21-9b-ff-fe-a2-7c-59
|
|
Capabilities: [110 v1] Advanced Error Reporting
|
|
UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
UEMsk: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt+ UnxCmplt+ RxOF- MalfTLP-
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
UESvrt: DLP+ SDES+ TLP+ FCP+ CmpltTO+ CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+
|
|
ECRC+ UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
CESta: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+ CorrIntErr- HeaderOF-
|
|
CEMsk: RxErr- BadTLP+ BadDLLP+ Rollover+ Timeout+ AdvNonFatalErr+ CorrIntErr- HeaderOF-
|
|
AERCap: First Error Pointer: 00, ECRCGenCap+ ECRCGenEn- ECRCChkCap+ ECRCChkEn-
|
|
MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
|
|
HeaderLog: 00000000 00000000 00000000 00000000
|
|
Capabilities: [150 v1] Power Budgeting <?>
|
|
Capabilities: [160 v1] Virtual Channel
|
|
Caps: LPEVC=0 RefClk=100ns PATEntryBits=1
|
|
Arb: Fixed- WRR32- WRR64- WRR128-
|
|
Ctrl: ArbSelect=Fixed
|
|
Status: InProgress-
|
|
VC0: Caps: PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
|
|
Arb: Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
|
|
Ctrl: Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
|
|
Status: NegoPending- InProgress-
|
|
Kernel driver in use: bnx2
|
|
Kernel modules: bnx2
|
|
|
|
04:00.0 Ethernet controller [0200]: Broadcom Inc. and subsidiaries NetXtreme II BCM5709 Gigabit Ethernet [14e4:1639] (rev 20)
|
|
Subsystem: Broadcom Inc. and subsidiaries Device [14e4:1917]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0, Cache Line Size: 64 bytes
|
|
Interrupt: pin A routed to IRQ 34
|
|
Region 0: Memory at da000000 (64-bit, non-prefetchable) [size=32M]
|
|
Capabilities: [48] Power Management version 3
|
|
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
|
|
Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=1 PME-
|
|
Capabilities: [50] Vital Product Data
|
|
Not readable
|
|
Capabilities: [58] MSI: Enable- Count=1/16 Maskable- 64bit+
|
|
Address: 0000000000000000 Data: 0000
|
|
Capabilities: [a0] MSI-X: Enable- Count=9 Masked-
|
|
Vector table: BAR=0 offset=0000c000
|
|
PBA: BAR=0 offset=0000e000
|
|
Capabilities: [ac] Express (v2) Endpoint, IntMsgNum 0
|
|
DevCap: MaxPayload 512 bytes, PhantFunc 0, Latency L0s <4us, L1 <64us
|
|
ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset- SlotPowerLimit 25W TEE-IO-
|
|
DevCtl: CorrErr+ NonFatalErr+ FatalErr+ UnsupReq+
|
|
RlxdOrd+ ExtTag- PhantFunc- AuxPwr+ NoSnoop+
|
|
MaxPayload 256 bytes, MaxReadReq 512 bytes
|
|
DevSta: CorrErr+ NonFatalErr- FatalErr- UnsupReq+ AuxPwr+ TransPend-
|
|
LnkCap: Port #0, Speed 2.5GT/s, Width x4, ASPM L0s L1, Exit Latency L0s <2us, L1 <2us
|
|
ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp-
|
|
LnkCtl: ASPM Disabled; RCB 64 bytes, LnkDisable- CommClk+
|
|
ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
|
|
LnkSta: Speed 2.5GT/s, Width x4
|
|
TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
|
|
DevCap2: Completion Timeout: Range ABCD, TimeoutDis+ NROPrPrP- LTR-
|
|
10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
|
|
EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
|
|
FRS- TPHComp- ExtTPHComp-
|
|
AtomicOpsCap: 32bit- 64bit- 128bitCAS-
|
|
DevCtl2: Completion Timeout: 65ms to 210ms, TimeoutDis-
|
|
AtomicOpsCtl: ReqEn-
|
|
IDOReq- IDOCompl- LTR- EmergencyPowerReductionReq-
|
|
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
|
|
LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-
|
|
Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
|
|
Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot
|
|
LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete- EqualizationPhase1-
|
|
EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
|
|
Retimer- 2Retimers- CrosslinkRes: unsupported
|
|
Capabilities: [100 v1] Device Serial Number 00-10-18-ff-fe-72-16-40
|
|
Capabilities: [110 v1] Advanced Error Reporting
|
|
UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
UEMsk: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt+ UnxCmplt+ RxOF- MalfTLP-
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
UESvrt: DLP+ SDES+ TLP+ FCP+ CmpltTO+ CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+
|
|
ECRC+ UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
CESta: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+ CorrIntErr- HeaderOF-
|
|
CEMsk: RxErr- BadTLP+ BadDLLP+ Rollover+ Timeout+ AdvNonFatalErr+ CorrIntErr- HeaderOF-
|
|
AERCap: First Error Pointer: 00, ECRCGenCap+ ECRCGenEn- ECRCChkCap+ ECRCChkEn-
|
|
MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
|
|
HeaderLog: 00000000 00000000 00000000 00000000
|
|
Capabilities: [150 v1] Power Budgeting <?>
|
|
Capabilities: [160 v1] Virtual Channel
|
|
Caps: LPEVC=0 RefClk=100ns PATEntryBits=1
|
|
Arb: Fixed- WRR32- WRR64- WRR128-
|
|
Ctrl: ArbSelect=Fixed
|
|
Status: InProgress-
|
|
VC0: Caps: PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
|
|
Arb: Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
|
|
Ctrl: Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
|
|
Status: NegoPending- InProgress-
|
|
Kernel driver in use: bnx2
|
|
Kernel modules: bnx2
|
|
|
|
04:00.1 Ethernet controller [0200]: Broadcom Inc. and subsidiaries NetXtreme II BCM5709 Gigabit Ethernet [14e4:1639] (rev 20)
|
|
Subsystem: Broadcom Inc. and subsidiaries Device [14e4:1917]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0, Cache Line Size: 64 bytes
|
|
Interrupt: pin B routed to IRQ 35
|
|
Region 0: Memory at dc000000 (64-bit, non-prefetchable) [size=32M]
|
|
Capabilities: [48] Power Management version 3
|
|
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
|
|
Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=1 PME-
|
|
Capabilities: [50] Vital Product Data
|
|
Not readable
|
|
Capabilities: [58] MSI: Enable- Count=1/16 Maskable- 64bit+
|
|
Address: 0000000000000000 Data: 0000
|
|
Capabilities: [a0] MSI-X: Enable- Count=9 Masked-
|
|
Vector table: BAR=0 offset=0000c000
|
|
PBA: BAR=0 offset=0000e000
|
|
Capabilities: [ac] Express (v2) Endpoint, IntMsgNum 0
|
|
DevCap: MaxPayload 512 bytes, PhantFunc 0, Latency L0s <4us, L1 <64us
|
|
ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset- SlotPowerLimit 25W TEE-IO-
|
|
DevCtl: CorrErr+ NonFatalErr+ FatalErr+ UnsupReq+
|
|
RlxdOrd+ ExtTag- PhantFunc- AuxPwr+ NoSnoop+
|
|
MaxPayload 256 bytes, MaxReadReq 512 bytes
|
|
DevSta: CorrErr+ NonFatalErr- FatalErr- UnsupReq+ AuxPwr+ TransPend-
|
|
LnkCap: Port #0, Speed 2.5GT/s, Width x4, ASPM L0s L1, Exit Latency L0s <2us, L1 <2us
|
|
ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp-
|
|
LnkCtl: ASPM Disabled; RCB 64 bytes, LnkDisable- CommClk+
|
|
ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
|
|
LnkSta: Speed 2.5GT/s, Width x4
|
|
TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
|
|
DevCap2: Completion Timeout: Range ABCD, TimeoutDis+ NROPrPrP- LTR-
|
|
10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
|
|
EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
|
|
FRS- TPHComp- ExtTPHComp-
|
|
AtomicOpsCap: 32bit- 64bit- 128bitCAS-
|
|
DevCtl2: Completion Timeout: 65ms to 210ms, TimeoutDis-
|
|
AtomicOpsCtl: ReqEn-
|
|
IDOReq- IDOCompl- LTR- EmergencyPowerReductionReq-
|
|
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
|
|
LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete- EqualizationPhase1-
|
|
EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
|
|
Retimer- 2Retimers- CrosslinkRes: unsupported
|
|
Capabilities: [100 v1] Device Serial Number 00-10-18-ff-fe-72-16-42
|
|
Capabilities: [110 v1] Advanced Error Reporting
|
|
UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
UEMsk: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt+ UnxCmplt+ RxOF- MalfTLP-
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
UESvrt: DLP+ SDES+ TLP+ FCP+ CmpltTO+ CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+
|
|
ECRC+ UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
CESta: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+ CorrIntErr- HeaderOF-
|
|
CEMsk: RxErr- BadTLP+ BadDLLP+ Rollover+ Timeout+ AdvNonFatalErr+ CorrIntErr- HeaderOF-
|
|
AERCap: First Error Pointer: 00, ECRCGenCap+ ECRCGenEn- ECRCChkCap+ ECRCChkEn-
|
|
MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
|
|
HeaderLog: 00000000 00000000 00000000 00000000
|
|
Capabilities: [150 v1] Power Budgeting <?>
|
|
Capabilities: [160 v1] Virtual Channel
|
|
Caps: LPEVC=0 RefClk=100ns PATEntryBits=1
|
|
Arb: Fixed- WRR32- WRR64- WRR128-
|
|
Ctrl: ArbSelect=Fixed
|
|
Status: InProgress-
|
|
VC0: Caps: PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
|
|
Arb: Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
|
|
Ctrl: Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
|
|
Status: NegoPending- InProgress-
|
|
Kernel driver in use: bnx2
|
|
Kernel modules: bnx2
|
|
|
|
06:03.0 VGA compatible controller [0300]: Matrox Electronics Systems Ltd. MGA G200eW WPCM450 [102b:0532] (rev 0a) (prog-if 00 [VGA controller])
|
|
DeviceName: Embedded Video
|
|
Subsystem: Dell PowerEdge R610 MGA G200eW WPCM450 [1028:0236]
|
|
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 32 (4000ns min, 8000ns max), Cache Line Size: 64 bytes
|
|
Interrupt: pin A routed to IRQ 19
|
|
Region 0: Memory at d1800000 (32-bit, prefetchable) [size=8M]
|
|
Region 1: Memory at de7fc000 (32-bit, non-prefetchable) [size=16K]
|
|
Region 2: Memory at de800000 (32-bit, non-prefetchable) [size=8M]
|
|
Expansion ROM at 000c0000 [virtual] [disabled] [size=128K]
|
|
Capabilities: [dc] Power Management version 1
|
|
Flags: PMEClk- DSI+ D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
|
|
Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
|
|
Kernel driver in use: mgag200
|
|
Kernel modules: matroxfb_base, mgag200
|
|
|
|
fe:00.0 Host bridge [0600]: Intel Corporation Xeon 5500/Core i7 QuickPath Architecture Generic Non-Core Registers [8086:2c40] (rev 05)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
|
|
fe:00.1 Host bridge [0600]: Intel Corporation Xeon 5500/Core i7 QuickPath Architecture System Address Decoder [8086:2c01] (rev 05)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
|
|
fe:02.0 Host bridge [0600]: Intel Corporation Xeon 5500/Core i7 QPI Link 0 [8086:2c10] (rev 05)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
|
|
fe:02.1 Host bridge [0600]: Intel Corporation Xeon 5500/Core i7 QPI Physical 0 [8086:2c11] (rev 05)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
|
|
fe:02.4 Host bridge [0600]: Intel Corporation Xeon 5500/Core i7 QPI Link 1 [8086:2c14] (rev 05)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
|
|
fe:02.5 Host bridge [0600]: Intel Corporation Xeon 5500/Core i7 QPI Physical 1 [8086:2c15] (rev 05)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
|
|
fe:03.0 Host bridge [0600]: Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller [8086:2c18] (rev 05)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
|
|
fe:03.1 Host bridge [0600]: Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Target Address Decoder [8086:2c19] (rev 05)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
|
|
fe:03.2 Host bridge [0600]: Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller RAS Registers [8086:2c1a] (rev 05)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
|
|
fe:03.4 Host bridge [0600]: Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Test Registers [8086:2c1c] (rev 05)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
|
|
fe:04.0 Host bridge [0600]: Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Channel 0 Control Registers [8086:2c20] (rev 05)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
|
|
fe:04.1 Host bridge [0600]: Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Channel 0 Address Registers [8086:2c21] (rev 05)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
|
|
fe:04.2 Host bridge [0600]: Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Channel 0 Rank Registers [8086:2c22] (rev 05)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
|
|
fe:04.3 Host bridge [0600]: Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Channel 0 Thermal Control Registers [8086:2c23] (rev 05)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
|
|
fe:05.0 Host bridge [0600]: Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Channel 1 Control Registers [8086:2c28] (rev 05)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
|
|
fe:05.1 Host bridge [0600]: Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Channel 1 Address Registers [8086:2c29] (rev 05)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
|
|
fe:05.2 Host bridge [0600]: Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Channel 1 Rank Registers [8086:2c2a] (rev 05)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
|
|
fe:05.3 Host bridge [0600]: Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Channel 1 Thermal Control Registers [8086:2c2b] (rev 05)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
|
|
fe:06.0 Host bridge [0600]: Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Channel 2 Control Registers [8086:2c30] (rev 05)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
|
|
fe:06.1 Host bridge [0600]: Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Channel 2 Address Registers [8086:2c31] (rev 05)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
|
|
fe:06.2 Host bridge [0600]: Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Channel 2 Rank Registers [8086:2c32] (rev 05)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
|
|
fe:06.3 Host bridge [0600]: Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Channel 2 Thermal Control Registers [8086:2c33] (rev 05)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
|
|
ff:00.0 Host bridge [0600]: Intel Corporation Xeon 5500/Core i7 QuickPath Architecture Generic Non-Core Registers [8086:2c40] (rev 05)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
|
|
ff:00.1 Host bridge [0600]: Intel Corporation Xeon 5500/Core i7 QuickPath Architecture System Address Decoder [8086:2c01] (rev 05)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
|
|
ff:02.0 Host bridge [0600]: Intel Corporation Xeon 5500/Core i7 QPI Link 0 [8086:2c10] (rev 05)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
|
|
ff:02.1 Host bridge [0600]: Intel Corporation Xeon 5500/Core i7 QPI Physical 0 [8086:2c11] (rev 05)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
|
|
ff:02.4 Host bridge [0600]: Intel Corporation Xeon 5500/Core i7 QPI Link 1 [8086:2c14] (rev 05)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
|
|
ff:02.5 Host bridge [0600]: Intel Corporation Xeon 5500/Core i7 QPI Physical 1 [8086:2c15] (rev 05)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
|
|
ff:03.0 Host bridge [0600]: Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller [8086:2c18] (rev 05)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
|
|
ff:03.1 Host bridge [0600]: Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Target Address Decoder [8086:2c19] (rev 05)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
|
|
ff:03.2 Host bridge [0600]: Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller RAS Registers [8086:2c1a] (rev 05)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
|
|
ff:03.4 Host bridge [0600]: Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Test Registers [8086:2c1c] (rev 05)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
|
|
ff:04.0 Host bridge [0600]: Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Channel 0 Control Registers [8086:2c20] (rev 05)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
|
|
ff:04.1 Host bridge [0600]: Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Channel 0 Address Registers [8086:2c21] (rev 05)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
|
|
ff:04.2 Host bridge [0600]: Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Channel 0 Rank Registers [8086:2c22] (rev 05)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
|
|
ff:04.3 Host bridge [0600]: Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Channel 0 Thermal Control Registers [8086:2c23] (rev 05)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
|
|
ff:05.0 Host bridge [0600]: Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Channel 1 Control Registers [8086:2c28] (rev 05)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
|
|
ff:05.1 Host bridge [0600]: Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Channel 1 Address Registers [8086:2c29] (rev 05)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
|
|
ff:05.2 Host bridge [0600]: Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Channel 1 Rank Registers [8086:2c2a] (rev 05)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
|
|
ff:05.3 Host bridge [0600]: Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Channel 1 Thermal Control Registers [8086:2c2b] (rev 05)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
|
|
ff:06.0 Host bridge [0600]: Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Channel 2 Control Registers [8086:2c30] (rev 05)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
|
|
ff:06.1 Host bridge [0600]: Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Channel 2 Address Registers [8086:2c31] (rev 05)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
|
|
ff:06.2 Host bridge [0600]: Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Channel 2 Rank Registers [8086:2c32] (rev 05)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
|
|
ff:06.3 Host bridge [0600]: Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Channel 2 Thermal Control Registers [8086:2c33] (rev 05)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
|
|
|
|
--- lspci -tv (tree)
|
|
$ lspci -tv
|
|
-+-[0000:00]-+-00.0 Intel Corporation 5500 I/O Hub to ESI Port
|
|
| +-01.0-[01]--+-00.0 Broadcom Inc. and subsidiaries NetXtreme II BCM5709 Gigabit Ethernet
|
|
| | \-00.1 Broadcom Inc. and subsidiaries NetXtreme II BCM5709 Gigabit Ethernet
|
|
| +-03.0-[02]--+-00.0 Broadcom Inc. and subsidiaries NetXtreme II BCM5709 Gigabit Ethernet
|
|
| | \-00.1 Broadcom Inc. and subsidiaries NetXtreme II BCM5709 Gigabit Ethernet
|
|
| +-07.0-[04]--+-00.0 Broadcom Inc. and subsidiaries NetXtreme II BCM5709 Gigabit Ethernet
|
|
| | \-00.1 Broadcom Inc. and subsidiaries NetXtreme II BCM5709 Gigabit Ethernet
|
|
| +-09.0-[05]--
|
|
| +-14.0 Intel Corporation 7500/5520/5500/X58 I/O Hub System Management Registers
|
|
| +-14.1 Intel Corporation 7500/5520/5500/X58 I/O Hub GPIO and Scratch Pad Registers
|
|
| +-14.2 Intel Corporation 7500/5520/5500/X58 I/O Hub Control Status and RAS Registers
|
|
| +-1a.0 Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #4
|
|
| +-1a.1 Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #5
|
|
| +-1a.7 Intel Corporation 82801I (ICH9 Family) USB2 EHCI Controller #2
|
|
| +-1c.0-[03]--
|
|
| +-1d.0 Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #1
|
|
| +-1d.1 Intel Corporation 82801I (ICH9 Family) USB UHCI Controller #2
|
|
| +-1d.7 Intel Corporation 82801I (ICH9 Family) USB2 EHCI Controller #1
|
|
| +-1e.0-[06]----03.0 Matrox Electronics Systems Ltd. MGA G200eW WPCM450
|
|
| \-1f.0 Intel Corporation 82801IB (ICH9) LPC Interface Controller
|
|
+-[0000:fe]-+-00.0 Intel Corporation Xeon 5500/Core i7 QuickPath Architecture Generic Non-Core Registers
|
|
| +-00.1 Intel Corporation Xeon 5500/Core i7 QuickPath Architecture System Address Decoder
|
|
| +-02.0 Intel Corporation Xeon 5500/Core i7 QPI Link 0
|
|
| +-02.1 Intel Corporation Xeon 5500/Core i7 QPI Physical 0
|
|
| +-02.4 Intel Corporation Xeon 5500/Core i7 QPI Link 1
|
|
| +-02.5 Intel Corporation Xeon 5500/Core i7 QPI Physical 1
|
|
| +-03.0 Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller
|
|
| +-03.1 Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Target Address Decoder
|
|
| +-03.2 Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller RAS Registers
|
|
| +-03.4 Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Test Registers
|
|
| +-04.0 Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Channel 0 Control Registers
|
|
| +-04.1 Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Channel 0 Address Registers
|
|
| +-04.2 Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Channel 0 Rank Registers
|
|
| +-04.3 Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Channel 0 Thermal Control Registers
|
|
| +-05.0 Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Channel 1 Control Registers
|
|
| +-05.1 Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Channel 1 Address Registers
|
|
| +-05.2 Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Channel 1 Rank Registers
|
|
| +-05.3 Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Channel 1 Thermal Control Registers
|
|
| +-06.0 Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Channel 2 Control Registers
|
|
| +-06.1 Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Channel 2 Address Registers
|
|
| +-06.2 Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Channel 2 Rank Registers
|
|
| \-06.3 Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Channel 2 Thermal Control Registers
|
|
\-[0000:ff]-+-00.0 Intel Corporation Xeon 5500/Core i7 QuickPath Architecture Generic Non-Core Registers
|
|
+-00.1 Intel Corporation Xeon 5500/Core i7 QuickPath Architecture System Address Decoder
|
|
+-02.0 Intel Corporation Xeon 5500/Core i7 QPI Link 0
|
|
+-02.1 Intel Corporation Xeon 5500/Core i7 QPI Physical 0
|
|
+-02.4 Intel Corporation Xeon 5500/Core i7 QPI Link 1
|
|
+-02.5 Intel Corporation Xeon 5500/Core i7 QPI Physical 1
|
|
+-03.0 Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller
|
|
+-03.1 Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Target Address Decoder
|
|
+-03.2 Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller RAS Registers
|
|
+-03.4 Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Test Registers
|
|
+-04.0 Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Channel 0 Control Registers
|
|
+-04.1 Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Channel 0 Address Registers
|
|
+-04.2 Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Channel 0 Rank Registers
|
|
+-04.3 Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Channel 0 Thermal Control Registers
|
|
+-05.0 Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Channel 1 Control Registers
|
|
+-05.1 Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Channel 1 Address Registers
|
|
+-05.2 Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Channel 1 Rank Registers
|
|
+-05.3 Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Channel 1 Thermal Control Registers
|
|
+-06.0 Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Channel 2 Control Registers
|
|
+-06.1 Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Channel 2 Address Registers
|
|
+-06.2 Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Channel 2 Rank Registers
|
|
\-06.3 Intel Corporation Xeon 5500/Core i7 Integrated Memory Controller Channel 2 Thermal Control Registers
|
|
|
|
--- lspci numa nodes
|
|
$ cat /sys/bus/pci/devices/0000:00:00.0/numa_node /sys/bus/pci/devices/0000:00:01.0/numa_node /sys/bus/pci/devices/0000:00:03.0/numa_node /sys/bus/pci/devices/0000:00:07.0/numa_node /sys/bus/pci/devices/0000:00:09.0/numa_node /sys/bus/pci/devices/0000:00:14.0/numa_node /sys/bus/pci/devices/0000:00:14.1/numa_node /sys/bus/pci/devices/0000:00:14.2/numa_node /sys/bus/pci/devices/0000:00:1a.0/numa_node /sys/bus/pci/devices/0000:00:1a.1/numa_node /sys/bus/pci/devices/0000:00:1a.7/numa_node /sys/bus/pci/devices/0000:00:1c.0/numa_node /sys/bus/pci/devices/0000:00:1d.0/numa_node /sys/bus/pci/devices/0000:00:1d.1/numa_node /sys/bus/pci/devices/0000:00:1d.7/numa_node /sys/bus/pci/devices/0000:00:1e.0/numa_node /sys/bus/pci/devices/0000:00:1f.0/numa_node /sys/bus/pci/devices/0000:01:00.0/numa_node /sys/bus/pci/devices/0000:01:00.1/numa_node /sys/bus/pci/devices/0000:02:00.0/numa_node /sys/bus/pci/devices/0000:02:00.1/numa_node /sys/bus/pci/devices/0000:04:00.0/numa_node /sys/bus/pci/devices/0000:04:00.1/numa_node /sys/bus/pci/devices/0000:06:03.0/numa_node /sys/bus/pci/devices/0000:fe:00.0/numa_node /sys/bus/pci/devices/0000:fe:00.1/numa_node /sys/bus/pci/devices/0000:fe:02.0/numa_node /sys/bus/pci/devices/0000:fe:02.1/numa_node /sys/bus/pci/devices/0000:fe:02.4/numa_node /sys/bus/pci/devices/0000:fe:02.5/numa_node /sys/bus/pci/devices/0000:fe:03.0/numa_node /sys/bus/pci/devices/0000:fe:03.1/numa_node /sys/bus/pci/devices/0000:fe:03.2/numa_node /sys/bus/pci/devices/0000:fe:03.4/numa_node /sys/bus/pci/devices/0000:fe:04.0/numa_node /sys/bus/pci/devices/0000:fe:04.1/numa_node /sys/bus/pci/devices/0000:fe:04.2/numa_node /sys/bus/pci/devices/0000:fe:04.3/numa_node /sys/bus/pci/devices/0000:fe:05.0/numa_node /sys/bus/pci/devices/0000:fe:05.1/numa_node /sys/bus/pci/devices/0000:fe:05.2/numa_node /sys/bus/pci/devices/0000:fe:05.3/numa_node /sys/bus/pci/devices/0000:fe:06.0/numa_node /sys/bus/pci/devices/0000:fe:06.1/numa_node /sys/bus/pci/devices/0000:fe:06.2/numa_node /sys/bus/pci/devices/0000:fe:06.3/numa_node /sys/bus/pci/devices/0000:ff:00.0/numa_node /sys/bus/pci/devices/0000:ff:00.1/numa_node /sys/bus/pci/devices/0000:ff:02.0/numa_node /sys/bus/pci/devices/0000:ff:02.1/numa_node /sys/bus/pci/devices/0000:ff:02.4/numa_node /sys/bus/pci/devices/0000:ff:02.5/numa_node /sys/bus/pci/devices/0000:ff:03.0/numa_node /sys/bus/pci/devices/0000:ff:03.1/numa_node /sys/bus/pci/devices/0000:ff:03.2/numa_node /sys/bus/pci/devices/0000:ff:03.4/numa_node /sys/bus/pci/devices/0000:ff:04.0/numa_node /sys/bus/pci/devices/0000:ff:04.1/numa_node /sys/bus/pci/devices/0000:ff:04.2/numa_node /sys/bus/pci/devices/0000:ff:04.3/numa_node /sys/bus/pci/devices/0000:ff:05.0/numa_node /sys/bus/pci/devices/0000:ff:05.1/numa_node /sys/bus/pci/devices/0000:ff:05.2/numa_node /sys/bus/pci/devices/0000:ff:05.3/numa_node /sys/bus/pci/devices/0000:ff:06.0/numa_node /sys/bus/pci/devices/0000:ff:06.1/numa_node /sys/bus/pci/devices/0000:ff:06.2/numa_node /sys/bus/pci/devices/0000:ff:06.3/numa_node
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
|
|
--- lsusb
|
|
$ lsusb
|
|
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
|
|
Bus 001 Device 002: ID 0424:2514 Microchip Technology, Inc. (formerly SMSC) USB 2.0 Hub
|
|
Bus 001 Device 003: ID 1058:260d Western Digital Technologies, Inc. My Passport 260D
|
|
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
|
|
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
|
|
Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
|
|
Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
|
|
Bus 005 Device 002: ID 10d5:5a08 Uni Class Technology Co., Ltd Dual Bay Docking Station
|
|
Bus 005 Device 003: ID 0624:0248 Avocent Corp. Virtual Hub
|
|
Bus 006 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
|
|
|
|
--- lshw -short
|
|
$ lshw -short
|
|
/root/check.sh: line 45: lshw: command not found
|
|
[exit=127 / not installed or not permitted]
|
|
|
|
--- PCIe AER errors
|
|
[missing: /sys/bus/pci/devices/0000:00:00.0/aer_dev_correctable]
|
|
|
|
--- PCIe AER summary (errors matter for NIC/NVMe stability)
|
|
$ found=0
|
|
for d in /sys/bus/pci/devices/*; do
|
|
[ -d "$d" ] || continue
|
|
addr="$(basename "$d")"
|
|
class="$(cat "$d/class" 2>/dev/null)"
|
|
case "$class" in
|
|
0x020000|0x010802|0x010700) ;; # ethernet, nvme, raid
|
|
*) continue ;;
|
|
esac
|
|
for f in "$d"/aer_dev_*; do
|
|
[ -r "$f" ] || continue
|
|
val="$(cat "$f" 2>/dev/null)"
|
|
[ "$val" = "0" ] && continue
|
|
[ "$val" = "" ] && continue
|
|
printf '%s %s = %s\n' "$addr" "$(basename "$f")" "$val"
|
|
found=1
|
|
done
|
|
done
|
|
[ "$found" = "0" ] && echo " no AER errors on NIC/NVMe/RAID devices"
|
|
0000:01:00.0 aer_dev_correctable = RxErr 0
|
|
BadTLP 0
|
|
BadDLLP 0
|
|
Rollover 0
|
|
Timeout 0
|
|
NonFatalErr 0
|
|
CorrIntErr 0
|
|
HeaderOF 0
|
|
TOTAL_ERR_COR 0
|
|
0000:01:00.0 aer_dev_fatal = Undefined 0
|
|
DLP 0
|
|
SDES 0
|
|
TLP 0
|
|
FCP 0
|
|
CmpltTO 0
|
|
CmpltAbrt 0
|
|
UnxCmplt 0
|
|
RxOF 0
|
|
MalfTLP 0
|
|
ECRC 0
|
|
UnsupReq 0
|
|
ACSViol 0
|
|
UncorrIntErr 0
|
|
BlockedTLP 0
|
|
AtomicOpBlocked 0
|
|
TLPBlockedErr 0
|
|
PoisonTLPBlocked 0
|
|
TOTAL_ERR_FATAL 0
|
|
0000:01:00.0 aer_dev_nonfatal = Undefined 0
|
|
DLP 0
|
|
SDES 0
|
|
TLP 0
|
|
FCP 0
|
|
CmpltTO 0
|
|
CmpltAbrt 0
|
|
UnxCmplt 0
|
|
RxOF 0
|
|
MalfTLP 0
|
|
ECRC 0
|
|
UnsupReq 0
|
|
ACSViol 0
|
|
UncorrIntErr 0
|
|
BlockedTLP 0
|
|
AtomicOpBlocked 0
|
|
TLPBlockedErr 0
|
|
PoisonTLPBlocked 0
|
|
TOTAL_ERR_NONFATAL 0
|
|
0000:01:00.1 aer_dev_correctable = RxErr 0
|
|
BadTLP 0
|
|
BadDLLP 0
|
|
Rollover 0
|
|
Timeout 0
|
|
NonFatalErr 0
|
|
CorrIntErr 0
|
|
HeaderOF 0
|
|
TOTAL_ERR_COR 0
|
|
0000:01:00.1 aer_dev_fatal = Undefined 0
|
|
DLP 0
|
|
SDES 0
|
|
TLP 0
|
|
FCP 0
|
|
CmpltTO 0
|
|
CmpltAbrt 0
|
|
UnxCmplt 0
|
|
RxOF 0
|
|
MalfTLP 0
|
|
ECRC 0
|
|
UnsupReq 0
|
|
ACSViol 0
|
|
UncorrIntErr 0
|
|
BlockedTLP 0
|
|
AtomicOpBlocked 0
|
|
TLPBlockedErr 0
|
|
PoisonTLPBlocked 0
|
|
TOTAL_ERR_FATAL 0
|
|
0000:01:00.1 aer_dev_nonfatal = Undefined 0
|
|
DLP 0
|
|
SDES 0
|
|
TLP 0
|
|
FCP 0
|
|
CmpltTO 0
|
|
CmpltAbrt 0
|
|
UnxCmplt 0
|
|
RxOF 0
|
|
MalfTLP 0
|
|
ECRC 0
|
|
UnsupReq 0
|
|
ACSViol 0
|
|
UncorrIntErr 0
|
|
BlockedTLP 0
|
|
AtomicOpBlocked 0
|
|
TLPBlockedErr 0
|
|
PoisonTLPBlocked 0
|
|
TOTAL_ERR_NONFATAL 0
|
|
0000:02:00.0 aer_dev_correctable = RxErr 0
|
|
BadTLP 0
|
|
BadDLLP 0
|
|
Rollover 0
|
|
Timeout 0
|
|
NonFatalErr 0
|
|
CorrIntErr 0
|
|
HeaderOF 0
|
|
TOTAL_ERR_COR 0
|
|
0000:02:00.0 aer_dev_fatal = Undefined 0
|
|
DLP 0
|
|
SDES 0
|
|
TLP 0
|
|
FCP 0
|
|
CmpltTO 0
|
|
CmpltAbrt 0
|
|
UnxCmplt 0
|
|
RxOF 0
|
|
MalfTLP 0
|
|
ECRC 0
|
|
UnsupReq 0
|
|
ACSViol 0
|
|
UncorrIntErr 0
|
|
BlockedTLP 0
|
|
AtomicOpBlocked 0
|
|
TLPBlockedErr 0
|
|
PoisonTLPBlocked 0
|
|
TOTAL_ERR_FATAL 0
|
|
0000:02:00.0 aer_dev_nonfatal = Undefined 0
|
|
DLP 0
|
|
SDES 0
|
|
TLP 0
|
|
FCP 0
|
|
CmpltTO 0
|
|
CmpltAbrt 0
|
|
UnxCmplt 0
|
|
RxOF 0
|
|
MalfTLP 0
|
|
ECRC 0
|
|
UnsupReq 0
|
|
ACSViol 0
|
|
UncorrIntErr 0
|
|
BlockedTLP 0
|
|
AtomicOpBlocked 0
|
|
TLPBlockedErr 0
|
|
PoisonTLPBlocked 0
|
|
TOTAL_ERR_NONFATAL 0
|
|
0000:02:00.1 aer_dev_correctable = RxErr 0
|
|
BadTLP 0
|
|
BadDLLP 0
|
|
Rollover 0
|
|
Timeout 0
|
|
NonFatalErr 0
|
|
CorrIntErr 0
|
|
HeaderOF 0
|
|
TOTAL_ERR_COR 0
|
|
0000:02:00.1 aer_dev_fatal = Undefined 0
|
|
DLP 0
|
|
SDES 0
|
|
TLP 0
|
|
FCP 0
|
|
CmpltTO 0
|
|
CmpltAbrt 0
|
|
UnxCmplt 0
|
|
RxOF 0
|
|
MalfTLP 0
|
|
ECRC 0
|
|
UnsupReq 0
|
|
ACSViol 0
|
|
UncorrIntErr 0
|
|
BlockedTLP 0
|
|
AtomicOpBlocked 0
|
|
TLPBlockedErr 0
|
|
PoisonTLPBlocked 0
|
|
TOTAL_ERR_FATAL 0
|
|
0000:02:00.1 aer_dev_nonfatal = Undefined 0
|
|
DLP 0
|
|
SDES 0
|
|
TLP 0
|
|
FCP 0
|
|
CmpltTO 0
|
|
CmpltAbrt 0
|
|
UnxCmplt 0
|
|
RxOF 0
|
|
MalfTLP 0
|
|
ECRC 0
|
|
UnsupReq 0
|
|
ACSViol 0
|
|
UncorrIntErr 0
|
|
BlockedTLP 0
|
|
AtomicOpBlocked 0
|
|
TLPBlockedErr 0
|
|
PoisonTLPBlocked 0
|
|
TOTAL_ERR_NONFATAL 0
|
|
0000:04:00.0 aer_dev_correctable = RxErr 0
|
|
BadTLP 0
|
|
BadDLLP 0
|
|
Rollover 0
|
|
Timeout 0
|
|
NonFatalErr 0
|
|
CorrIntErr 0
|
|
HeaderOF 0
|
|
TOTAL_ERR_COR 0
|
|
0000:04:00.0 aer_dev_fatal = Undefined 0
|
|
DLP 0
|
|
SDES 0
|
|
TLP 0
|
|
FCP 0
|
|
CmpltTO 0
|
|
CmpltAbrt 0
|
|
UnxCmplt 0
|
|
RxOF 0
|
|
MalfTLP 0
|
|
ECRC 0
|
|
UnsupReq 0
|
|
ACSViol 0
|
|
UncorrIntErr 0
|
|
BlockedTLP 0
|
|
AtomicOpBlocked 0
|
|
TLPBlockedErr 0
|
|
PoisonTLPBlocked 0
|
|
TOTAL_ERR_FATAL 0
|
|
0000:04:00.0 aer_dev_nonfatal = Undefined 0
|
|
DLP 0
|
|
SDES 0
|
|
TLP 0
|
|
FCP 0
|
|
CmpltTO 0
|
|
CmpltAbrt 0
|
|
UnxCmplt 0
|
|
RxOF 0
|
|
MalfTLP 0
|
|
ECRC 0
|
|
UnsupReq 0
|
|
ACSViol 0
|
|
UncorrIntErr 0
|
|
BlockedTLP 0
|
|
AtomicOpBlocked 0
|
|
TLPBlockedErr 0
|
|
PoisonTLPBlocked 0
|
|
TOTAL_ERR_NONFATAL 0
|
|
0000:04:00.1 aer_dev_correctable = RxErr 0
|
|
BadTLP 0
|
|
BadDLLP 0
|
|
Rollover 0
|
|
Timeout 0
|
|
NonFatalErr 0
|
|
CorrIntErr 0
|
|
HeaderOF 0
|
|
TOTAL_ERR_COR 0
|
|
0000:04:00.1 aer_dev_fatal = Undefined 0
|
|
DLP 0
|
|
SDES 0
|
|
TLP 0
|
|
FCP 0
|
|
CmpltTO 0
|
|
CmpltAbrt 0
|
|
UnxCmplt 0
|
|
RxOF 0
|
|
MalfTLP 0
|
|
ECRC 0
|
|
UnsupReq 0
|
|
ACSViol 0
|
|
UncorrIntErr 0
|
|
BlockedTLP 0
|
|
AtomicOpBlocked 0
|
|
TLPBlockedErr 0
|
|
PoisonTLPBlocked 0
|
|
TOTAL_ERR_FATAL 0
|
|
0000:04:00.1 aer_dev_nonfatal = Undefined 0
|
|
DLP 0
|
|
SDES 0
|
|
TLP 0
|
|
FCP 0
|
|
CmpltTO 0
|
|
CmpltAbrt 0
|
|
UnxCmplt 0
|
|
RxOF 0
|
|
MalfTLP 0
|
|
ECRC 0
|
|
UnsupReq 0
|
|
ACSViol 0
|
|
UncorrIntErr 0
|
|
BlockedTLP 0
|
|
AtomicOpBlocked 0
|
|
TLPBlockedErr 0
|
|
PoisonTLPBlocked 0
|
|
TOTAL_ERR_NONFATAL 0
|
|
[exit=1]
|
|
|
|
###############################################################################
|
|
# 4. CPU POWER / FREQUENCY / IDLE STATES
|
|
###############################################################################
|
|
|
|
--- scaling_governor per cpu (counts)
|
|
$ for c in /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor; do
|
|
[ -e "$c" ] || continue
|
|
cat "$c"
|
|
done | sort | uniq -c
|
|
16 performance
|
|
|
|
--- scaling_driver / available governors / freq limits
|
|
$ for f in /sys/devices/system/cpu/cpu0/cpufreq/*; do
|
|
[ -r "$f" ] || continue
|
|
[ -d "$f" ] && continue
|
|
printf '%-40s = %s\n' "$(basename "$f")" "$(cat "$f" 2>/dev/null)"
|
|
done
|
|
affected_cpus = 0
|
|
bios_limit = 2395000
|
|
boost = 1
|
|
cpuinfo_avg_freq = 1669372
|
|
cpuinfo_cur_freq = 2395000
|
|
cpuinfo_max_freq = 2395000
|
|
cpuinfo_min_freq = 1596000
|
|
cpuinfo_transition_latency = 10000
|
|
freqdomain_cpus = 0 2 4 6 8 10 12 14
|
|
related_cpus = 0
|
|
scaling_available_frequencies = 2395000 2394000 2261000 2128000 1995000 1862000 1729000 1596000
|
|
scaling_available_governors = conservative ondemand userspace powersave performance schedutil
|
|
scaling_boost_frequencies =
|
|
scaling_cur_freq = 1595125
|
|
scaling_driver = acpi-cpufreq
|
|
scaling_governor = performance
|
|
scaling_max_freq = 2395000
|
|
scaling_min_freq = 1596000
|
|
scaling_setspeed = <unsupported>
|
|
|
|
--- EPP / EPB / intel_pstate
|
|
$ echo "intel_pstate status: $(cat /sys/devices/system/cpu/intel_pstate/status 2>/dev/null)"
|
|
echo "intel_pstate no_turbo: $(cat /sys/devices/system/cpu/intel_pstate/no_turbo 2>/dev/null)"
|
|
echo "intel_pstate turbo_pct: $(cat /sys/devices/system/cpu/intel_pstate/turbo_pct 2>/dev/null)"
|
|
echo "intel_pstate max_perf_pct: $(cat /sys/devices/system/cpu/intel_pstate/max_perf_pct 2>/dev/null)"
|
|
echo "intel_pstate min_perf_pct: $(cat /sys/devices/system/cpu/intel_pstate/min_perf_pct 2>/dev/null)"
|
|
echo "EPB (energy_perf_bias) per cpu:"
|
|
for c in /sys/devices/system/cpu/cpu*/power/energy_perf_bias; do
|
|
[ -r "$c" ] || continue
|
|
printf ' %s : %s\n' "$(echo "$c" | cut -d/ -f5)" "$(cat "$c" 2>/dev/null)"
|
|
done | sort | uniq -c
|
|
echo "EPP (energy_performance_preference) per cpu:"
|
|
for c in /sys/devices/system/cpu/cpu*/cpufreq/energy_performance_preference; do
|
|
[ -r "$c" ] || continue
|
|
printf ' %s : %s\n' "$(echo "$c" | cut -d/ -f5)" "$(cat "$c" 2>/dev/null)"
|
|
done | sort | uniq -c
|
|
echo "available EPP:"
|
|
cat /sys/devices/system/cpu/cpu0/cpufreq/energy_performance_available_preferences 2>/dev/null
|
|
intel_pstate status:
|
|
intel_pstate no_turbo:
|
|
intel_pstate turbo_pct:
|
|
intel_pstate max_perf_pct:
|
|
intel_pstate min_perf_pct:
|
|
EPB (energy_perf_bias) per cpu:
|
|
EPP (energy_performance_preference) per cpu:
|
|
available EPP:
|
|
[exit=1]
|
|
|
|
--- cpupower frequency-info
|
|
$ cpupower frequency-info
|
|
analyzing CPU 2:
|
|
driver: acpi-cpufreq
|
|
CPUs which run at the same hardware frequency: 2
|
|
CPUs which need to have their frequency coordinated by software: 2
|
|
maximum transition latency: 10.0 us
|
|
hardware limits: 1.60 GHz - 2.40 GHz
|
|
available frequency steps: 2.40 GHz, 2.39 GHz, 2.26 GHz, 2.13 GHz, 2.00 GHz, 1.86 GHz, 1.73 GHz, 1.60 GHz
|
|
available cpufreq governors: conservative ondemand userspace powersave performance schedutil
|
|
current policy: frequency should be within 1.60 GHz and 2.40 GHz.
|
|
The governor "performance" may decide which speed to use
|
|
within this range.
|
|
current CPU frequency: 2.40 GHz (asserted by call to hardware)
|
|
boost state support:
|
|
Supported: yes
|
|
Active: yes
|
|
2533 MHz max turbo 4 active cores
|
|
2533 MHz max turbo 3 active cores
|
|
2667 MHz max turbo 2 active cores
|
|
2667 MHz max turbo 1 active cores
|
|
|
|
--- turbostat snapshot
|
|
$ timeout 3 turbostat --quiet --show CPU,Core,Bzy_MHz,IRQ,Busy%,Bzy_MHz,TSC_MHz,CoreTmp,PkgTmp sleep 1
|
|
1.002740 sec
|
|
Core CPU Busy% Bzy_MHz TSC_MHz IRQ CoreTmp
|
|
- - 0.36 1820 2394 1092 51
|
|
0 1 0.04 1923 2394 11 51
|
|
0 9 0.62 1824 2394 102
|
|
1 3 0.64 1948 2394 94 47
|
|
1 11 0.09 2023 2394 7
|
|
2 5 0.13 1894 2394 11 49
|
|
2 13 0.54 1814 2394 90
|
|
3 7 0.14 1782 2394 62 51
|
|
3 15 1.00 1782 2394 282
|
|
0 0 0.13 1816 2394 43 49
|
|
0 8 0.98 1765 2394 143
|
|
1 2 0.38 1801 2394 47 50
|
|
1 10 0.20 1781 2394 43
|
|
2 4 0.43 1725 2394 51 48
|
|
2 12 0.05 1868 2394 8
|
|
3 6 0.23 1775 2394 55 47
|
|
3 14 0.14 2161 2394 43
|
|
|
|
--- x86_energy_perf_policy -r
|
|
$ x86_energy_perf_policy -r
|
|
|
|
--- C-states (idle) enabled per cpu0
|
|
$ for s in /sys/devices/system/cpu/cpu0/cpuidle/state*; do
|
|
[ -d "$s" ] || continue
|
|
printf ' %s : %s disabled=%s latency=%sus residency=%sus\n' \
|
|
"$(cat "$s/name" 2>/dev/null)" \
|
|
"$(cat "$s/desc" 2>/dev/null)" \
|
|
"$(cat "$s/disable" 2>/dev/null)" \
|
|
"$(cat "$s/latency" 2>/dev/null)" \
|
|
"$(cat "$s/time" 2>/dev/null)"
|
|
done
|
|
POLL : CPUIDLE CORE POLL IDLE disabled=0 latency=0us residency=106463us
|
|
C1 : MWAIT 0x00 disabled=0 latency=3us residency=1283644us
|
|
C1E : MWAIT 0x01 disabled=0 latency=10us residency=410035836us
|
|
C3 : MWAIT 0x10 disabled=1 latency=20us residency=0us
|
|
C6 : MWAIT 0x20 disabled=0 latency=200us residency=62628633us
|
|
|
|
--- THP enabled
|
|
$ cat /sys/kernel/mm/transparent_hugepage/enabled
|
|
always [madvise] never
|
|
|
|
--- THP defrag
|
|
$ cat /sys/kernel/mm/transparent_hugepage/defrag
|
|
always defer defer+madvise [madvise] never
|
|
|
|
--- THP khugepaged pages_to_scan
|
|
$ cat /sys/kernel/mm/transparent_hugepage/khugepaged/pages_to_scan
|
|
4096
|
|
|
|
--- THP khugepaged defrag
|
|
$ cat /sys/kernel/mm/transparent_hugepage/khugepaged/defrag
|
|
1
|
|
|
|
--- microcode
|
|
$ dmesg
|
|
[ 0.000000] Linux version 6.17.2-1-pve (build@proxmox) (gcc (Debian 14.2.0-19) 14.2.0, GNU ld (GNU Binutils for Debian) 2.44) #1 SMP PREEMPT_DYNAMIC PMX 6.17.2-1 (2025-10-21T11:55Z) ()
|
|
[ 0.000000] Command line: BOOT_IMAGE=/boot/vmlinuz-6.17.2-1-pve root=/dev/mapper/pve-root ro intel_iommu=off quiet
|
|
[ 0.000000] KERNEL supported cpus:
|
|
[ 0.000000] Intel GenuineIntel
|
|
[ 0.000000] AMD AuthenticAMD
|
|
[ 0.000000] Hygon HygonGenuine
|
|
[ 0.000000] Centaur CentaurHauls
|
|
[ 0.000000] zhaoxin Shanghai
|
|
[ 0.000000] BIOS-provided physical RAM map:
|
|
[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009ffff] usable
|
|
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x00000000cf678fff] usable
|
|
[ 0.000000] BIOS-e820: [mem 0x00000000cf679000-0x00000000cf68efff] reserved
|
|
[ 0.000000] BIOS-e820: [mem 0x00000000cf68f000-0x00000000cf6cdfff] ACPI data
|
|
[ 0.000000] BIOS-e820: [mem 0x00000000cf6ce000-0x00000000cfffffff] reserved
|
|
[ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
|
|
[ 0.000000] BIOS-e820: [mem 0x00000000fe000000-0x00000000ffffffff] reserved
|
|
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000182fffffff] usable
|
|
[ 0.000000] NX (Execute Disable) protection: active
|
|
[ 0.000000] APIC: Static calls initialized
|
|
[ 0.000000] SMBIOS 2.6 present.
|
|
[ 0.000000] DMI: Dell Inc. PowerEdge R610/0XDN97, BIOS 2.0.13 04/06/2010
|
|
[ 0.000000] DMI: Memory slots populated: 8/12
|
|
[ 0.000000] tsc: Fast TSC calibration using PIT
|
|
[ 0.000000] tsc: Detected 2393.902 MHz processor
|
|
[ 0.001801] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
|
|
[ 0.001805] e820: remove [mem 0x000a0000-0x000fffff] usable
|
|
[ 0.001813] last_pfn = 0x1830000 max_arch_pfn = 0x400000000
|
|
[ 0.001822] total RAM covered: 98304M
|
|
[ 0.002027] gran_size: 64K chunk_size: 64K num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002031] gran_size: 64K chunk_size: 128K num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002034] gran_size: 64K chunk_size: 256K num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002036] gran_size: 64K chunk_size: 512K num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002039] gran_size: 64K chunk_size: 1M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002041] gran_size: 64K chunk_size: 2M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002044] gran_size: 64K chunk_size: 4M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002046] gran_size: 64K chunk_size: 8M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002049] gran_size: 64K chunk_size: 16M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002052] gran_size: 64K chunk_size: 32M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002054] gran_size: 64K chunk_size: 64M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002057] gran_size: 64K chunk_size: 128M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002059] gran_size: 64K chunk_size: 256M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002061] gran_size: 64K chunk_size: 512M num_reg: 8 lose cover RAM: 33536M
|
|
[ 0.002064] gran_size: 64K chunk_size: 1G num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002067] gran_size: 64K chunk_size: 2G num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002069] gran_size: 128K chunk_size: 128K num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002072] gran_size: 128K chunk_size: 256K num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002074] gran_size: 128K chunk_size: 512K num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002077] gran_size: 128K chunk_size: 1M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002079] gran_size: 128K chunk_size: 2M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002082] gran_size: 128K chunk_size: 4M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002084] gran_size: 128K chunk_size: 8M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002086] gran_size: 128K chunk_size: 16M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002089] gran_size: 128K chunk_size: 32M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002091] gran_size: 128K chunk_size: 64M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002094] gran_size: 128K chunk_size: 128M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002096] gran_size: 128K chunk_size: 256M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002099] gran_size: 128K chunk_size: 512M num_reg: 8 lose cover RAM: 33536M
|
|
[ 0.002101] gran_size: 128K chunk_size: 1G num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002104] gran_size: 128K chunk_size: 2G num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002106] gran_size: 256K chunk_size: 256K num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002109] gran_size: 256K chunk_size: 512K num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002111] gran_size: 256K chunk_size: 1M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002114] gran_size: 256K chunk_size: 2M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002116] gran_size: 256K chunk_size: 4M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002119] gran_size: 256K chunk_size: 8M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002121] gran_size: 256K chunk_size: 16M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002123] gran_size: 256K chunk_size: 32M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002126] gran_size: 256K chunk_size: 64M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002128] gran_size: 256K chunk_size: 128M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002131] gran_size: 256K chunk_size: 256M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002133] gran_size: 256K chunk_size: 512M num_reg: 8 lose cover RAM: 33536M
|
|
[ 0.002136] gran_size: 256K chunk_size: 1G num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002138] gran_size: 256K chunk_size: 2G num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002141] gran_size: 512K chunk_size: 512K num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002143] gran_size: 512K chunk_size: 1M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002146] gran_size: 512K chunk_size: 2M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002148] gran_size: 512K chunk_size: 4M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002150] gran_size: 512K chunk_size: 8M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002153] gran_size: 512K chunk_size: 16M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002155] gran_size: 512K chunk_size: 32M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002158] gran_size: 512K chunk_size: 64M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002160] gran_size: 512K chunk_size: 128M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002163] gran_size: 512K chunk_size: 256M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002165] gran_size: 512K chunk_size: 512M num_reg: 8 lose cover RAM: 33536M
|
|
[ 0.002168] gran_size: 512K chunk_size: 1G num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002170] gran_size: 512K chunk_size: 2G num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002173] gran_size: 1M chunk_size: 1M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002175] gran_size: 1M chunk_size: 2M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002178] gran_size: 1M chunk_size: 4M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002180] gran_size: 1M chunk_size: 8M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002183] gran_size: 1M chunk_size: 16M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002185] gran_size: 1M chunk_size: 32M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002188] gran_size: 1M chunk_size: 64M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002190] gran_size: 1M chunk_size: 128M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002193] gran_size: 1M chunk_size: 256M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002195] gran_size: 1M chunk_size: 512M num_reg: 8 lose cover RAM: 33536M
|
|
[ 0.002198] gran_size: 1M chunk_size: 1G num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002200] gran_size: 1M chunk_size: 2G num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002202] gran_size: 2M chunk_size: 2M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002205] gran_size: 2M chunk_size: 4M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002207] gran_size: 2M chunk_size: 8M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002209] gran_size: 2M chunk_size: 16M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002212] gran_size: 2M chunk_size: 32M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002214] gran_size: 2M chunk_size: 64M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002217] gran_size: 2M chunk_size: 128M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002219] gran_size: 2M chunk_size: 256M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002222] gran_size: 2M chunk_size: 512M num_reg: 8 lose cover RAM: 33536M
|
|
[ 0.002224] gran_size: 2M chunk_size: 1G num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002227] gran_size: 2M chunk_size: 2G num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002229] gran_size: 4M chunk_size: 4M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002231] gran_size: 4M chunk_size: 8M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002234] gran_size: 4M chunk_size: 16M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002236] gran_size: 4M chunk_size: 32M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002239] gran_size: 4M chunk_size: 64M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002241] gran_size: 4M chunk_size: 128M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002243] gran_size: 4M chunk_size: 256M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002246] gran_size: 4M chunk_size: 512M num_reg: 8 lose cover RAM: 33536M
|
|
[ 0.002248] gran_size: 4M chunk_size: 1G num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002251] gran_size: 4M chunk_size: 2G num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002253] gran_size: 8M chunk_size: 8M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002255] gran_size: 8M chunk_size: 16M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002258] gran_size: 8M chunk_size: 32M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002260] gran_size: 8M chunk_size: 64M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002263] gran_size: 8M chunk_size: 128M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002265] gran_size: 8M chunk_size: 256M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002268] gran_size: 8M chunk_size: 512M num_reg: 8 lose cover RAM: 33536M
|
|
[ 0.002270] gran_size: 8M chunk_size: 1G num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002272] gran_size: 8M chunk_size: 2G num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002275] gran_size: 16M chunk_size: 16M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002277] gran_size: 16M chunk_size: 32M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002280] gran_size: 16M chunk_size: 64M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002282] gran_size: 16M chunk_size: 128M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002285] gran_size: 16M chunk_size: 256M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002287] gran_size: 16M chunk_size: 512M num_reg: 8 lose cover RAM: 33536M
|
|
[ 0.002290] gran_size: 16M chunk_size: 1G num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002292] gran_size: 16M chunk_size: 2G num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002295] gran_size: 32M chunk_size: 32M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002297] gran_size: 32M chunk_size: 64M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002300] gran_size: 32M chunk_size: 128M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002302] gran_size: 32M chunk_size: 256M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002305] gran_size: 32M chunk_size: 512M num_reg: 8 lose cover RAM: 33536M
|
|
[ 0.002307] gran_size: 32M chunk_size: 1G num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002310] gran_size: 32M chunk_size: 2G num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002312] gran_size: 64M chunk_size: 64M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002315] gran_size: 64M chunk_size: 128M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002317] gran_size: 64M chunk_size: 256M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002320] gran_size: 64M chunk_size: 512M num_reg: 8 lose cover RAM: 33536M
|
|
[ 0.002322] gran_size: 64M chunk_size: 1G num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002325] gran_size: 64M chunk_size: 2G num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002327] gran_size: 128M chunk_size: 128M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002330] gran_size: 128M chunk_size: 256M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002332] gran_size: 128M chunk_size: 512M num_reg: 8 lose cover RAM: 33536M
|
|
[ 0.002335] gran_size: 128M chunk_size: 1G num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002337] gran_size: 128M chunk_size: 2G num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002340] gran_size: 256M chunk_size: 256M num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002342] gran_size: 256M chunk_size: 512M num_reg: 8 lose cover RAM: 33536M
|
|
[ 0.002345] gran_size: 256M chunk_size: 1G num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002347] gran_size: 256M chunk_size: 2G num_reg: 8 lose cover RAM: 768M
|
|
[ 0.002350] gran_size: 512M chunk_size: 512M num_reg: 8 lose cover RAM: 512M
|
|
[ 0.002352] *BAD*gran_size: 512M chunk_size: 1G num_reg: 8 lose cover RAM: -0G
|
|
[ 0.002355] *BAD*gran_size: 512M chunk_size: 2G num_reg: 8 lose cover RAM: -1G
|
|
[ 0.002357] gran_size: 1G chunk_size: 1G num_reg: 7 lose cover RAM: 1G
|
|
[ 0.002360] gran_size: 1G chunk_size: 2G num_reg: 7 lose cover RAM: 1G
|
|
[ 0.002362] gran_size: 2G chunk_size: 2G num_reg: 6 lose cover RAM: 2G
|
|
[ 0.002364] mtrr_cleanup: can not find optimal value
|
|
[ 0.002365] please specify mtrr_gran_size/mtrr_chunk_size
|
|
[ 0.002368] MTRR map: 8 entries (5 fixed + 3 variable; max 21), built from 8 variable MTRRs
|
|
[ 0.002371] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
|
|
[ 0.003176] e820: update [mem 0xd0000000-0xffffffff] usable ==> reserved
|
|
[ 0.003186] last_pfn = 0xcf6ce max_arch_pfn = 0x400000000
|
|
[ 0.016135] found SMP MP-table at [mem 0x000fe710-0x000fe71f]
|
|
[ 0.018948] RAMDISK: [mem 0x2d4c9000-0x32a5bfff]
|
|
[ 0.018968] ACPI: Early table checksum verification disabled
|
|
[ 0.018973] ACPI: RSDP 0x00000000000F0CD0 000024 (v02 DELL )
|
|
[ 0.018979] ACPI: XSDT 0x00000000000F0DD4 00009C (v01 DELL PE_SC3 00000001 DELL 00000001)
|
|
[ 0.018987] ACPI: FACP 0x00000000CF6B3F9C 0000F4 (v03 DELL PE_SC3 00000001 DELL 00000001)
|
|
[ 0.018997] ACPI: DSDT 0x00000000CF68F000 003D5A (v01 DELL PE_SC3 00000001 INTL 20050624)
|
|
[ 0.019003] ACPI: FACS 0x00000000CF6B6000 000040
|
|
[ 0.019008] ACPI: FACS 0x00000000CF6B6000 000040
|
|
[ 0.019013] ACPI: APIC 0x00000000CF6B3478 00015E (v01 DELL PE_SC3 00000001 DELL 00000001)
|
|
[ 0.019018] ACPI: SPCR 0x00000000CF6B35D8 000050 (v01 DELL PE_SC3 00000001 DELL 00000001)
|
|
[ 0.019024] ACPI: HPET 0x00000000CF6B362C 000038 (v01 DELL PE_SC3 00000001 DELL 00000001)
|
|
[ 0.019030] ACPI: DMAR 0x00000000CF6B3668 000198 (v01 DELL PE_SC3 00000001 DELL 00000001)
|
|
[ 0.019035] ACPI: MCFG 0x00000000CF6B38C4 00003C (v01 DELL PE_SC3 00000001 DELL 00000001)
|
|
[ 0.019041] ACPI: WD__ 0x00000000CF6B3904 000134 (v01 DELL PE_SC3 00000001 DELL 00000001)
|
|
[ 0.019046] ACPI: SLIC 0x00000000CF6B3A3C 000024 (v01 DELL PE_SC3 00000001 DELL 00000001)
|
|
[ 0.019052] ACPI: ERST 0x00000000CF692EDC 000270 (v01 DELL PE_SC3 00000001 DELL 00000001)
|
|
[ 0.019057] ACPI: HEST 0x00000000CF69314C 0003A8 (v01 DELL PE_SC3 00000001 DELL 00000001)
|
|
[ 0.019063] ACPI: BERT 0x00000000CF692D5C 000030 (v01 DELL PE_SC3 00000001 DELL 00000001)
|
|
[ 0.019069] ACPI: EINJ 0x00000000CF692D8C 000150 (v01 DELL PE_SC3 00000001 DELL 00000001)
|
|
[ 0.019074] ACPI: SRAT 0x00000000CF6B3BC0 000370 (v01 DELL PE_SC3 00000001 DELL 00000001)
|
|
[ 0.019080] ACPI: TCPA 0x00000000CF6B3F34 000064 (v02 DELL PE_SC3 00000001 DELL 00000001)
|
|
[ 0.019085] ACPI: SSDT 0x00000000CF6B7000 0043F4 (v01 INTEL PPM RCM 80000001 INTL 20061109)
|
|
[ 0.019090] ACPI: Reserving FACP table memory at [mem 0xcf6b3f9c-0xcf6b408f]
|
|
[ 0.019092] ACPI: Reserving DSDT table memory at [mem 0xcf68f000-0xcf692d59]
|
|
[ 0.019093] ACPI: Reserving FACS table memory at [mem 0xcf6b6000-0xcf6b603f]
|
|
[ 0.019095] ACPI: Reserving FACS table memory at [mem 0xcf6b6000-0xcf6b603f]
|
|
[ 0.019096] ACPI: Reserving APIC table memory at [mem 0xcf6b3478-0xcf6b35d5]
|
|
[ 0.019098] ACPI: Reserving SPCR table memory at [mem 0xcf6b35d8-0xcf6b3627]
|
|
[ 0.019099] ACPI: Reserving HPET table memory at [mem 0xcf6b362c-0xcf6b3663]
|
|
[ 0.019100] ACPI: Reserving DMAR table memory at [mem 0xcf6b3668-0xcf6b37ff]
|
|
[ 0.019102] ACPI: Reserving MCFG table memory at [mem 0xcf6b38c4-0xcf6b38ff]
|
|
[ 0.019103] ACPI: Reserving WD__ table memory at [mem 0xcf6b3904-0xcf6b3a37]
|
|
[ 0.019105] ACPI: Reserving SLIC table memory at [mem 0xcf6b3a3c-0xcf6b3a5f]
|
|
[ 0.019106] ACPI: Reserving ERST table memory at [mem 0xcf692edc-0xcf69314b]
|
|
[ 0.019107] ACPI: Reserving HEST table memory at [mem 0xcf69314c-0xcf6934f3]
|
|
[ 0.019109] ACPI: Reserving BERT table memory at [mem 0xcf692d5c-0xcf692d8b]
|
|
[ 0.019110] ACPI: Reserving EINJ table memory at [mem 0xcf692d8c-0xcf692edb]
|
|
[ 0.019112] ACPI: Reserving SRAT table memory at [mem 0xcf6b3bc0-0xcf6b3f2f]
|
|
[ 0.019113] ACPI: Reserving TCPA table memory at [mem 0xcf6b3f34-0xcf6b3f97]
|
|
[ 0.019115] ACPI: Reserving SSDT table memory at [mem 0xcf6b7000-0xcf6bb3f3]
|
|
[ 0.019158] ACPI: SRAT: Node 0 PXM 1 [mem 0x00000000-0xcfffffff]
|
|
[ 0.019160] ACPI: SRAT: Node 0 PXM 1 [mem 0x100000000-0x182fffffff]
|
|
[ 0.019166] NUMA: Node 0 [mem 0x00001000-0xcfffffff] + [mem 0x100000000-0x182fffffff] -> [mem 0x00001000-0x182fffffff]
|
|
[ 0.019181] NODE_DATA(0) allocated [mem 0x182ff792c0-0x182ffa3fff]
|
|
[ 0.020008] Zone ranges:
|
|
[ 0.020010] DMA [mem 0x0000000000001000-0x0000000000ffffff]
|
|
[ 0.020012] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
|
|
[ 0.020014] Normal [mem 0x0000000100000000-0x000000182fffffff]
|
|
[ 0.020017] Device empty
|
|
[ 0.020018] Movable zone start for each node
|
|
[ 0.020022] Early memory node ranges
|
|
[ 0.020023] node 0: [mem 0x0000000000001000-0x000000000009ffff]
|
|
[ 0.020025] node 0: [mem 0x0000000000100000-0x00000000cf678fff]
|
|
[ 0.020027] node 0: [mem 0x0000000100000000-0x000000182fffffff]
|
|
[ 0.020059] Initmem setup node 0 [mem 0x0000000000001000-0x000000182fffffff]
|
|
[ 0.020083] Initmem setup node 1 as memoryless
|
|
[ 0.020088] On node 0, zone DMA: 1 pages in unavailable ranges
|
|
[ 0.020121] On node 0, zone DMA: 96 pages in unavailable ranges
|
|
[ 0.248664] On node 0, zone Normal: 2439 pages in unavailable ranges
|
|
[ 0.248864] ACPI: PM-Timer IO Port: 0x808
|
|
[ 0.248887] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
|
|
[ 0.248899] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
|
|
[ 0.248906] IOAPIC[1]: apic_id 1, version 32, address 0xfec80000, GSI 32-55
|
|
[ 0.248910] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
|
|
[ 0.248913] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
|
|
[ 0.248920] ACPI: Using ACPI (MADT) for SMP configuration information
|
|
[ 0.248922] ACPI: HPET id: 0x8086a301 base: 0xfed00000
|
|
[ 0.248928] ACPI: SPCR: SPCR table version 1
|
|
[ 0.248931] ACPI: SPCR: console: uart,io,0x2f8,115200
|
|
[ 0.248943] CPU topo: Max. logical packages: 3
|
|
[ 0.248945] CPU topo: Max. logical dies: 3
|
|
[ 0.248946] CPU topo: Max. dies per package: 1
|
|
[ 0.248957] CPU topo: Max. threads per core: 2
|
|
[ 0.248958] CPU topo: Num. cores per package: 4
|
|
[ 0.248959] CPU topo: Num. threads per package: 8
|
|
[ 0.248961] CPU topo: Allowing 16 present CPUs plus 16 hotplug CPUs
|
|
[ 0.248978] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
|
|
[ 0.248981] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000fffff]
|
|
[ 0.248983] PM: hibernation: Registered nosave memory: [mem 0xcf679000-0xffffffff]
|
|
[ 0.248986] [mem 0xd0000000-0xdfffffff] available for PCI devices
|
|
[ 0.248988] Booting paravirtualized kernel on bare hardware
|
|
[ 0.248991] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
|
|
[ 0.249001] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:32 nr_cpu_ids:32 nr_node_ids:2
|
|
[ 0.252328] percpu: Embedded 84 pages/cpu s221184 r8192 d114688 u524288
|
|
[ 0.252343] pcpu-alloc: s221184 r8192 d114688 u524288 alloc=1*2097152
|
|
[ 0.252347] pcpu-alloc: [0] 00 02 04 06 [0] 08 10 12 14
|
|
[ 0.252356] pcpu-alloc: [0] 16 17 18 19 [0] 20 21 22 23
|
|
[ 0.252364] pcpu-alloc: [0] 24 25 26 27 [0] 28 29 30 31
|
|
[ 0.252373] pcpu-alloc: [1] 01 03 05 07 [1] 09 11 13 15
|
|
[ 0.252412] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-6.17.2-1-pve root=/dev/mapper/pve-root ro intel_iommu=off quiet
|
|
[ 0.252505] DMAR: IOMMU disabled
|
|
[ 0.252537] Unknown kernel command line parameters "BOOT_IMAGE=/boot/vmlinuz-6.17.2-1-pve", will be passed to user space.
|
|
[ 0.252544] printk: log buffer data + meta data: 262144 + 917504 = 1179648 bytes
|
|
[ 0.261633] Dentry cache hash table entries: 8388608 (order: 14, 67108864 bytes, linear)
|
|
[ 0.266190] Inode-cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
|
|
[ 0.267046] software IO TLB: area num 32.
|
|
[ 0.302406] Fallback order for Node 0: 0
|
|
[ 0.302414] Fallback order for Node 1: 0
|
|
[ 0.302425] Built 2 zonelists, mobility grouping on. Total pages: 25163288
|
|
[ 0.302427] Policy zone: Normal
|
|
[ 0.302440] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
|
|
[ 0.728604] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=32, Nodes=2
|
|
[ 0.728838] Kernel/User page tables isolation: enabled
|
|
[ 0.742471] ftrace: allocating 58381 entries in 230 pages
|
|
[ 0.742476] ftrace: allocated 230 pages with 5 groups
|
|
[ 0.743831] Dynamic Preempt: voluntary
|
|
[ 0.744377] rcu: Preemptible hierarchical RCU implementation.
|
|
[ 0.744379] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=32.
|
|
[ 0.744382] Trampoline variant of Tasks RCU enabled.
|
|
[ 0.744382] Rude variant of Tasks RCU enabled.
|
|
[ 0.744383] Tracing variant of Tasks RCU enabled.
|
|
[ 0.744384] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
|
|
[ 0.744386] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=32
|
|
[ 0.744451] RCU Tasks: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=32.
|
|
[ 0.744457] RCU Tasks Rude: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=32.
|
|
[ 0.744464] RCU Tasks Trace: Setting shift to 5 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=32.
|
|
[ 0.754562] NR_IRQS: 524544, nr_irqs: 1224, preallocated irqs: 16
|
|
[ 0.754945] rcu: srcu_init: Setting srcu_struct sizes based on contention.
|
|
[ 0.759468] Console: colour VGA+ 80x25
|
|
[ 0.759472] printk: legacy console [tty0] enabled
|
|
[ 0.759884] mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
|
|
[ 0.759892] ACPI: Core revision 20250404
|
|
[ 0.760257] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
|
|
[ 0.760279] APIC: Switch to symmetric I/O mode setup
|
|
[ 0.760281] DMAR-IR: This system BIOS has enabled interrupt remapping
|
|
on a chipset that contains an erratum making that
|
|
feature unstable. To maintain system stability
|
|
interrupt remapping is being disabled. Please
|
|
contact your BIOS vendor for an update
|
|
[ 0.760856] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
|
|
[ 0.765277] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2281b6d4dcb, max_idle_ns: 440795270885 ns
|
|
[ 0.765284] Calibrating delay loop (skipped), value calculated using timer frequency.. 4787.80 BogoMIPS (lpj=2393902)
|
|
[ 0.765312] CPU0: Thermal monitoring enabled (TM1)
|
|
[ 0.765355] Last level iTLB entries: 4KB 512, 2MB 7, 4MB 7
|
|
[ 0.765358] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 0
|
|
[ 0.765364] process: using mwait in idle threads
|
|
[ 0.765368] mitigations: Enabled attack vectors: user_kernel, user_user, guest_host, guest_guest, SMT mitigations: auto
|
|
[ 0.765378] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
|
|
[ 0.765381] Spectre V2 : Mitigation: Retpolines
|
|
[ 0.765382] Spectre V2 : User space: Mitigation: STIBP via prctl
|
|
[ 0.765384] MDS: Vulnerable: Clear CPU buffers attempted, no microcode
|
|
[ 0.765386] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
|
|
[ 0.765388] Spectre V2 : Spectre v2 / SpectreRSB: Filling RSB on context switch and VMEXIT
|
|
[ 0.765390] Spectre V2 : Enabling Restricted Speculation for firmware calls
|
|
[ 0.765392] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
|
|
[ 0.765397] x86/fpu: x87 FPU will use FXSAVE
|
|
[ 0.799321] Freeing SMP alternatives memory: 52K
|
|
[ 0.799350] pid_max: default: 32768 minimum: 301
|
|
[ 0.800227] LSM: initializing lsm=lockdown,capability,yama,apparmor,ima,evm
|
|
[ 0.800708] Yama: becoming mindful.
|
|
[ 0.800799] AppArmor: AppArmor initialized
|
|
[ 0.801559] Mount-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
|
|
[ 0.801726] Mountpoint-cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)
|
|
[ 0.906361] smpboot: CPU0: Intel(R) Xeon(R) CPU E5530 @ 2.40GHz (family: 0x6, model: 0x1a, stepping: 0x5)
|
|
[ 0.906810] Performance Events: PEBS fmt1+, Nehalem events, 16-deep LBR, Intel PMU driver.
|
|
[ 0.906841] core: CPU erratum AAJ80 worked around
|
|
[ 0.906842] core: CPUID marked event: 'bus cycles' unavailable
|
|
[ 0.906845] ... version: 3
|
|
[ 0.906846] ... bit width: 48
|
|
[ 0.906847] ... generic registers: 4
|
|
[ 0.906849] ... value mask: 0000ffffffffffff
|
|
[ 0.906850] ... max period: 000000007fffffff
|
|
[ 0.906852] ... fixed-purpose events: 3
|
|
[ 0.906853] ... event mask: 000000070000000f
|
|
[ 0.907424] signal: max sigframe size: 1440
|
|
[ 0.907457] Estimated ratio of average max frequency by base frequency (times 1024): 1080
|
|
[ 0.911425] rcu: Hierarchical SRCU implementation.
|
|
[ 0.911429] rcu: Max phase no-delay instances is 400.
|
|
[ 0.911552] Timer migration: 3 hierarchy levels; 8 children per group; 2 crossnode level
|
|
[ 0.913122] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
|
|
[ 0.913755] smp: Bringing up secondary CPUs ...
|
|
[ 0.913998] smpboot: x86: Booting SMP configuration:
|
|
[ 0.914001] .... node #1, CPUs: #1
|
|
[ 0.914270] .... node #0, CPUs: #2
|
|
[ 0.914832] .... node #1, CPUs: #3
|
|
[ 0.915089] .... node #0, CPUs: #4
|
|
[ 0.915612] .... node #1, CPUs: #5
|
|
[ 0.915878] .... node #0, CPUs: #6
|
|
[ 0.916257] .... node #1, CPUs: #7
|
|
[ 0.924583] .... node #0, CPUs: #8
|
|
[ 0.925965] .... node #1, CPUs: #9
|
|
[ 0.926297] .... node #0, CPUs: #10
|
|
[ 0.926802] .... node #1, CPUs: #11
|
|
[ 0.927263] .... node #0, CPUs: #12
|
|
[ 0.927791] .... node #1, CPUs: #13
|
|
[ 0.928137] .... node #0, CPUs: #14
|
|
[ 0.928677] .... node #1, CPUs: #15
|
|
[ 0.929543] 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.
|
|
[ 0.938418] smp: Brought up 2 nodes, 16 CPUs
|
|
[ 0.938418] smpboot: Total of 16 processors activated (76604.86 BogoMIPS)
|
|
[ 0.939709] Memory: 98735552K/100653152K available (21386K kernel code, 3800K rwdata, 14940K rodata, 4948K init, 5380K bss, 1890860K reserved, 0K cma-reserved)
|
|
[ 0.945285] devtmpfs: initialized
|
|
[ 0.945412] x86/mm: Memory block size: 2048MB
|
|
[ 0.947479] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
|
|
[ 0.947479] posixtimers hash table entries: 16384 (order: 6, 262144 bytes, linear)
|
|
[ 0.947485] futex hash table entries: 4096 (262144 bytes on 2 NUMA nodes, total 512 KiB, linear).
|
|
[ 0.948161] pinctrl core: initialized pinctrl subsystem
|
|
[ 0.948488] PM: RTC time: 21:17:56, date: 2026-07-26
|
|
[ 0.950697] NET: Registered PF_NETLINK/PF_ROUTE protocol family
|
|
[ 0.951851] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
|
|
[ 0.952747] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
|
|
[ 0.953667] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
|
|
[ 0.953719] audit: initializing netlink subsys (disabled)
|
|
[ 0.954328] audit: type=2000 audit(1785100676.194:1): state=initialized audit_enabled=0 res=1
|
|
[ 0.954696] thermal_sys: Registered thermal governor 'fair_share'
|
|
[ 0.954700] thermal_sys: Registered thermal governor 'bang_bang'
|
|
[ 0.954702] thermal_sys: Registered thermal governor 'step_wise'
|
|
[ 0.954704] thermal_sys: Registered thermal governor 'user_space'
|
|
[ 0.954705] thermal_sys: Registered thermal governor 'power_allocator'
|
|
[ 0.954733] cpuidle: using governor ladder
|
|
[ 0.954733] cpuidle: using governor menu
|
|
[ 0.954733] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
|
|
[ 0.954733] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
|
|
[ 0.955586] PCI: ECAM [mem 0xe0000000-0xefffffff] (base 0xe0000000) for domain 0000 [bus 00-ff]
|
|
[ 0.955595] PCI: ECAM [mem 0xe0000000-0xefffffff] reserved as E820 entry
|
|
[ 0.955626] PCI: Using configuration type 1 for base access
|
|
[ 0.955811] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
|
|
[ 0.961430] HugeTLB: allocation took 0ms with hugepage_allocation_threads=4
|
|
[ 0.961430] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
|
|
[ 0.961430] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
|
|
[ 0.968624] ACPI: Added _OSI(Module Device)
|
|
[ 0.968629] ACPI: Added _OSI(Processor Device)
|
|
[ 0.968632] ACPI: Added _OSI(Processor Aggregator Device)
|
|
[ 0.974836] ACPI: 2 ACPI AML tables successfully acquired and loaded
|
|
[ 0.975489] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
|
|
[ 1.000006] ACPI: Interpreter enabled
|
|
[ 1.000038] ACPI: PM: (supports S0 S4 S5)
|
|
[ 1.000040] ACPI: Using IOAPIC for interrupt routing
|
|
[ 1.000602] HEST: Table parsing has been initialized.
|
|
[ 1.000878] GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC.
|
|
[ 1.000884] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
|
|
[ 1.000886] PCI: Using E820 reservations for host bridge windows
|
|
[ 1.001075] ACPI: Enabled 2 GPEs in block 00 to 3F
|
|
[ 1.012304] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-ff])
|
|
[ 1.012315] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
|
|
[ 1.012672] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
|
|
[ 1.012675] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
|
|
[ 1.013107] PCI host bridge to bus 0000:00
|
|
[ 1.013111] pci_bus 0000:00: Unknown NUMA node; performance will be reduced
|
|
[ 1.013156] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
|
|
[ 1.013160] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
|
|
[ 1.013162] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
|
|
[ 1.013165] pci_bus 0000:00: root bus resource [mem 0xd0000000-0xfdffffff window]
|
|
[ 1.013167] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff window]
|
|
[ 1.013171] pci_bus 0000:00: root bus resource [bus 00-ff]
|
|
[ 1.013210] pci 0000:00:00.0: [8086:3403] type 00 class 0x060000 PCIe Root Port
|
|
[ 1.013245] pci 0000:00:00.0: enabling Extended Tags
|
|
[ 1.013301] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold
|
|
[ 1.013443] pci 0000:00:01.0: [8086:3408] type 01 class 0x060400 PCIe Root Port
|
|
[ 1.013465] pci 0000:00:01.0: PCI bridge to [bus 01]
|
|
[ 1.013472] pci 0000:00:01.0: bridge window [mem 0xd2000000-0xd5ffffff]
|
|
[ 1.013486] pci 0000:00:01.0: enabling Extended Tags
|
|
[ 1.013533] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
|
|
[ 1.013708] pci 0000:00:03.0: [8086:340a] type 01 class 0x060400 PCIe Root Port
|
|
[ 1.013729] pci 0000:00:03.0: PCI bridge to [bus 02]
|
|
[ 1.013735] pci 0000:00:03.0: bridge window [mem 0xd6000000-0xd9ffffff]
|
|
[ 1.013748] pci 0000:00:03.0: enabling Extended Tags
|
|
[ 1.013794] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
|
|
[ 1.013953] pci 0000:00:07.0: [8086:340e] type 01 class 0x060400 PCIe Root Port
|
|
[ 1.013975] pci 0000:00:07.0: PCI bridge to [bus 04]
|
|
[ 1.013981] pci 0000:00:07.0: bridge window [mem 0xda000000-0xddffffff]
|
|
[ 1.013995] pci 0000:00:07.0: enabling Extended Tags
|
|
[ 1.014041] pci 0000:00:07.0: PME# supported from D0 D3hot D3cold
|
|
[ 1.014194] pci 0000:00:09.0: [8086:3410] type 01 class 0x060400 PCIe Root Port
|
|
[ 1.014215] pci 0000:00:09.0: PCI bridge to [bus 05]
|
|
[ 1.014233] pci 0000:00:09.0: enabling Extended Tags
|
|
[ 1.014275] pci 0000:00:09.0: PME# supported from D0 D3hot D3cold
|
|
[ 1.014423] pci 0000:00:14.0: [8086:342e] type 00 class 0x080000 PCIe Root Complex Integrated Endpoint
|
|
[ 1.014587] pci 0000:00:14.1: [8086:3422] type 00 class 0x080000 PCIe Root Complex Integrated Endpoint
|
|
[ 1.014744] pci 0000:00:14.2: [8086:3423] type 00 class 0x080000 PCIe Root Complex Integrated Endpoint
|
|
[ 1.014880] pci 0000:00:1a.0: [8086:2937] type 00 class 0x0c0300 conventional PCI endpoint
|
|
[ 1.014924] pci 0000:00:1a.0: BAR 4 [io 0xec40-0xec5f]
|
|
[ 1.015018] pci 0000:00:1a.1: [8086:2938] type 00 class 0x0c0300 conventional PCI endpoint
|
|
[ 1.015061] pci 0000:00:1a.1: BAR 4 [io 0xec60-0xec7f]
|
|
[ 1.015157] pci 0000:00:1a.7: [8086:293c] type 00 class 0x0c0320 conventional PCI endpoint
|
|
[ 1.015201] pci 0000:00:1a.7: BAR 0 [mem 0xdf0ff800-0xdf0ffbff]
|
|
[ 1.015249] pci 0000:00:1a.7: PME# supported from D0 D3hot D3cold
|
|
[ 1.015341] pci 0000:00:1c.0: [8086:2940] type 01 class 0x060400 PCIe Root Port
|
|
[ 1.015364] pci 0000:00:1c.0: PCI bridge to [bus 03]
|
|
[ 1.015370] pci 0000:00:1c.0: bridge window [io 0xf000-0xffff]
|
|
[ 1.015374] pci 0000:00:1c.0: bridge window [mem 0xdf100000-0xdf2fffff]
|
|
[ 1.015437] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
|
|
[ 1.015578] pci 0000:00:1d.0: [8086:2934] type 00 class 0x0c0300 conventional PCI endpoint
|
|
[ 1.015621] pci 0000:00:1d.0: BAR 4 [io 0xec80-0xec9f]
|
|
[ 1.015713] pci 0000:00:1d.1: [8086:2935] type 00 class 0x0c0300 conventional PCI endpoint
|
|
[ 1.015758] pci 0000:00:1d.1: BAR 4 [io 0xeca0-0xecbf]
|
|
[ 1.015854] pci 0000:00:1d.7: [8086:293a] type 00 class 0x0c0320 conventional PCI endpoint
|
|
[ 1.015899] pci 0000:00:1d.7: BAR 0 [mem 0xdf0ffc00-0xdf0fffff]
|
|
[ 1.015948] pci 0000:00:1d.7: PME# supported from D0 D3hot D3cold
|
|
[ 1.016029] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401 conventional PCI bridge
|
|
[ 1.016053] pci 0000:00:1e.0: PCI bridge to [bus 06] (subtractive decode)
|
|
[ 1.016060] pci 0000:00:1e.0: bridge window [mem 0xde000000-0xdeffffff]
|
|
[ 1.016070] pci 0000:00:1e.0: bridge window [mem 0xd1800000-0xd1ffffff 64bit pref]
|
|
[ 1.016211] pci 0000:00:1f.0: [8086:2918] type 00 class 0x060100 conventional PCI endpoint
|
|
[ 1.016279] pci 0000:00:1f.0: quirk: [io 0x0800-0x087f] claimed by ICH6 ACPI/GPIO/TCO
|
|
[ 1.016287] pci 0000:00:1f.0: quirk: [io 0x0880-0x08bf] claimed by ICH6 GPIO
|
|
[ 1.016291] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 1 PIO at 0c00 (mask 007f)
|
|
[ 1.016295] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 2 PIO at 0ca0 (mask 000f)
|
|
[ 1.016299] pci 0000:00:1f.0: ICH7 LPC Generic IO decode 3 PIO at 00e0 (mask 000f)
|
|
[ 1.016502] pci 0000:01:00.0: [14e4:1639] type 00 class 0x020000 PCIe Endpoint
|
|
[ 1.016543] pci 0000:01:00.0: BAR 0 [mem 0xd2000000-0xd3ffffff 64bit]
|
|
[ 1.016622] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
|
|
[ 1.016776] pci 0000:01:00.1: [14e4:1639] type 00 class 0x020000 PCIe Endpoint
|
|
[ 1.016816] pci 0000:01:00.1: BAR 0 [mem 0xd4000000-0xd5ffffff 64bit]
|
|
[ 1.016896] pci 0000:01:00.1: PME# supported from D0 D3hot D3cold
|
|
[ 1.017035] pci 0000:00:01.0: PCI bridge to [bus 01]
|
|
[ 1.017101] pci 0000:02:00.0: [14e4:1639] type 00 class 0x020000 PCIe Endpoint
|
|
[ 1.017140] pci 0000:02:00.0: BAR 0 [mem 0xd6000000-0xd7ffffff 64bit]
|
|
[ 1.017220] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
|
|
[ 1.017371] pci 0000:02:00.1: [14e4:1639] type 00 class 0x020000 PCIe Endpoint
|
|
[ 1.017411] pci 0000:02:00.1: BAR 0 [mem 0xd8000000-0xd9ffffff 64bit]
|
|
[ 1.017490] pci 0000:02:00.1: PME# supported from D0 D3hot D3cold
|
|
[ 1.017625] pci 0000:00:03.0: PCI bridge to [bus 02]
|
|
[ 1.017690] pci 0000:04:00.0: [14e4:1639] type 00 class 0x020000 PCIe Endpoint
|
|
[ 1.017730] pci 0000:04:00.0: BAR 0 [mem 0xda000000-0xdbffffff 64bit]
|
|
[ 1.017808] pci 0000:04:00.0: PME# supported from D0 D3hot D3cold
|
|
[ 1.017954] pci 0000:04:00.1: [14e4:1639] type 00 class 0x020000 PCIe Endpoint
|
|
[ 1.017994] pci 0000:04:00.1: BAR 0 [mem 0xdc000000-0xddffffff 64bit]
|
|
[ 1.018073] pci 0000:04:00.1: PME# supported from D0 D3hot D3cold
|
|
[ 1.018208] pci 0000:00:07.0: PCI bridge to [bus 04]
|
|
[ 1.018259] pci 0000:00:09.0: PCI bridge to [bus 05]
|
|
[ 1.018316] pci 0000:00:1c.0: PCI bridge to [bus 03]
|
|
[ 1.018342] pci_bus 0000:06: extended config space not accessible
|
|
[ 1.018373] pci 0000:06:03.0: [102b:0532] type 00 class 0x030000 conventional PCI endpoint
|
|
[ 1.018417] pci 0000:06:03.0: BAR 0 [mem 0xd1800000-0xd1ffffff pref]
|
|
[ 1.018421] pci 0000:06:03.0: BAR 1 [mem 0xde7fc000-0xde7fffff]
|
|
[ 1.018425] pci 0000:06:03.0: BAR 2 [mem 0xde800000-0xdeffffff]
|
|
[ 1.018432] pci 0000:06:03.0: ROM [mem 0x00000000-0x0000ffff pref]
|
|
[ 1.018449] pci 0000:06:03.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
|
|
[ 1.018562] pci 0000:00:1e.0: PCI bridge to [bus 06] (subtractive decode)
|
|
[ 1.018573] pci 0000:00:1e.0: bridge window [io 0x0000-0x0cf7 window] (subtractive decode)
|
|
[ 1.018576] pci 0000:00:1e.0: bridge window [io 0x0d00-0xffff window] (subtractive decode)
|
|
[ 1.018579] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
|
|
[ 1.018581] pci 0000:00:1e.0: bridge window [mem 0xd0000000-0xfdffffff window] (subtractive decode)
|
|
[ 1.018584] pci 0000:00:1e.0: bridge window [mem 0xfed40000-0xfed44fff window] (subtractive decode)
|
|
[ 1.020515] ACPI: PCI: Interrupt link LK00 configured for IRQ 15
|
|
[ 1.020628] ACPI: PCI: Interrupt link LK01 configured for IRQ 14
|
|
[ 1.020738] ACPI: PCI: Interrupt link LK02 configured for IRQ 11
|
|
[ 1.020849] ACPI: PCI: Interrupt link LK03 configured for IRQ 10
|
|
[ 1.020963] ACPI: PCI: Interrupt link LK04 configured for IRQ 5
|
|
[ 1.021073] ACPI: PCI: Interrupt link LK05 configured for IRQ 6
|
|
[ 1.021186] ACPI: PCI: Interrupt link LK06 configured for IRQ 0
|
|
[ 1.021188] ACPI: PCI: Interrupt link LK06 disabled
|
|
[ 1.021302] ACPI: PCI: Interrupt link LK07 configured for IRQ 14
|
|
[ 1.021616] iommu: Default domain type: Translated
|
|
[ 1.021616] iommu: DMA domain TLB invalidation policy: lazy mode
|
|
[ 1.022741] SCSI subsystem initialized
|
|
[ 1.022779] libata version 3.00 loaded.
|
|
[ 1.022779] ACPI: bus type USB registered
|
|
[ 1.022779] usbcore: registered new interface driver usbfs
|
|
[ 1.022779] usbcore: registered new interface driver hub
|
|
[ 1.022779] usbcore: registered new device driver usb
|
|
[ 1.022779] pps_core: LinuxPPS API ver. 1 registered
|
|
[ 1.022779] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
|
|
[ 1.022779] PTP clock support registered
|
|
[ 1.023345] EDAC MC: Ver: 3.0.0
|
|
[ 1.023627] NetLabel: Initializing
|
|
[ 1.023629] NetLabel: domain hash size = 128
|
|
[ 1.023631] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
|
|
[ 1.023676] NetLabel: unlabeled traffic allowed by default
|
|
[ 1.024337] mctp: management component transport protocol core
|
|
[ 1.024337] NET: Registered PF_MCTP protocol family
|
|
[ 1.024342] PCI: Using ACPI for IRQ routing
|
|
[ 1.029719] PCI: Discovered peer bus fe
|
|
[ 1.029722] PCI: root bus fe: using default resources
|
|
[ 1.029724] PCI: Probing PCI hardware (bus fe)
|
|
[ 1.029779] PCI host bridge to bus 0000:fe
|
|
[ 1.029781] pci_bus 0000:fe: Unknown NUMA node; performance will be reduced
|
|
[ 1.029784] pci_bus 0000:fe: root bus resource [io 0x0000-0xffff]
|
|
[ 1.029787] pci_bus 0000:fe: root bus resource [mem 0x00000000-0xffffffffff]
|
|
[ 1.029790] pci_bus 0000:fe: No busn resource found for root bus, will use [bus fe-ff]
|
|
[ 1.029793] pci_bus 0000:fe: busn_res: can not insert [bus fe-ff] under domain [bus 00-ff] (conflicts with (null) [bus 00-ff])
|
|
[ 1.029812] pci 0000:fe:00.0: [8086:2c40] type 00 class 0x060000 conventional PCI endpoint
|
|
[ 1.029891] pci 0000:fe:00.1: [8086:2c01] type 00 class 0x060000 conventional PCI endpoint
|
|
[ 1.029961] pci 0000:fe:02.0: [8086:2c10] type 00 class 0x060000 conventional PCI endpoint
|
|
[ 1.030031] pci 0000:fe:02.1: [8086:2c11] type 00 class 0x060000 conventional PCI endpoint
|
|
[ 1.030098] pci 0000:fe:02.4: [8086:2c14] type 00 class 0x060000 conventional PCI endpoint
|
|
[ 1.030170] pci 0000:fe:02.5: [8086:2c15] type 00 class 0x060000 conventional PCI endpoint
|
|
[ 1.030239] pci 0000:fe:03.0: [8086:2c18] type 00 class 0x060000 conventional PCI endpoint
|
|
[ 1.030309] pci 0000:fe:03.1: [8086:2c19] type 00 class 0x060000 conventional PCI endpoint
|
|
[ 1.030383] pci 0000:fe:03.2: [8086:2c1a] type 00 class 0x060000 conventional PCI endpoint
|
|
[ 1.030452] pci 0000:fe:03.4: [8086:2c1c] type 00 class 0x060000 conventional PCI endpoint
|
|
[ 1.030519] pci 0000:fe:04.0: [8086:2c20] type 00 class 0x060000 conventional PCI endpoint
|
|
[ 1.030587] pci 0000:fe:04.1: [8086:2c21] type 00 class 0x060000 conventional PCI endpoint
|
|
[ 1.030656] pci 0000:fe:04.2: [8086:2c22] type 00 class 0x060000 conventional PCI endpoint
|
|
[ 1.030721] pci 0000:fe:04.3: [8086:2c23] type 00 class 0x060000 conventional PCI endpoint
|
|
[ 1.030789] pci 0000:fe:05.0: [8086:2c28] type 00 class 0x060000 conventional PCI endpoint
|
|
[ 1.030856] pci 0000:fe:05.1: [8086:2c29] type 00 class 0x060000 conventional PCI endpoint
|
|
[ 1.030930] pci 0000:fe:05.2: [8086:2c2a] type 00 class 0x060000 conventional PCI endpoint
|
|
[ 1.030996] pci 0000:fe:05.3: [8086:2c2b] type 00 class 0x060000 conventional PCI endpoint
|
|
[ 1.031066] pci 0000:fe:06.0: [8086:2c30] type 00 class 0x060000 conventional PCI endpoint
|
|
[ 1.031131] pci 0000:fe:06.1: [8086:2c31] type 00 class 0x060000 conventional PCI endpoint
|
|
[ 1.031196] pci 0000:fe:06.2: [8086:2c32] type 00 class 0x060000 conventional PCI endpoint
|
|
[ 1.031265] pci 0000:fe:06.3: [8086:2c33] type 00 class 0x060000 conventional PCI endpoint
|
|
[ 1.031348] pci_bus 0000:fe: busn_res: [bus fe-ff] end is updated to fe
|
|
[ 1.031352] pci_bus 0000:fe: busn_res: can not insert [bus fe] under domain [bus 00-ff] (conflicts with (null) [bus 00-ff])
|
|
[ 1.031364] PCI: Discovered peer bus ff
|
|
[ 1.031366] PCI: root bus ff: using default resources
|
|
[ 1.031368] PCI: Probing PCI hardware (bus ff)
|
|
[ 1.031400] PCI host bridge to bus 0000:ff
|
|
[ 1.031402] pci_bus 0000:ff: Unknown NUMA node; performance will be reduced
|
|
[ 1.031404] pci_bus 0000:ff: root bus resource [io 0x0000-0xffff]
|
|
[ 1.031407] pci_bus 0000:ff: root bus resource [mem 0x00000000-0xffffffffff]
|
|
[ 1.031410] pci_bus 0000:ff: No busn resource found for root bus, will use [bus ff-ff]
|
|
[ 1.031412] pci_bus 0000:ff: busn_res: can not insert [bus ff] under domain [bus 00-ff] (conflicts with (null) [bus 00-ff])
|
|
[ 1.031420] pci 0000:ff:00.0: [8086:2c40] type 00 class 0x060000 conventional PCI endpoint
|
|
[ 1.031488] pci 0000:ff:00.1: [8086:2c01] type 00 class 0x060000 conventional PCI endpoint
|
|
[ 1.031565] pci 0000:ff:02.0: [8086:2c10] type 00 class 0x060000 conventional PCI endpoint
|
|
[ 1.031628] pci 0000:ff:02.1: [8086:2c11] type 00 class 0x060000 conventional PCI endpoint
|
|
[ 1.031695] pci 0000:ff:02.4: [8086:2c14] type 00 class 0x060000 conventional PCI endpoint
|
|
[ 1.031757] pci 0000:ff:02.5: [8086:2c15] type 00 class 0x060000 conventional PCI endpoint
|
|
[ 1.031819] pci 0000:ff:03.0: [8086:2c18] type 00 class 0x060000 conventional PCI endpoint
|
|
[ 1.031885] pci 0000:ff:03.1: [8086:2c19] type 00 class 0x060000 conventional PCI endpoint
|
|
[ 1.031947] pci 0000:ff:03.2: [8086:2c1a] type 00 class 0x060000 conventional PCI endpoint
|
|
[ 1.032008] pci 0000:ff:03.4: [8086:2c1c] type 00 class 0x060000 conventional PCI endpoint
|
|
[ 1.032084] pci 0000:ff:04.0: [8086:2c20] type 00 class 0x060000 conventional PCI endpoint
|
|
[ 1.032150] pci 0000:ff:04.1: [8086:2c21] type 00 class 0x060000 conventional PCI endpoint
|
|
[ 1.032212] pci 0000:ff:04.2: [8086:2c22] type 00 class 0x060000 conventional PCI endpoint
|
|
[ 1.032277] pci 0000:ff:04.3: [8086:2c23] type 00 class 0x060000 conventional PCI endpoint
|
|
[ 1.032345] pci 0000:ff:05.0: [8086:2c28] type 00 class 0x060000 conventional PCI endpoint
|
|
[ 1.032408] pci 0000:ff:05.1: [8086:2c29] type 00 class 0x060000 conventional PCI endpoint
|
|
[ 1.032473] pci 0000:ff:05.2: [8086:2c2a] type 00 class 0x060000 conventional PCI endpoint
|
|
[ 1.032539] pci 0000:ff:05.3: [8086:2c2b] type 00 class 0x060000 conventional PCI endpoint
|
|
[ 1.032614] pci 0000:ff:06.0: [8086:2c30] type 00 class 0x060000 conventional PCI endpoint
|
|
[ 1.032680] pci 0000:ff:06.1: [8086:2c31] type 00 class 0x060000 conventional PCI endpoint
|
|
[ 1.032742] pci 0000:ff:06.2: [8086:2c32] type 00 class 0x060000 conventional PCI endpoint
|
|
[ 1.032804] pci 0000:ff:06.3: [8086:2c33] type 00 class 0x060000 conventional PCI endpoint
|
|
[ 1.032880] pci_bus 0000:ff: busn_res: [bus ff] end is updated to ff
|
|
[ 1.032884] pci_bus 0000:ff: busn_res: can not insert [bus ff] under domain [bus 00-ff] (conflicts with (null) [bus 00-ff])
|
|
[ 1.032896] PCI: pci_cache_line_size set to 64 bytes
|
|
[ 1.032981] e820: reserve RAM buffer [mem 0xcf679000-0xcfffffff]
|
|
[ 1.033298] pci 0000:06:03.0: vgaarb: setting as boot VGA device
|
|
[ 1.033302] pci 0000:06:03.0: vgaarb: bridge control possible
|
|
[ 1.033304] pci 0000:06:03.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
|
|
[ 1.033315] vgaarb: loaded
|
|
[ 1.033392] Monitor-Mwait will be used to enter C-1 state
|
|
[ 1.033397] Monitor-Mwait will be used to enter C-3 state
|
|
[ 1.035362] hpet: 4 channels of 0 reserved for per-cpu timers
|
|
[ 1.035367] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0
|
|
[ 1.035375] hpet0: 4 comparators, 64-bit 14.318180 MHz counter
|
|
[ 1.037346] clocksource: Switched to clocksource tsc-early
|
|
[ 1.040267] VFS: Disk quotas dquot_6.6.0
|
|
[ 1.040354] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
|
|
[ 1.040783] AppArmor: AppArmor Filesystem Enabled
|
|
[ 1.040812] pnp: PnP ACPI init
|
|
[ 1.043129] system 00:04: [io 0x0800-0x087f] has been reserved
|
|
[ 1.043135] system 00:04: [io 0x0880-0x08ff] could not be reserved
|
|
[ 1.043138] system 00:04: [io 0x0900-0x091f] has been reserved
|
|
[ 1.043141] system 00:04: [io 0x0920-0x0923] has been reserved
|
|
[ 1.043143] system 00:04: [io 0x0924] has been reserved
|
|
[ 1.043146] system 00:04: [io 0x0c00-0x0c7f] has been reserved
|
|
[ 1.043148] system 00:04: [io 0x0ca0-0x0ca7] has been reserved
|
|
[ 1.043151] system 00:04: [io 0x0ca9-0x0cab] has been reserved
|
|
[ 1.043154] system 00:04: [io 0x0cad-0x0caf] has been reserved
|
|
[ 1.043289] system 00:05: [io 0x0ca8] has been reserved
|
|
[ 1.043294] system 00:05: [io 0x0cac] has been reserved
|
|
[ 1.044291] system 00:07: [mem 0xe0000000-0xefffffff] has been reserved
|
|
[ 1.044407] system 00:08: [mem 0xfed90000-0xfed91fff] has been reserved
|
|
[ 1.044673] pnp: PnP ACPI: found 9 devices
|
|
[ 1.051803] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
|
|
[ 1.052206] NET: Registered PF_INET protocol family
|
|
[ 1.052678] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
|
|
[ 1.080543] tcp_listen_portaddr_hash hash table entries: 65536 (order: 8, 1048576 bytes, linear)
|
|
[ 1.080756] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
|
|
[ 1.081588] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, linear)
|
|
[ 1.082962] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
|
|
[ 1.083271] TCP: Hash tables configured (established 524288 bind 65536)
|
|
[ 1.084074] MPTCP token hash table entries: 65536 (order: 8, 1572864 bytes, linear)
|
|
[ 1.085205] UDP hash table entries: 65536 (order: 10, 4194304 bytes, linear)
|
|
[ 1.086838] UDP-Lite hash table entries: 65536 (order: 10, 4194304 bytes, linear)
|
|
[ 1.087917] NET: Registered PF_UNIX/PF_LOCAL protocol family
|
|
[ 1.087934] NET: Registered PF_XDP protocol family
|
|
[ 1.088197] pci 0000:00:01.0: PCI bridge to [bus 01]
|
|
[ 1.088207] pci 0000:00:01.0: bridge window [mem 0xd2000000-0xd5ffffff]
|
|
[ 1.088215] pci 0000:00:03.0: PCI bridge to [bus 02]
|
|
[ 1.088219] pci 0000:00:03.0: bridge window [mem 0xd6000000-0xd9ffffff]
|
|
[ 1.088227] pci 0000:00:07.0: PCI bridge to [bus 04]
|
|
[ 1.088231] pci 0000:00:07.0: bridge window [mem 0xda000000-0xddffffff]
|
|
[ 1.088238] pci 0000:00:09.0: PCI bridge to [bus 05]
|
|
[ 1.088248] pci 0000:00:1c.0: PCI bridge to [bus 03]
|
|
[ 1.088251] pci 0000:00:1c.0: bridge window [io 0xf000-0xffff]
|
|
[ 1.088256] pci 0000:00:1c.0: bridge window [mem 0xdf100000-0xdf2fffff]
|
|
[ 1.088266] pci 0000:00:1e.0: PCI bridge to [bus 06]
|
|
[ 1.088271] pci 0000:00:1e.0: bridge window [mem 0xde000000-0xdeffffff]
|
|
[ 1.088275] pci 0000:00:1e.0: bridge window [mem 0xd1800000-0xd1ffffff 64bit pref]
|
|
[ 1.088283] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
|
|
[ 1.088285] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
|
|
[ 1.088288] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
|
|
[ 1.088291] pci_bus 0000:00: resource 7 [mem 0xd0000000-0xfdffffff window]
|
|
[ 1.088294] pci_bus 0000:00: resource 8 [mem 0xfed40000-0xfed44fff window]
|
|
[ 1.088297] pci_bus 0000:01: resource 1 [mem 0xd2000000-0xd5ffffff]
|
|
[ 1.088299] pci_bus 0000:02: resource 1 [mem 0xd6000000-0xd9ffffff]
|
|
[ 1.088302] pci_bus 0000:04: resource 1 [mem 0xda000000-0xddffffff]
|
|
[ 1.088305] pci_bus 0000:03: resource 0 [io 0xf000-0xffff]
|
|
[ 1.088307] pci_bus 0000:03: resource 1 [mem 0xdf100000-0xdf2fffff]
|
|
[ 1.088309] pci_bus 0000:06: resource 1 [mem 0xde000000-0xdeffffff]
|
|
[ 1.088312] pci_bus 0000:06: resource 2 [mem 0xd1800000-0xd1ffffff 64bit pref]
|
|
[ 1.088314] pci_bus 0000:06: resource 4 [io 0x0000-0x0cf7 window]
|
|
[ 1.088317] pci_bus 0000:06: resource 5 [io 0x0d00-0xffff window]
|
|
[ 1.088319] pci_bus 0000:06: resource 6 [mem 0x000a0000-0x000bffff window]
|
|
[ 1.088321] pci_bus 0000:06: resource 7 [mem 0xd0000000-0xfdffffff window]
|
|
[ 1.088324] pci_bus 0000:06: resource 8 [mem 0xfed40000-0xfed44fff window]
|
|
[ 1.088378] pci_bus 0000:fe: resource 4 [io 0x0000-0xffff]
|
|
[ 1.088382] pci_bus 0000:fe: resource 5 [mem 0x00000000-0xffffffffff]
|
|
[ 1.088392] pci_bus 0000:ff: resource 4 [io 0x0000-0xffff]
|
|
[ 1.088395] pci_bus 0000:ff: resource 5 [mem 0x00000000-0xffffffffff]
|
|
[ 1.100647] pci 0000:00:1a.7: quirk_usb_early_handoff+0x0/0x740 took 10490 usecs
|
|
[ 1.102812] PCI: CLS 64 bytes, default 64
|
|
[ 1.102836] DMAR: Host address width 40
|
|
[ 1.102839] DMAR: DRHD base: 0x000000fed90000 flags: 0x1
|
|
[ 1.102852] DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap c90780106f0462 ecap f020f6
|
|
[ 1.102856] DMAR: RMRR base: 0x000000cf7c8000 end: 0x000000cf7dffff
|
|
[ 1.102859] DMAR: RMRR base: 0x000000cf7b1000 end: 0x000000cf7bffff
|
|
[ 1.102861] DMAR: RMRR base: 0x000000cf7a1000 end: 0x000000cf7a1fff
|
|
[ 1.102863] DMAR: RMRR base: 0x000000cf7a3000 end: 0x000000cf7a3fff
|
|
[ 1.102864] DMAR: RMRR base: 0x000000cf7a5000 end: 0x000000cf7a5fff
|
|
[ 1.102866] DMAR: RMRR base: 0x000000cf7a7000 end: 0x000000cf7a7fff
|
|
[ 1.102868] DMAR: RMRR base: 0x000000cf7c0000 end: 0x000000cf7c0fff
|
|
[ 1.102869] DMAR: RMRR base: 0x000000cf7c2000 end: 0x000000cf7c2fff
|
|
[ 1.102871] DMAR: ATSR flags: 0x0
|
|
[ 1.102909] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
|
|
[ 1.102911] software IO TLB: mapped [mem 0x00000000cb679000-0x00000000cf679000] (64MB)
|
|
[ 1.103011] Trying to unpack rootfs image as initramfs...
|
|
[ 1.147939] Initialise system trusted keyrings
|
|
[ 1.147966] Key type blacklist registered
|
|
[ 1.148196] workingset: timestamp_bits=36 max_order=25 bucket_order=0
|
|
[ 1.150578] squashfs: version 4.0 (2009/01/31) Phillip Lougher
|
|
[ 1.151555] fuse: init (API version 7.44)
|
|
[ 1.152283] integrity: Platform Keyring initialized
|
|
[ 1.152291] integrity: Machine keyring initialized
|
|
[ 1.172840] Key type asymmetric registered
|
|
[ 1.172850] Asymmetric key parser 'x509' registered
|
|
[ 1.172971] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 242)
|
|
[ 1.173151] io scheduler mq-deadline registered
|
|
[ 1.176556] ledtrig-cpu: registered to indicate activity on CPUs
|
|
[ 1.177238] pcieport 0000:00:01.0: PME: Signaling with IRQ 25
|
|
[ 1.177455] pcieport 0000:00:01.0: AER: enabled with IRQ 25
|
|
[ 1.178000] pcieport 0000:00:03.0: PME: Signaling with IRQ 26
|
|
[ 1.178182] pcieport 0000:00:03.0: AER: enabled with IRQ 26
|
|
[ 1.178793] pcieport 0000:00:07.0: PME: Signaling with IRQ 27
|
|
[ 1.178915] pcieport 0000:00:07.0: AER: enabled with IRQ 27
|
|
[ 1.179470] pcieport 0000:00:09.0: PME: Signaling with IRQ 28
|
|
[ 1.179588] pcieport 0000:00:09.0: AER: enabled with IRQ 28
|
|
[ 1.179699] pcieport 0000:00:1c.0: enabling device (0140 -> 0143)
|
|
[ 1.180121] pcieport 0000:00:1c.0: PME: Signaling with IRQ 29
|
|
[ 1.180601] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
|
|
[ 1.180714] ACPI: button: Power Button [PWRF]
|
|
[ 1.183443] ERST: Error Record Serialization Table (ERST) support is initialized.
|
|
[ 1.183551] pstore: Using crash dump compression: deflate
|
|
[ 1.183554] pstore: Registered erst as persistent store backend
|
|
[ 1.183867] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
|
|
[ 1.204605] 00:02: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
|
|
[ 1.227046] 00:03: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
|
|
[ 1.232466] Linux agpgart interface v0.103
|
|
[ 1.240475] loop: module loaded
|
|
[ 1.241044] ACPI: bus type drm_connector registered
|
|
[ 1.241469] tun: Universal TUN/TAP device driver, 1.6
|
|
[ 1.241576] PPP generic driver version 2.4.2
|
|
[ 1.241711] i8042: PNP: No PS/2 controller found.
|
|
[ 1.241713] i8042: Probing ports directly.
|
|
[ 1.244428] serio: i8042 KBD port at 0x60,0x64 irq 1
|
|
[ 1.244442] serio: i8042 AUX port at 0x60,0x64 irq 12
|
|
[ 1.244684] mousedev: PS/2 mouse device common for all mice
|
|
[ 1.244876] rtc_cmos 00:01: RTC can wake from S4
|
|
[ 1.245258] rtc_cmos 00:01: registered as rtc0
|
|
[ 1.245361] rtc_cmos 00:01: setting system clock to 2026-07-26T21:17:56 UTC (1785100676)
|
|
[ 1.245429] rtc_cmos 00:01: alarms up to one day, y3k, 242 bytes nvram, hpet irqs
|
|
[ 1.245451] i2c_dev: i2c /dev entries driver
|
|
[ 1.246132] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
|
|
[ 1.246196] device-mapper: uevent: version 1.0.3
|
|
[ 1.246377] device-mapper: ioctl: 4.50.0-ioctl (2025-04-28) initialised: dm-devel@lists.linux.dev
|
|
[ 1.246386] intel_pstate: CPU model not supported
|
|
[ 1.246604] drop_monitor: Initializing network drop monitor service
|
|
[ 1.247037] NET: Registered PF_INET6 protocol family
|
|
[ 1.248062] Segment Routing with IPv6
|
|
[ 1.248078] In-situ OAM (IOAM) with IPv6
|
|
[ 1.248125] NET: Registered PF_PACKET protocol family
|
|
[ 1.248191] Bridge firewalling registered
|
|
[ 1.248306] Key type dns_resolver registered
|
|
[ 1.249884] microcode: Current revision: 0x0000001d
|
|
[ 1.249888] microcode: Updated early from: 0x00000011
|
|
[ 1.250318] IPI shorthand broadcast: enabled
|
|
[ 1.253494] sched_clock: Marking stable (1248038260, 5304736)->(1301406845, -48063849)
|
|
[ 1.253929] registered taskstats version 1
|
|
[ 1.255653] Loading compiled-in X.509 certificates
|
|
[ 1.256928] Loaded X.509 cert 'Build time autogenerated kernel key: 1972ce5ed58caf3670591749a618c1148b955a05'
|
|
[ 1.265008] Demotion targets for Node 0: null
|
|
[ 1.265612] Key type .fscrypt registered
|
|
[ 1.265615] Key type fscrypt-provisioning registered
|
|
[ 1.265827] Key type big_key registered
|
|
[ 2.136376] tsc: Refined TSC clocksource calibration: 2393.999 MHz
|
|
[ 2.136400] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x22821267f49, max_idle_ns: 440795240327 ns
|
|
[ 2.140634] clocksource: Switched to clocksource tsc
|
|
[ 2.182994] Freeing initrd memory: 87628K
|
|
[ 2.207149] Key type encrypted registered
|
|
[ 2.207155] AppArmor: AppArmor sha256 policy hashing enabled
|
|
[ 2.207187] ima: No TPM chip found, activating TPM-bypass!
|
|
[ 2.207197] Loading compiled-in module X.509 certificates
|
|
[ 2.208263] Loaded X.509 cert 'Build time autogenerated kernel key: 1972ce5ed58caf3670591749a618c1148b955a05'
|
|
[ 2.208268] ima: Allocated hash algorithm: sha256
|
|
[ 2.208295] ima: No architecture policies found
|
|
[ 2.208327] evm: Initialising EVM extended attributes:
|
|
[ 2.208329] evm: security.selinux
|
|
[ 2.208330] evm: security.SMACK64
|
|
[ 2.208332] evm: security.SMACK64EXEC
|
|
[ 2.208334] evm: security.SMACK64TRANSMUTE
|
|
[ 2.208335] evm: security.SMACK64MMAP
|
|
[ 2.208336] evm: security.apparmor
|
|
[ 2.208338] evm: security.ima
|
|
[ 2.208339] evm: security.capability
|
|
[ 2.208340] evm: HMAC attrs: 0x1
|
|
[ 2.208900] PM: Magic number: 2:908:298
|
|
[ 2.215249] RAS: Correctable Errors collector initialized.
|
|
[ 2.223785] clk: Disabling unused clocks
|
|
[ 2.223789] PM: genpd: Disabling unused power domains
|
|
[ 2.227018] Freeing unused decrypted memory: 2028K
|
|
[ 2.228784] Freeing unused kernel image (initmem) memory: 4948K
|
|
[ 2.229073] Write protecting the kernel read-only data: 38912k
|
|
[ 2.230345] Freeing unused kernel image (text/rodata gap) memory: 1140K
|
|
[ 2.231291] Freeing unused kernel image (rodata/data gap) memory: 1444K
|
|
[ 2.302600] x86/mm: Checked W+X mappings: passed, no W+X pages found.
|
|
[ 2.302845] x86/mm: Checking user space page tables
|
|
[ 2.367408] x86/mm: Checked W+X mappings: passed, no W+X pages found.
|
|
[ 2.367431] Run /init as init process
|
|
[ 2.367433] with arguments:
|
|
[ 2.367436] /init
|
|
[ 2.367438] with environment:
|
|
[ 2.367439] HOME=/
|
|
[ 2.367440] TERM=linux
|
|
[ 2.367442] BOOT_IMAGE=/boot/vmlinuz-6.17.2-1-pve
|
|
[ 2.664751] bnx2 0000:01:00.0 eth0: Broadcom NetXtreme II BCM5709 1000Base-T (C0) PCI Express found at mem d2000000, IRQ 30, node addr 00:21:9b:a2:7c:53
|
|
[ 2.666001] bnx2 0000:01:00.1 eth1: Broadcom NetXtreme II BCM5709 1000Base-T (C0) PCI Express found at mem d4000000, IRQ 31, node addr 00:21:9b:a2:7c:55
|
|
[ 2.666642] ehci-pci 0000:00:1a.7: EHCI Host Controller
|
|
[ 2.666663] ehci-pci 0000:00:1a.7: new USB bus registered, assigned bus number 1
|
|
[ 2.666690] ehci-pci 0000:00:1a.7: debug port 1
|
|
[ 2.667136] bnx2 0000:02:00.0 eth2: Broadcom NetXtreme II BCM5709 1000Base-T (C0) PCI Express found at mem d6000000, IRQ 32, node addr 00:21:9b:a2:7c:57
|
|
[ 2.667871] bnx2 0000:02:00.1 eth3: Broadcom NetXtreme II BCM5709 1000Base-T (C0) PCI Express found at mem d8000000, IRQ 33, node addr 00:21:9b:a2:7c:59
|
|
[ 2.668664] bnx2 0000:04:00.0 eth4: Broadcom NetXtreme II BCM5709 1000Base-T (C0) PCI Express found at mem da000000, IRQ 34, node addr 00:10:18:72:16:40
|
|
[ 2.669403] bnx2 0000:04:00.1 eth5: Broadcom NetXtreme II BCM5709 1000Base-T (C0) PCI Express found at mem dc000000, IRQ 35, node addr 00:10:18:72:16:42
|
|
[ 2.670671] ehci-pci 0000:00:1a.7: irq 19, io mem 0xdf0ff800
|
|
[ 2.676318] ehci-pci 0000:00:1a.7: USB 2.0 started, EHCI 1.00
|
|
[ 2.676415] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.17
|
|
[ 2.676419] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
|
|
[ 2.676422] usb usb1: Product: EHCI Host Controller
|
|
[ 2.676424] usb usb1: Manufacturer: Linux 6.17.2-1-pve ehci_hcd
|
|
[ 2.676426] usb usb1: SerialNumber: 0000:00:1a.7
|
|
[ 2.676627] hub 1-0:1.0: USB hub found
|
|
[ 2.676650] hub 1-0:1.0: 4 ports detected
|
|
[ 2.676885] ehci-pci 0000:00:1d.7: EHCI Host Controller
|
|
[ 2.676904] ehci-pci 0000:00:1d.7: new USB bus registered, assigned bus number 2
|
|
[ 2.676929] ehci-pci 0000:00:1d.7: debug port 1
|
|
[ 2.680884] ehci-pci 0000:00:1d.7: irq 21, io mem 0xdf0ffc00
|
|
[ 2.686397] ehci-pci 0000:00:1d.7: USB 2.0 started, EHCI 1.00
|
|
[ 2.686539] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.17
|
|
[ 2.686543] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
|
|
[ 2.686546] usb usb2: Product: EHCI Host Controller
|
|
[ 2.686547] usb usb2: Manufacturer: Linux 6.17.2-1-pve ehci_hcd
|
|
[ 2.686549] usb usb2: SerialNumber: 0000:00:1d.7
|
|
[ 2.686822] hub 2-0:1.0: USB hub found
|
|
[ 2.686848] hub 2-0:1.0: 4 ports detected
|
|
[ 2.691975] uhci_hcd 0000:00:1a.0: UHCI Host Controller
|
|
[ 2.691985] uhci_hcd 0000:00:1a.0: new USB bus registered, assigned bus number 3
|
|
[ 2.691994] uhci_hcd 0000:00:1a.0: detected 2 ports
|
|
[ 2.692043] uhci_hcd 0000:00:1a.0: irq 17, io port 0x0000ec40
|
|
[ 2.692137] usb usb3: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.17
|
|
[ 2.692141] usb usb3: New USB device strings: Mfr=3, Product=2, SerialNumber=1
|
|
[ 2.692143] usb usb3: Product: UHCI Host Controller
|
|
[ 2.692145] usb usb3: Manufacturer: Linux 6.17.2-1-pve uhci_hcd
|
|
[ 2.692147] usb usb3: SerialNumber: 0000:00:1a.0
|
|
[ 2.692321] hub 3-0:1.0: USB hub found
|
|
[ 2.692341] hub 3-0:1.0: 2 ports detected
|
|
[ 2.692976] uhci_hcd 0000:00:1a.1: UHCI Host Controller
|
|
[ 2.692983] uhci_hcd 0000:00:1a.1: new USB bus registered, assigned bus number 4
|
|
[ 2.692990] uhci_hcd 0000:00:1a.1: detected 2 ports
|
|
[ 2.693034] uhci_hcd 0000:00:1a.1: irq 18, io port 0x0000ec60
|
|
[ 2.693100] usb usb4: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.17
|
|
[ 2.693104] usb usb4: New USB device strings: Mfr=3, Product=2, SerialNumber=1
|
|
[ 2.693106] usb usb4: Product: UHCI Host Controller
|
|
[ 2.693108] usb usb4: Manufacturer: Linux 6.17.2-1-pve uhci_hcd
|
|
[ 2.693110] usb usb4: SerialNumber: 0000:00:1a.1
|
|
[ 2.693242] hub 4-0:1.0: USB hub found
|
|
[ 2.693253] hub 4-0:1.0: 2 ports detected
|
|
[ 2.693736] uhci_hcd 0000:00:1d.0: UHCI Host Controller
|
|
[ 2.693744] uhci_hcd 0000:00:1d.0: new USB bus registered, assigned bus number 5
|
|
[ 2.693751] uhci_hcd 0000:00:1d.0: detected 2 ports
|
|
[ 2.693783] uhci_hcd 0000:00:1d.0: irq 21, io port 0x0000ec80
|
|
[ 2.693855] usb usb5: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.17
|
|
[ 2.693859] usb usb5: New USB device strings: Mfr=3, Product=2, SerialNumber=1
|
|
[ 2.693861] usb usb5: Product: UHCI Host Controller
|
|
[ 2.693863] usb usb5: Manufacturer: Linux 6.17.2-1-pve uhci_hcd
|
|
[ 2.693865] usb usb5: SerialNumber: 0000:00:1d.0
|
|
[ 2.694004] hub 5-0:1.0: USB hub found
|
|
[ 2.694021] hub 5-0:1.0: 2 ports detected
|
|
[ 2.694529] uhci_hcd 0000:00:1d.1: UHCI Host Controller
|
|
[ 2.694536] uhci_hcd 0000:00:1d.1: new USB bus registered, assigned bus number 6
|
|
[ 2.694543] uhci_hcd 0000:00:1d.1: detected 2 ports
|
|
[ 2.694592] uhci_hcd 0000:00:1d.1: irq 20, io port 0x0000eca0
|
|
[ 2.694656] usb usb6: New USB device found, idVendor=1d6b, idProduct=0001, bcdDevice= 6.17
|
|
[ 2.694659] usb usb6: New USB device strings: Mfr=3, Product=2, SerialNumber=1
|
|
[ 2.694661] usb usb6: Product: UHCI Host Controller
|
|
[ 2.694664] usb usb6: Manufacturer: Linux 6.17.2-1-pve uhci_hcd
|
|
[ 2.694665] usb usb6: SerialNumber: 0000:00:1d.1
|
|
[ 2.694793] hub 6-0:1.0: USB hub found
|
|
[ 2.694805] hub 6-0:1.0: 2 ports detected
|
|
[ 2.703112] bnx2 0000:01:00.0 eno1: renamed from eth0
|
|
[ 2.703786] bnx2 0000:01:00.1 eno2: renamed from eth1
|
|
[ 2.706012] bnx2 0000:02:00.0 eno3: renamed from eth2
|
|
[ 2.707521] bnx2 0000:02:00.1 eno4: renamed from eth3
|
|
[ 2.708993] bnx2 0000:04:00.0 enp4s0f0: renamed from eth4
|
|
[ 2.710440] bnx2 0000:04:00.1 enp4s0f1: renamed from eth5
|
|
[ 2.710859] gpio_ich gpio_ich.2.auto: GPIO from 512 to 572
|
|
[ 2.912428] usb 1-3: new high-speed USB device number 2 using ehci-pci
|
|
[ 2.983439] random: crng init done
|
|
[ 3.037900] usb 1-3: New USB device found, idVendor=0424, idProduct=2514, bcdDevice= 0.00
|
|
[ 3.037908] usb 1-3: New USB device strings: Mfr=0, Product=0, SerialNumber=0
|
|
[ 3.038191] hub 1-3:1.0: USB hub found
|
|
[ 3.038469] hub 1-3:1.0: 3 ports detected
|
|
[ 3.048471] usb 5-1: new low-speed USB device number 2 using uhci_hcd
|
|
[ 3.090311] raid6: sse2x4 gen() 9594 MB/s
|
|
[ 3.107309] raid6: sse2x2 gen() 8657 MB/s
|
|
[ 3.124308] raid6: sse2x1 gen() 8153 MB/s
|
|
[ 3.124310] raid6: using algorithm sse2x4 gen() 9594 MB/s
|
|
[ 3.141309] raid6: .... xor() 4257 MB/s, rmw enabled
|
|
[ 3.141311] raid6: using ssse3x2 recovery algorithm
|
|
[ 3.145168] xor: measuring software checksum speed
|
|
[ 3.145419] prefetch64-sse : 13247 MB/sec
|
|
[ 3.145704] generic_sse : 11646 MB/sec
|
|
[ 3.145705] xor: using function: prefetch64-sse (13247 MB/sec)
|
|
[ 3.248447] usb 5-1: New USB device found, idVendor=10d5, idProduct=5a08, bcdDevice= 0.00
|
|
[ 3.248459] usb 5-1: New USB device strings: Mfr=1, Product=2, SerialNumber=0
|
|
[ 3.248461] usb 5-1: Product: KVM
|
|
[ 3.248464] usb 5-1: Manufacturer: No brand
|
|
[ 3.318267] hid: raw HID events driver (C) Jiri Kosina
|
|
[ 3.321335] usb 1-3.2: new high-speed USB device number 3 using ehci-pci
|
|
[ 3.337965] Btrfs loaded, zoned=yes, fsverity=yes
|
|
[ 3.357644] usbcore: registered new interface driver usbhid
|
|
[ 3.357648] usbhid: USB HID core driver
|
|
[ 3.361319] usbcore: registered new interface driver usbkbd
|
|
[ 3.361648] usbcore: registered new interface driver usbmouse
|
|
[ 3.367106] input: No brand KVM as /devices/pci0000:00/0000:00:1d.0/usb5/5-1/5-1:1.0/0003:10D5:5A08.0001/input/input4
|
|
[ 3.417746] hid-generic 0003:10D5:5A08.0001: input,hidraw0: USB HID v1.10 Keyboard [No brand KVM] on usb-0000:00:1d.0-1/input0
|
|
[ 3.418011] input: No brand KVM Mouse as /devices/pci0000:00/0000:00:1d.0/usb5/5-1/5-1:1.1/0003:10D5:5A08.0002/input/input5
|
|
[ 3.418170] input: No brand KVM System Control as /devices/pci0000:00/0000:00:1d.0/usb5/5-1/5-1:1.1/0003:10D5:5A08.0002/input/input6
|
|
[ 3.463531] usb 1-3.2: New USB device found, idVendor=1058, idProduct=260d, bcdDevice=20.07
|
|
[ 3.463539] usb 1-3.2: New USB device strings: Mfr=2, Product=3, SerialNumber=1
|
|
[ 3.463544] usb 1-3.2: Product: My Passport 260D
|
|
[ 3.463547] usb 1-3.2: Manufacturer: Western Digital
|
|
[ 3.463550] usb 1-3.2: SerialNumber: 57584C324132333258355258
|
|
[ 3.468550] input: No brand KVM Consumer Control as /devices/pci0000:00/0000:00:1d.0/usb5/5-1/5-1:1.1/0003:10D5:5A08.0002/input/input7
|
|
[ 3.468996] hid-generic 0003:10D5:5A08.0002: input,hidraw1: USB HID v1.10 Mouse [No brand KVM] on usb-0000:00:1d.0-1/input1
|
|
[ 3.470985] usb-storage 1-3.2:1.0: USB Mass Storage device detected
|
|
[ 3.471296] scsi host0: usb-storage 1-3.2:1.0
|
|
[ 3.471567] usbcore: registered new interface driver usb-storage
|
|
[ 3.474355] usbcore: registered new interface driver uas
|
|
[ 3.937453] usb 5-2: new full-speed USB device number 3 using uhci_hcd
|
|
[ 4.094508] usb 5-2: New USB device found, idVendor=0624, idProduct=0248, bcdDevice= 0.00
|
|
[ 4.094517] usb 5-2: New USB device strings: Mfr=1, Product=2, SerialNumber=3
|
|
[ 4.094521] usb 5-2: Product: USB Composite Device-0
|
|
[ 4.094525] usb 5-2: Manufacturer: Avocent
|
|
[ 4.094528] usb 5-2: SerialNumber: 20080519
|
|
[ 4.113840] input: Avocent USB Composite Device-0 as /devices/pci0000:00/0000:00:1d.0/usb5/5-2/5-2:1.0/0003:0624:0248.0003/input/input8
|
|
[ 4.164954] hid-generic 0003:0624:0248.0003: input,hidraw2: USB HID v1.00 Keyboard [Avocent USB Composite Device-0] on usb-0000:00:1d.0-2/input0
|
|
[ 4.171772] input: Avocent USB Composite Device-0 as /devices/pci0000:00/0000:00:1d.0/usb5/5-2/5-2:1.1/0003:0624:0248.0004/input/input9
|
|
[ 4.172459] hid-generic 0003:0624:0248.0004: input,hidraw3: USB HID v1.00 Mouse [Avocent USB Composite Device-0] on usb-0000:00:1d.0-2/input1
|
|
[ 4.506561] scsi 0:0:0:0: Direct-Access WD My Passport 260D 2007 PQ: 0 ANSI: 6
|
|
[ 4.508185] scsi 0:0:0:1: Enclosure WD SES Device 2007 PQ: 0 ANSI: 6
|
|
[ 4.522254] sd 0:0:0:0: Attached scsi generic sg0 type 0
|
|
[ 4.522477] scsi 0:0:0:1: Attached scsi generic sg1 type 13
|
|
[ 8.174880] sd 0:0:0:0: [sda] 3906963456 512-byte logical blocks: (2.00 TB/1.82 TiB)
|
|
[ 8.176324] sd 0:0:0:0: [sda] Write Protect is off
|
|
[ 8.176329] sd 0:0:0:0: [sda] Mode Sense: 3f 00 10 00
|
|
[ 8.177492] sd 0:0:0:0: [sda] No Caching mode page found
|
|
[ 8.177502] sd 0:0:0:0: [sda] Assuming drive cache: write through
|
|
[ 8.218132] sda: sda1 sda2 sda3
|
|
[ 8.218609] sd 0:0:0:0: [sda] Attached SCSI disk
|
|
[ 9.921073] device-mapper: thin: Data device (dm-3) discard unsupported: Disabling discard passdown.
|
|
[ 10.375995] EXT4-fs (dm-1): orphan cleanup on readonly fs
|
|
[ 10.376489] EXT4-fs (dm-1): mounted filesystem 8f69bbb5-3cdd-4b0b-97d0-f1c2541d8e83 ro with ordered data mode. Quota mode: none.
|
|
[ 12.984065] systemd[1]: Inserted module 'autofs4'
|
|
[ 13.122197] ERST: NVRAM ERST Log Address Range not implemented yet.
|
|
[ 13.355412] systemd[1]: systemd 257.13-1~deb13u1 running in system mode (+PAM +AUDIT +SELINUX +APPARMOR +IMA +IPE +SMACK +SECCOMP +GCRYPT -GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN +IPTC +KMOD +LIBCRYPTSETUP +LIBCRYPTSETUP_PLUGINS +LIBFDISK +PCRE2 +PWQUALITY +P11KIT +QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD +BPF_FRAMEWORK +BTF -XKBCOMMON -UTMP +SYSVINIT +LIBARCHIVE)
|
|
[ 13.355423] systemd[1]: Detected architecture x86-64.
|
|
[ 13.456668] systemd[1]: Hostname set to <pfv-tsys6>.
|
|
[ 13.642139] systemd[1]: bpf-restrict-fs: BPF LSM hook not enabled in the kernel, BPF LSM not supported.
|
|
[ 16.259531] systemd[1]: Queued start job for default target graphical.target.
|
|
[ 16.330467] systemd[1]: Created slice system-getty.slice - Slice /system/getty.
|
|
[ 16.331522] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
|
|
[ 16.333360] systemd[1]: Created slice system-xfs_scrub.slice - xfs_scrub background service slice.
|
|
[ 16.334128] systemd[1]: Created slice user.slice - User and Session Slice.
|
|
[ 16.334231] systemd[1]: Started systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch.
|
|
[ 16.334325] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
|
|
[ 16.334651] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
|
|
[ 16.334695] systemd[1]: Expecting device dev-pve-swap.device - /dev/pve/swap...
|
|
[ 16.334721] systemd[1]: Reached target ceph-fuse.target - ceph target allowing to start/stop all ceph-fuse@.service instances at once.
|
|
[ 16.334747] systemd[1]: Reached target ceph.target - ceph target allowing to start/stop all ceph*@.service instances at once.
|
|
[ 16.334796] systemd[1]: Reached target network-pre.target - Preparation for Network.
|
|
[ 16.334826] systemd[1]: Reached target paths.target - Path Units.
|
|
[ 16.334874] systemd[1]: Reached target slices.target - Slice Units.
|
|
[ 16.335702] systemd[1]: Listening on dm-event.socket - Device-mapper event daemon FIFOs.
|
|
[ 16.335827] systemd[1]: Listening on lvm2-lvmpolld.socket - LVM2 poll daemon socket.
|
|
[ 16.342087] systemd[1]: Listening on rpcbind.socket - RPCbind Server Activation Socket.
|
|
[ 16.344117] systemd[1]: Listening on systemd-creds.socket - Credential Encryption/Decryption.
|
|
[ 16.344258] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
|
|
[ 16.344451] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
|
|
[ 16.344624] systemd[1]: Listening on systemd-journald.socket - Journal Sockets.
|
|
[ 16.344687] systemd[1]: systemd-pcrextend.socket - TPM PCR Measurements skipped, unmet condition check ConditionSecurity=measured-uki
|
|
[ 16.344720] systemd[1]: systemd-pcrlock.socket - Make TPM PCR Policy skipped, unmet condition check ConditionSecurity=measured-uki
|
|
[ 16.344868] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
|
|
[ 16.344977] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
|
|
[ 16.360041] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
|
|
[ 16.361741] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
|
|
[ 16.361834] systemd[1]: run-lock.mount: Directory /run/lock to mount over is not empty, mounting anyway.
|
|
[ 16.363268] systemd[1]: Mounting run-lock.mount - Legacy Locks Directory /run/lock...
|
|
[ 16.364775] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
|
|
[ 16.366259] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
|
|
[ 16.366350] systemd[1]: auth-rpcgss-module.service - Kernel Module supporting RPCSEC_GSS skipped, unmet condition check ConditionPathExists=/etc/krb5.keytab
|
|
[ 16.378667] systemd[1]: Starting keyboard-setup.service - Set the console keyboard layout...
|
|
[ 16.398235] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
|
|
[ 16.399982] systemd[1]: Starting lvm2-monitor.service - Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
|
|
[ 16.401447] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
|
|
[ 16.402936] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...
|
|
[ 16.404495] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
|
|
[ 16.406066] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
|
|
[ 16.406442] systemd[1]: systemd-fsck-root.service - File System Check on Root Device skipped, unmet condition check ConditionPathExists=!/run/initramfs/fsck-root
|
|
[ 16.406500] systemd[1]: systemd-hibernate-clear.service - Clear Stale Hibernate Storage Info skipped, unmet condition check ConditionPathExists=/sys/firmware/efi/efivars/HibernateLocation-8cf2644b-4b0b-428f-9387-6d876050dc67
|
|
[ 16.410221] systemd[1]: Starting systemd-journald.service - Journal Service...
|
|
[ 16.582826] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
|
|
[ 16.582868] systemd[1]: systemd-pcrmachine.service - TPM PCR Machine ID Measurement skipped, unmet condition check ConditionSecurity=measured-uki
|
|
[ 16.584486] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
|
|
[ 16.584558] systemd[1]: systemd-tpm2-setup-early.service - Early TPM SRK Setup skipped, unmet condition check ConditionSecurity=measured-uki
|
|
[ 16.585975] systemd[1]: Starting systemd-udev-load-credentials.service - Load udev Rules from Credentials...
|
|
[ 16.587660] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
|
|
[ 16.610680] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
|
|
[ 16.611289] systemd[1]: modprobe@configfs.service: Deactivated successfully.
|
|
[ 16.611594] systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs.
|
|
[ 16.612061] systemd[1]: modprobe@drm.service: Deactivated successfully.
|
|
[ 16.612348] systemd[1]: Finished modprobe@drm.service - Load Kernel Module drm.
|
|
[ 16.613291] systemd[1]: modprobe@fuse.service: Deactivated successfully.
|
|
[ 16.613579] systemd[1]: Finished modprobe@fuse.service - Load Kernel Module fuse.
|
|
[ 16.615570] systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System...
|
|
[ 16.617143] systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System...
|
|
[ 16.618878] systemd[1]: Starting systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully...
|
|
[ 16.622640] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
|
|
[ 16.622938] systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore.
|
|
[ 17.053533] systemd-journald[443]: Collecting audit messages is disabled.
|
|
[ 17.321721] systemd[1]: Finished systemd-udev-load-credentials.service - Load udev Rules from Credentials.
|
|
[ 17.468705] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
|
|
[ 17.468897] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
|
|
[ 17.469054] systemd[1]: Mounted run-lock.mount - Legacy Locks Directory /run/lock.
|
|
[ 17.469211] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
|
|
[ 17.469394] systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
|
|
[ 17.469851] systemd[1]: Finished keyboard-setup.service - Set the console keyboard layout.
|
|
[ 17.470053] systemd[1]: Mounted sys-fs-fuse-connections.mount - FUSE Control File System.
|
|
[ 17.470207] systemd[1]: Mounted sys-kernel-config.mount - Kernel Configuration File System.
|
|
[ 17.501590] EXT4-fs (dm-1): re-mounted 8f69bbb5-3cdd-4b0b-97d0-f1c2541d8e83 r/w.
|
|
[ 17.503009] systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems.
|
|
[ 17.512527] systemd[1]: systemd-hwdb-update.service - Rebuild Hardware Database skipped, unmet condition check ConditionNeedsUpdate=/etc
|
|
[ 17.512599] systemd[1]: systemd-pstore.service - Platform Persistent Storage Archival skipped, unmet condition check ConditionDirectoryNotEmpty=/sys/fs/pstore
|
|
[ 17.514491] systemd[1]: Starting systemd-random-seed.service - Load/Save OS Random Seed...
|
|
[ 17.514521] systemd[1]: systemd-tpm2-setup.service - TPM SRK Setup skipped, unmet condition check ConditionSecurity=measured-uki
|
|
[ 17.519814] systemd[1]: Finished systemd-udev-trigger.service - Coldplug All udev Devices.
|
|
[ 17.600470] systemd[1]: Starting ifupdown2-pre.service - Helper to synchronize boot up for ifupdown...
|
|
[ 17.601911] systemd[1]: Starting systemd-udev-settle.service - Wait for udev To Complete Device Initialization...
|
|
[ 17.603323] systemd[1]: Started systemd-journald.service - Journal Service.
|
|
[ 17.746764] systemd-journald[443]: Received client request to flush runtime journal.
|
|
[ 18.632498] spl: loading out-of-tree module taints kernel.
|
|
[ 20.289638] zfs: module license 'CDDL' taints kernel.
|
|
[ 20.289646] Disabling lock debugging due to kernel taint
|
|
[ 20.289683] zfs: module license taints kernel.
|
|
[ 21.376243] ZFS: Loaded module v2.3.4-pve1, ZFS pool version 5000, ZFS filesystem version 5
|
|
[ 22.517834] IPMI message handler: version 39.2
|
|
[ 22.863567] ipmi device interface
|
|
[ 23.106205] ipmi_si: IPMI System Interface driver
|
|
[ 23.106245] ipmi_si dmi-ipmi-si.0: ipmi_platform: probing via SMBIOS
|
|
[ 23.106249] ipmi_platform: ipmi_si: SMBIOS: io 0xca8 regsize 1 spacing 4 irq 0
|
|
[ 23.106253] ipmi_si: Adding SMBIOS-specified kcs state machine
|
|
[ 23.106395] ipmi_si: Trying SMBIOS-specified kcs state machine at i/o address 0xca8, slave address 0x20, irq 0
|
|
[ 23.198436] ipmi_si dmi-ipmi-si.0: IPMI message handler: Found new BMC (man_id: 0x0002a2, prod_id: 0x0100, dev_id: 0x20)
|
|
[ 23.250467] ipmi_si dmi-ipmi-si.0: IPMI kcs interface initialized
|
|
[ 23.416268] EDAC MC1: Giving out device to module i7core_edac.c controller i7 core #1: DEV 0000:fe:03.0 (INTERRUPT)
|
|
[ 23.416312] EDAC PCI0: Giving out device to module i7core_edac controller EDAC PCI controller: DEV 0000:fe:03.0 (POLLED)
|
|
[ 23.416398] EDAC MC0: Giving out device to module i7core_edac.c controller i7 core #0: DEV 0000:ff:03.0 (INTERRUPT)
|
|
[ 23.416416] EDAC PCI1: Giving out device to module i7core_edac controller EDAC PCI controller: DEV 0000:ff:03.0 (POLLED)
|
|
[ 23.416430] EDAC i7core: Driver loaded, 2 memory controller(s) found.
|
|
[ 23.846716] input: PC Speaker as /devices/platform/pcspkr/input/input10
|
|
[ 23.860260] ipmi_ssif: IPMI SSIF Interface driver
|
|
[ 24.341903] bnx2 0000:01:00.1 nic1: renamed from eno2
|
|
[ 24.342239] bnx2 0000:01:00.0 nic0: renamed from eno1
|
|
[ 24.342571] bnx2 0000:02:00.1 nic3: renamed from eno4
|
|
[ 24.342770] bnx2 0000:02:00.0 nic2: renamed from eno3
|
|
[ 24.473859] bnx2 0000:04:00.1 nic5: renamed from enp4s0f1
|
|
[ 24.474096] bnx2 0000:04:00.0 nic4: renamed from enp4s0f0
|
|
[ 24.841346] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.4)
|
|
[ 25.100844] mgag200 0000:06:03.0: vgaarb: deactivate vga console
|
|
[ 25.102030] Console: switching to colour dummy device 80x25
|
|
[ 25.105074] mgag200 0000:06:03.0: [drm] Registered 1 planes with drm panic
|
|
[ 25.105078] [drm] Initialized mgag200 1.0.0 for 0000:06:03.0 on minor 0
|
|
[ 25.106767] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 25.140474] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 25.141292] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 25.173537] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 25.239867] EDID block 0 (tag 0x00) checksum is invalid, remainder is 81
|
|
[ 25.239871] [00] BAD 00 ff ff ff ff ff ff 00 04 69 fd 22 3c 5a 01 01
|
|
[ 25.239873] [00] BAD ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
|
|
[ 25.239875] [00] BAD ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
|
|
[ 25.239876] [00] BAD ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
|
|
[ 25.239877] [00] BAD ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
|
|
[ 25.239879] [00] BAD ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
|
|
[ 25.239880] [00] BAD ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
|
|
[ 25.239881] [00] BAD ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff
|
|
[ 25.241342] fbcon: mgag200drmfb (fb0) is primary device
|
|
[ 25.308016] Console: switching to colour frame buffer device 128x48
|
|
[ 25.324433] CE: hpet increased min_delta_ns to 20115 nsec
|
|
[ 25.349486] CE: hpet increased min_delta_ns to 30172 nsec
|
|
[ 25.359963] mgag200 0000:06:03.0: [drm] fb0: mgag200drmfb frame buffer device
|
|
[ 25.375760] scsi 0:0:0:1: Wrong diagnostic page; asked for 1 got 8
|
|
[ 25.375766] scsi 0:0:0:1: Failed to get diagnostic page 0x1
|
|
[ 25.375771] scsi 0:0:0:1: Failed to bind enclosure -19
|
|
[ 25.375810] ses 0:0:0:1: Attached Enclosure device
|
|
[ 25.408893] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 25.505883] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 25.537213] EDID block 0 (tag 0x00) checksum is invalid, remainder is 125
|
|
[ 26.566371] Adding 8388604k swap on /dev/mapper/pve-swap. Priority:-2 extents:1 across:8388604k
|
|
[ 26.584594] power_meter ACPI000D:00: Waiting for ACPI IPMI timeout
|
|
[ 26.587732] ACPI Error: AE_NOT_EXIST, Returned by Handler for [IPMI] (20250404/evregion-301)
|
|
[ 26.587744] ACPI Error: Region IPMI (ID=7) has no handler (20250404/exfldio-261)
|
|
|
|
[ 26.587760] No Local Variables are initialized for Method [_GHL]
|
|
|
|
[ 26.587764] No Arguments are initialized for method [_GHL]
|
|
|
|
[ 26.587774] ACPI Error: Aborting method \_SB.PMI0._GHL due to previous error (AE_NOT_EXIST) (20250404/psparse-529)
|
|
[ 26.588018] ACPI Error: Aborting method \_SB.PMI0._PMC due to previous error (AE_NOT_EXIST) (20250404/psparse-529)
|
|
[ 26.588251] ACPI: \_SB_.PMI0: _PMC evaluation failed: AE_NOT_EXIST
|
|
[ 26.604340] kvm_intel: VM_EXIT_LOAD_IA32_PERF_GLOBAL_CTRL does not work properly. Using workaround
|
|
[ 30.581145] audit: type=1400 audit(1785100705.835:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="ch-checkns" pid=721 comm="apparmor_parser"
|
|
[ 30.581157] audit: type=1400 audit(1785100705.835:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="Discord" pid=712 comm="apparmor_parser"
|
|
[ 30.581182] audit: type=1400 audit(1785100705.835:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="cam" pid=720 comm="apparmor_parser"
|
|
[ 30.581283] audit: type=1400 audit(1785100705.835:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name=4D6F6E676F444220436F6D70617373 pid=713 comm="apparmor_parser"
|
|
[ 30.581356] audit: type=1400 audit(1785100705.835:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="crun" pid=726 comm="apparmor_parser"
|
|
[ 30.581433] audit: type=1400 audit(1785100705.835:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="chromium" pid=724 comm="apparmor_parser"
|
|
[ 30.581494] audit: type=1400 audit(1785100705.835:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="ch-run" pid=722 comm="apparmor_parser"
|
|
[ 30.581548] audit: type=1400 audit(1785100705.835:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="buildah" pid=718 comm="apparmor_parser"
|
|
[ 30.581610] audit: type=1400 audit(1785100705.835:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="QtWebEngineProcess" pid=714 comm="apparmor_parser"
|
|
[ 30.581694] audit: type=1400 audit(1785100705.835:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="balena-etcher" pid=716 comm="apparmor_parser"
|
|
[ 36.056843] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 36.188159] EDID block 0 (tag 0x00) checksum is invalid, remainder is 109
|
|
[ 45.183313] softdog: initialized. soft_noboot=0 soft_margin=60 sec soft_panic=0 (nowayout=0)
|
|
[ 45.183320] softdog: soft_reboot_cmd=<not set> soft_active_on_boot=0
|
|
[ 45.435492] RPC: Registered named UNIX socket transport module.
|
|
[ 45.435497] RPC: Registered udp transport module.
|
|
[ 45.435499] RPC: Registered tcp transport module.
|
|
[ 45.435501] RPC: Registered tcp-with-tls transport module.
|
|
[ 45.435502] RPC: Registered tcp NFSv4.1 backchannel transport module.
|
|
[ 46.300014] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 46.394876] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 46.395404] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 46.426723] EDID block 0 (tag 0x00) checksum is invalid, remainder is 125
|
|
[ 57.177011] EDID block 0 (tag 0x00) checksum is invalid, remainder is 125
|
|
[ 57.284125] CE: hpet increased min_delta_ns to 45258 nsec
|
|
[ 58.000774] vmbr0: port 1(nic0) entered blocking state
|
|
[ 58.000781] vmbr0: port 1(nic0) entered disabled state
|
|
[ 58.000797] bnx2 0000:01:00.0 nic0: entered allmulticast mode
|
|
[ 58.000860] bnx2 0000:01:00.0 nic0: entered promiscuous mode
|
|
[ 58.269456] bnx2 0000:01:00.0 nic0: using MSIX
|
|
[ 58.273477] vmbr0: port 1(nic0) entered blocking state
|
|
[ 58.273483] vmbr0: port 1(nic0) entered forwarding state
|
|
[ 59.033494] vmbr0: port 1(nic0) entered disabled state
|
|
[ 59.381888] kauditd_printk_skb: 109 callbacks suppressed
|
|
[ 59.381894] audit: type=1400 audit(1785100734.636:121): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1056 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 59.403316] audit: type=1400 audit(1785100734.657:122): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1057 comm="dhclient" family="unix" sock_type="stream" protocol=0 requested="create" denied="create" addr=none
|
|
[ 59.403323] audit: type=1400 audit(1785100734.657:123): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1057 comm="dhclient" family="unix" sock_type="stream" protocol=0 requested="create" denied="create" addr=none
|
|
[ 59.546246] audit: type=1400 audit(1785100734.800:124): apparmor="DENIED" operation="capable" class="cap" profile="/{,usr/}sbin/dhclient" pid=1057 comm="dhclient" capability=21 capname="sys_admin"
|
|
[ 59.546359] audit: type=1400 audit(1785100734.800:125): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1057 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 61.487796] bnx2 0000:01:00.0 nic0: NIC Copper Link is Up, 1000 Mbps full duplex
|
|
|
|
[ 61.487911] vmbr0: port 1(nic0) entered blocking state
|
|
[ 61.487918] vmbr0: port 1(nic0) entered forwarding state
|
|
[ 65.661839] audit: type=1400 audit(1785100740.916:126): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1057 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 65.665262] audit: type=1400 audit(1785100740.919:127): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1057 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 65.665272] audit: type=1400 audit(1785100740.919:128): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1057 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 65.667330] audit: type=1400 audit(1785100740.921:129): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1057 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 65.805308] audit: type=1400 audit(1785100741.059:130): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1057 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 65.862266] bnx2 0000:02:00.1 nic3: using MSIX
|
|
[ 65.970171] 8021q: 802.1Q VLAN Support v1.8
|
|
[ 65.984777] br-rr-mgmt: port 1(nic3.2) entered blocking state
|
|
[ 65.984787] br-rr-mgmt: port 1(nic3.2) entered disabled state
|
|
[ 65.984811] nic3.2: entered allmulticast mode
|
|
[ 65.984817] bnx2 0000:02:00.1 nic3: entered allmulticast mode
|
|
[ 65.984897] nic3.2: entered promiscuous mode
|
|
[ 65.984900] bnx2 0000:02:00.1 nic3: entered promiscuous mode
|
|
[ 66.064136] bnx2 0000:01:00.1 nic1: using MSIX
|
|
[ 66.064441] bond0: (slave nic1): Enslaving as a backup interface with a down link
|
|
[ 66.117133] bnx2 0000:02:00.0 nic2: using MSIX
|
|
[ 66.117451] bond0: (slave nic2): Enslaving as a backup interface with a down link
|
|
[ 66.134617] storagenet: port 1(bond0) entered blocking state
|
|
[ 66.134624] storagenet: port 1(bond0) entered disabled state
|
|
[ 66.134648] bond0: entered allmulticast mode
|
|
[ 66.134653] bnx2 0000:01:00.1 nic1: entered allmulticast mode
|
|
[ 66.134658] bnx2 0000:02:00.0 nic2: entered allmulticast mode
|
|
[ 66.134770] bond0: entered promiscuous mode
|
|
[ 66.134775] bnx2 0000:01:00.1 nic1: entered promiscuous mode
|
|
[ 66.134798] bnx2 0000:02:00.0 nic2: entered promiscuous mode
|
|
[ 66.142644] 8021q: adding VLAN 0 to HW filter on device bond0
|
|
[ 67.507390] bnx2 0000:02:00.1 nic3: NIC Copper Link is Up, 100 Mbps full duplex
|
|
[ 67.507401] , receive & transmit flow control ON
|
|
[ 67.507589] br-rr-mgmt: port 1(nic3.2) entered blocking state
|
|
[ 67.507596] br-rr-mgmt: port 1(nic3.2) entered forwarding state
|
|
[ 67.800390] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 67.929685] EDID block 0 (tag 0x00) checksum is invalid, remainder is 125
|
|
[ 68.457804] audit: type=1400 audit(1785100743.712:131): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/usr/bin/lxc-copy" pid=1213 comm="apparmor_parser"
|
|
[ 68.471215] audit: type=1400 audit(1785100743.725:132): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/usr/bin/lxc-start" pid=1217 comm="apparmor_parser"
|
|
[ 68.501875] audit: type=1400 audit(1785100743.756:133): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="lxc-container-default" pid=1221 comm="apparmor_parser"
|
|
[ 68.501886] audit: type=1400 audit(1785100743.756:134): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="lxc-container-default-cgns" pid=1221 comm="apparmor_parser"
|
|
[ 68.501890] audit: type=1400 audit(1785100743.756:135): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="lxc-container-default-with-mounting" pid=1221 comm="apparmor_parser"
|
|
[ 68.879918] bnx2 0000:02:00.0 nic2: NIC Copper Link is Up, 1000 Mbps full duplex
|
|
|
|
[ 68.951766] bond0: (slave nic2): link status definitely up, 1000 Mbps full duplex
|
|
[ 68.951777] bond0: Warning: No 802.3ad response from the link partner for any adapters in the bond
|
|
[ 68.951787] bond0: active interface up!
|
|
[ 68.951827] storagenet: port 1(bond0) entered blocking state
|
|
[ 68.951834] storagenet: port 1(bond0) entered forwarding state
|
|
[ 69.463608] bnx2 0000:01:00.1 nic1: NIC Copper Link is Up, 1000 Mbps full duplex
|
|
|
|
[ 69.471819] bond0: (slave nic1): link status definitely up, 1000 Mbps full duplex
|
|
[ 72.040900] CE: hpet increased min_delta_ns to 67887 nsec
|
|
[ 72.041346] CE: hpet increased min_delta_ns to 101830 nsec
|
|
[ 78.168208] EDID block 0 (tag 0x00) checksum is invalid, remainder is 125
|
|
[ 88.576640] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 88.579221] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 88.703891] EDID has corrupt header
|
|
[ 90.599334] kvm_intel: L1TF CPU bug present and SMT on, data leak possible. See CVE-2018-3646 and https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/l1tf.html for details.
|
|
[ 99.325221] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 99.356801] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 99.449453] EDID block 0 (tag 0x00) checksum is invalid, remainder is 125
|
|
[ 104.354488] netfs: FS-Cache loaded
|
|
[ 104.875757] NFS: Registering the id_resolver key type
|
|
[ 104.875768] Key type id_resolver registered
|
|
[ 104.875770] Key type id_legacy registered
|
|
[ 107.057301] tap601i0: entered promiscuous mode
|
|
[ 107.169505] vmbr0: port 2(fwpr601p0) entered blocking state
|
|
[ 107.169514] vmbr0: port 2(fwpr601p0) entered disabled state
|
|
[ 107.169543] fwpr601p0: entered allmulticast mode
|
|
[ 107.169622] fwpr601p0: entered promiscuous mode
|
|
[ 107.169699] vmbr0: port 2(fwpr601p0) entered blocking state
|
|
[ 107.169704] vmbr0: port 2(fwpr601p0) entered forwarding state
|
|
[ 107.186763] fwbr601i0: port 1(fwln601i0) entered blocking state
|
|
[ 107.186773] fwbr601i0: port 1(fwln601i0) entered disabled state
|
|
[ 107.186804] fwln601i0: entered allmulticast mode
|
|
[ 107.186892] fwln601i0: entered promiscuous mode
|
|
[ 107.186973] fwbr601i0: port 1(fwln601i0) entered blocking state
|
|
[ 107.186988] fwbr601i0: port 1(fwln601i0) entered forwarding state
|
|
[ 107.201087] fwbr601i0: port 2(tap601i0) entered blocking state
|
|
[ 107.201095] fwbr601i0: port 2(tap601i0) entered disabled state
|
|
[ 107.201110] tap601i0: entered allmulticast mode
|
|
[ 107.201232] fwbr601i0: port 2(tap601i0) entered blocking state
|
|
[ 107.201238] fwbr601i0: port 2(tap601i0) entered forwarding state
|
|
[ 109.561400] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 109.565667] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 109.658737] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 109.689818] EDID block 0 (tag 0x00) checksum is invalid, remainder is 137
|
|
[ 112.737504] tap602i0: entered promiscuous mode
|
|
[ 112.826532] vmbr0: port 3(fwpr602p0) entered blocking state
|
|
[ 112.826540] vmbr0: port 3(fwpr602p0) entered disabled state
|
|
[ 112.826569] fwpr602p0: entered allmulticast mode
|
|
[ 112.826643] fwpr602p0: entered promiscuous mode
|
|
[ 112.826703] vmbr0: port 3(fwpr602p0) entered blocking state
|
|
[ 112.826708] vmbr0: port 3(fwpr602p0) entered forwarding state
|
|
[ 112.839129] fwbr602i0: port 1(fwln602i0) entered blocking state
|
|
[ 112.839136] fwbr602i0: port 1(fwln602i0) entered disabled state
|
|
[ 112.839162] fwln602i0: entered allmulticast mode
|
|
[ 112.839227] fwln602i0: entered promiscuous mode
|
|
[ 112.839309] fwbr602i0: port 1(fwln602i0) entered blocking state
|
|
[ 112.839314] fwbr602i0: port 1(fwln602i0) entered forwarding state
|
|
[ 112.851475] fwbr602i0: port 2(tap602i0) entered blocking state
|
|
[ 112.851482] fwbr602i0: port 2(tap602i0) entered disabled state
|
|
[ 112.851502] tap602i0: entered allmulticast mode
|
|
[ 112.851618] fwbr602i0: port 2(tap602i0) entered blocking state
|
|
[ 112.851623] fwbr602i0: port 2(tap602i0) entered forwarding state
|
|
[ 117.806211] tap603i0: entered promiscuous mode
|
|
[ 117.910899] vmbr0: port 4(fwpr603p0) entered blocking state
|
|
[ 117.910907] vmbr0: port 4(fwpr603p0) entered disabled state
|
|
[ 117.910937] fwpr603p0: entered allmulticast mode
|
|
[ 117.911009] fwpr603p0: entered promiscuous mode
|
|
[ 117.911050] vmbr0: port 4(fwpr603p0) entered blocking state
|
|
[ 117.911054] vmbr0: port 4(fwpr603p0) entered forwarding state
|
|
[ 117.926312] fwbr603i0: port 1(fwln603i0) entered blocking state
|
|
[ 117.926319] fwbr603i0: port 1(fwln603i0) entered disabled state
|
|
[ 117.926349] fwln603i0: entered allmulticast mode
|
|
[ 117.926418] fwln603i0: entered promiscuous mode
|
|
[ 117.926498] fwbr603i0: port 1(fwln603i0) entered blocking state
|
|
[ 117.926503] fwbr603i0: port 1(fwln603i0) entered forwarding state
|
|
[ 117.941464] fwbr603i0: port 2(tap603i0) entered blocking state
|
|
[ 117.941472] fwbr603i0: port 2(tap603i0) entered disabled state
|
|
[ 117.941494] tap603i0: entered allmulticast mode
|
|
[ 117.941631] fwbr603i0: port 2(tap603i0) entered blocking state
|
|
[ 117.941636] fwbr603i0: port 2(tap603i0) entered forwarding state
|
|
[ 120.440606] EDID block 0 (tag 0x00) checksum is invalid, remainder is 36
|
|
[ 131.190350] EDID block 0 (tag 0x00) checksum is invalid, remainder is 22
|
|
[ 141.817203] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 141.817750] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 141.944074] EDID block 0 (tag 0x00) checksum is invalid, remainder is 125
|
|
[ 152.633482] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 152.695485] EDID block 0 (tag 0x00) checksum is invalid, remainder is 125
|
|
[ 163.446242] EDID block 0 (tag 0x00) checksum is invalid, remainder is 115
|
|
[ 173.559697] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 173.594484] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 173.687203] EDID block 0 (tag 0x00) checksum is invalid, remainder is 94
|
|
[ 184.376642] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 184.438197] EDID block 0 (tag 0x00) checksum is invalid, remainder is 174
|
|
[ 195.066422] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 195.190360] EDID block 0 (tag 0x00) checksum is invalid, remainder is 246
|
|
[ 205.815159] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 205.941406] EDID block 0 (tag 0x00) checksum is invalid, remainder is 125
|
|
[ 216.059151] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 216.090815] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 216.183695] EDID block 0 (tag 0x00) checksum is invalid, remainder is 177
|
|
[ 226.839601] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 226.932038] EDID block 0 (tag 0x00) checksum is invalid, remainder is 125
|
|
[ 237.559952] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 237.621999] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 237.683540] EDID block 0 (tag 0x00) checksum is invalid, remainder is 125
|
|
[ 247.797882] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 247.830362] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 247.922767] EDID block 0 (tag 0x00) checksum is invalid, remainder is 125
|
|
[ 258.611949] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 258.673492] EDID block 0 (tag 0x00) checksum is invalid, remainder is 125
|
|
[ 269.424119] EDID block 0 (tag 0x00) checksum is invalid, remainder is 14
|
|
[ 280.049282] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 280.049814] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 280.084900] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 280.177910] EDID block 0 (tag 0x00) checksum is invalid, remainder is 125
|
|
[ 290.928522] EDID block 0 (tag 0x00) checksum is invalid, remainder is 153
|
|
[ 301.553797] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 301.558031] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 301.558554] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 301.589836] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 301.621143] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 301.621669] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 301.683512] EDID block 0 (tag 0x00) checksum is invalid, remainder is 125
|
|
[ 307.123233] kauditd_printk_skb: 1 callbacks suppressed
|
|
[ 307.123240] audit: type=1400 audit(1785100982.608:137): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1057 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 307.125330] audit: type=1400 audit(1785100982.610:138): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1057 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 307.174234] audit: type=1400 audit(1785100982.659:139): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1057 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 312.439831] EDID block 0 (tag 0x00) checksum is invalid, remainder is 115
|
|
[ 323.056977] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 323.059741] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 323.190577] EDID block 0 (tag 0x00) checksum is invalid, remainder is 120
|
|
[ 333.946573] EDID block 0 (tag 0x00) checksum is invalid, remainder is 125
|
|
[ 344.562343] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 344.595972] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 344.692212] EDID block 0 (tag 0x00) checksum is invalid, remainder is 125
|
|
[ 355.448706] EDID block 0 (tag 0x00) checksum is invalid, remainder is 36
|
|
[ 366.196633] EDID block 0 (tag 0x00) checksum is invalid, remainder is 125
|
|
[ 376.815896] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 376.942165] EDID block 0 (tag 0x00) checksum is invalid, remainder is 48
|
|
[ 387.566660] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 387.608581] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 387.646983] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 387.685338] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 387.722681] EDID block 0 (tag 0x00) checksum is invalid, remainder is 125
|
|
[ 398.320186] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 398.322847] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 398.420266] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 398.452687] EDID block 0 (tag 0x00) checksum is invalid, remainder is 125
|
|
[ 409.072698] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 409.198439] EDID block 0 (tag 0x00) checksum is invalid, remainder is 36
|
|
[ 419.823303] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 419.825164] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 419.950059] EDID block 0 (tag 0x00) checksum is invalid, remainder is 125
|
|
[ 430.186609] EDID block 0 (tag 0x00) checksum is invalid, remainder is 125
|
|
[ 440.813478] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 440.939336] EDID block 0 (tag 0x00) checksum is invalid, remainder is 125
|
|
[ 451.598552] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 451.691144] EDID block 0 (tag 0x00) checksum is invalid, remainder is 125
|
|
[ 461.929940] EDID block 0 (tag 0x00) checksum is invalid, remainder is 109
|
|
[ 472.043778] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 472.046677] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 472.078991] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 472.079512] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 472.172332] EDID block 0 (tag 0x00) checksum is invalid, remainder is 144
|
|
[ 482.794776] i2c i2c-0: sendbytes: NAK bailout.
|
|
[ 482.921930] EDID block 0 (tag 0x00) checksum is invalid, remainder is 125
|
|
[ 488.490084] bnx2 0000:04:00.0: VPD access failed. This is likely a firmware bug on this device. Contact the card vendor for a firmware update
|
|
[ 488.616383] bnx2 0000:04:00.1: VPD access failed. This is likely a firmware bug on this device. Contact the card vendor for a firmware update
|
|
|
|
--- cpu MHz (live snapshot)
|
|
$ grep -c ^processor /proc/cpuinfo
|
|
16
|
|
|
|
###############################################################################
|
|
# 5. MEMORY / NUMA / SWAP
|
|
###############################################################################
|
|
|
|
--- free -h
|
|
$ free -h
|
|
total used free shared buff/cache available
|
|
Mem: 94Gi 4.6Gi 89Gi 50Mi 1.0Gi 89Gi
|
|
Swap: 8.0Gi 0B 8.0Gi
|
|
|
|
--- free -b
|
|
$ free -b
|
|
total used free shared buff/cache available
|
|
Mem: 101232107520 4939214848 96106070016 53252096 1108242432 96292892672
|
|
Swap: 8589930496 0 8589930496
|
|
|
|
--- swapon
|
|
$ swapon --show
|
|
NAME TYPE SIZE USED PRIO
|
|
/dev/dm-0 partition 8G 0B -2
|
|
|
|
--- /proc/meminfo highlights
|
|
$ grep -E MemTotal|MemFree|MemAvailable|Buffers|^Cached|SwapTotal|SwapFree|Hugepagesize|HugePages_Total|HugePages_Free|AnonHugePages|DirectMap|Slab|SReclaimable|SUnreclaim|Dirty|Writeback|AnonPages|Mapped|Shmem|KernelStack|PageTables|NFS_Unstable /proc/meminfo
|
|
MemTotal: 98859480 kB
|
|
MemFree: 93853836 kB
|
|
MemAvailable: 94036280 kB
|
|
Buffers: 26508 kB
|
|
Cached: 1016412 kB
|
|
SwapTotal: 8388604 kB
|
|
SwapFree: 8388604 kB
|
|
Dirty: 95540 kB
|
|
Writeback: 0 kB
|
|
AnonPages: 3177272 kB
|
|
Mapped: 191136 kB
|
|
Shmem: 52004 kB
|
|
Slab: 214880 kB
|
|
SReclaimable: 39348 kB
|
|
SUnreclaim: 175532 kB
|
|
KernelStack: 7072 kB
|
|
PageTables: 16464 kB
|
|
SecPageTables: 1568 kB
|
|
NFS_Unstable: 0 kB
|
|
WritebackTmp: 0 kB
|
|
AnonHugePages: 1970176 kB
|
|
ShmemHugePages: 0 kB
|
|
ShmemPmdMapped: 0 kB
|
|
FilePmdMapped: 0 kB
|
|
HugePages_Total: 0
|
|
HugePages_Free: 0
|
|
Hugepagesize: 2048 kB
|
|
DirectMap4k: 215524 kB
|
|
DirectMap2M: 100438016 kB
|
|
|
|
--- numa stat
|
|
$ cat /proc/sys/vm/numa_stat
|
|
1
|
|
|
|
--- numa_balancing
|
|
$ cat /proc/sys/kernel/numa_balancing
|
|
1
|
|
|
|
--- zone reclaim
|
|
$ cat /proc/sys/vm/zone_reclaim_mode
|
|
0
|
|
|
|
--- slab top (top 20)
|
|
$ slabtop -o -s c
|
|
Active / Total Objects (% used) : 738397 / 746649 (98.9%)
|
|
Active / Total Slabs (% used) : 14156 / 14156 (100.0%)
|
|
Active / Total Caches (% used) : 362 / 466 (77.7%)
|
|
Active / Total Size (% used) : 161035.71K / 164323.88K (98.0%)
|
|
Minimum / Average / Maximum Object : 0.01K / 0.22K / 16.00K
|
|
|
|
OBJS ACTIVE USE OBJ SIZE SLABS OBJ/SLAB CACHE SIZE NAME
|
|
6352 5395 84% 2.00K 397 16 12704K kmalloc-rnd-04-2k
|
|
8439 8439 100% 1.10K 291 29 9312K ext4_inode_cache
|
|
56790 56706 99% 0.13K 1893 30 7572K kernfs_node_cache
|
|
11050 11050 100% 0.62K 442 25 7072K inode_cache
|
|
32592 32587 99% 0.19K 776 42 6208K dentry
|
|
561 546 97% 10.12K 187 3 5984K task_struct
|
|
8568 8568 100% 0.57K 306 28 4896K radix_tree_node
|
|
8448 8352 98% 0.50K 264 32 4224K kmalloc-rnd-07-512
|
|
34827 34827 100% 0.10K 893 39 3572K buffer_head
|
|
17136 17136 100% 0.19K 408 42 3264K vm_area_struct
|
|
3818 3696 96% 0.69K 83 46 2656K proc_inode_cache
|
|
28704 28671 99% 0.09K 624 46 2496K lsm_inode_cache
|
|
1104 1050 95% 2.00K 69 16 2208K kmalloc-cg-2k
|
|
2624 2592 98% 0.77K 64 41 2048K shmem_inode_cache
|
|
4032 4032 100% 0.50K 126 32 2016K kmalloc-rnd-09-512
|
|
3616 3458 95% 0.50K 113 32 1808K pool_workqueue
|
|
2600 2600 100% 0.63K 104 25 1664K debugfs_inode_cache
|
|
660 660 100% 2.06K 44 15 1408K sighand_cache
|
|
672 672 100% 2.00K 42 16 1344K kmalloc-rnd-02-2k
|
|
328 308 93% 4.00K 41 8 1312K kmalloc-rnd-01-4k
|
|
1840 1656 90% 0.69K 40 46 1280K skbuff_small_head
|
|
1326 1326 100% 0.94K 39 34 1248K nfs_read_data
|
|
1092 1078 98% 1.12K 39 28 1248K signal_cache
|
|
156 156 100% 8.00K 39 4 1248K kmalloc-rnd-15-8k
|
|
608 608 100% 2.00K 38 16 1216K kmalloc-rnd-08-2k
|
|
280 280 100% 4.00K 35 8 1120K kmalloc-cg-4k
|
|
264 216 81% 4.00K 33 8 1056K biovec-max
|
|
16704 15968 95% 0.06K 261 64 1044K anon_vma_chain
|
|
10179 10179 100% 0.10K 261 39 1044K anon_vma
|
|
1248 1248 100% 0.81K 32 39 1024K sock_inode_cache
|
|
232 232 100% 4.00K 29 8 928K kmalloc-rnd-13-4k
|
|
216 216 100% 4.00K 27 8 864K kmalloc-rnd-12-4k
|
|
108 108 100% 8.00K 27 4 864K kmalloc-rnd-08-8k
|
|
3392 2880 84% 0.25K 106 32 848K maple_node
|
|
442 442 100% 1.88K 26 17 832K mem_cgroup_per_node
|
|
832 832 100% 1.00K 26 32 832K kmalloc-rnd-09-1k
|
|
4200 4134 98% 0.19K 100 42 800K filp
|
|
800 800 100% 1.00K 25 32 800K kmalloc-cg-1k
|
|
800 800 100% 1.00K 25 32 800K kmalloc-rnd-02-1k
|
|
368 368 100% 2.00K 23 16 736K kmalloc-rnd-15-2k
|
|
672 672 100% 1.00K 21 32 672K kmalloc-rnd-06-1k
|
|
160 160 100% 4.00K 20 8 640K names_cache
|
|
420 420 100% 1.50K 20 21 640K mm_struct
|
|
160 160 100% 4.00K 20 8 640K kmalloc-rnd-08-4k
|
|
160 160 100% 4.00K 20 8 640K kmalloc-rnd-06-4k
|
|
494 494 100% 1.19K 19 26 608K RAWv6
|
|
608 608 100% 1.00K 19 32 608K RAW
|
|
266 266 100% 2.19K 19 14 608K mem_cgroup
|
|
432 432 100% 1.31K 18 24 576K perf_event
|
|
72 72 100% 8.00K 18 4 576K kmalloc-cg-8k
|
|
576 576 100% 1.00K 18 32 576K kmalloc-rnd-15-1k
|
|
2272 2045 90% 0.25K 71 32 568K skbuff_head_cache
|
|
7672 7672 100% 0.07K 137 56 548K vmap_area
|
|
272 272 100% 2.00K 17 16 544K biovec-128
|
|
782 782 100% 0.69K 17 46 544K files_cache
|
|
68 68 100% 8.00K 17 4 544K kmalloc-rnd-13-8k
|
|
544 544 100% 1.00K 17 32 544K kmalloc-rnd-08-1k
|
|
544 544 100% 1.00K 17 32 544K kmalloc-rnd-07-1k
|
|
68 68 100% 8.00K 17 4 544K kmalloc-rnd-02-8k
|
|
2112 2112 100% 0.25K 66 32 528K kmalloc-rnd-09-256
|
|
672 672 100% 0.75K 16 42 512K nfs_commit_data
|
|
368 368 100% 1.38K 16 23 512K UDPv6
|
|
416 416 100% 1.19K 16 26 512K UDP
|
|
208 208 100% 2.38K 16 13 512K TCP
|
|
512 512 100% 1.00K 16 32 512K iommu_iova_magazine
|
|
128 128 100% 4.00K 16 8 512K kmalloc-rnd-15-4k
|
|
256 256 100% 2.00K 16 16 512K kmalloc-rnd-13-2k
|
|
512 512 100% 1.00K 16 32 512K kmalloc-rnd-13-1k
|
|
256 256 100% 2.00K 16 16 512K kmalloc-rnd-12-2k
|
|
512 512 100% 1.00K 16 32 512K kmalloc-rnd-12-1k
|
|
256 256 100% 2.00K 16 16 512K kmalloc-rnd-11-2k
|
|
512 512 100% 1.00K 16 32 512K kmalloc-rnd-11-1k
|
|
512 512 100% 1.00K 16 32 512K kmalloc-rnd-10-1k
|
|
64 64 100% 8.00K 16 4 512K kmalloc-rnd-09-8k
|
|
128 128 100% 4.00K 16 8 512K kmalloc-rnd-09-4k
|
|
256 256 100% 2.00K 16 16 512K kmalloc-rnd-09-2k
|
|
256 256 100% 2.00K 16 16 512K kmalloc-rnd-06-2k
|
|
128 128 100% 4.00K 16 8 512K kmalloc-rnd-05-4k
|
|
512 512 100% 1.00K 16 32 512K kmalloc-rnd-04-1k
|
|
512 512 100% 1.00K 16 32 512K kmalloc-rnd-03-1k
|
|
256 256 100% 2.00K 16 16 512K kmalloc-rnd-01-2k
|
|
512 512 100% 1.00K 16 32 512K kmalloc-rnd-01-1k
|
|
128 128 100% 4.00K 16 8 512K kmalloc-4k
|
|
512 512 100% 1.00K 16 32 512K kmalloc-1k
|
|
180 180 100% 2.56K 15 12 480K TCPv6
|
|
120 120 100% 4.00K 15 8 480K kmalloc-rnd-10-4k
|
|
240 240 100% 2.00K 15 16 480K kmalloc-rnd-03-2k
|
|
120 120 100% 4.00K 15 8 480K kmalloc-rnd-02-4k
|
|
56 56 100% 8.00K 14 4 448K kmalloc-rnd-12-8k
|
|
224 224 100% 2.00K 14 16 448K kmalloc-rnd-07-2k
|
|
448 448 100% 1.00K 14 32 448K kmalloc-rnd-05-1k
|
|
104 104 100% 4.00K 13 8 416K memdup_user-4k
|
|
416 416 100% 1.00K 13 32 416K kmalloc-rnd-14-1k
|
|
104 104 100% 4.00K 13 8 416K kmalloc-rnd-04-4k
|
|
104 104 100% 4.00K 13 8 416K kmalloc-rnd-03-4k
|
|
7519 7519 100% 0.05K 103 73 412K ftrace_event_field
|
|
1050 1050 100% 0.38K 25 42 400K mnt_cache
|
|
552 552 100% 0.69K 12 46 384K rpc_inode_cache
|
|
2016 2016 100% 0.19K 48 42 384K pid
|
|
96 96 100% 4.00K 12 8 384K kmalloc-rnd-07-4k
|
|
192 192 100% 2.00K 12 16 384K kmalloc-rnd-05-2k
|
|
3780 3619 95% 0.09K 90 42 360K kmalloc-rnd-05-96
|
|
396 396 100% 0.88K 11 36 352K fuse_inode
|
|
176 176 100% 2.00K 11 16 352K memdup_user-2k
|
|
352 352 100% 1.00K 11 32 352K memdup_user-1k
|
|
528 528 100% 0.65K 22 24 352K tracefs_inode_cache
|
|
88 88 100% 4.00K 11 8 352K kmalloc-rnd-14-4k
|
|
3612 3612 100% 0.09K 86 42 344K trace_event_file
|
|
672 672 100% 0.50K 21 32 336K kmalloc-rnd-02-512
|
|
280 280 100% 1.14K 10 28 320K nfs_inode_cache
|
|
160 160 100% 2.00K 10 16 320K kmalloc-rnd-14-2k
|
|
160 160 100% 2.00K 10 16 320K kmalloc-2k
|
|
975 850 87% 0.31K 39 25 312K bio-256
|
|
1638 1508 92% 0.19K 39 42 312K kmalloc-cg-192
|
|
608 608 100% 0.50K 19 32 304K kmalloc-cg-512
|
|
2368 2158 91% 0.12K 74 32 296K bio_integrity_data
|
|
7446 7446 100% 0.04K 73 102 292K extent_status
|
|
3066 3066 100% 0.09K 73 42 292K kmalloc-rnd-10-96
|
|
72 72 100% 4.00K 9 8 288K kmalloc-rnd-11-4k
|
|
144 144 100% 2.00K 9 16 288K kmalloc-rnd-10-2k
|
|
36 36 100% 8.00K 9 4 288K kmalloc-rnd-07-8k
|
|
4416 4276 96% 0.06K 69 64 276K kmalloc-cg-64
|
|
1088 1088 100% 0.25K 34 32 272K kmalloc-rnd-13-256
|
|
544 544 100% 0.50K 17 32 272K kmalloc-rnd-06-512
|
|
544 544 100% 0.50K 17 32 272K kmalloc-rnd-04-512
|
|
1056 1056 100% 0.25K 33 32 264K bio-200
|
|
24 24 100% 8.94K 8 3 256K kvm_vcpu
|
|
448 448 100% 0.56K 16 28 256K kioctx
|
|
464 464 100% 0.55K 16 29 256K taskstats
|
|
1344 1344 100% 0.19K 32 42 256K proc_dir_entry
|
|
400 400 100% 0.62K 16 25 256K task_group
|
|
512 512 100% 0.50K 16 32 256K kmalloc-rnd-15-512
|
|
512 512 100% 0.50K 16 32 256K kmalloc-rnd-14-512
|
|
512 512 100% 0.50K 16 32 256K kmalloc-rnd-13-512
|
|
512 512 100% 0.50K 16 32 256K kmalloc-rnd-12-512
|
|
512 512 100% 0.50K 16 32 256K kmalloc-rnd-11-512
|
|
512 512 100% 0.50K 16 32 256K kmalloc-rnd-10-512
|
|
512 512 100% 0.50K 16 32 256K kmalloc-rnd-08-512
|
|
32 32 100% 8.00K 8 4 256K kmalloc-rnd-06-8k
|
|
512 512 100% 0.50K 16 32 256K kmalloc-rnd-03-512
|
|
32 32 100% 8.00K 8 4 256K kmalloc-8k
|
|
512 512 100% 0.50K 16 32 256K kmalloc-512
|
|
1952 1952 100% 0.12K 61 32 244K eventpoll_epi
|
|
84 84 100% 2.61K 7 12 224K x86_emulator
|
|
2352 2184 92% 0.09K 56 42 224K kmalloc-cg-96
|
|
448 448 100% 0.50K 14 32 224K kmalloc-rnd-05-512
|
|
28 28 100% 8.00K 7 4 224K kmalloc-rnd-01-8k
|
|
1134 1134 100% 0.19K 27 42 216K kmalloc-rnd-05-192
|
|
832 832 100% 0.25K 26 32 208K nf_conntrack
|
|
1632 1527 93% 0.12K 51 32 204K kmalloc-cg-128
|
|
1056 1056 100% 0.18K 24 44 192K kvm_mmu_page_header
|
|
384 384 100% 0.50K 12 32 192K kmalloc-rnd-01-512
|
|
768 768 100% 0.25K 24 32 192K kmalloc-rnd-01-256
|
|
966 966 100% 0.19K 23 42 184K kmalloc-rnd-15-192
|
|
736 736 100% 0.25K 23 32 184K kmem_cache
|
|
352 352 100% 0.50K 11 32 176K memdup_user-512
|
|
924 924 100% 0.19K 22 42 176K kmalloc-rnd-09-192
|
|
704 704 100% 0.25K 22 32 176K kmalloc-rnd-07-256
|
|
704 704 100% 0.25K 22 32 176K kmalloc-rnd-06-256
|
|
924 924 100% 0.19K 22 42 176K kmalloc-rnd-02-192
|
|
777 777 100% 0.21K 21 37 168K nfs_direct_cache
|
|
1764 1764 100% 0.09K 42 42 168K kmalloc-rnd-03-96
|
|
640 640 100% 0.25K 20 32 160K kmalloc-cg-256
|
|
5120 5120 100% 0.03K 40 128 160K kmalloc-rnd-10-32
|
|
10240 10240 100% 0.02K 40 256 160K kmalloc-rnd-10-16
|
|
1248 1248 100% 0.12K 39 32 156K kmalloc-rnd-09-128
|
|
608 608 100% 0.25K 19 32 152K io_kiocb
|
|
608 608 100% 0.25K 19 32 152K kmalloc-rnd-12-256
|
|
798 798 100% 0.19K 19 42 152K kmalloc-rnd-06-192
|
|
608 608 100% 0.25K 19 32 152K kmalloc-rnd-03-256
|
|
6120 6120 100% 0.02K 36 170 144K lsm_file_cache
|
|
2304 2304 100% 0.06K 36 64 144K kmalloc-rnd-06-64
|
|
527 527 100% 0.26K 17 31 136K tw_sock_TCP
|
|
714 714 100% 0.19K 17 42 136K file_lock_cache
|
|
544 544 100% 0.25K 17 32 136K kmalloc-rnd-15-256
|
|
544 544 100% 0.25K 17 32 136K kmalloc-rnd-14-256
|
|
714 714 100% 0.19K 17 42 136K kmalloc-rnd-14-192
|
|
714 714 100% 0.19K 17 42 136K kmalloc-rnd-07-192
|
|
544 544 100% 0.25K 17 32 136K kmalloc-rnd-05-256
|
|
544 544 100% 0.25K 17 32 136K kmalloc-rnd-02-256
|
|
544 544 100% 0.25K 17 32 136K kmalloc-256
|
|
672 672 100% 0.19K 16 42 128K bio-136
|
|
400 400 100% 0.31K 16 25 128K bio-264
|
|
736 736 100% 0.17K 16 46 128K fuse_request
|
|
400 400 100% 0.31K 16 25 128K request_sock_TCP
|
|
16 16 100% 8.00K 4 4 128K memdup_user-8k
|
|
512 512 100% 0.25K 16 32 128K task_delay_info
|
|
76 76 100% 1.62K 4 19 128K bdev_cache
|
|
16 16 100% 8.00K 4 4 128K kmalloc-rnd-14-8k
|
|
16384 12870 78% 0.01K 32 512 128K kmalloc-rnd-12-8
|
|
672 672 100% 0.19K 16 42 128K kmalloc-rnd-12-192
|
|
512 512 100% 0.25K 16 32 128K kmalloc-rnd-10-256
|
|
672 672 100% 0.19K 16 42 128K kmalloc-rnd-10-192
|
|
672 672 100% 0.19K 16 42 128K kmalloc-rnd-08-192
|
|
512 512 100% 0.25K 16 32 128K kmalloc-rnd-04-256
|
|
672 672 100% 0.19K 16 42 128K kmalloc-rnd-04-192
|
|
672 672 100% 0.19K 16 42 128K kmalloc-rnd-03-192
|
|
672 672 100% 0.19K 16 42 128K kmalloc-192
|
|
780 780 100% 0.15K 30 26 120K ext4_groupinfo_4k
|
|
3840 3664 95% 0.03K 30 128 120K kmalloc-cg-32
|
|
480 480 100% 0.25K 15 32 120K kmalloc-rnd-11-256
|
|
630 630 100% 0.19K 15 42 120K kmalloc-rnd-11-192
|
|
182 182 100% 0.60K 7 26 112K user_namespace
|
|
1792 1792 100% 0.06K 28 64 112K kmalloc-rnd-07-64
|
|
1134 1134 100% 0.09K 27 42 108K kmalloc-rnd-02-96
|
|
546 546 100% 0.19K 13 42 104K jbd2_transaction_s
|
|
1092 1092 100% 0.09K 26 42 104K kmalloc-rnd-07-96
|
|
832 832 100% 0.12K 26 32 104K kmalloc-rnd-02-128
|
|
1600 1600 100% 0.06K 25 64 100K kmalloc-rnd-02-64
|
|
6 6 100% 16.00K 3 2 96K zio_buf_comb_16384
|
|
96 96 100% 0.98K 3 32 96K request_queue
|
|
222 222 100% 0.42K 6 37 96K uts_namespace
|
|
1008 1008 100% 0.09K 24 42 96K kmalloc-rcl-96
|
|
12 12 100% 8.00K 3 4 96K kmalloc-rnd-11-8k
|
|
384 384 100% 0.25K 12 32 96K kmalloc-rnd-08-256
|
|
12 12 100% 8.00K 3 4 96K kmalloc-rnd-03-8k
|
|
2944 2944 100% 0.03K 23 128 92K kmalloc-rnd-11-32
|
|
462 462 100% 0.19K 11 42 88K memdup_user-192
|
|
704 704 100% 0.12K 22 32 88K kmalloc-rcl-128
|
|
11264 11264 100% 0.01K 22 512 88K kmalloc-rnd-10-8
|
|
1408 1408 100% 0.06K 22 64 88K kmalloc-rnd-09-64
|
|
924 924 100% 0.09K 22 42 88K kmalloc-rnd-09-96
|
|
1344 1344 100% 0.06K 21 64 84K kmalloc-rnd-15-64
|
|
2688 2688 100% 0.03K 21 128 84K kmalloc-rnd-12-32
|
|
1344 1344 100% 0.06K 21 64 84K kmalloc-rnd-03-64
|
|
400 240 60% 0.20K 10 40 80K ip4-frags
|
|
125 125 100% 0.62K 5 25 80K hugetlbfs_inode_cache
|
|
1020 1020 100% 0.08K 20 51 80K sigqueue
|
|
1280 1280 100% 0.06K 20 64 80K kmalloc-rnd-12-64
|
|
640 640 100% 0.12K 20 32 80K kmalloc-rnd-04-128
|
|
420 420 100% 0.19K 10 42 80K kmalloc-rnd-01-192
|
|
1280 1280 100% 0.06K 20 64 80K kmalloc-64
|
|
798 798 100% 0.09K 19 42 76K kmalloc-rnd-13-96
|
|
608 608 100% 0.12K 19 32 76K kmalloc-rnd-07-128
|
|
2432 2432 100% 0.03K 19 128 76K kmalloc-rnd-05-32
|
|
612 612 100% 0.12K 18 34 72K jbd2_journal_head
|
|
576 576 100% 0.12K 18 32 72K kmalloc-rnd-10-128
|
|
1152 1152 100% 0.06K 18 64 72K kmalloc-rnd-08-64
|
|
2304 2304 100% 0.03K 18 128 72K kmalloc-rnd-07-32
|
|
576 576 100% 0.12K 18 32 72K kmalloc-rnd-06-128
|
|
9216 9216 100% 0.01K 18 512 72K kmalloc-rnd-02-8
|
|
867 867 100% 0.08K 17 51 68K Acpi-State
|
|
1088 1088 100% 0.06K 17 64 68K kmalloc-rnd-13-64
|
|
544 544 100% 0.12K 17 32 68K kmalloc-rnd-12-128
|
|
714 714 100% 0.09K 17 42 68K kmalloc-rnd-08-96
|
|
714 714 100% 0.09K 17 42 68K kmalloc-rnd-06-96
|
|
544 544 100% 0.12K 17 32 68K kmalloc-rnd-05-128
|
|
544 544 100% 0.12K 17 32 68K kmalloc-rnd-01-128
|
|
2176 2176 100% 0.03K 17 128 68K kmalloc-32
|
|
100 100 100% 0.62K 4 25 64K netfs_request
|
|
30 30 100% 2.06K 2 15 64K MPTCPv6
|
|
384 384 100% 0.16K 16 24 64K ext4_allocation_context
|
|
576 576 100% 0.11K 16 36 64K ext4_prealloc_space
|
|
1024 1024 100% 0.06K 16 64 64K ext4_io_end
|
|
1168 1168 100% 0.05K 16 73 64K mb_cache_entry
|
|
2048 2048 100% 0.03K 16 128 64K xsk_generic_xmit_cache
|
|
32 32 100% 1.94K 2 16 64K MPTCP
|
|
4096 4096 100% 0.02K 16 256 64K ep_head
|
|
78 78 100% 0.81K 2 39 64K dax_cache
|
|
2048 2048 100% 0.03K 16 128 64K memdup_user-32
|
|
4096 4096 100% 0.02K 16 256 64K memdup_user-16
|
|
8192 8192 100% 0.01K 16 512 64K memdup_user-8
|
|
2048 2048 100% 0.03K 16 128 64K pidfs_attr_cache
|
|
1632 1632 100% 0.04K 16 102 64K pde_opener
|
|
544 544 100% 0.12K 16 34 64K seq_file
|
|
10 10 100% 5.81K 2 5 64K net_namespace
|
|
4096 4096 100% 0.02K 16 256 64K kmalloc-cg-16
|
|
8192 8192 100% 0.01K 16 512 64K kmalloc-cg-8
|
|
512 512 100% 0.12K 16 32 64K kmalloc-rnd-15-128
|
|
2048 2048 100% 0.03K 16 128 64K kmalloc-rnd-15-32
|
|
4096 4096 100% 0.02K 16 256 64K kmalloc-rnd-15-16
|
|
672 672 100% 0.09K 16 42 64K kmalloc-rnd-15-96
|
|
1024 1024 100% 0.06K 16 64 64K kmalloc-rnd-14-64
|
|
2048 2048 100% 0.03K 16 128 64K kmalloc-rnd-14-32
|
|
4096 4096 100% 0.02K 16 256 64K kmalloc-rnd-14-16
|
|
8192 8192 100% 0.01K 16 512 64K kmalloc-rnd-14-8
|
|
2048 2048 100% 0.03K 16 128 64K kmalloc-rnd-13-32
|
|
4096 4096 100% 0.02K 16 256 64K kmalloc-rnd-13-16
|
|
8192 8192 100% 0.01K 16 512 64K kmalloc-rnd-13-8
|
|
4096 4096 100% 0.02K 16 256 64K kmalloc-rnd-12-16
|
|
512 512 100% 0.12K 16 32 64K kmalloc-rnd-11-128
|
|
1024 1024 100% 0.06K 16 64 64K kmalloc-rnd-11-64
|
|
4096 4096 100% 0.02K 16 256 64K kmalloc-rnd-11-16
|
|
8192 8192 100% 0.01K 16 512 64K kmalloc-rnd-11-8
|
|
2048 2048 100% 0.03K 16 128 64K kmalloc-rnd-09-32
|
|
4096 4096 100% 0.02K 16 256 64K kmalloc-rnd-09-16
|
|
8192 8192 100% 0.01K 16 512 64K kmalloc-rnd-09-8
|
|
2048 2048 100% 0.03K 16 128 64K kmalloc-rnd-08-32
|
|
4096 4096 100% 0.02K 16 256 64K kmalloc-rnd-08-16
|
|
8192 8192 100% 0.01K 16 512 64K kmalloc-rnd-08-8
|
|
4096 4096 100% 0.02K 16 256 64K kmalloc-rnd-07-16
|
|
8192 8192 100% 0.01K 16 512 64K kmalloc-rnd-07-8
|
|
2048 2048 100% 0.03K 16 128 64K kmalloc-rnd-06-32
|
|
4096 4096 100% 0.02K 16 256 64K kmalloc-rnd-06-16
|
|
8 8 100% 8.00K 2 4 64K kmalloc-rnd-05-8k
|
|
1024 1024 100% 0.06K 16 64 64K kmalloc-rnd-05-64
|
|
4096 4096 100% 0.02K 16 256 64K kmalloc-rnd-05-16
|
|
8192 8192 100% 0.01K 16 512 64K kmalloc-rnd-05-8
|
|
1024 1024 100% 0.06K 16 64 64K kmalloc-rnd-04-64
|
|
2048 2048 100% 0.03K 16 128 64K kmalloc-rnd-04-32
|
|
4096 4096 100% 0.02K 16 256 64K kmalloc-rnd-04-16
|
|
672 672 100% 0.09K 16 42 64K kmalloc-rnd-04-96
|
|
2048 2048 100% 0.03K 16 128 64K kmalloc-rnd-03-32
|
|
2048 2048 100% 0.03K 16 128 64K kmalloc-rnd-02-32
|
|
4096 4096 100% 0.02K 16 256 64K kmalloc-rnd-02-16
|
|
1024 1024 100% 0.06K 16 64 64K kmalloc-rnd-01-64
|
|
2048 2048 100% 0.03K 16 128 64K kmalloc-rnd-01-32
|
|
4096 4096 100% 0.02K 16 256 64K kmalloc-rnd-01-16
|
|
512 512 100% 0.12K 16 32 64K kmalloc-128
|
|
4096 4096 100% 0.02K 16 256 64K kmalloc-16
|
|
8192 8192 100% 0.01K 16 512 64K kmalloc-8
|
|
672 672 100% 0.09K 16 42 64K kmalloc-96
|
|
960 960 100% 0.06K 15 64 60K memdup_user-64
|
|
960 960 100% 0.06K 15 64 60K dmaengine-unmap-2
|
|
7680 7680 100% 0.01K 15 512 60K kmalloc-rnd-15-8
|
|
630 630 100% 0.09K 15 42 60K kmalloc-rnd-14-96
|
|
630 630 100% 0.09K 15 42 60K kmalloc-rnd-12-96
|
|
480 480 100% 0.12K 15 32 60K kmalloc-rnd-08-128
|
|
7680 7680 100% 0.01K 15 512 60K kmalloc-rnd-04-8
|
|
480 480 100% 0.12K 15 32 60K kmalloc-rnd-03-128
|
|
960 960 100% 0.06K 15 64 60K kmem_cache_node
|
|
1190 1190 100% 0.05K 14 85 56K shared_policy_node
|
|
7168 7168 100% 0.01K 14 512 56K kmalloc-rnd-03-8
|
|
546 546 100% 0.09K 13 42 52K kmalloc-rnd-11-96
|
|
832 832 100% 0.06K 13 64 52K kmalloc-rnd-10-64
|
|
192 192 100% 0.25K 6 32 48K memdup_user-256
|
|
672 672 100% 0.07K 12 56 48K nsproxy
|
|
384 384 100% 0.12K 12 32 48K kmalloc-rnd-14-128
|
|
252 252 100% 0.19K 6 42 48K kmalloc-rnd-13-192
|
|
6144 6144 100% 0.01K 12 512 48K kmalloc-rnd-06-8
|
|
2816 2816 100% 0.02K 11 256 44K kmalloc-rnd-03-16
|
|
210 210 100% 0.19K 5 42 40K kmalloc-rcl-192
|
|
420 420 100% 0.09K 10 42 40K kmalloc-rnd-01-96
|
|
288 288 100% 0.12K 9 32 36K kmalloc-rnd-13-128
|
|
10 10 100% 3.16K 1 10 32K kcopyd_job
|
|
34 34 100% 0.94K 1 34 32K mqueue_inode_cache
|
|
15 15 100% 2.06K 1 15 32K dmaengine-unmap-256
|
|
30 30 100% 1.06K 1 30 32K dmaengine-unmap-128
|
|
4 4 100% 8.00K 1 4 32K kmalloc-rnd-04-8k
|
|
4096 4096 100% 0.01K 8 512 32K kmalloc-rnd-01-8
|
|
595 595 100% 0.05K 7 85 28K ip_fib_trie
|
|
511 511 100% 0.05K 7 73 28K ip_fib_alias
|
|
612 612 100% 0.04K 6 102 24K khugepaged_mm_slot
|
|
234 234 100% 0.10K 6 39 24K Acpi-ParseExt
|
|
210 210 100% 0.09K 5 42 20K memdup_user-96
|
|
84 84 100% 0.19K 2 42 16K bio-176
|
|
42 42 100% 0.38K 1 42 16K bio-320
|
|
36 36 100% 0.44K 1 36 16K bio-384
|
|
36 36 100% 0.44K 1 36 16K bio-400
|
|
32 32 100% 0.50K 1 32 16K bio-456
|
|
62 62 100% 0.26K 2 31 16K tw_sock_TCPv6
|
|
512 512 100% 0.03K 4 128 16K pending_reservation
|
|
41 41 100% 0.38K 1 41 16K request_sock_subflow_v4
|
|
50 50 100% 0.31K 2 25 16K bio-280
|
|
60 60 100% 0.27K 2 30 16K numa_policy
|
|
96 96 100% 0.12K 3 32 12K scsi_sense_cache
|
|
34 34 100% 0.23K 1 34 8K arc_buf_hdr_t_full
|
|
170 170 100% 0.05K 2 85 8K bio_post_read_ctx
|
|
42 42 100% 0.09K 1 42 4K abd_t
|
|
25 25 100% 0.16K 1 25 4K dm_bufio_buffer-16-1
|
|
256 256 100% 0.02K 1 256 4K jbd2_revoke_table_s
|
|
36 36 100% 0.11K 1 36 4K kmalloc_buckets
|
|
0 0 0% 2.08K 0 15 0K nfs4_xattr_cache_cache
|
|
0 0 0% 0.20K 0 39 0K nf_conntrack_expect
|
|
0 0 0% 0.09K 0 46 0K zfs_znode_hold_cache
|
|
0 0 0% 1.09K 0 29 0K zfs_znode_cache
|
|
0 0 0% 1.03K 0 31 0K zap_attr_long_cache
|
|
0 0 0% 1.07K 0 29 0K zap_name_long
|
|
0 0 0% 0.28K 0 28 0K zap_attr_cache
|
|
0 0 0% 0.32K 0 24 0K zap_name
|
|
0 0 0% 0.16K 0 24 0K sio_cache_2
|
|
0 0 0% 0.15K 0 26 0K sio_cache_1
|
|
0 0 0% 0.13K 0 30 0K sio_cache_0
|
|
0 0 0% 0.15K 0 26 0K zil_zcw_cache
|
|
0 0 0% 0.38K 0 41 0K zil_lwb_cache
|
|
0 0 0% 0.36K 0 44 0K dbuf_dirty_record_t
|
|
0 0 0% 0.36K 0 44 0K dmu_buf_impl_t
|
|
0 0 0% 0.03K 0 128 0K arc_buf_t
|
|
0 0 0% 0.09K 0 42 0K arc_buf_hdr_t_l2only
|
|
0 0 0% 0.93K 0 34 0K dnode_t
|
|
0 0 0% 0.25K 0 32 0K sa_cache
|
|
0 0 0% 16.00K 0 2 0K lz4_cache
|
|
0 0 0% 12.00K 0 2 0K zio_buf_comb_12288
|
|
0 0 0% 8.00K 0 4 0K zio_buf_comb_8192
|
|
0 0 0% 6.00K 0 5 0K zio_buf_comb_6144
|
|
0 0 0% 4.00K 0 8 0K zio_buf_comb_4096
|
|
0 0 0% 3.00K 0 10 0K zio_buf_comb_3072
|
|
0 0 0% 2.00K 0 16 0K zio_buf_comb_2048
|
|
0 0 0% 1.50K 0 21 0K zio_buf_comb_1536
|
|
0 0 0% 1.00K 0 32 0K zio_buf_comb_1024
|
|
0 0 0% 0.50K 0 32 0K zio_buf_comb_512
|
|
0 0 0% 0.05K 0 85 0K zio_link_cache
|
|
0 0 0% 1.19K 0 26 0K zio_cache
|
|
0 0 0% 0.32K 0 24 0K ddt_log_entry_trad_cache
|
|
0 0 0% 0.14K 0 28 0K ddt_log_entry_flat_cache
|
|
0 0 0% 0.41K 0 38 0K ddt_entry_trad_cache
|
|
0 0 0% 0.23K 0 34 0K ddt_entry_flat_cache
|
|
0 0 0% 0.16K 0 24 0K brt_entry_cache
|
|
0 0 0% 0.07K 0 56 0K metaslab_alloc_trace_cache
|
|
0 0 0% 4.00K 0 8 0K zfs_btree_leaf_cache
|
|
0 0 0% 0.06K 0 64 0K kcf_context_cache
|
|
0 0 0% 0.30K 0 26 0K btrfs_delayed_node
|
|
0 0 0% 0.41K 0 39 0K btrfs_ordered_extent
|
|
0 0 0% 0.23K 0 34 0K btrfs_extent_buffer
|
|
0 0 0% 1.00K 0 32 0K btrfs_inode
|
|
0 0 0% 0.26K 0 31 0K fsverity_info
|
|
0 0 0% 0.12K 0 32 0K fscrypt_inode_info
|
|
0 0 0% 0.18K 0 44 0K ip6-frags
|
|
0 0 0% 0.31K 0 25 0K request_sock_TCPv6
|
|
0 0 0% 2.82K 0 11 0K dm_uevent
|
|
0 0 0% 1.00K 0 32 0K ecryptfs_inode_cache
|
|
0 0 0% 0.02K 0 256 0K ecryptfs_file_cache
|
|
0 0 0% 0.77K 0 41 0K fat_inode_cache
|
|
0 0 0% 0.04K 0 102 0K fat_cache
|
|
0 0 0% 0.69K 0 46 0K squashfs_inode_cache
|
|
0 0 0% 0.19K 0 42 0K userfaultfd_ctx_cache
|
|
0 0 0% 0.11K 0 36 0K fanotify_perm_event
|
|
0 0 0% 0.03K 0 128 0K dnotify_struct
|
|
0 0 0% 0.28K 0 28 0K pid_namespace
|
|
0 0 0% 0.38K 0 41 0K request_sock_subflow_v6
|
|
0 0 0% 0.31K 0 25 0K xfrm_dst
|
|
0 0 0% 0.81K 0 39 0K xfrm_state
|
|
0 0 0% 1.00K 0 32 0K PING
|
|
0 0 0% 0.25K 0 32 0K dquot
|
|
0 0 0% 8.00K 0 4 0K msg_msg-8k
|
|
0 0 0% 4.00K 0 8 0K msg_msg-4k
|
|
0 0 0% 2.00K 0 16 0K msg_msg-2k
|
|
0 0 0% 1.00K 0 32 0K msg_msg-1k
|
|
0 0 0% 0.50K 0 32 0K msg_msg-512
|
|
0 0 0% 0.25K 0 32 0K msg_msg-256
|
|
0 0 0% 0.12K 0 32 0K msg_msg-128
|
|
0 0 0% 0.06K 0 64 0K msg_msg-64
|
|
0 0 0% 0.03K 0 128 0K msg_msg-32
|
|
0 0 0% 0.02K 0 256 0K msg_msg-16
|
|
0 0 0% 0.01K 0 512 0K msg_msg-8
|
|
0 0 0% 0.19K 0 42 0K msg_msg-192
|
|
0 0 0% 0.09K 0 42 0K msg_msg-96
|
|
0 0 0% 0.12K 0 32 0K memdup_user-128
|
|
0 0 0% 0.16K 0 25 0K file_lease_cache
|
|
0 0 0% 0.02K 0 256 0K pidfs_xattr_cache
|
|
0 0 0% 0.25K 0 32 0K bfilp
|
|
0 0 0% 0.10K 0 39 0K ima_iint_cache
|
|
0 0 0% 8.00K 0 4 0K dma-kmalloc-8k
|
|
0 0 0% 4.00K 0 8 0K dma-kmalloc-4k
|
|
0 0 0% 2.00K 0 16 0K dma-kmalloc-2k
|
|
0 0 0% 1.00K 0 32 0K dma-kmalloc-1k
|
|
0 0 0% 0.50K 0 32 0K dma-kmalloc-512
|
|
0 0 0% 0.25K 0 32 0K dma-kmalloc-256
|
|
0 0 0% 0.12K 0 32 0K dma-kmalloc-128
|
|
0 0 0% 0.06K 0 64 0K dma-kmalloc-64
|
|
0 0 0% 0.03K 0 128 0K dma-kmalloc-32
|
|
0 0 0% 0.02K 0 256 0K dma-kmalloc-16
|
|
0 0 0% 0.01K 0 512 0K dma-kmalloc-8
|
|
0 0 0% 0.19K 0 42 0K dma-kmalloc-192
|
|
0 0 0% 0.09K 0 42 0K dma-kmalloc-96
|
|
0 0 0% 8.00K 0 4 0K kmalloc-rcl-8k
|
|
0 0 0% 4.00K 0 8 0K kmalloc-rcl-4k
|
|
0 0 0% 2.00K 0 16 0K kmalloc-rcl-2k
|
|
0 0 0% 1.00K 0 32 0K kmalloc-rcl-1k
|
|
0 0 0% 0.50K 0 32 0K kmalloc-rcl-512
|
|
0 0 0% 0.25K 0 32 0K kmalloc-rcl-256
|
|
0 0 0% 0.06K 0 64 0K kmalloc-rcl-64
|
|
0 0 0% 0.03K 0 128 0K kmalloc-rcl-32
|
|
0 0 0% 0.02K 0 256 0K kmalloc-rcl-16
|
|
0 0 0% 0.01K 0 512 0K kmalloc-rcl-8
|
|
0 0 0% 8.00K 0 4 0K kmalloc-rnd-10-8k
|
|
|
|
--- kswapd stats
|
|
$ grep -E kswapd|pgmigrate|pgmigrate_failed|compact_ /proc/vmstat
|
|
pgdemote_kswapd 0
|
|
pgsteal_kswapd 0
|
|
pgscan_kswapd 0
|
|
kswapd_inodesteal 0
|
|
kswapd_low_wmark_hit_quickly 0
|
|
kswapd_high_wmark_hit_quickly 0
|
|
pgmigrate_success 0
|
|
pgmigrate_fail 0
|
|
compact_migrate_scanned 0
|
|
compact_free_scanned 0
|
|
compact_isolated 0
|
|
compact_stall 0
|
|
compact_fail 0
|
|
compact_success 0
|
|
compact_daemon_wake 0
|
|
compact_daemon_migrate_scanned 0
|
|
compact_daemon_free_scanned 0
|
|
|
|
###############################################################################
|
|
# 6. KERNEL TUNABLES / SYSCTL
|
|
###############################################################################
|
|
|
|
--- vm.* tunables
|
|
$ sysctl -a 2>/dev/null | grep -E '^vm\.(dirty_(ratio|background_ratio|bytes|background_bytes|expire_centisecs|writeback_centisecs)|swappiness|vfs_cache_pressure|min_free_kbytes|watermark_scale_factor|overcommit_memory|overcommit_ratio|nr_hugepages|nr_overcommit_hugepages|zone_reclaim_mode|compact_unevictable_allowed|stat_interval|admin_reserve_kbytes|user_reserve_kbytes)'
|
|
vm.admin_reserve_kbytes = 8192
|
|
vm.compact_unevictable_allowed = 1
|
|
vm.dirty_background_bytes = 0
|
|
vm.dirty_background_ratio = 5
|
|
vm.dirty_bytes = 0
|
|
vm.dirty_expire_centisecs = 3000
|
|
vm.dirty_ratio = 40
|
|
vm.dirty_writeback_centisecs = 500
|
|
vm.min_free_kbytes = 67584
|
|
vm.nr_hugepages = 0
|
|
vm.nr_hugepages_mempolicy = 0
|
|
vm.nr_overcommit_hugepages = 0
|
|
vm.overcommit_memory = 0
|
|
vm.overcommit_ratio = 50
|
|
vm.stat_interval = 1
|
|
vm.swappiness = 10
|
|
vm.user_reserve_kbytes = 131072
|
|
vm.vfs_cache_pressure = 100
|
|
vm.vfs_cache_pressure_denom = 100
|
|
vm.watermark_scale_factor = 10
|
|
vm.zone_reclaim_mode = 0
|
|
|
|
--- fs.* tunables
|
|
$ sysctl -a 2>/dev/null | grep -E '^fs\.(file-max|file-nr|aio-max-nr|aio-nr|nr_open|pipe-max-size|epoll/max_user_watches|lease-break-time|mqueue|max_user_ns)'
|
|
fs.aio-max-nr = 1048576
|
|
fs.aio-nr = 0
|
|
fs.file-max = 9223372036854775807
|
|
fs.file-nr = 3027 0 9223372036854775807
|
|
fs.lease-break-time = 45
|
|
fs.mqueue.msg_default = 10
|
|
fs.mqueue.msg_max = 10
|
|
fs.mqueue.msgsize_default = 8192
|
|
fs.mqueue.msgsize_max = 8192
|
|
fs.mqueue.queues_max = 256
|
|
fs.nr_open = 1073741816
|
|
fs.pipe-max-size = 1048576
|
|
|
|
--- kernel.* perf-relevant
|
|
$ sysctl -a 2>/dev/null | grep -E '^kernel\.(sched_(child_runs_first|migration_cost|domain|rt_period|rt_runtime|idle)|numa_balancing|watchdog|nmi_watchdog|hung_task|randomize_va_space|max_pid|threads-max|sched_time_avg)'
|
|
kernel.hung_task_all_cpu_backtrace = 0
|
|
kernel.hung_task_check_count = 4194304
|
|
kernel.hung_task_check_interval_secs = 0
|
|
kernel.hung_task_detect_count = 0
|
|
kernel.hung_task_panic = 0
|
|
kernel.hung_task_timeout_secs = 120
|
|
kernel.hung_task_warnings = 10
|
|
kernel.nmi_watchdog = 1
|
|
kernel.numa_balancing = 1
|
|
kernel.numa_balancing_promote_rate_limit_MBps = 65536
|
|
kernel.randomize_va_space = 2
|
|
kernel.sched_rt_period_us = 1000000
|
|
kernel.sched_rt_runtime_us = 950000
|
|
kernel.threads-max = 771576
|
|
kernel.watchdog = 1
|
|
kernel.watchdog_cpumask = 0-31
|
|
kernel.watchdog_thresh = 10
|
|
|
|
###############################################################################
|
|
# 7. NETWORK SYSCTL / TCP
|
|
###############################################################################
|
|
|
|
--- net.core.* tunables
|
|
$ sysctl -a 2>/dev/null | grep -E '^net\.core\.(rmem_default|rmem_max|wmem_default|wmem_max|optmem_max|somaxconn|netdev_max_backlog|netdev_budget|netdev_budget_usecs|netdev_tstamp_prequeue|rps_flow_cnt|busy_poll|busy_read|default_qdisc|dev_weight|xfrm)'
|
|
net.core.busy_poll = 0
|
|
net.core.busy_read = 0
|
|
net.core.default_qdisc = fq
|
|
net.core.dev_weight = 64
|
|
net.core.dev_weight_rx_bias = 1
|
|
net.core.dev_weight_tx_bias = 1
|
|
net.core.netdev_budget = 300
|
|
net.core.netdev_budget_usecs = 2000
|
|
net.core.netdev_max_backlog = 250000
|
|
net.core.netdev_tstamp_prequeue = 1
|
|
net.core.optmem_max = 131072
|
|
net.core.rmem_default = 26214400
|
|
net.core.rmem_max = 134217728
|
|
net.core.somaxconn = 65535
|
|
net.core.wmem_default = 26214400
|
|
net.core.wmem_max = 134217728
|
|
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.tcp.* tunables
|
|
$ sysctl -a 2>/dev/null | grep -E '^net\.ipv4\.tcp_(rmem|wmem|congestion_control|available_congestion_control|mtu_probing|slow_start_after_idle|no_metrics_save|timestamps|window_scaling|sack|low_latency|fastopen|ecn|ecn_fallback|syncookies|max_syn_backlog|tw_reuse|fin_timeout|keepalive_time|keepalive_probes|keepalive_intvl|thp_linear_timeouts|pacing|pacing_ss_ratio|pacing_ca_ratio|no_ssthresh_metrics_save|md5sig|abort_on_overflow|buffer_split)'
|
|
net.ipv4.tcp_abort_on_overflow = 0
|
|
net.ipv4.tcp_available_congestion_control = reno cubic bbr
|
|
net.ipv4.tcp_congestion_control = bbr
|
|
net.ipv4.tcp_ecn = 2
|
|
net.ipv4.tcp_ecn_fallback = 1
|
|
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_keepalive_intvl = 75
|
|
net.ipv4.tcp_keepalive_probes = 9
|
|
net.ipv4.tcp_keepalive_time = 7200
|
|
net.ipv4.tcp_low_latency = 0
|
|
net.ipv4.tcp_max_syn_backlog = 4096
|
|
net.ipv4.tcp_mtu_probing = 0
|
|
net.ipv4.tcp_no_metrics_save = 0
|
|
net.ipv4.tcp_no_ssthresh_metrics_save = 1
|
|
net.ipv4.tcp_pacing_ca_ratio = 120
|
|
net.ipv4.tcp_pacing_ss_ratio = 200
|
|
net.ipv4.tcp_rmem = 4096 87380 134217728
|
|
net.ipv4.tcp_sack = 1
|
|
net.ipv4.tcp_slow_start_after_idle = 1
|
|
net.ipv4.tcp_syncookies = 1
|
|
net.ipv4.tcp_timestamps = 1
|
|
net.ipv4.tcp_tw_reuse = 2
|
|
net.ipv4.tcp_tw_reuse_delay = 1000
|
|
net.ipv4.tcp_window_scaling = 1
|
|
net.ipv4.tcp_wmem = 4096 65536 134217728
|
|
|
|
--- other net.* sysctls
|
|
$ sysctl -a 2>/dev/null | grep -E '^net\.(ipv4\.ip_(local_port_range|local_reserved_ports|no_pmtu_disc|forwarding)|ipv4\.conf\.all\.(rp_filter|accept_redirects|send_redirects)|ipv4\.conf\.default\.forwarding|core\.netdev_budget|ipv6\.conf\.all\.disable_ipv6)'
|
|
net.core.netdev_budget = 300
|
|
net.core.netdev_budget_usecs = 2000
|
|
net.ipv4.conf.all.accept_redirects = 1
|
|
net.ipv4.conf.all.rp_filter = 2
|
|
net.ipv4.conf.all.send_redirects = 1
|
|
net.ipv4.conf.default.forwarding = 0
|
|
net.ipv4.ip_local_port_range = 32768 60999
|
|
net.ipv4.ip_local_reserved_ports =
|
|
net.ipv4.ip_no_pmtu_disc = 0
|
|
net.ipv6.conf.all.disable_ipv6 = 0
|
|
|
|
--- sysctl.d
|
|
total 16
|
|
drwxr-xr-x 2 root root 4096 Jul 26 15:44 .
|
|
drwxr-xr-x 104 root root 4096 Jul 26 16:23 ..
|
|
-rw-r--r-- 1 root root 499 Jul 26 15:45 99-perfopt.conf
|
|
-rw-r--r-- 1 root root 269 Jul 30 2025 README.sysctl
|
|
|
|
--- /etc/sysctl.conf
|
|
[missing: /etc/sysctl.conf]
|
|
|
|
--- non-default sysctl values (sorted, filtered)
|
|
$ # Show only sysctls that differ from running state vs an empty config;
|
|
# too noisy to dump all of /proc/sys. Just show /etc/sysctl.d content.
|
|
for f in /etc/sysctl.d/*.conf /etc/sysctl.conf; do
|
|
[ -r "$f" ] || continue
|
|
echo "=== $f ==="
|
|
grep -vE '^\s*#|^\s*$' "$f" 2>/dev/null
|
|
done
|
|
=== /etc/sysctl.d/99-perfopt.conf ===
|
|
vm.swappiness = 10
|
|
net.ipv4.tcp_congestion_control = bbr
|
|
net.core.default_qdisc = fq
|
|
net.core.rmem_max = 134217728
|
|
net.core.wmem_max = 134217728
|
|
net.core.rmem_default = 26214400
|
|
net.core.wmem_default = 26214400
|
|
net.core.netdev_max_backlog = 250000
|
|
net.core.somaxconn = 65535
|
|
net.ipv4.tcp_rmem = 4096 87380 134217728
|
|
net.ipv4.tcp_wmem = 4096 65536 134217728
|
|
|
|
###############################################################################
|
|
# 8. tuned / irqbalance / udev
|
|
###############################################################################
|
|
|
|
--- tuned-adm active
|
|
$ tuned-adm active
|
|
Current active profile: virtual-host
|
|
|
|
--- tuned-adm list
|
|
$ tuned-adm list
|
|
Available profiles:
|
|
- accelerator-performance - Throughput performance based tuning with disabled higher latency STOP states
|
|
- atomic-guest - Optimize virtual guests based on the Atomic variant
|
|
- atomic-host - Optimize bare metal systems running the Atomic variant
|
|
- aws - Optimize for aws ec2 instances
|
|
- balanced - General non-specialized tuned profile
|
|
- balanced-battery - Balanced profile biased towards power savings changes for battery
|
|
- cpu-partitioning - Optimize for CPU partitioning
|
|
- cpu-partitioning-powersave - Optimize for CPU partitioning with additional powersave
|
|
- default - Legacy default tuned profile
|
|
- desktop - Optimize for the desktop use-case
|
|
- desktop-powersave - Optmize for the desktop use-case with power saving
|
|
- enterprise-storage - Legacy profile for RHEL6, for RHEL7, please use throughput-performance profile
|
|
- hpc-compute - Optimize for HPC compute workloads
|
|
- intel-sst - Configure for Intel Speed Select Base Frequency
|
|
- laptop-ac-powersave - Optimize for laptop with power savings
|
|
- laptop-battery-powersave - Optimize laptop profile with more aggressive power saving
|
|
- latency-performance - Optimize for deterministic performance at the cost of increased power consumption
|
|
- mssql - Optimize for Microsoft SQL Server
|
|
- network-latency - Optimize for deterministic performance at the cost of increased power consumption, focused on low latency network performance
|
|
- network-throughput - Optimize for streaming network throughput, generally only necessary on older CPUs or 40G+ networks
|
|
- openshift - Optimize systems running OpenShift (parent profile)
|
|
- openshift-control-plane - Optimize systems running OpenShift control plane
|
|
- openshift-node - Optimize systems running OpenShift nodes
|
|
- optimize-serial-console - Optimize for serial console use.
|
|
- oracle - Optimize for Oracle RDBMS
|
|
- postgresql - Optimize for PostgreSQL server
|
|
- powersave - Optimize for low power consumption
|
|
- realtime - Optimize for realtime workloads
|
|
- realtime-virtual-guest - Optimize for realtime workloads running within a KVM guest
|
|
- realtime-virtual-host - Optimize for KVM guests running realtime workloads
|
|
- sap-hana - Optimize for SAP HANA
|
|
- sap-hana-kvm-guest - Optimize for running SAP HANA on KVM inside a virtual guest
|
|
- sap-netweaver - Optimize for SAP NetWeaver
|
|
- server-powersave - Optimize for server power savings
|
|
- spectrumscale-ece - Optimized for Spectrum Scale Erasure Code Edition Servers
|
|
- spindown-disk - Optimize for power saving by spinning-down rotational disks
|
|
- throughput-performance - Broadly applicable tuning that provides excellent performance across a variety of common server workloads
|
|
- virtual-guest - Optimize for running inside a virtual guest
|
|
- virtual-host - Optimize for running KVM guests
|
|
Current active profile: virtual-host
|
|
|
|
--- systemctl is-active tuned
|
|
$ systemctl is-active tuned
|
|
active
|
|
|
|
--- irqbalance status
|
|
$ systemctl is-active irqbalance
|
|
inactive
|
|
[exit=4 / not installed or not permitted]
|
|
|
|
--- irqbalance config
|
|
[missing: /etc/default/irqbalance]
|
|
[missing: /etc/irqbalance.conf]
|
|
|
|
--- modprobe.d
|
|
total 20
|
|
drwxr-xr-x 2 root root 4096 Jul 26 11:25 .
|
|
drwxr-xr-x 104 root root 4096 Jul 26 16:23 ..
|
|
-rw-r--r-- 1 root root 154 Oct 18 2025 intel-microcode-blacklist.conf
|
|
-rw-r--r-- 1 root root 172 Nov 18 2025 pve-blacklist.conf
|
|
-rw-r--r-- 1 root root 0 Apr 6 09:43 tuned.conf
|
|
-rw-r--r-- 1 root root 36 Apr 4 12:32 zfs.conf
|
|
|
|
--- udev rules.d
|
|
total 8
|
|
drwxr-xr-x 2 root root 4096 Apr 4 12:31 .
|
|
drwxr-xr-x 4 root root 4096 Jul 26 11:25 ..
|
|
lrwxrwxrwx 1 root root 9 Apr 4 12:31 60-bridge-network-interface.rules -> /dev/null
|
|
|
|
--- modprobe.d files
|
|
--- /etc/modprobe.d/intel-microcode-blacklist.conf ---
|
|
# The microcode module attempts to apply a microcode update when
|
|
# it autoloads. This is not always safe, so we block it by default.
|
|
blacklist microcode
|
|
--- /etc/modprobe.d/pve-blacklist.conf ---
|
|
# This file contains a list of modules which are not supported by Proxmox VE
|
|
|
|
# nvidiafb see bugreport https://bugzilla.proxmox.com/show_bug.cgi?id=701
|
|
blacklist nvidiafb
|
|
--- /etc/modprobe.d/tuned.conf ---
|
|
--- /etc/modprobe.d/zfs.conf ---
|
|
options zfs zfs_arc_max=13515096064
|
|
|
|
--- module params: kvm_intel
|
|
$ for p in /sys/module/kvm_intel/parameters/*; do
|
|
[ -e "$p" ] && printf ' %s = %s\n' "$(basename "$p")" "$(cat "$p" 2>/dev/null)"
|
|
done
|
|
allow_smaller_maxphyaddr = N
|
|
dump_invalid_vmcs = N
|
|
emulate_invalid_guest_state = Y
|
|
enable_apicv = N
|
|
enable_device_posted_irqs = N
|
|
enable_ipiv = N
|
|
enable_shadow_vmcs = N
|
|
enlightened_vmcs = N
|
|
ept = Y
|
|
eptad = N
|
|
error_on_inconsistent_vmcs_config = Y
|
|
fasteoi = Y
|
|
flexpriority = Y
|
|
nested = Y
|
|
nested_early_check = N
|
|
ple_gap = 0
|
|
ple_window = 0
|
|
ple_window_grow = 0
|
|
ple_window_max = 0
|
|
ple_window_shrink = 0
|
|
pml = N
|
|
preemption_timer = N
|
|
sgx = N
|
|
tdx = N
|
|
unrestricted_guest = N
|
|
vmentry_l1d_flush = cond
|
|
vnmi = Y
|
|
vpid = Y
|
|
|
|
--- module params: kvm_amd
|
|
$ for p in /sys/module/kvm_amd/parameters/*; do
|
|
[ -e "$p" ] && printf ' %s = %s\n' "$(basename "$p")" "$(cat "$p" 2>/dev/null)"
|
|
done
|
|
[exit=1]
|
|
|
|
--- module params: relevant net drivers
|
|
$ for mod in i40e ixgbe mlx5_core igb ice bnx2x virtio_net; do
|
|
[ -d "/sys/module/$mod/parameters" ] || continue
|
|
echo "=== $mod ==="
|
|
for p in /sys/module/$mod/parameters/*; do
|
|
[ -e "$p" ] && printf ' %s = %s\n' "$(basename "$p")" "$(cat "$p" 2>/dev/null)"
|
|
done
|
|
done
|
|
=== virtio_net ===
|
|
csum = Y
|
|
gso = Y
|
|
napi_tx = Y
|
|
napi_weight = 64
|
|
|
|
###############################################################################
|
|
# 9. PROXMOX VERSION & CLUSTER
|
|
###############################################################################
|
|
|
|
--- pveversion
|
|
$ pveversion
|
|
pve-manager/9.1.1/42db4a6cf33dac83 (running kernel: 6.17.2-1-pve)
|
|
|
|
--- pveversion -v
|
|
$ pveversion -v
|
|
proxmox-ve: 9.2.0 (running kernel: 6.17.2-1-pve)
|
|
pve-manager: 9.1.1 (running version: 9.1.1/42db4a6cf33dac83)
|
|
proxmox-kernel-helper: 9.2.0
|
|
proxmox-kernel-6.17.2-1-pve-signed: 6.17.2-1
|
|
proxmox-kernel-6.17: 6.17.2-1
|
|
ceph-fuse: 19.2.3-pve2
|
|
corosync: 3.1.10-pve3
|
|
criu: 4.1.1-1
|
|
frr-pythontools: 10.6.1-1+pve2
|
|
ifupdown2: 3.3.0-1+pmx12
|
|
intel-microcode: 3.20251111.1~deb13u1
|
|
ksm-control-daemon: 1.5-1
|
|
libjs-extjs: 7.0.0-5
|
|
libproxmox-acme-perl: 1.7.1
|
|
libproxmox-backup-qemu0: 2.0.2
|
|
libproxmox-rs-perl: 0.4.1
|
|
libpve-access-control: 9.0.4
|
|
libpve-apiclient-perl: 3.4.2
|
|
libpve-cluster-api-perl: 9.1.6
|
|
libpve-cluster-perl: 9.1.6
|
|
libpve-common-perl: 9.1.19
|
|
libpve-guest-common-perl: 6.0.5
|
|
libpve-http-server-perl: 6.0.5
|
|
libpve-network-perl: 1.2.3
|
|
libpve-rs-perl: 0.11.3
|
|
libpve-storage-perl: 9.0.18
|
|
libspice-server1: 0.15.2-1+b1
|
|
lvm2: 2.03.31-2+pmx1
|
|
lxc-pve: 7.0.0-2
|
|
lxcfs: 7.0.0-pve1
|
|
novnc-pve: 1.7.0-2
|
|
proxmox-backup-client: 4.2.3-1
|
|
proxmox-backup-file-restore: 4.2.3-1
|
|
proxmox-backup-restore-image: 1.0.0
|
|
proxmox-firewall: 1.2.3
|
|
proxmox-kernel-helper: 9.2.0
|
|
proxmox-mail-forward: 1.0.3
|
|
proxmox-mini-journalreader: 1.7
|
|
proxmox-offline-mirror-helper: 0.7.4
|
|
proxmox-widget-toolkit: 5.2.6
|
|
pve-cluster: 9.1.6
|
|
pve-container: 6.0.18
|
|
pve-docs: 9.2.3
|
|
pve-edk2-firmware: 4.2025.05-2
|
|
pve-esxi-import-tools: 1.0.1
|
|
pve-firewall: 6.0.5
|
|
pve-firmware: 3.18-5
|
|
pve-ha-manager: 5.0.8
|
|
pve-i18n: 3.9.0
|
|
pve-qemu-kvm: 11.0.2-2
|
|
pve-xtermjs: 6.0.0-2
|
|
qemu-server: 9.0.30
|
|
smartmontools: 7.5-pve2
|
|
spiceterm: 3.4.2
|
|
swtpm: 0.8.0+pve3
|
|
vncterm: 1.9.2
|
|
zfsutils-linux: 2.3.4-pve1
|
|
|
|
--- pvecm status
|
|
$ pvecm status
|
|
Error: Corosync config '/etc/pve/corosync.conf' does not exist - is this node part of a cluster?
|
|
[exit=2 / not installed or not permitted]
|
|
|
|
--- pvecm nodes
|
|
$ pvecm nodes
|
|
Error: Corosync config '/etc/pve/corosync.conf' does not exist - is this node part of a cluster?
|
|
[exit=2 / not installed or not permitted]
|
|
|
|
--- pvecm expected
|
|
$ pvecm expected
|
|
400 not enough arguments
|
|
pvecm expected <expected>
|
|
[exit=255 / not installed or not permitted]
|
|
|
|
--- pveperf
|
|
$ timeout 15 pveperf
|
|
CPU BOGOMIPS: 76604.80
|
|
REGEX/SECOND: 1625402
|
|
HD SIZE: 93.93 GB (/dev/mapper/pve-root)
|
|
BUFFERED READS: 17.65 MB/sec
|
|
AVERAGE SEEK TIME: 39.07 ms
|
|
FSYNCS/SECOND: 30.51
|
|
[exit=124 / not installed or not permitted]
|
|
|
|
--- corosync.conf
|
|
[missing: /etc/pve/corosync.conf]
|
|
|
|
--- datacenter.cfg
|
|
--- /etc/pve/datacenter.cfg ---
|
|
keyboard: en-us
|
|
|
|
--- storage.cfg
|
|
--- /etc/pve/storage.cfg ---
|
|
dir: local
|
|
path /var/lib/vz
|
|
content iso,vztmpl,backup,import
|
|
|
|
lvmthin: local-lvm
|
|
thinpool data
|
|
vgname pve
|
|
content rootdir,images
|
|
|
|
|
|
nfs: D2
|
|
options nconnect=4,noatime
|
|
export /mnt/tsys4/D2
|
|
path /mnt/pve/D2
|
|
server pfv-tsys4-nfs-stor
|
|
content images
|
|
prune-backups keep-all=1
|
|
|
|
nfs: D3
|
|
options nconnect=4,noatime
|
|
export /mnt/tsys4/D3
|
|
path /mnt/pve/D3
|
|
server pfv-tsys4-nfs-stor
|
|
content images
|
|
prune-backups keep-all=1
|
|
|
|
nfs: D5
|
|
options nconnect=4,noatime
|
|
export /mnt/tsys4/D5
|
|
path /mnt/pve/D5
|
|
server pfv-tsys4-nfs-stor
|
|
content images
|
|
prune-backups keep-all=1
|
|
|
|
nfs: S2
|
|
options nconnect=4,noatime
|
|
export /mnt/pfv-tsys5/S2
|
|
path /mnt/pve/S2
|
|
server pfv-tsys5-nfs-stor
|
|
content images
|
|
prune-backups keep-all=1
|
|
|
|
nfs: S3
|
|
options nconnect=4,noatime
|
|
export /mnt/pfv-tsys5/S3
|
|
path /mnt/pve/S3
|
|
server pfv-tsys5-nfs-stor
|
|
content images
|
|
prune-backups keep-all=1
|
|
|
|
nfs: S4
|
|
options nconnect=4,noatime
|
|
export /mnt/pfv-tsys5/S4
|
|
path /mnt/pve/S4
|
|
server pfv-tsys5-nfs-stor
|
|
content images
|
|
prune-backups keep-all=1
|
|
|
|
nfs: T5-SSD
|
|
options nconnect=4,noatime
|
|
export /mnt/pfv-tsys5/ssd
|
|
path /mnt/pve/T5-SSD
|
|
server pfv-tsys5-nfs-stor
|
|
content images
|
|
prune-backups keep-all=1
|
|
|
|
|
|
--- user.cfg
|
|
--- /etc/pve/user.cfg ---
|
|
user:root@pam:1:0:::coo@turnsys.com::x:
|
|
token:root@pam!pdm-admin-tsys-proxmox-datacenter:0:0:auto-generated by PDM host 'tsys-proxmox-datacenter' on Mon, 06 Apr 2026 10%3A36%3A34 -0500:
|
|
|
|
|
|
|
|
|
|
|
|
--- domains.cfg
|
|
[missing: /etc/pve/domains.cfg]
|
|
|
|
--- cluster resources (compact)
|
|
$ pvesh get /cluster/resources --type node --output-format json 2>/dev/null \
|
|
| jq -r '.[] | "\(.node)\tcpu=\(.cpu)\tmem=\(.mem)\tmaxmem=\(.maxmem)\tmaxdisk=\(.maxdisk)\tstatus=\(.status)\tssl_fingerprint=\(.ssl_fingerprint)"' 2>/dev/null \
|
|
|| pvesh get /cluster/resources --type node 2>/dev/null
|
|
┌────────────────┬──────┬─────────────┬─────────┬───────┬──────────┬──────────┬───────────┬─────────┬───────┬──────┬────────┬───────────┬───────────┬──────────┬─────────┬──────┬───────┬────────┬─────────┬──────────────┬───────────┬────────────┬──────┬──────────┬─────┬────────┬─────────┬──────┬──────────┬────────┬──────┬───────────┐
|
|
│ id │ type │ cgroup-mode │ content │ cpu │ disk │ diskread │ diskwrite │ hastate │ level │ lock │ maxcpu │ maxdisk │ maxmem │ mem │ memhost │ name │ netin │ netout │ network │ network-type │ node │ plugintype │ pool │ protocol │ sdn │ status │ storage │ tags │ template │ uptime │ vmid │ zone-type │
|
|
╞════════════════╪══════╪═════════════╪═════════╪═══════╪══════════╪══════════╪═══════════╪═════════╪═══════╪══════╪════════╪═══════════╪═══════════╪══════════╪═════════╪══════╪═══════╪════════╪═════════╪══════════════╪═══════════╪════════════╪══════╪══════════╪═════╪════════╪═════════╪══════╪══════════╪════════╪══════╪═══════════╡
|
|
│ node/pfv-tsys6 │ node │ 2 │ │ 1.98% │ 8.90 GiB │ │ │ │ │ │ 16 │ 93.93 GiB │ 94.28 GiB │ 4.65 GiB │ │ │ │ │ │ │ pfv-tsys6 │ │ │ │ │ online │ │ │ │ 8m 46s │ │ │
|
|
└────────────────┴──────┴─────────────┴─────────┴───────┴──────────┴──────────┴───────────┴─────────┴───────┴──────┴────────┴───────────┴───────────┴──────────┴─────────┴──────┴───────┴────────┴─────────┴──────────────┴───────────┴────────────┴──────┴──────────┴─────┴────────┴─────────┴──────┴──────────┴────────┴──────┴───────────┘
|
|
|
|
###############################################################################
|
|
# 10. NETWORK: INTERFACES
|
|
###############################################################################
|
|
|
|
--- ip -d link
|
|
$ ip -d link
|
|
1: lo: <LOOPBACK,UP,LOWER_UP> 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 promiscuity 0 allmulti 0 minmtu 0 maxmtu 0 addrgenmode eui64 numtxqueues 1 numrxqueues 1 gso_max_size 65536 gso_max_segs 65535 tso_max_size 524280 tso_max_segs 65535 gro_max_size 65536 gso_ipv4_max_size 65536 gro_ipv4_max_size 65536
|
|
2: nic0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq master vmbr0 state UP mode DEFAULT group default qlen 1000
|
|
link/ether 00:21:9b:a2:7c:53 brd ff:ff:ff:ff:ff:ff promiscuity 1 allmulti 1 minmtu 46 maxmtu 9000
|
|
bridge_slave state forwarding priority 32 cost 5 hairpin off guard off root_block off fastleave off learning on flood on port_id 0x8001 port_no 0x1 designated_port 32769 designated_cost 0 designated_bridge 8000.0:21:9b:a2:7c:53 designated_root 8000.0:21:9b:a2:7c:53 hold_timer 0.00 message_age_timer 0.00 forward_delay_timer 0.00 topology_change_ack 0 config_pending 0 proxy_arp off proxy_arp_wifi off mcast_router 1 mcast_fast_leave off mcast_flood on bcast_flood on mcast_to_unicast off neigh_suppress off neigh_vlan_suppress off group_fwd_mask 0 group_fwd_mask_str 0x0 vlan_tunnel off isolated off locked off mab off addrgenmode eui64 numtxqueues 8 numrxqueues 8 gso_max_size 65536 gso_max_segs 65535 tso_max_size 65536 tso_max_segs 65535 gro_max_size 65536 gso_ipv4_max_size 65536 gro_ipv4_max_size 65536 parentbus pci parentdev 0000:01:00.0
|
|
altname enp1s0f0
|
|
altname enx00219ba27c53
|
|
3: nic1: <BROADCAST,MULTICAST,SLAVE,UP,LOWER_UP> mtu 1500 qdisc mq master bond0 state UP mode DEFAULT group default qlen 1000
|
|
link/ether 00:21:9b:a2:7c:55 brd ff:ff:ff:ff:ff:ff promiscuity 1 allmulti 1 minmtu 46 maxmtu 9000
|
|
bond_slave state ACTIVE mii_status UP link_failure_count 0 perm_hwaddr 00:21:9b:a2:7c:55 queue_id 0 prio 0 ad_aggregator_id 2 ad_actor_oper_port_state 61 ad_actor_oper_port_state_str <active,aggregating,in_sync,collecting,distributing> ad_partner_oper_port_state 61 ad_partner_oper_port_state_str <active,aggregating,in_sync,collecting,distributing> addrgenmode eui64 numtxqueues 8 numrxqueues 8 gso_max_size 65536 gso_max_segs 65535 tso_max_size 65536 tso_max_segs 65535 gro_max_size 65536 gso_ipv4_max_size 65536 gro_ipv4_max_size 65536 parentbus pci parentdev 0000:01:00.1
|
|
altname enp1s0f1
|
|
altname enx00219ba27c55
|
|
4: nic2: <BROADCAST,MULTICAST,SLAVE,UP,LOWER_UP> mtu 1500 qdisc mq master bond0 state UP mode DEFAULT group default qlen 1000
|
|
link/ether 00:21:9b:a2:7c:55 brd ff:ff:ff:ff:ff:ff permaddr 00:21:9b:a2:7c:57 promiscuity 1 allmulti 1 minmtu 46 maxmtu 9000
|
|
bond_slave state ACTIVE mii_status UP link_failure_count 0 perm_hwaddr 00:21:9b:a2:7c:57 queue_id 0 prio 0 ad_aggregator_id 2 ad_actor_oper_port_state 61 ad_actor_oper_port_state_str <active,aggregating,in_sync,collecting,distributing> ad_partner_oper_port_state 61 ad_partner_oper_port_state_str <active,aggregating,in_sync,collecting,distributing> addrgenmode eui64 numtxqueues 8 numrxqueues 8 gso_max_size 65536 gso_max_segs 65535 tso_max_size 65536 tso_max_segs 65535 gro_max_size 65536 gso_ipv4_max_size 65536 gro_ipv4_max_size 65536 parentbus pci parentdev 0000:02:00.0
|
|
altname enp2s0f0
|
|
altname enx00219ba27c57
|
|
5: nic3: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP mode DEFAULT group default qlen 1000
|
|
link/ether 00:21:9b:a2:7c:59 brd ff:ff:ff:ff:ff:ff promiscuity 1 allmulti 1 minmtu 46 maxmtu 9000 addrgenmode eui64 numtxqueues 8 numrxqueues 8 gso_max_size 65536 gso_max_segs 65535 tso_max_size 65536 tso_max_segs 65535 gro_max_size 65536 gso_ipv4_max_size 65536 gro_ipv4_max_size 65536 parentbus pci parentdev 0000:02:00.1
|
|
altname enp2s0f1
|
|
altname enx00219ba27c59
|
|
6: nic4: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN mode DEFAULT group default qlen 1000
|
|
link/ether 00:10:18:72:16:40 brd ff:ff:ff:ff:ff:ff promiscuity 0 allmulti 0 minmtu 46 maxmtu 9000 addrgenmode eui64 numtxqueues 8 numrxqueues 8 gso_max_size 65536 gso_max_segs 65535 tso_max_size 65536 tso_max_segs 65535 gro_max_size 65536 gso_ipv4_max_size 65536 gro_ipv4_max_size 65536 parentbus pci parentdev 0000:04:00.0
|
|
altname enx001018721640
|
|
7: nic5: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN mode DEFAULT group default qlen 1000
|
|
link/ether 00:10:18:72:16:42 brd ff:ff:ff:ff:ff:ff promiscuity 0 allmulti 0 minmtu 46 maxmtu 9000 addrgenmode eui64 numtxqueues 8 numrxqueues 8 gso_max_size 65536 gso_max_segs 65535 tso_max_size 65536 tso_max_segs 65535 gro_max_size 65536 gso_ipv4_max_size 65536 gro_ipv4_max_size 65536 parentbus pci parentdev 0000:04:00.1
|
|
altname enx001018721642
|
|
8: tailscale0: <POINTOPOINT,MULTICAST,NOARP,UP,LOWER_UP> mtu 1280 qdisc fq state UNKNOWN mode DEFAULT group default qlen 500
|
|
link/none promiscuity 0 allmulti 0 minmtu 68 maxmtu 65535
|
|
tun type tun pi off vnet_hdr on persist off addrgenmode random numtxqueues 1 numrxqueues 1 gso_max_size 65536 gso_max_segs 65535 tso_max_size 65536 tso_max_segs 65535 gro_max_size 65536 gso_ipv4_max_size 65536 gro_ipv4_max_size 65536
|
|
9: vmbr0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000
|
|
link/ether 00:21:9b:a2:7c:53 brd ff:ff:ff:ff:ff:ff promiscuity 0 allmulti 0 minmtu 68 maxmtu 65535
|
|
bridge forward_delay 0 hello_time 200 max_age 2000 ageing_time 30000 stp_state 0 priority 32768 vlan_filtering 0 vlan_protocol 802.1Q bridge_id 8000.0:21:9b:a2:7c:53 designated_root 8000.0:21:9b:a2:7c:53 root_port 0 root_path_cost 0 topology_change 0 topology_change_detected 0 hello_timer 0.00 tcn_timer 0.00 topology_change_timer 0.00 gc_timer 86.34 fdb_n_learned 96 fdb_max_learned 0 vlan_default_pvid 1 vlan_stats_enabled 0 vlan_stats_per_port 0 group_fwd_mask 0 group_address 01:80:c2:00:00:00 mcast_snooping 1 no_linklocal_learn 0 mcast_vlan_snooping 0 mst_enabled 0 mcast_router 1 mcast_query_use_ifaddr 0 mcast_querier 0 mcast_querier_ipv4_addr 0.0.0.0 mcast_querier_ipv4_port 2 mcast_querier_ipv4_other_timer 17.2us mcast_hash_elasticity 16 mcast_hash_max 4096 mcast_last_member_count 2 mcast_startup_query_count 2 mcast_last_member_interval 100 mcast_membership_interval 26000 mcast_querier_interval 25500 mcast_query_interval 12500 mcast_query_response_interval 1000 mcast_startup_query_interval 3125 mcast_stats_enabled 0 mcast_igmp_version 2 mcast_mld_version 1 nf_call_iptables 0 nf_call_ip6tables 0 nf_call_arptables 0 addrgenmode eui64 numtxqueues 1 numrxqueues 1 gso_max_size 65536 gso_max_segs 65535 tso_max_size 65536 tso_max_segs 65535 gro_max_size 65536 gso_ipv4_max_size 65536 gro_ipv4_max_size 65536
|
|
10: nic3.2@nic3: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master br-rr-mgmt state UP mode DEFAULT group default qlen 1000
|
|
link/ether 00:21:9b:a2:7c:59 brd ff:ff:ff:ff:ff:ff promiscuity 1 allmulti 1 minmtu 0 maxmtu 65535
|
|
vlan protocol 802.1Q id 2 <REORDER_HDR>
|
|
bridge_slave state forwarding priority 32 cost 19 hairpin off guard off root_block off fastleave off learning on flood on port_id 0x8001 port_no 0x1 designated_port 32769 designated_cost 0 designated_bridge 8000.0:21:9b:a2:7c:59 designated_root 8000.0:21:9b:a2:7c:59 hold_timer 0.00 message_age_timer 0.00 forward_delay_timer 0.00 topology_change_ack 0 config_pending 0 proxy_arp off proxy_arp_wifi off mcast_router 1 mcast_fast_leave off mcast_flood on bcast_flood on mcast_to_unicast off neigh_suppress off neigh_vlan_suppress off group_fwd_mask 0 group_fwd_mask_str 0x0 vlan_tunnel off isolated off locked off mab off addrgenmode eui64 numtxqueues 1 numrxqueues 1 gso_max_size 65536 gso_max_segs 65535 tso_max_size 65536 tso_max_segs 65535 gro_max_size 65536 gso_ipv4_max_size 65536 gro_ipv4_max_size 65536
|
|
11: br-rr-mgmt: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000
|
|
link/ether 00:21:9b:a2:7c:59 brd ff:ff:ff:ff:ff:ff promiscuity 0 allmulti 0 minmtu 68 maxmtu 65535
|
|
bridge forward_delay 0 hello_time 200 max_age 2000 ageing_time 30000 stp_state 0 priority 32768 vlan_filtering 0 vlan_protocol 802.1Q bridge_id 8000.0:21:9b:a2:7c:59 designated_root 8000.0:21:9b:a2:7c:59 root_port 0 root_path_cost 0 topology_change 0 topology_change_detected 0 hello_timer 0.00 tcn_timer 0.00 topology_change_timer 0.00 gc_timer 137.21 fdb_n_learned 0 fdb_max_learned 0 vlan_default_pvid 1 vlan_stats_enabled 0 vlan_stats_per_port 0 group_fwd_mask 0 group_address 01:80:c2:00:00:00 mcast_snooping 1 no_linklocal_learn 0 mcast_vlan_snooping 0 mst_enabled 0 mcast_router 1 mcast_query_use_ifaddr 0 mcast_querier 0 mcast_hash_elasticity 16 mcast_hash_max 4096 mcast_last_member_count 2 mcast_startup_query_count 2 mcast_last_member_interval 100 mcast_membership_interval 26000 mcast_querier_interval 25500 mcast_query_interval 12500 mcast_query_response_interval 1000 mcast_startup_query_interval 3125 mcast_stats_enabled 0 mcast_igmp_version 2 mcast_mld_version 1 nf_call_iptables 0 nf_call_ip6tables 0 nf_call_arptables 0 addrgenmode eui64 numtxqueues 1 numrxqueues 1 gso_max_size 65536 gso_max_segs 65535 tso_max_size 65536 tso_max_segs 65535 gro_max_size 65536 gso_ipv4_max_size 65536 gro_ipv4_max_size 65536
|
|
12: bond0: <BROADCAST,MULTICAST,MASTER,UP,LOWER_UP> mtu 1500 qdisc noqueue master storagenet state UP mode DEFAULT group default qlen 1000
|
|
link/ether 00:21:9b:a2:7c:55 brd ff:ff:ff:ff:ff:ff promiscuity 1 allmulti 1 minmtu 68 maxmtu 65535
|
|
bond mode 802.3ad miimon 100 updelay 0 downdelay 0 peer_notify_delay 0 use_carrier 1 arp_interval 0 arp_missed_max 2 arp_validate none arp_all_targets any primary_reselect always fail_over_mac none xmit_hash_policy layer3+4 resend_igmp 1 num_grat_arp 1 all_slaves_active 0 min_links 0 lp_interval 1 packets_per_slave 1 lacp_active on lacp_rate slow coupled_control on ad_select stable ad_aggregator 2 ad_num_ports 2 ad_actor_key 9 ad_partner_key 26 ad_partner_mac 00:13:72:46:95:e4 ad_actor_sys_prio 65535 ad_user_port_key 0 ad_actor_system 00:00:00:00:00:00 tlb_dynamic_lb 1
|
|
bridge_slave state forwarding priority 32 cost 5 hairpin off guard off root_block off fastleave off learning on flood on port_id 0x8001 port_no 0x1 designated_port 32769 designated_cost 0 designated_bridge 8000.0:21:9b:a2:7c:55 designated_root 8000.0:21:9b:a2:7c:55 hold_timer 0.00 message_age_timer 0.00 forward_delay_timer 0.00 topology_change_ack 0 config_pending 0 proxy_arp off proxy_arp_wifi off mcast_router 1 mcast_fast_leave off mcast_flood on bcast_flood on mcast_to_unicast off neigh_suppress off neigh_vlan_suppress off group_fwd_mask 0 group_fwd_mask_str 0x0 vlan_tunnel off isolated off locked off mab off addrgenmode eui64 numtxqueues 16 numrxqueues 16 gso_max_size 65536 gso_max_segs 65535 tso_max_size 65536 tso_max_segs 65535 gro_max_size 65536 gso_ipv4_max_size 65536 gro_ipv4_max_size 65536
|
|
13: storagenet: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000
|
|
link/ether 00:21:9b:a2:7c:55 brd ff:ff:ff:ff:ff:ff promiscuity 0 allmulti 0 minmtu 68 maxmtu 65535
|
|
bridge forward_delay 0 hello_time 200 max_age 2000 ageing_time 30000 stp_state 0 priority 32768 vlan_filtering 0 vlan_protocol 802.1Q bridge_id 8000.0:21:9b:a2:7c:55 designated_root 8000.0:21:9b:a2:7c:55 root_port 0 root_path_cost 0 topology_change 0 topology_change_detected 0 hello_timer 0.00 tcn_timer 0.00 topology_change_timer 0.00 gc_timer 199.96 fdb_n_learned 8 fdb_max_learned 0 vlan_default_pvid 1 vlan_stats_enabled 0 vlan_stats_per_port 0 group_fwd_mask 0 group_address 01:80:c2:00:00:00 mcast_snooping 1 no_linklocal_learn 0 mcast_vlan_snooping 0 mst_enabled 0 mcast_router 1 mcast_query_use_ifaddr 0 mcast_querier 0 mcast_hash_elasticity 16 mcast_hash_max 4096 mcast_last_member_count 2 mcast_startup_query_count 2 mcast_last_member_interval 100 mcast_membership_interval 26000 mcast_querier_interval 25500 mcast_query_interval 12500 mcast_query_response_interval 1000 mcast_startup_query_interval 3125 mcast_stats_enabled 0 mcast_igmp_version 2 mcast_mld_version 1 nf_call_iptables 0 nf_call_ip6tables 0 nf_call_arptables 0 addrgenmode eui64 numtxqueues 1 numrxqueues 1 gso_max_size 65536 gso_max_segs 65535 tso_max_size 65536 tso_max_segs 65535 gro_max_size 65536 gso_ipv4_max_size 65536 gro_ipv4_max_size 65536
|
|
14: tap601i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq master fwbr601i0 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether 52:e4:72:50:7c:75 brd ff:ff:ff:ff:ff:ff promiscuity 2 allmulti 1 minmtu 68 maxmtu 65521
|
|
tun type tap pi off vnet_hdr on persist off
|
|
bridge_slave state forwarding priority 32 cost 2 hairpin off guard off root_block off fastleave off learning on flood on port_id 0x8002 port_no 0x2 designated_port 32770 designated_cost 0 designated_bridge 8000.46:ed:d2:a8:dc:9 designated_root 8000.46:ed:d2:a8:dc:9 hold_timer 0.00 message_age_timer 0.00 forward_delay_timer 0.00 topology_change_ack 0 config_pending 0 proxy_arp off proxy_arp_wifi off mcast_router 1 mcast_fast_leave off mcast_flood on bcast_flood on mcast_to_unicast off neigh_suppress off neigh_vlan_suppress off group_fwd_mask 0 group_fwd_mask_str 0x0 vlan_tunnel off isolated off locked off mab off addrgenmode eui64 numtxqueues 1 numrxqueues 1 gso_max_size 65536 gso_max_segs 65535 tso_max_size 65536 tso_max_segs 65535 gro_max_size 65536 gso_ipv4_max_size 65536 gro_ipv4_max_size 65536
|
|
15: fwbr601i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000
|
|
link/ether 46:ed:d2:a8:dc:09 brd ff:ff:ff:ff:ff:ff promiscuity 0 allmulti 0 minmtu 68 maxmtu 65535
|
|
bridge forward_delay 0 hello_time 200 max_age 2000 ageing_time 30000 stp_state 0 priority 32768 vlan_filtering 0 vlan_protocol 802.1Q bridge_id 8000.46:ed:d2:a8:dc:9 designated_root 8000.46:ed:d2:a8:dc:9 root_port 0 root_path_cost 0 topology_change 0 topology_change_detected 0 hello_timer 0.00 tcn_timer 0.00 topology_change_timer 0.00 gc_timer 91.39 fdb_n_learned 83 fdb_max_learned 0 vlan_default_pvid 1 vlan_stats_enabled 0 vlan_stats_per_port 0 group_fwd_mask 0 group_address 01:80:c2:00:00:00 mcast_snooping 1 no_linklocal_learn 0 mcast_vlan_snooping 0 mst_enabled 0 mcast_router 1 mcast_query_use_ifaddr 0 mcast_querier 0 mcast_querier_ipv4_addr 0.0.0.0 mcast_querier_ipv4_port 17 mcast_querier_ipv4_other_timer 17.2us mcast_hash_elasticity 16 mcast_hash_max 4096 mcast_last_member_count 2 mcast_startup_query_count 2 mcast_last_member_interval 100 mcast_membership_interval 26000 mcast_querier_interval 25500 mcast_query_interval 12500 mcast_query_response_interval 1000 mcast_startup_query_interval 3125 mcast_stats_enabled 0 mcast_igmp_version 2 mcast_mld_version 1 nf_call_iptables 0 nf_call_ip6tables 0 nf_call_arptables 0 addrgenmode eui64 numtxqueues 1 numrxqueues 1 gso_max_size 65536 gso_max_segs 65535 tso_max_size 65536 tso_max_segs 65535 gro_max_size 65536 gso_ipv4_max_size 65536 gro_ipv4_max_size 65536
|
|
16: fwpr601p0@fwln601i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master vmbr0 state UP mode DEFAULT group default qlen 1000
|
|
link/ether 5e:65:d2:ab:e9:7f brd ff:ff:ff:ff:ff:ff promiscuity 1 allmulti 1 minmtu 68 maxmtu 65535
|
|
veth
|
|
bridge_slave state forwarding priority 32 cost 2 hairpin off guard off root_block off fastleave off learning on flood on port_id 0x8002 port_no 0x2 designated_port 32770 designated_cost 0 designated_bridge 8000.0:21:9b:a2:7c:53 designated_root 8000.0:21:9b:a2:7c:53 hold_timer 0.00 message_age_timer 0.00 forward_delay_timer 0.00 topology_change_ack 0 config_pending 0 proxy_arp off proxy_arp_wifi off mcast_router 1 mcast_fast_leave off mcast_flood on bcast_flood on mcast_to_unicast off neigh_suppress off neigh_vlan_suppress off group_fwd_mask 0 group_fwd_mask_str 0x0 vlan_tunnel off isolated off locked off mab off addrgenmode eui64 numtxqueues 32 numrxqueues 32 gso_max_size 65536 gso_max_segs 65535 tso_max_size 524280 tso_max_segs 65535 gro_max_size 65536 gso_ipv4_max_size 65536 gro_ipv4_max_size 65536
|
|
17: fwln601i0@fwpr601p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master fwbr601i0 state UP mode DEFAULT group default qlen 1000
|
|
link/ether 46:ed:d2:a8:dc:09 brd ff:ff:ff:ff:ff:ff promiscuity 1 allmulti 1 minmtu 68 maxmtu 65535
|
|
veth
|
|
bridge_slave state forwarding priority 32 cost 2 hairpin off guard off root_block off fastleave off learning on flood on port_id 0x8001 port_no 0x1 designated_port 32769 designated_cost 0 designated_bridge 8000.46:ed:d2:a8:dc:9 designated_root 8000.46:ed:d2:a8:dc:9 hold_timer 0.00 message_age_timer 0.00 forward_delay_timer 0.00 topology_change_ack 0 config_pending 0 proxy_arp off proxy_arp_wifi off mcast_router 1 mcast_fast_leave off mcast_flood on bcast_flood on mcast_to_unicast off neigh_suppress off neigh_vlan_suppress off group_fwd_mask 0 group_fwd_mask_str 0x0 vlan_tunnel off isolated off locked off mab off addrgenmode eui64 numtxqueues 32 numrxqueues 32 gso_max_size 65536 gso_max_segs 65535 tso_max_size 524280 tso_max_segs 65535 gro_max_size 65536 gso_ipv4_max_size 65536 gro_ipv4_max_size 65536
|
|
18: tap602i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq master fwbr602i0 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether 1a:23:06:08:08:c0 brd ff:ff:ff:ff:ff:ff promiscuity 2 allmulti 1 minmtu 68 maxmtu 65521
|
|
tun type tap pi off vnet_hdr on persist off
|
|
bridge_slave state forwarding priority 32 cost 2 hairpin off guard off root_block off fastleave off learning on flood on port_id 0x8002 port_no 0x2 designated_port 32770 designated_cost 0 designated_bridge 8000.a6:89:25:3b:c6:fc designated_root 8000.a6:89:25:3b:c6:fc hold_timer 0.00 message_age_timer 0.00 forward_delay_timer 0.00 topology_change_ack 0 config_pending 0 proxy_arp off proxy_arp_wifi off mcast_router 1 mcast_fast_leave off mcast_flood on bcast_flood on mcast_to_unicast off neigh_suppress off neigh_vlan_suppress off group_fwd_mask 0 group_fwd_mask_str 0x0 vlan_tunnel off isolated off locked off mab off addrgenmode eui64 numtxqueues 1 numrxqueues 1 gso_max_size 65536 gso_max_segs 65535 tso_max_size 65536 tso_max_segs 65535 gro_max_size 65536 gso_ipv4_max_size 65536 gro_ipv4_max_size 65536
|
|
19: fwbr602i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000
|
|
link/ether a6:89:25:3b:c6:fc brd ff:ff:ff:ff:ff:ff promiscuity 0 allmulti 0 minmtu 68 maxmtu 65535
|
|
bridge forward_delay 0 hello_time 200 max_age 2000 ageing_time 30000 stp_state 0 priority 32768 vlan_filtering 0 vlan_protocol 802.1Q bridge_id 8000.a6:89:25:3b:c6:fc designated_root 8000.a6:89:25:3b:c6:fc root_port 0 root_path_cost 0 topology_change 0 topology_change_detected 0 hello_timer 0.00 tcn_timer 0.00 topology_change_timer 0.00 gc_timer 91.39 fdb_n_learned 83 fdb_max_learned 0 vlan_default_pvid 1 vlan_stats_enabled 0 vlan_stats_per_port 0 group_fwd_mask 0 group_address 01:80:c2:00:00:00 mcast_snooping 1 no_linklocal_learn 0 mcast_vlan_snooping 0 mst_enabled 0 mcast_router 1 mcast_query_use_ifaddr 0 mcast_querier 0 mcast_querier_ipv4_addr 0.0.0.0 mcast_querier_ipv4_port 21 mcast_querier_ipv4_other_timer 17.2us mcast_hash_elasticity 16 mcast_hash_max 4096 mcast_last_member_count 2 mcast_startup_query_count 2 mcast_last_member_interval 100 mcast_membership_interval 26000 mcast_querier_interval 25500 mcast_query_interval 12500 mcast_query_response_interval 1000 mcast_startup_query_interval 3125 mcast_stats_enabled 0 mcast_igmp_version 2 mcast_mld_version 1 nf_call_iptables 0 nf_call_ip6tables 0 nf_call_arptables 0 addrgenmode eui64 numtxqueues 1 numrxqueues 1 gso_max_size 65536 gso_max_segs 65535 tso_max_size 65536 tso_max_segs 65535 gro_max_size 65536 gso_ipv4_max_size 65536 gro_ipv4_max_size 65536
|
|
20: fwpr602p0@fwln602i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master vmbr0 state UP mode DEFAULT group default qlen 1000
|
|
link/ether 32:1c:fb:54:45:14 brd ff:ff:ff:ff:ff:ff promiscuity 1 allmulti 1 minmtu 68 maxmtu 65535
|
|
veth
|
|
bridge_slave state forwarding priority 32 cost 2 hairpin off guard off root_block off fastleave off learning on flood on port_id 0x8003 port_no 0x3 designated_port 32771 designated_cost 0 designated_bridge 8000.0:21:9b:a2:7c:53 designated_root 8000.0:21:9b:a2:7c:53 hold_timer 0.00 message_age_timer 0.00 forward_delay_timer 0.00 topology_change_ack 0 config_pending 0 proxy_arp off proxy_arp_wifi off mcast_router 1 mcast_fast_leave off mcast_flood on bcast_flood on mcast_to_unicast off neigh_suppress off neigh_vlan_suppress off group_fwd_mask 0 group_fwd_mask_str 0x0 vlan_tunnel off isolated off locked off mab off addrgenmode eui64 numtxqueues 32 numrxqueues 32 gso_max_size 65536 gso_max_segs 65535 tso_max_size 524280 tso_max_segs 65535 gro_max_size 65536 gso_ipv4_max_size 65536 gro_ipv4_max_size 65536
|
|
21: fwln602i0@fwpr602p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master fwbr602i0 state UP mode DEFAULT group default qlen 1000
|
|
link/ether a6:89:25:3b:c6:fc brd ff:ff:ff:ff:ff:ff promiscuity 1 allmulti 1 minmtu 68 maxmtu 65535
|
|
veth
|
|
bridge_slave state forwarding priority 32 cost 2 hairpin off guard off root_block off fastleave off learning on flood on port_id 0x8001 port_no 0x1 designated_port 32769 designated_cost 0 designated_bridge 8000.a6:89:25:3b:c6:fc designated_root 8000.a6:89:25:3b:c6:fc hold_timer 0.00 message_age_timer 0.00 forward_delay_timer 0.00 topology_change_ack 0 config_pending 0 proxy_arp off proxy_arp_wifi off mcast_router 1 mcast_fast_leave off mcast_flood on bcast_flood on mcast_to_unicast off neigh_suppress off neigh_vlan_suppress off group_fwd_mask 0 group_fwd_mask_str 0x0 vlan_tunnel off isolated off locked off mab off addrgenmode eui64 numtxqueues 32 numrxqueues 32 gso_max_size 65536 gso_max_segs 65535 tso_max_size 524280 tso_max_segs 65535 gro_max_size 65536 gso_ipv4_max_size 65536 gro_ipv4_max_size 65536
|
|
22: tap603i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq master fwbr603i0 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether 22:57:be:50:ae:5b brd ff:ff:ff:ff:ff:ff promiscuity 2 allmulti 1 minmtu 68 maxmtu 65521
|
|
tun type tap pi off vnet_hdr on persist off
|
|
bridge_slave state forwarding priority 32 cost 2 hairpin off guard off root_block off fastleave off learning on flood on port_id 0x8002 port_no 0x2 designated_port 32770 designated_cost 0 designated_bridge 8000.a:2a:f4:1f:d9:7c designated_root 8000.a:2a:f4:1f:d9:7c hold_timer 0.00 message_age_timer 0.00 forward_delay_timer 0.00 topology_change_ack 0 config_pending 0 proxy_arp off proxy_arp_wifi off mcast_router 1 mcast_fast_leave off mcast_flood on bcast_flood on mcast_to_unicast off neigh_suppress off neigh_vlan_suppress off group_fwd_mask 0 group_fwd_mask_str 0x0 vlan_tunnel off isolated off locked off mab off addrgenmode eui64 numtxqueues 1 numrxqueues 1 gso_max_size 65536 gso_max_segs 65535 tso_max_size 65536 tso_max_segs 65535 gro_max_size 65536 gso_ipv4_max_size 65536 gro_ipv4_max_size 65536
|
|
23: fwbr603i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000
|
|
link/ether 0a:2a:f4:1f:d9:7c brd ff:ff:ff:ff:ff:ff promiscuity 0 allmulti 0 minmtu 68 maxmtu 65535
|
|
bridge forward_delay 0 hello_time 200 max_age 2000 ageing_time 30000 stp_state 0 priority 32768 vlan_filtering 0 vlan_protocol 802.1Q bridge_id 8000.a:2a:f4:1f:d9:7c designated_root 8000.a:2a:f4:1f:d9:7c root_port 0 root_path_cost 0 topology_change 0 topology_change_detected 0 hello_timer 0.00 tcn_timer 0.00 topology_change_timer 0.00 gc_timer 91.39 fdb_n_learned 83 fdb_max_learned 0 vlan_default_pvid 1 vlan_stats_enabled 0 vlan_stats_per_port 0 group_fwd_mask 0 group_address 01:80:c2:00:00:00 mcast_snooping 1 no_linklocal_learn 0 mcast_vlan_snooping 0 mst_enabled 0 mcast_router 1 mcast_query_use_ifaddr 0 mcast_querier 0 mcast_querier_ipv4_addr 0.0.0.0 mcast_querier_ipv4_port 25 mcast_querier_ipv4_other_timer 17.2us mcast_hash_elasticity 16 mcast_hash_max 4096 mcast_last_member_count 2 mcast_startup_query_count 2 mcast_last_member_interval 100 mcast_membership_interval 26000 mcast_querier_interval 25500 mcast_query_interval 12500 mcast_query_response_interval 1000 mcast_startup_query_interval 3125 mcast_stats_enabled 0 mcast_igmp_version 2 mcast_mld_version 1 nf_call_iptables 0 nf_call_ip6tables 0 nf_call_arptables 0 addrgenmode eui64 numtxqueues 1 numrxqueues 1 gso_max_size 65536 gso_max_segs 65535 tso_max_size 65536 tso_max_segs 65535 gro_max_size 65536 gso_ipv4_max_size 65536 gro_ipv4_max_size 65536
|
|
24: fwpr603p0@fwln603i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master vmbr0 state UP mode DEFAULT group default qlen 1000
|
|
link/ether 72:40:bb:3f:a8:04 brd ff:ff:ff:ff:ff:ff promiscuity 1 allmulti 1 minmtu 68 maxmtu 65535
|
|
veth
|
|
bridge_slave state forwarding priority 32 cost 2 hairpin off guard off root_block off fastleave off learning on flood on port_id 0x8004 port_no 0x4 designated_port 32772 designated_cost 0 designated_bridge 8000.0:21:9b:a2:7c:53 designated_root 8000.0:21:9b:a2:7c:53 hold_timer 0.00 message_age_timer 0.00 forward_delay_timer 0.00 topology_change_ack 0 config_pending 0 proxy_arp off proxy_arp_wifi off mcast_router 1 mcast_fast_leave off mcast_flood on bcast_flood on mcast_to_unicast off neigh_suppress off neigh_vlan_suppress off group_fwd_mask 0 group_fwd_mask_str 0x0 vlan_tunnel off isolated off locked off mab off addrgenmode eui64 numtxqueues 32 numrxqueues 32 gso_max_size 65536 gso_max_segs 65535 tso_max_size 524280 tso_max_segs 65535 gro_max_size 65536 gso_ipv4_max_size 65536 gro_ipv4_max_size 65536
|
|
25: fwln603i0@fwpr603p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master fwbr603i0 state UP mode DEFAULT group default qlen 1000
|
|
link/ether 0a:2a:f4:1f:d9:7c brd ff:ff:ff:ff:ff:ff promiscuity 1 allmulti 1 minmtu 68 maxmtu 65535
|
|
veth
|
|
bridge_slave state forwarding priority 32 cost 2 hairpin off guard off root_block off fastleave off learning on flood on port_id 0x8001 port_no 0x1 designated_port 32769 designated_cost 0 designated_bridge 8000.a:2a:f4:1f:d9:7c designated_root 8000.a:2a:f4:1f:d9:7c hold_timer 0.00 message_age_timer 0.00 forward_delay_timer 0.00 topology_change_ack 0 config_pending 0 proxy_arp off proxy_arp_wifi off mcast_router 1 mcast_fast_leave off mcast_flood on bcast_flood on mcast_to_unicast off neigh_suppress off neigh_vlan_suppress off group_fwd_mask 0 group_fwd_mask_str 0x0 vlan_tunnel off isolated off locked off mab off addrgenmode eui64 numtxqueues 32 numrxqueues 32 gso_max_size 65536 gso_max_segs 65535 tso_max_size 524280 tso_max_segs 65535 gro_max_size 65536 gso_ipv4_max_size 65536 gro_ipv4_max_size 65536
|
|
|
|
--- ip -o link
|
|
$ ip -o link
|
|
1: lo: <LOOPBACK,UP,LOWER_UP> 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
|
|
2: nic0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq master vmbr0 state UP mode DEFAULT group default qlen 1000\ link/ether 00:21:9b:a2:7c:53 brd ff:ff:ff:ff:ff:ff\ altname enp1s0f0\ altname enx00219ba27c53
|
|
3: nic1: <BROADCAST,MULTICAST,SLAVE,UP,LOWER_UP> mtu 1500 qdisc mq master bond0 state UP mode DEFAULT group default qlen 1000\ link/ether 00:21:9b:a2:7c:55 brd ff:ff:ff:ff:ff:ff\ altname enp1s0f1\ altname enx00219ba27c55
|
|
4: nic2: <BROADCAST,MULTICAST,SLAVE,UP,LOWER_UP> mtu 1500 qdisc mq master bond0 state UP mode DEFAULT group default qlen 1000\ link/ether 00:21:9b:a2:7c:55 brd ff:ff:ff:ff:ff:ff permaddr 00:21:9b:a2:7c:57\ altname enp2s0f0\ altname enx00219ba27c57
|
|
5: nic3: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP mode DEFAULT group default qlen 1000\ link/ether 00:21:9b:a2:7c:59 brd ff:ff:ff:ff:ff:ff\ altname enp2s0f1\ altname enx00219ba27c59
|
|
6: nic4: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN mode DEFAULT group default qlen 1000\ link/ether 00:10:18:72:16:40 brd ff:ff:ff:ff:ff:ff\ altname enx001018721640
|
|
7: nic5: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN mode DEFAULT group default qlen 1000\ link/ether 00:10:18:72:16:42 brd ff:ff:ff:ff:ff:ff\ altname enx001018721642
|
|
8: tailscale0: <POINTOPOINT,MULTICAST,NOARP,UP,LOWER_UP> mtu 1280 qdisc fq state UNKNOWN mode DEFAULT group default qlen 500\ link/none
|
|
9: vmbr0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000\ link/ether 00:21:9b:a2:7c:53 brd ff:ff:ff:ff:ff:ff
|
|
10: nic3.2@nic3: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master br-rr-mgmt state UP mode DEFAULT group default qlen 1000\ link/ether 00:21:9b:a2:7c:59 brd ff:ff:ff:ff:ff:ff
|
|
11: br-rr-mgmt: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000\ link/ether 00:21:9b:a2:7c:59 brd ff:ff:ff:ff:ff:ff
|
|
12: bond0: <BROADCAST,MULTICAST,MASTER,UP,LOWER_UP> mtu 1500 qdisc noqueue master storagenet state UP mode DEFAULT group default qlen 1000\ link/ether 00:21:9b:a2:7c:55 brd ff:ff:ff:ff:ff:ff
|
|
13: storagenet: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000\ link/ether 00:21:9b:a2:7c:55 brd ff:ff:ff:ff:ff:ff
|
|
14: tap601i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq master fwbr601i0 state UNKNOWN mode DEFAULT group default qlen 1000\ link/ether 52:e4:72:50:7c:75 brd ff:ff:ff:ff:ff:ff
|
|
15: fwbr601i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000\ link/ether 46:ed:d2:a8:dc:09 brd ff:ff:ff:ff:ff:ff
|
|
16: fwpr601p0@fwln601i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master vmbr0 state UP mode DEFAULT group default qlen 1000\ link/ether 5e:65:d2:ab:e9:7f brd ff:ff:ff:ff:ff:ff
|
|
17: fwln601i0@fwpr601p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master fwbr601i0 state UP mode DEFAULT group default qlen 1000\ link/ether 46:ed:d2:a8:dc:09 brd ff:ff:ff:ff:ff:ff
|
|
18: tap602i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq master fwbr602i0 state UNKNOWN mode DEFAULT group default qlen 1000\ link/ether 1a:23:06:08:08:c0 brd ff:ff:ff:ff:ff:ff
|
|
19: fwbr602i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000\ link/ether a6:89:25:3b:c6:fc brd ff:ff:ff:ff:ff:ff
|
|
20: fwpr602p0@fwln602i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master vmbr0 state UP mode DEFAULT group default qlen 1000\ link/ether 32:1c:fb:54:45:14 brd ff:ff:ff:ff:ff:ff
|
|
21: fwln602i0@fwpr602p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master fwbr602i0 state UP mode DEFAULT group default qlen 1000\ link/ether a6:89:25:3b:c6:fc brd ff:ff:ff:ff:ff:ff
|
|
22: tap603i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq master fwbr603i0 state UNKNOWN mode DEFAULT group default qlen 1000\ link/ether 22:57:be:50:ae:5b brd ff:ff:ff:ff:ff:ff
|
|
23: fwbr603i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000\ link/ether 0a:2a:f4:1f:d9:7c brd ff:ff:ff:ff:ff:ff
|
|
24: fwpr603p0@fwln603i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master vmbr0 state UP mode DEFAULT group default qlen 1000\ link/ether 72:40:bb:3f:a8:04 brd ff:ff:ff:ff:ff:ff
|
|
25: fwln603i0@fwpr603p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master fwbr603i0 state UP mode DEFAULT group default qlen 1000\ link/ether 0a:2a:f4:1f:d9:7c brd ff:ff:ff:ff:ff:ff
|
|
|
|
--- ip -o -4 addr
|
|
$ ip -o -4 addr
|
|
1: lo inet 127.0.0.1/8 scope host lo\ valid_lft forever preferred_lft forever
|
|
8: tailscale0 inet 100.73.35.111/32 scope global tailscale0\ valid_lft forever preferred_lft forever
|
|
9: vmbr0 inet 192.168.3.169/22 brd 192.168.3.255 scope global dynamic vmbr0\ valid_lft 379sec preferred_lft 379sec
|
|
11: br-rr-mgmt inet 10.251.2.6/24 scope global br-rr-mgmt\ valid_lft forever preferred_lft forever
|
|
13: storagenet inet 10.100.100.6/24 scope global storagenet\ valid_lft forever preferred_lft forever
|
|
|
|
--- ip -o -6 addr (link-local filter)
|
|
$ ip -o -6 addr
|
|
1: lo inet6 ::1/128 scope host noprefixroute \ valid_lft forever preferred_lft forever
|
|
5: nic3 inet6 fe80::221:9bff:fea2:7c59/64 scope link proto kernel_ll \ valid_lft forever preferred_lft forever
|
|
8: tailscale0 inet6 fd7a:115c:a1e0::df3b:236f/128 scope global \ valid_lft forever preferred_lft forever
|
|
8: tailscale0 inet6 fe80::2a4f:91e2:6204:d9e/64 scope link stable-privacy proto kernel_ll \ valid_lft forever preferred_lft forever
|
|
9: vmbr0 inet6 fe80::221:9bff:fea2:7c53/64 scope link proto kernel_ll \ valid_lft forever preferred_lft forever
|
|
11: br-rr-mgmt inet6 fe80::221:9bff:fea2:7c59/64 scope link proto kernel_ll \ valid_lft forever preferred_lft forever
|
|
13: storagenet inet6 fe80::221:9bff:fea2:7c55/64 scope link proto kernel_ll \ valid_lft forever preferred_lft forever
|
|
|
|
--- ip addr
|
|
$ ip addr
|
|
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
|
|
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
|
|
inet 127.0.0.1/8 scope host lo
|
|
valid_lft forever preferred_lft forever
|
|
inet6 ::1/128 scope host noprefixroute
|
|
valid_lft forever preferred_lft forever
|
|
2: nic0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq master vmbr0 state UP group default qlen 1000
|
|
link/ether 00:21:9b:a2:7c:53 brd ff:ff:ff:ff:ff:ff
|
|
altname enp1s0f0
|
|
altname enx00219ba27c53
|
|
3: nic1: <BROADCAST,MULTICAST,SLAVE,UP,LOWER_UP> mtu 1500 qdisc mq master bond0 state UP group default qlen 1000
|
|
link/ether 00:21:9b:a2:7c:55 brd ff:ff:ff:ff:ff:ff
|
|
altname enp1s0f1
|
|
altname enx00219ba27c55
|
|
4: nic2: <BROADCAST,MULTICAST,SLAVE,UP,LOWER_UP> mtu 1500 qdisc mq master bond0 state UP group default qlen 1000
|
|
link/ether 00:21:9b:a2:7c:55 brd ff:ff:ff:ff:ff:ff permaddr 00:21:9b:a2:7c:57
|
|
altname enp2s0f0
|
|
altname enx00219ba27c57
|
|
5: nic3: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP group default qlen 1000
|
|
link/ether 00:21:9b:a2:7c:59 brd ff:ff:ff:ff:ff:ff
|
|
altname enp2s0f1
|
|
altname enx00219ba27c59
|
|
inet6 fe80::221:9bff:fea2:7c59/64 scope link proto kernel_ll
|
|
valid_lft forever preferred_lft forever
|
|
6: nic4: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000
|
|
link/ether 00:10:18:72:16:40 brd ff:ff:ff:ff:ff:ff
|
|
altname enx001018721640
|
|
7: nic5: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN group default qlen 1000
|
|
link/ether 00:10:18:72:16:42 brd ff:ff:ff:ff:ff:ff
|
|
altname enx001018721642
|
|
8: tailscale0: <POINTOPOINT,MULTICAST,NOARP,UP,LOWER_UP> mtu 1280 qdisc fq state UNKNOWN group default qlen 500
|
|
link/none
|
|
inet 100.73.35.111/32 scope global tailscale0
|
|
valid_lft forever preferred_lft forever
|
|
inet6 fd7a:115c:a1e0::df3b:236f/128 scope global
|
|
valid_lft forever preferred_lft forever
|
|
inet6 fe80::2a4f:91e2:6204:d9e/64 scope link stable-privacy proto kernel_ll
|
|
valid_lft forever preferred_lft forever
|
|
9: vmbr0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
|
|
link/ether 00:21:9b:a2:7c:53 brd ff:ff:ff:ff:ff:ff
|
|
inet 192.168.3.169/22 brd 192.168.3.255 scope global dynamic vmbr0
|
|
valid_lft 379sec preferred_lft 379sec
|
|
inet6 fe80::221:9bff:fea2:7c53/64 scope link proto kernel_ll
|
|
valid_lft forever preferred_lft forever
|
|
10: nic3.2@nic3: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master br-rr-mgmt state UP group default qlen 1000
|
|
link/ether 00:21:9b:a2:7c:59 brd ff:ff:ff:ff:ff:ff
|
|
11: br-rr-mgmt: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
|
|
link/ether 00:21:9b:a2:7c:59 brd ff:ff:ff:ff:ff:ff
|
|
inet 10.251.2.6/24 scope global br-rr-mgmt
|
|
valid_lft forever preferred_lft forever
|
|
inet6 fe80::221:9bff:fea2:7c59/64 scope link proto kernel_ll
|
|
valid_lft forever preferred_lft forever
|
|
12: bond0: <BROADCAST,MULTICAST,MASTER,UP,LOWER_UP> mtu 1500 qdisc noqueue master storagenet state UP group default qlen 1000
|
|
link/ether 00:21:9b:a2:7c:55 brd ff:ff:ff:ff:ff:ff
|
|
13: storagenet: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
|
|
link/ether 00:21:9b:a2:7c:55 brd ff:ff:ff:ff:ff:ff
|
|
inet 10.100.100.6/24 scope global storagenet
|
|
valid_lft forever preferred_lft forever
|
|
inet6 fe80::221:9bff:fea2:7c55/64 scope link proto kernel_ll
|
|
valid_lft forever preferred_lft forever
|
|
14: tap601i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq master fwbr601i0 state UNKNOWN group default qlen 1000
|
|
link/ether 52:e4:72:50:7c:75 brd ff:ff:ff:ff:ff:ff
|
|
15: fwbr601i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
|
|
link/ether 46:ed:d2:a8:dc:09 brd ff:ff:ff:ff:ff:ff
|
|
16: fwpr601p0@fwln601i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master vmbr0 state UP group default qlen 1000
|
|
link/ether 5e:65:d2:ab:e9:7f brd ff:ff:ff:ff:ff:ff
|
|
17: fwln601i0@fwpr601p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master fwbr601i0 state UP group default qlen 1000
|
|
link/ether 46:ed:d2:a8:dc:09 brd ff:ff:ff:ff:ff:ff
|
|
18: tap602i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq master fwbr602i0 state UNKNOWN group default qlen 1000
|
|
link/ether 1a:23:06:08:08:c0 brd ff:ff:ff:ff:ff:ff
|
|
19: fwbr602i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
|
|
link/ether a6:89:25:3b:c6:fc brd ff:ff:ff:ff:ff:ff
|
|
20: fwpr602p0@fwln602i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master vmbr0 state UP group default qlen 1000
|
|
link/ether 32:1c:fb:54:45:14 brd ff:ff:ff:ff:ff:ff
|
|
21: fwln602i0@fwpr602p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master fwbr602i0 state UP group default qlen 1000
|
|
link/ether a6:89:25:3b:c6:fc brd ff:ff:ff:ff:ff:ff
|
|
22: tap603i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq master fwbr603i0 state UNKNOWN group default qlen 1000
|
|
link/ether 22:57:be:50:ae:5b brd ff:ff:ff:ff:ff:ff
|
|
23: fwbr603i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
|
|
link/ether 0a:2a:f4:1f:d9:7c brd ff:ff:ff:ff:ff:ff
|
|
24: fwpr603p0@fwln603i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master vmbr0 state UP group default qlen 1000
|
|
link/ether 72:40:bb:3f:a8:04 brd ff:ff:ff:ff:ff:ff
|
|
25: fwln603i0@fwpr603p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master fwbr603i0 state UP group default qlen 1000
|
|
link/ether 0a:2a:f4:1f:d9:7c brd ff:ff:ff:ff:ff:ff
|
|
|
|
--- ip route
|
|
$ ip route
|
|
default via 192.168.3.254 dev vmbr0
|
|
10.100.100.0/24 dev storagenet proto kernel scope link src 10.100.100.6
|
|
10.251.2.0/24 dev br-rr-mgmt proto kernel scope link src 10.251.2.6
|
|
192.168.0.0/22 dev vmbr0 proto kernel scope link src 192.168.3.169
|
|
|
|
--- ip rule
|
|
$ ip rule
|
|
0: from all lookup local
|
|
5210: from all fwmark 0x80000/0xff0000 lookup main
|
|
5230: from all fwmark 0x80000/0xff0000 lookup default
|
|
5250: from all fwmark 0x80000/0xff0000 unreachable
|
|
5270: from all lookup 52
|
|
32766: from all lookup main
|
|
32767: from all lookup default
|
|
|
|
--- ip -s -s link (counters/errors)
|
|
$ ip -s -s link
|
|
1: lo: <LOOPBACK,UP,LOWER_UP> 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 missed mcast
|
|
41471 230 0 0 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
41471 230 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 0
|
|
2: nic0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq master vmbr0 state UP mode DEFAULT group default qlen 1000
|
|
link/ether 00:21:9b:a2:7c:53 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
6063341 32438 0 16 0 13474
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
2345846 8993 0 3 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 2
|
|
altname enp1s0f0
|
|
altname enx00219ba27c53
|
|
3: nic1: <BROADCAST,MULTICAST,SLAVE,UP,LOWER_UP> mtu 1500 qdisc mq master bond0 state UP mode DEFAULT group default qlen 1000
|
|
link/ether 00:21:9b:a2:7c:55 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
11845150212 8436178 0 0 0 372
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
1643595843 1391301 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 2
|
|
altname enp1s0f1
|
|
altname enx00219ba27c55
|
|
4: nic2: <BROADCAST,MULTICAST,SLAVE,UP,LOWER_UP> mtu 1500 qdisc mq master bond0 state UP mode DEFAULT group default qlen 1000
|
|
link/ether 00:21:9b:a2:7c:55 brd ff:ff:ff:ff:ff:ff permaddr 00:21:9b:a2:7c:57
|
|
RX: bytes packets errors dropped missed mcast
|
|
576846772 402734 0 0 0 83
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
2612365176 2147164 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 2
|
|
altname enp2s0f0
|
|
altname enx00219ba27c57
|
|
5: nic3: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP mode DEFAULT group default qlen 1000
|
|
link/ether 00:21:9b:a2:7c:59 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
50662 512 0 0 0 459
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
9094 47 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 2
|
|
altname enp2s0f1
|
|
altname enx00219ba27c59
|
|
6: nic4: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN mode DEFAULT group default qlen 1000
|
|
link/ether 00:10:18:72:16:40 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
0 0 0 0 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
0 0 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 0
|
|
altname enx001018721640
|
|
7: nic5: <BROADCAST,MULTICAST> mtu 1500 qdisc noop state DOWN mode DEFAULT group default qlen 1000
|
|
link/ether 00:10:18:72:16:42 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
0 0 0 0 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
0 0 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 0
|
|
altname enx001018721642
|
|
8: tailscale0: <POINTOPOINT,MULTICAST,NOARP,UP,LOWER_UP> mtu 1280 qdisc fq state UNKNOWN mode DEFAULT group default qlen 500
|
|
link/none
|
|
RX: bytes packets errors dropped missed mcast
|
|
452974 1617 0 0 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
735505 1460 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 0
|
|
9: vmbr0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000
|
|
link/ether 00:21:9b:a2:7c:53 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
3088161 23256 0 0 0 11914
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
1366675 4382 0 5 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 4
|
|
10: nic3.2@nic3: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master br-rr-mgmt state UP mode DEFAULT group default qlen 1000
|
|
link/ether 00:21:9b:a2:7c:59 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
0 0 0 0 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
906 7 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 1
|
|
11: br-rr-mgmt: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000
|
|
link/ether 00:21:9b:a2:7c:59 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
0 0 0 0 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
906 7 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 2
|
|
12: bond0: <BROADCAST,MULTICAST,MASTER,UP,LOWER_UP> mtu 1500 qdisc noqueue master storagenet state UP mode DEFAULT group default qlen 1000
|
|
link/ether 00:21:9b:a2:7c:55 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
12421996984 8838912 0 30 0 455
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
4255961019 3538465 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 2
|
|
13: storagenet: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000
|
|
link/ether 00:21:9b:a2:7c:55 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
11925015565 2341421 0 0 0 388
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
4066397733 880036 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 2
|
|
14: tap601i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq master fwbr601i0 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether 52:e4:72:50:7c:75 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
281408 1361 0 0 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
2257962 18574 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 0
|
|
15: fwbr601i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000
|
|
link/ether 46:ed:d2:a8:dc:09 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
1377911 16363 0 17 0 10948
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
0 0 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 2
|
|
16: fwpr601p0@fwln601i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master vmbr0 state UP mode DEFAULT group default qlen 1000
|
|
link/ether 5e:65:d2:ab:e9:7f brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
285143 1376 0 15 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
2257977 18574 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 2
|
|
17: fwln601i0@fwpr601p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master fwbr601i0 state UP mode DEFAULT group default qlen 1000
|
|
link/ether 46:ed:d2:a8:dc:09 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
2257977 18574 0 15 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
285143 1376 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 2
|
|
18: tap602i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq master fwbr602i0 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether 1a:23:06:08:08:c0 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
352015 1733 0 0 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
2391328 18888 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 0
|
|
19: fwbr602i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000
|
|
link/ether a6:89:25:3b:c6:fc brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
1362026 16163 0 17 0 10813
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
0 0 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 2
|
|
20: fwpr602p0@fwln602i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master vmbr0 state UP mode DEFAULT group default qlen 1000
|
|
link/ether 32:1c:fb:54:45:14 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
355501 1747 0 14 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
2391342 18888 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 2
|
|
21: fwln602i0@fwpr602p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master fwbr602i0 state UP mode DEFAULT group default qlen 1000
|
|
link/ether a6:89:25:3b:c6:fc brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
2391342 18888 0 14 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
355501 1747 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 2
|
|
22: tap603i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq master fwbr603i0 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether 22:57:be:50:ae:5b brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
286522 1380 0 0 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
2265861 18022 0 410 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 0
|
|
23: fwbr603i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000
|
|
link/ether 0a:2a:f4:1f:d9:7c brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
1349240 16024 0 17 0 10731
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
0 0 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 2
|
|
24: fwpr603p0@fwln603i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master vmbr0 state UP mode DEFAULT group default qlen 1000
|
|
link/ether 72:40:bb:3f:a8:04 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
290008 1394 0 14 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
2302038 18432 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 2
|
|
25: fwln603i0@fwpr603p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master fwbr603i0 state UP mode DEFAULT group default qlen 1000
|
|
link/ether 0a:2a:f4:1f:d9:7c brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
2302038 18432 0 14 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
290008 1394 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 2
|
|
|
|
--- ip neigh
|
|
$ ip neigh
|
|
192.168.0.1 dev vmbr0 lladdr a0:d0:dc:38:3b:41 STALE
|
|
192.168.3.16 dev vmbr0 lladdr bc:24:11:8a:69:04 STALE
|
|
10.100.100.7 dev storagenet lladdr f8:bc:12:34:e0:75 STALE
|
|
192.168.3.78 dev vmbr0 lladdr bc:24:11:1a:8f:6f REACHABLE
|
|
192.168.1.166 dev vmbr0 lladdr 00:00:c0:34:0c:dc REACHABLE
|
|
192.168.2.44 dev vmbr0 lladdr bc:24:11:e6:03:2d REACHABLE
|
|
192.168.3.55 dev vmbr0 lladdr 54:e4:bd:d3:da:78 STALE
|
|
10.100.100.4 dev storagenet lladdr 8c:ae:4c:cd:a9:26 REACHABLE
|
|
192.168.3.254 dev vmbr0 lladdr 6c:4b:b4:10:40:61 REACHABLE
|
|
10.100.100.5 dev storagenet lladdr 00:1b:78:5c:e9:ce REACHABLE
|
|
192.168.0.21 dev vmbr0 lladdr ca:fe:0f:0e:b0:75 DELAY
|
|
192.168.3.250 dev vmbr0 lladdr 00:15:5d:64:e8:1e REACHABLE
|
|
192.168.3.32 dev vmbr0 lladdr a0:4a:5e:ca:46:f3 STALE
|
|
192.168.3.99 dev vmbr0 lladdr 00:a0:de:a2:81:87 REACHABLE
|
|
fe80::36bd:c8ff:fe2d:18c5 dev vmbr0 lladdr 34:bd:c8:2d:18:c5 STALE
|
|
fe80::7f67:9446:ea86:eb01 dev vmbr0 lladdr 68:ec:8a:0e:36:69 router STALE
|
|
fe80::eae9:e541:ea1f:9987 dev vmbr0 lladdr 9c:c8:e9:63:4b:95 STALE
|
|
fe80::907a:3764:9b08:16f3 dev vmbr0 lladdr bc:24:11:94:71:07 STALE
|
|
fe80::966:b4b8:282d:dff8 dev vmbr0 lladdr bc:24:11:27:4f:1c STALE
|
|
fe80::6e4b:b4ff:fe10:4061 dev vmbr0 lladdr 6c:4b:b4:10:40:61 router STALE
|
|
fe80::bb7f:ace0:50d5:690b dev vmbr0 lladdr bc:24:11:40:25:f8 STALE
|
|
|
|
--- /proc/net/dev (counters)
|
|
$ cat /proc/net/dev
|
|
Inter-| Receive | Transmit
|
|
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
|
|
lo: 41471 230 0 0 0 0 0 0 41471 230 0 0 0 0 0 0
|
|
nic0: 6063341 32438 0 16 0 0 0 13474 2345846 8993 0 3 0 0 0 0
|
|
nic1: 11845150212 8436178 0 0 0 0 0 372 1643595843 1391301 0 0 0 0 0 0
|
|
nic2: 576846772 402734 0 0 0 0 0 83 2612365176 2147164 0 0 0 0 0 0
|
|
nic3: 50662 512 0 0 0 0 0 459 9094 47 0 0 0 0 0 0
|
|
nic4: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
|
nic5: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
|
tailscale0: 452974 1617 0 0 0 0 0 0 735505 1460 0 0 0 0 0 0
|
|
vmbr0: 3088351 23259 0 0 0 0 0 11916 1366675 4382 0 5 0 0 0 0
|
|
nic3.2: 0 0 0 0 0 0 0 0 906 7 0 0 0 0 0 0
|
|
br-rr-mgmt: 0 0 0 0 0 0 0 0 906 7 0 0 0 0 0 0
|
|
bond0: 12421996984 8838912 0 30 0 0 0 455 4255961019 3538465 0 0 0 0 0 0
|
|
storagenet: 11925015565 2341421 0 0 0 0 0 388 4066397733 880036 0 0 0 0 0 0
|
|
tap601i0: 281408 1361 0 0 0 0 0 0 2258194 18577 0 0 0 0 0 0
|
|
fwbr601i0: 1378101 16366 0 17 0 0 0 10950 0 0 0 0 0 0 0 0
|
|
fwpr601p0: 285143 1376 0 15 0 0 0 0 2258209 18577 0 0 0 0 0 0
|
|
fwln601i0: 2258209 18577 0 15 0 0 0 0 285143 1376 0 0 0 0 0 0
|
|
tap602i0: 352015 1733 0 0 0 0 0 0 2391560 18891 0 0 0 0 0 0
|
|
fwbr602i0: 1362216 16166 0 17 0 0 0 10815 0 0 0 0 0 0 0 0
|
|
fwpr602p0: 355501 1747 0 14 0 0 0 0 2391574 18891 0 0 0 0 0 0
|
|
fwln602i0: 2391574 18891 0 14 0 0 0 0 355501 1747 0 0 0 0 0 0
|
|
tap603i0: 286522 1380 0 0 0 0 0 0 2266093 18025 0 410 0 0 0 0
|
|
fwbr603i0: 1349430 16027 0 17 0 0 0 10733 0 0 0 0 0 0 0 0
|
|
fwpr603p0: 290008 1394 0 14 0 0 0 0 2302270 18435 0 0 0 0 0 0
|
|
fwln603i0: 2302270 18435 0 14 0 0 0 0 290008 1394 0 0 0 0 0 0
|
|
|
|
--- ip -6 route (brief)
|
|
$ ip -6 route
|
|
fd7a:115c:a1e0::df3b:236f dev tailscale0 proto kernel metric 256 pref medium
|
|
fe80::/64 dev tailscale0 proto kernel metric 256 pref medium
|
|
fe80::/64 dev vmbr0 proto kernel metric 256 pref medium
|
|
fe80::/64 dev nic3 proto kernel metric 256 pref medium
|
|
fe80::/64 dev br-rr-mgmt proto kernel metric 256 pref medium
|
|
fe80::/64 dev storagenet proto kernel metric 256 pref medium
|
|
|
|
--- sysfs interface attributes
|
|
$ for ifc in $NETIFS; do
|
|
d="/sys/class/net/$ifc"
|
|
[ -d "$d" ] || continue
|
|
printf '%-16s speed=%-8s duplex=%-8s mtu=%-6s carrier=%-3s tx_queue_len=%-5s qlen=%-5s type=%s\n' \
|
|
"$ifc" \
|
|
"$(cat "$d/speed" 2>/dev/null)" \
|
|
"$(cat "$d/duplex" 2>/dev/null)" \
|
|
"$(cat "$d/mtu" 2>/dev/null)" \
|
|
"$(cat "$d/carrier" 2>/dev/null)" \
|
|
"$(cat "$d/tx_queue_len" 2>/dev/null)" \
|
|
"$(cat "$d/tx_queue_len" 2>/dev/null)" \
|
|
"$(cat "$d/type" 2>/dev/null)"
|
|
done
|
|
bond0 speed=2000 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
br-rr-mgmt speed=100 duplex=unknown mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
fwbr601i0 speed=10000 duplex=unknown mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
fwbr602i0 speed=10000 duplex=unknown mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
fwbr603i0 speed=10000 duplex=unknown mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
fwln601i0 speed=10000 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
fwln602i0 speed=10000 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
fwln603i0 speed=10000 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
fwpr601p0 speed=10000 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
fwpr602p0 speed=10000 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
fwpr603p0 speed=10000 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
nic0 speed=1000 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
nic1 speed=1000 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
nic2 speed=1000 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
nic3 speed=100 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
nic3.2 speed=100 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
nic4 speed= duplex= mtu=1500 carrier= tx_queue_len=1000 qlen=1000 type=1
|
|
nic5 speed= duplex= mtu=1500 carrier= tx_queue_len=1000 qlen=1000 type=1
|
|
storagenet speed=2000 duplex=unknown mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
tap601i0 speed=10000 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
tap602i0 speed=10000 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
tap603i0 speed=10000 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
vmbr0 speed=10000 duplex=unknown mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
|
|
--- ethtool per-interface deep dump
|
|
$ for ifc in $NETIFS; do
|
|
[ -e "/sys/class/net/$ifc" ] || continue
|
|
echo ""
|
|
echo "----- ethtool: $ifc -----"
|
|
echo "[driver/version/firmware/bus-info -i]"
|
|
ethtool -i "$ifc" 2>&1
|
|
echo "[settings - speed/duplex/autoneg/port]"
|
|
ethtool "$ifc" 2>&1
|
|
echo "[channels -l (RX/TX/combined queue counts)]"
|
|
ethtool -l "$ifc" 2>&1
|
|
echo "[coalesce -c (interrupt moderation)]"
|
|
ethtool -c "$ifc" 2>&1
|
|
echo "[ring -g (descriptor counts)]"
|
|
ethtool -g "$ifc" 2>&1
|
|
echo "[pause / flow-control -a]"
|
|
ethtool -a "$ifc" 2>&1
|
|
echo "[offload features -k]"
|
|
ethtool -k "$ifc" 2>&1
|
|
echo "[private flags --show-priv-flags]"
|
|
ethtool --show-priv-flags "$ifc" 2>&1
|
|
echo "[ntuple/RSS -n]"
|
|
ethtool -n "$ifc" 2>&1 | head -n 40
|
|
echo "[SFP/DOM transceiver -m]"
|
|
ethtool -m "$ifc" 2>&1
|
|
echo "[statistics -S (key error/drop counters only)]"
|
|
ethtool -S "$ifc" 2>/dev/null \
|
|
| grep -iE 'drop|discard|error|crc|miss|pause|fifo|no_buff|rx_no_|_err|fw_|_bad|oversiz|undersize|frag|jabber|length_err|alignment' \
|
|
| head -n 60
|
|
echo "[statistics -S (throughput counters)]"
|
|
ethtool -S "$ifc" 2>/dev/null \
|
|
| grep -iE 'rx_(octets|bytes|packets)|tx_(octets|bytes|packets)|rx_(unicast|multicast|broadcast)|tx_(unicast|multicast|broadcast)' \
|
|
| head -n 30
|
|
done
|
|
|
|
----- ethtool: bond0 -----
|
|
[driver/version/firmware/bus-info -i]
|
|
driver: bonding
|
|
version: 6.17.2-1-pve
|
|
firmware-version: 2
|
|
expansion-rom-version:
|
|
bus-info:
|
|
supports-statistics: no
|
|
supports-test: no
|
|
supports-eeprom-access: no
|
|
supports-register-dump: no
|
|
supports-priv-flags: no
|
|
[settings - speed/duplex/autoneg/port]
|
|
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: 2000Mb/s
|
|
Duplex: Full
|
|
Auto-negotiation: off
|
|
Port: Other
|
|
PHYAD: 0
|
|
Transceiver: internal
|
|
Link detected: yes
|
|
[channels -l (RX/TX/combined queue counts)]
|
|
netlink error: Operation not supported
|
|
[coalesce -c (interrupt moderation)]
|
|
netlink error: Operation not supported
|
|
[ring -g (descriptor counts)]
|
|
netlink error: Operation not supported
|
|
[pause / flow-control -a]
|
|
netlink error: Operation not supported
|
|
[offload features -k]
|
|
Features for bond0:
|
|
rx-checksumming: off [fixed]
|
|
tx-checksumming: on
|
|
tx-checksum-ipv4: off [fixed]
|
|
tx-checksum-ip-generic: on
|
|
tx-checksum-ipv6: off [fixed]
|
|
tx-checksum-fcoe-crc: off [fixed]
|
|
tx-checksum-sctp: off [fixed]
|
|
scatter-gather: on
|
|
tx-scatter-gather: on
|
|
tx-scatter-gather-fraglist: off [requested on]
|
|
tcp-segmentation-offload: on
|
|
tx-tcp-segmentation: on
|
|
tx-tcp-ecn-segmentation: on
|
|
tx-tcp-mangleid-segmentation: on
|
|
tx-tcp6-segmentation: on
|
|
tx-tcp-accecn-segmentation: off [requested on]
|
|
generic-segmentation-offload: on
|
|
generic-receive-offload: on
|
|
large-receive-offload: off
|
|
rx-vlan-offload: on
|
|
tx-vlan-offload: on [fixed]
|
|
ntuple-filters: off [fixed]
|
|
receive-hashing: off [fixed]
|
|
highdma: on
|
|
rx-vlan-filter: on
|
|
vlan-challenged: off [fixed]
|
|
tx-gso-robust: off [fixed]
|
|
tx-fcoe-segmentation: off [fixed]
|
|
tx-gre-segmentation: on
|
|
tx-gre-csum-segmentation: on
|
|
tx-ipxip4-segmentation: on
|
|
tx-ipxip6-segmentation: on
|
|
tx-udp_tnl-segmentation: on
|
|
tx-udp_tnl-csum-segmentation: on
|
|
tx-gso-partial: on [fixed]
|
|
tx-tunnel-remcsum-segmentation: off [fixed]
|
|
tx-sctp-segmentation: off [requested on]
|
|
tx-esp-segmentation: off
|
|
tx-udp-segmentation: off [requested on]
|
|
tx-gso-list: off [requested on]
|
|
tx-nocache-copy: off
|
|
loopback: off [fixed]
|
|
rx-fcs: off [fixed]
|
|
rx-all: off [fixed]
|
|
tx-vlan-stag-hw-insert: on [fixed]
|
|
rx-vlan-stag-hw-parse: on
|
|
rx-vlan-stag-filter: on
|
|
l2-fwd-offload: off [fixed]
|
|
hw-tc-offload: off [fixed]
|
|
esp-hw-offload: off
|
|
esp-tx-csum-hw-offload: off
|
|
rx-udp_tunnel-port-offload: off [fixed]
|
|
tls-hw-tx-offload: off [fixed]
|
|
tls-hw-rx-offload: off [fixed]
|
|
rx-gro-hw: off [fixed]
|
|
tls-hw-record: off [fixed]
|
|
rx-gro-list: off
|
|
macsec-hw-offload: off [fixed]
|
|
rx-udp-gro-forwarding: off
|
|
hsr-tag-ins-offload: off [fixed]
|
|
hsr-tag-rm-offload: off [fixed]
|
|
hsr-fwd-offload: off [fixed]
|
|
hsr-dup-offload: off [fixed]
|
|
[private flags --show-priv-flags]
|
|
netlink error: Operation not supported
|
|
[ntuple/RSS -n]
|
|
Cannot get RX rings: Operation not supported
|
|
rxclass: Cannot get RX class rule count: Operation not supported
|
|
RX classification rule retrieval failed
|
|
[SFP/DOM transceiver -m]
|
|
netlink error: Operation not supported
|
|
[statistics -S (key error/drop counters only)]
|
|
[statistics -S (throughput counters)]
|
|
|
|
----- ethtool: br-rr-mgmt -----
|
|
[driver/version/firmware/bus-info -i]
|
|
driver: bridge
|
|
version: 2.3
|
|
firmware-version: N/A
|
|
expansion-rom-version:
|
|
bus-info: N/A
|
|
supports-statistics: no
|
|
supports-test: no
|
|
supports-eeprom-access: no
|
|
supports-register-dump: no
|
|
supports-priv-flags: no
|
|
[settings - speed/duplex/autoneg/port]
|
|
Settings for br-rr-mgmt:
|
|
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: 100Mb/s
|
|
Duplex: Unknown! (255)
|
|
Auto-negotiation: off
|
|
Port: Other
|
|
PHYAD: 0
|
|
Transceiver: internal
|
|
Link detected: yes
|
|
[channels -l (RX/TX/combined queue counts)]
|
|
netlink error: Operation not supported
|
|
[coalesce -c (interrupt moderation)]
|
|
netlink error: Operation not supported
|
|
[ring -g (descriptor counts)]
|
|
netlink error: Operation not supported
|
|
[pause / flow-control -a]
|
|
netlink error: Operation not supported
|
|
[offload features -k]
|
|
Features for br-rr-mgmt:
|
|
rx-checksumming: off [fixed]
|
|
tx-checksumming: on
|
|
tx-checksum-ipv4: off [fixed]
|
|
tx-checksum-ip-generic: on
|
|
tx-checksum-ipv6: off [fixed]
|
|
tx-checksum-fcoe-crc: off [fixed]
|
|
tx-checksum-sctp: off [fixed]
|
|
scatter-gather: on
|
|
tx-scatter-gather: on
|
|
tx-scatter-gather-fraglist: off [requested on]
|
|
tcp-segmentation-offload: on
|
|
tx-tcp-segmentation: on
|
|
tx-tcp-ecn-segmentation: on
|
|
tx-tcp-mangleid-segmentation: on
|
|
tx-tcp6-segmentation: on
|
|
tx-tcp-accecn-segmentation: on
|
|
generic-segmentation-offload: on
|
|
generic-receive-offload: on
|
|
large-receive-offload: off [fixed]
|
|
rx-vlan-offload: off [fixed]
|
|
tx-vlan-offload: on
|
|
ntuple-filters: off [fixed]
|
|
receive-hashing: off [fixed]
|
|
highdma: on
|
|
rx-vlan-filter: off [fixed]
|
|
vlan-challenged: off [fixed]
|
|
tx-gso-robust: off [requested on]
|
|
tx-fcoe-segmentation: off [requested on]
|
|
tx-gre-segmentation: on
|
|
tx-gre-csum-segmentation: on
|
|
tx-ipxip4-segmentation: on
|
|
tx-ipxip6-segmentation: on
|
|
tx-udp_tnl-segmentation: on
|
|
tx-udp_tnl-csum-segmentation: on
|
|
tx-gso-partial: on
|
|
tx-tunnel-remcsum-segmentation: on
|
|
tx-sctp-segmentation: on
|
|
tx-esp-segmentation: on
|
|
tx-udp-segmentation: on
|
|
tx-gso-list: on
|
|
tx-nocache-copy: off
|
|
loopback: off [fixed]
|
|
rx-fcs: off [fixed]
|
|
rx-all: off [fixed]
|
|
tx-vlan-stag-hw-insert: on
|
|
rx-vlan-stag-hw-parse: off [fixed]
|
|
rx-vlan-stag-filter: off [fixed]
|
|
l2-fwd-offload: off [fixed]
|
|
hw-tc-offload: off [fixed]
|
|
esp-hw-offload: off [fixed]
|
|
esp-tx-csum-hw-offload: off [fixed]
|
|
rx-udp_tunnel-port-offload: off [fixed]
|
|
tls-hw-tx-offload: off [fixed]
|
|
tls-hw-rx-offload: off [fixed]
|
|
rx-gro-hw: off [fixed]
|
|
tls-hw-record: off [fixed]
|
|
rx-gro-list: off
|
|
macsec-hw-offload: off [fixed]
|
|
rx-udp-gro-forwarding: off
|
|
hsr-tag-ins-offload: off [fixed]
|
|
hsr-tag-rm-offload: off [fixed]
|
|
hsr-fwd-offload: off [fixed]
|
|
hsr-dup-offload: off [fixed]
|
|
[private flags --show-priv-flags]
|
|
netlink error: Operation not supported
|
|
[ntuple/RSS -n]
|
|
Cannot get RX rings: Operation not supported
|
|
rxclass: Cannot get RX class rule count: Operation not supported
|
|
RX classification rule retrieval failed
|
|
[SFP/DOM transceiver -m]
|
|
netlink error: Operation not supported
|
|
[statistics -S (key error/drop counters only)]
|
|
[statistics -S (throughput counters)]
|
|
|
|
----- ethtool: fwbr601i0 -----
|
|
[driver/version/firmware/bus-info -i]
|
|
driver: bridge
|
|
version: 2.3
|
|
firmware-version: N/A
|
|
expansion-rom-version:
|
|
bus-info: N/A
|
|
supports-statistics: no
|
|
supports-test: no
|
|
supports-eeprom-access: no
|
|
supports-register-dump: no
|
|
supports-priv-flags: no
|
|
[settings - speed/duplex/autoneg/port]
|
|
Settings for fwbr601i0:
|
|
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)
|
|
Auto-negotiation: off
|
|
Port: Other
|
|
PHYAD: 0
|
|
Transceiver: internal
|
|
Link detected: yes
|
|
[channels -l (RX/TX/combined queue counts)]
|
|
netlink error: Operation not supported
|
|
[coalesce -c (interrupt moderation)]
|
|
netlink error: Operation not supported
|
|
[ring -g (descriptor counts)]
|
|
netlink error: Operation not supported
|
|
[pause / flow-control -a]
|
|
netlink error: Operation not supported
|
|
[offload features -k]
|
|
Features for fwbr601i0:
|
|
rx-checksumming: off [fixed]
|
|
tx-checksumming: on
|
|
tx-checksum-ipv4: off [fixed]
|
|
tx-checksum-ip-generic: on
|
|
tx-checksum-ipv6: off [fixed]
|
|
tx-checksum-fcoe-crc: off [fixed]
|
|
tx-checksum-sctp: off [fixed]
|
|
scatter-gather: on
|
|
tx-scatter-gather: on
|
|
tx-scatter-gather-fraglist: on
|
|
tcp-segmentation-offload: on
|
|
tx-tcp-segmentation: on
|
|
tx-tcp-ecn-segmentation: on
|
|
tx-tcp-mangleid-segmentation: on
|
|
tx-tcp6-segmentation: on
|
|
tx-tcp-accecn-segmentation: on
|
|
generic-segmentation-offload: on
|
|
generic-receive-offload: on
|
|
large-receive-offload: off [fixed]
|
|
rx-vlan-offload: off [fixed]
|
|
tx-vlan-offload: on
|
|
ntuple-filters: off [fixed]
|
|
receive-hashing: off [fixed]
|
|
highdma: on
|
|
rx-vlan-filter: off [fixed]
|
|
vlan-challenged: off [fixed]
|
|
tx-gso-robust: off [requested on]
|
|
tx-fcoe-segmentation: off [requested on]
|
|
tx-gre-segmentation: on
|
|
tx-gre-csum-segmentation: on
|
|
tx-ipxip4-segmentation: on
|
|
tx-ipxip6-segmentation: on
|
|
tx-udp_tnl-segmentation: on
|
|
tx-udp_tnl-csum-segmentation: on
|
|
tx-gso-partial: on
|
|
tx-tunnel-remcsum-segmentation: on
|
|
tx-sctp-segmentation: on
|
|
tx-esp-segmentation: on
|
|
tx-udp-segmentation: on
|
|
tx-gso-list: on
|
|
tx-nocache-copy: off
|
|
loopback: off [fixed]
|
|
rx-fcs: off [fixed]
|
|
rx-all: off [fixed]
|
|
tx-vlan-stag-hw-insert: on
|
|
rx-vlan-stag-hw-parse: off [fixed]
|
|
rx-vlan-stag-filter: off [fixed]
|
|
l2-fwd-offload: off [fixed]
|
|
hw-tc-offload: off [fixed]
|
|
esp-hw-offload: off [fixed]
|
|
esp-tx-csum-hw-offload: off [fixed]
|
|
rx-udp_tunnel-port-offload: off [fixed]
|
|
tls-hw-tx-offload: off [fixed]
|
|
tls-hw-rx-offload: off [fixed]
|
|
rx-gro-hw: off [fixed]
|
|
tls-hw-record: off [fixed]
|
|
rx-gro-list: off
|
|
macsec-hw-offload: off [fixed]
|
|
rx-udp-gro-forwarding: off
|
|
hsr-tag-ins-offload: off [fixed]
|
|
hsr-tag-rm-offload: off [fixed]
|
|
hsr-fwd-offload: off [fixed]
|
|
hsr-dup-offload: off [fixed]
|
|
[private flags --show-priv-flags]
|
|
netlink error: Operation not supported
|
|
[ntuple/RSS -n]
|
|
Cannot get RX rings: Operation not supported
|
|
rxclass: Cannot get RX class rule count: Operation not supported
|
|
RX classification rule retrieval failed
|
|
[SFP/DOM transceiver -m]
|
|
netlink error: Operation not supported
|
|
[statistics -S (key error/drop counters only)]
|
|
[statistics -S (throughput counters)]
|
|
|
|
----- ethtool: fwbr602i0 -----
|
|
[driver/version/firmware/bus-info -i]
|
|
driver: bridge
|
|
version: 2.3
|
|
firmware-version: N/A
|
|
expansion-rom-version:
|
|
bus-info: N/A
|
|
supports-statistics: no
|
|
supports-test: no
|
|
supports-eeprom-access: no
|
|
supports-register-dump: no
|
|
supports-priv-flags: no
|
|
[settings - speed/duplex/autoneg/port]
|
|
Settings for fwbr602i0:
|
|
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)
|
|
Auto-negotiation: off
|
|
Port: Other
|
|
PHYAD: 0
|
|
Transceiver: internal
|
|
Link detected: yes
|
|
[channels -l (RX/TX/combined queue counts)]
|
|
netlink error: Operation not supported
|
|
[coalesce -c (interrupt moderation)]
|
|
netlink error: Operation not supported
|
|
[ring -g (descriptor counts)]
|
|
netlink error: Operation not supported
|
|
[pause / flow-control -a]
|
|
netlink error: Operation not supported
|
|
[offload features -k]
|
|
Features for fwbr602i0:
|
|
rx-checksumming: off [fixed]
|
|
tx-checksumming: on
|
|
tx-checksum-ipv4: off [fixed]
|
|
tx-checksum-ip-generic: on
|
|
tx-checksum-ipv6: off [fixed]
|
|
tx-checksum-fcoe-crc: off [fixed]
|
|
tx-checksum-sctp: off [fixed]
|
|
scatter-gather: on
|
|
tx-scatter-gather: on
|
|
tx-scatter-gather-fraglist: on
|
|
tcp-segmentation-offload: on
|
|
tx-tcp-segmentation: on
|
|
tx-tcp-ecn-segmentation: on
|
|
tx-tcp-mangleid-segmentation: on
|
|
tx-tcp6-segmentation: on
|
|
tx-tcp-accecn-segmentation: on
|
|
generic-segmentation-offload: on
|
|
generic-receive-offload: on
|
|
large-receive-offload: off [fixed]
|
|
rx-vlan-offload: off [fixed]
|
|
tx-vlan-offload: on
|
|
ntuple-filters: off [fixed]
|
|
receive-hashing: off [fixed]
|
|
highdma: on
|
|
rx-vlan-filter: off [fixed]
|
|
vlan-challenged: off [fixed]
|
|
tx-gso-robust: off [requested on]
|
|
tx-fcoe-segmentation: off [requested on]
|
|
tx-gre-segmentation: on
|
|
tx-gre-csum-segmentation: on
|
|
tx-ipxip4-segmentation: on
|
|
tx-ipxip6-segmentation: on
|
|
tx-udp_tnl-segmentation: on
|
|
tx-udp_tnl-csum-segmentation: on
|
|
tx-gso-partial: on
|
|
tx-tunnel-remcsum-segmentation: on
|
|
tx-sctp-segmentation: on
|
|
tx-esp-segmentation: on
|
|
tx-udp-segmentation: on
|
|
tx-gso-list: on
|
|
tx-nocache-copy: off
|
|
loopback: off [fixed]
|
|
rx-fcs: off [fixed]
|
|
rx-all: off [fixed]
|
|
tx-vlan-stag-hw-insert: on
|
|
rx-vlan-stag-hw-parse: off [fixed]
|
|
rx-vlan-stag-filter: off [fixed]
|
|
l2-fwd-offload: off [fixed]
|
|
hw-tc-offload: off [fixed]
|
|
esp-hw-offload: off [fixed]
|
|
esp-tx-csum-hw-offload: off [fixed]
|
|
rx-udp_tunnel-port-offload: off [fixed]
|
|
tls-hw-tx-offload: off [fixed]
|
|
tls-hw-rx-offload: off [fixed]
|
|
rx-gro-hw: off [fixed]
|
|
tls-hw-record: off [fixed]
|
|
rx-gro-list: off
|
|
macsec-hw-offload: off [fixed]
|
|
rx-udp-gro-forwarding: off
|
|
hsr-tag-ins-offload: off [fixed]
|
|
hsr-tag-rm-offload: off [fixed]
|
|
hsr-fwd-offload: off [fixed]
|
|
hsr-dup-offload: off [fixed]
|
|
[private flags --show-priv-flags]
|
|
netlink error: Operation not supported
|
|
[ntuple/RSS -n]
|
|
Cannot get RX rings: Operation not supported
|
|
rxclass: Cannot get RX class rule count: Operation not supported
|
|
RX classification rule retrieval failed
|
|
[SFP/DOM transceiver -m]
|
|
netlink error: Operation not supported
|
|
[statistics -S (key error/drop counters only)]
|
|
[statistics -S (throughput counters)]
|
|
|
|
----- ethtool: fwbr603i0 -----
|
|
[driver/version/firmware/bus-info -i]
|
|
driver: bridge
|
|
version: 2.3
|
|
firmware-version: N/A
|
|
expansion-rom-version:
|
|
bus-info: N/A
|
|
supports-statistics: no
|
|
supports-test: no
|
|
supports-eeprom-access: no
|
|
supports-register-dump: no
|
|
supports-priv-flags: no
|
|
[settings - speed/duplex/autoneg/port]
|
|
Settings for fwbr603i0:
|
|
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)
|
|
Auto-negotiation: off
|
|
Port: Other
|
|
PHYAD: 0
|
|
Transceiver: internal
|
|
Link detected: yes
|
|
[channels -l (RX/TX/combined queue counts)]
|
|
netlink error: Operation not supported
|
|
[coalesce -c (interrupt moderation)]
|
|
netlink error: Operation not supported
|
|
[ring -g (descriptor counts)]
|
|
netlink error: Operation not supported
|
|
[pause / flow-control -a]
|
|
netlink error: Operation not supported
|
|
[offload features -k]
|
|
Features for fwbr603i0:
|
|
rx-checksumming: off [fixed]
|
|
tx-checksumming: on
|
|
tx-checksum-ipv4: off [fixed]
|
|
tx-checksum-ip-generic: on
|
|
tx-checksum-ipv6: off [fixed]
|
|
tx-checksum-fcoe-crc: off [fixed]
|
|
tx-checksum-sctp: off [fixed]
|
|
scatter-gather: on
|
|
tx-scatter-gather: on
|
|
tx-scatter-gather-fraglist: on
|
|
tcp-segmentation-offload: on
|
|
tx-tcp-segmentation: on
|
|
tx-tcp-ecn-segmentation: on
|
|
tx-tcp-mangleid-segmentation: on
|
|
tx-tcp6-segmentation: on
|
|
tx-tcp-accecn-segmentation: on
|
|
generic-segmentation-offload: on
|
|
generic-receive-offload: on
|
|
large-receive-offload: off [fixed]
|
|
rx-vlan-offload: off [fixed]
|
|
tx-vlan-offload: on
|
|
ntuple-filters: off [fixed]
|
|
receive-hashing: off [fixed]
|
|
highdma: on
|
|
rx-vlan-filter: off [fixed]
|
|
vlan-challenged: off [fixed]
|
|
tx-gso-robust: off [requested on]
|
|
tx-fcoe-segmentation: off [requested on]
|
|
tx-gre-segmentation: on
|
|
tx-gre-csum-segmentation: on
|
|
tx-ipxip4-segmentation: on
|
|
tx-ipxip6-segmentation: on
|
|
tx-udp_tnl-segmentation: on
|
|
tx-udp_tnl-csum-segmentation: on
|
|
tx-gso-partial: on
|
|
tx-tunnel-remcsum-segmentation: on
|
|
tx-sctp-segmentation: on
|
|
tx-esp-segmentation: on
|
|
tx-udp-segmentation: on
|
|
tx-gso-list: on
|
|
tx-nocache-copy: off
|
|
loopback: off [fixed]
|
|
rx-fcs: off [fixed]
|
|
rx-all: off [fixed]
|
|
tx-vlan-stag-hw-insert: on
|
|
rx-vlan-stag-hw-parse: off [fixed]
|
|
rx-vlan-stag-filter: off [fixed]
|
|
l2-fwd-offload: off [fixed]
|
|
hw-tc-offload: off [fixed]
|
|
esp-hw-offload: off [fixed]
|
|
esp-tx-csum-hw-offload: off [fixed]
|
|
rx-udp_tunnel-port-offload: off [fixed]
|
|
tls-hw-tx-offload: off [fixed]
|
|
tls-hw-rx-offload: off [fixed]
|
|
rx-gro-hw: off [fixed]
|
|
tls-hw-record: off [fixed]
|
|
rx-gro-list: off
|
|
macsec-hw-offload: off [fixed]
|
|
rx-udp-gro-forwarding: off
|
|
hsr-tag-ins-offload: off [fixed]
|
|
hsr-tag-rm-offload: off [fixed]
|
|
hsr-fwd-offload: off [fixed]
|
|
hsr-dup-offload: off [fixed]
|
|
[private flags --show-priv-flags]
|
|
netlink error: Operation not supported
|
|
[ntuple/RSS -n]
|
|
Cannot get RX rings: Operation not supported
|
|
rxclass: Cannot get RX class rule count: Operation not supported
|
|
RX classification rule retrieval failed
|
|
[SFP/DOM transceiver -m]
|
|
netlink error: Operation not supported
|
|
[statistics -S (key error/drop counters only)]
|
|
[statistics -S (throughput counters)]
|
|
|
|
----- ethtool: fwln601i0 -----
|
|
[driver/version/firmware/bus-info -i]
|
|
driver: veth
|
|
version: 1.0
|
|
firmware-version:
|
|
expansion-rom-version:
|
|
bus-info:
|
|
supports-statistics: yes
|
|
supports-test: no
|
|
supports-eeprom-access: no
|
|
supports-register-dump: no
|
|
supports-priv-flags: no
|
|
[settings - speed/duplex/autoneg/port]
|
|
Settings for fwln601i0:
|
|
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: Full
|
|
Auto-negotiation: off
|
|
Port: Twisted Pair
|
|
PHYAD: 0
|
|
Transceiver: internal
|
|
MDI-X: Unknown
|
|
Link detected: yes
|
|
[channels -l (RX/TX/combined queue counts)]
|
|
Channel parameters for fwln601i0:
|
|
Pre-set maximums:
|
|
RX: 32
|
|
TX: 32
|
|
Other: n/a
|
|
Combined: n/a
|
|
Current hardware settings:
|
|
RX: 1
|
|
TX: 1
|
|
Other: n/a
|
|
Combined: n/a
|
|
[coalesce -c (interrupt moderation)]
|
|
netlink error: Operation not supported
|
|
[ring -g (descriptor counts)]
|
|
netlink error: Operation not supported
|
|
[pause / flow-control -a]
|
|
netlink error: Operation not supported
|
|
[offload features -k]
|
|
Features for fwln601i0:
|
|
rx-checksumming: on
|
|
tx-checksumming: on
|
|
tx-checksum-ipv4: off [fixed]
|
|
tx-checksum-ip-generic: on
|
|
tx-checksum-ipv6: off [fixed]
|
|
tx-checksum-fcoe-crc: off [fixed]
|
|
tx-checksum-sctp: on
|
|
scatter-gather: on
|
|
tx-scatter-gather: on
|
|
tx-scatter-gather-fraglist: on
|
|
tcp-segmentation-offload: on
|
|
tx-tcp-segmentation: on
|
|
tx-tcp-ecn-segmentation: on
|
|
tx-tcp-mangleid-segmentation: on
|
|
tx-tcp6-segmentation: on
|
|
tx-tcp-accecn-segmentation: on
|
|
generic-segmentation-offload: on
|
|
generic-receive-offload: off
|
|
large-receive-offload: off [fixed]
|
|
rx-vlan-offload: on
|
|
tx-vlan-offload: on
|
|
ntuple-filters: off [fixed]
|
|
receive-hashing: off [fixed]
|
|
highdma: on
|
|
rx-vlan-filter: off [fixed]
|
|
vlan-challenged: off [fixed]
|
|
tx-gso-robust: off [fixed]
|
|
tx-fcoe-segmentation: off [fixed]
|
|
tx-gre-segmentation: on
|
|
tx-gre-csum-segmentation: on
|
|
tx-ipxip4-segmentation: on
|
|
tx-ipxip6-segmentation: on
|
|
tx-udp_tnl-segmentation: on
|
|
tx-udp_tnl-csum-segmentation: on
|
|
tx-gso-partial: off [fixed]
|
|
tx-tunnel-remcsum-segmentation: off [fixed]
|
|
tx-sctp-segmentation: on
|
|
tx-esp-segmentation: off [fixed]
|
|
tx-udp-segmentation: on
|
|
tx-gso-list: on
|
|
tx-nocache-copy: off
|
|
loopback: off [fixed]
|
|
rx-fcs: off [fixed]
|
|
rx-all: off [fixed]
|
|
tx-vlan-stag-hw-insert: on
|
|
rx-vlan-stag-hw-parse: on
|
|
rx-vlan-stag-filter: off [fixed]
|
|
l2-fwd-offload: off [fixed]
|
|
hw-tc-offload: off [fixed]
|
|
esp-hw-offload: off [fixed]
|
|
esp-tx-csum-hw-offload: off [fixed]
|
|
rx-udp_tunnel-port-offload: off [fixed]
|
|
tls-hw-tx-offload: off [fixed]
|
|
tls-hw-rx-offload: off [fixed]
|
|
rx-gro-hw: off [fixed]
|
|
tls-hw-record: off [fixed]
|
|
rx-gro-list: off
|
|
macsec-hw-offload: off [fixed]
|
|
rx-udp-gro-forwarding: off
|
|
hsr-tag-ins-offload: off [fixed]
|
|
hsr-tag-rm-offload: off [fixed]
|
|
hsr-fwd-offload: off [fixed]
|
|
hsr-dup-offload: off [fixed]
|
|
[private flags --show-priv-flags]
|
|
netlink error: Operation not supported
|
|
[ntuple/RSS -n]
|
|
Cannot get RX rings: Operation not supported
|
|
rxclass: Cannot get RX class rule count: Operation not supported
|
|
RX classification rule retrieval failed
|
|
[SFP/DOM transceiver -m]
|
|
netlink error: Operation not supported
|
|
[statistics -S (key error/drop counters only)]
|
|
rx_queue_0_drops: 0
|
|
rx_queue_0_xdp_drops: 0
|
|
rx_queue_0_xdp_tx_errors: 0
|
|
tx_queue_0_xdp_xmit_errors: 0
|
|
[statistics -S (throughput counters)]
|
|
|
|
----- ethtool: fwln602i0 -----
|
|
[driver/version/firmware/bus-info -i]
|
|
driver: veth
|
|
version: 1.0
|
|
firmware-version:
|
|
expansion-rom-version:
|
|
bus-info:
|
|
supports-statistics: yes
|
|
supports-test: no
|
|
supports-eeprom-access: no
|
|
supports-register-dump: no
|
|
supports-priv-flags: no
|
|
[settings - speed/duplex/autoneg/port]
|
|
Settings for fwln602i0:
|
|
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: Full
|
|
Auto-negotiation: off
|
|
Port: Twisted Pair
|
|
PHYAD: 0
|
|
Transceiver: internal
|
|
MDI-X: Unknown
|
|
Link detected: yes
|
|
[channels -l (RX/TX/combined queue counts)]
|
|
Channel parameters for fwln602i0:
|
|
Pre-set maximums:
|
|
RX: 32
|
|
TX: 32
|
|
Other: n/a
|
|
Combined: n/a
|
|
Current hardware settings:
|
|
RX: 1
|
|
TX: 1
|
|
Other: n/a
|
|
Combined: n/a
|
|
[coalesce -c (interrupt moderation)]
|
|
netlink error: Operation not supported
|
|
[ring -g (descriptor counts)]
|
|
netlink error: Operation not supported
|
|
[pause / flow-control -a]
|
|
netlink error: Operation not supported
|
|
[offload features -k]
|
|
Features for fwln602i0:
|
|
rx-checksumming: on
|
|
tx-checksumming: on
|
|
tx-checksum-ipv4: off [fixed]
|
|
tx-checksum-ip-generic: on
|
|
tx-checksum-ipv6: off [fixed]
|
|
tx-checksum-fcoe-crc: off [fixed]
|
|
tx-checksum-sctp: on
|
|
scatter-gather: on
|
|
tx-scatter-gather: on
|
|
tx-scatter-gather-fraglist: on
|
|
tcp-segmentation-offload: on
|
|
tx-tcp-segmentation: on
|
|
tx-tcp-ecn-segmentation: on
|
|
tx-tcp-mangleid-segmentation: on
|
|
tx-tcp6-segmentation: on
|
|
tx-tcp-accecn-segmentation: on
|
|
generic-segmentation-offload: on
|
|
generic-receive-offload: off
|
|
large-receive-offload: off [fixed]
|
|
rx-vlan-offload: on
|
|
tx-vlan-offload: on
|
|
ntuple-filters: off [fixed]
|
|
receive-hashing: off [fixed]
|
|
highdma: on
|
|
rx-vlan-filter: off [fixed]
|
|
vlan-challenged: off [fixed]
|
|
tx-gso-robust: off [fixed]
|
|
tx-fcoe-segmentation: off [fixed]
|
|
tx-gre-segmentation: on
|
|
tx-gre-csum-segmentation: on
|
|
tx-ipxip4-segmentation: on
|
|
tx-ipxip6-segmentation: on
|
|
tx-udp_tnl-segmentation: on
|
|
tx-udp_tnl-csum-segmentation: on
|
|
tx-gso-partial: off [fixed]
|
|
tx-tunnel-remcsum-segmentation: off [fixed]
|
|
tx-sctp-segmentation: on
|
|
tx-esp-segmentation: off [fixed]
|
|
tx-udp-segmentation: on
|
|
tx-gso-list: on
|
|
tx-nocache-copy: off
|
|
loopback: off [fixed]
|
|
rx-fcs: off [fixed]
|
|
rx-all: off [fixed]
|
|
tx-vlan-stag-hw-insert: on
|
|
rx-vlan-stag-hw-parse: on
|
|
rx-vlan-stag-filter: off [fixed]
|
|
l2-fwd-offload: off [fixed]
|
|
hw-tc-offload: off [fixed]
|
|
esp-hw-offload: off [fixed]
|
|
esp-tx-csum-hw-offload: off [fixed]
|
|
rx-udp_tunnel-port-offload: off [fixed]
|
|
tls-hw-tx-offload: off [fixed]
|
|
tls-hw-rx-offload: off [fixed]
|
|
rx-gro-hw: off [fixed]
|
|
tls-hw-record: off [fixed]
|
|
rx-gro-list: off
|
|
macsec-hw-offload: off [fixed]
|
|
rx-udp-gro-forwarding: off
|
|
hsr-tag-ins-offload: off [fixed]
|
|
hsr-tag-rm-offload: off [fixed]
|
|
hsr-fwd-offload: off [fixed]
|
|
hsr-dup-offload: off [fixed]
|
|
[private flags --show-priv-flags]
|
|
netlink error: Operation not supported
|
|
[ntuple/RSS -n]
|
|
Cannot get RX rings: Operation not supported
|
|
rxclass: Cannot get RX class rule count: Operation not supported
|
|
RX classification rule retrieval failed
|
|
[SFP/DOM transceiver -m]
|
|
netlink error: Operation not supported
|
|
[statistics -S (key error/drop counters only)]
|
|
rx_queue_0_drops: 0
|
|
rx_queue_0_xdp_drops: 0
|
|
rx_queue_0_xdp_tx_errors: 0
|
|
tx_queue_0_xdp_xmit_errors: 0
|
|
[statistics -S (throughput counters)]
|
|
|
|
----- ethtool: fwln603i0 -----
|
|
[driver/version/firmware/bus-info -i]
|
|
driver: veth
|
|
version: 1.0
|
|
firmware-version:
|
|
expansion-rom-version:
|
|
bus-info:
|
|
supports-statistics: yes
|
|
supports-test: no
|
|
supports-eeprom-access: no
|
|
supports-register-dump: no
|
|
supports-priv-flags: no
|
|
[settings - speed/duplex/autoneg/port]
|
|
Settings for fwln603i0:
|
|
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: Full
|
|
Auto-negotiation: off
|
|
Port: Twisted Pair
|
|
PHYAD: 0
|
|
Transceiver: internal
|
|
MDI-X: Unknown
|
|
Link detected: yes
|
|
[channels -l (RX/TX/combined queue counts)]
|
|
Channel parameters for fwln603i0:
|
|
Pre-set maximums:
|
|
RX: 32
|
|
TX: 32
|
|
Other: n/a
|
|
Combined: n/a
|
|
Current hardware settings:
|
|
RX: 1
|
|
TX: 1
|
|
Other: n/a
|
|
Combined: n/a
|
|
[coalesce -c (interrupt moderation)]
|
|
netlink error: Operation not supported
|
|
[ring -g (descriptor counts)]
|
|
netlink error: Operation not supported
|
|
[pause / flow-control -a]
|
|
netlink error: Operation not supported
|
|
[offload features -k]
|
|
Features for fwln603i0:
|
|
rx-checksumming: on
|
|
tx-checksumming: on
|
|
tx-checksum-ipv4: off [fixed]
|
|
tx-checksum-ip-generic: on
|
|
tx-checksum-ipv6: off [fixed]
|
|
tx-checksum-fcoe-crc: off [fixed]
|
|
tx-checksum-sctp: on
|
|
scatter-gather: on
|
|
tx-scatter-gather: on
|
|
tx-scatter-gather-fraglist: on
|
|
tcp-segmentation-offload: on
|
|
tx-tcp-segmentation: on
|
|
tx-tcp-ecn-segmentation: on
|
|
tx-tcp-mangleid-segmentation: on
|
|
tx-tcp6-segmentation: on
|
|
tx-tcp-accecn-segmentation: on
|
|
generic-segmentation-offload: on
|
|
generic-receive-offload: off
|
|
large-receive-offload: off [fixed]
|
|
rx-vlan-offload: on
|
|
tx-vlan-offload: on
|
|
ntuple-filters: off [fixed]
|
|
receive-hashing: off [fixed]
|
|
highdma: on
|
|
rx-vlan-filter: off [fixed]
|
|
vlan-challenged: off [fixed]
|
|
tx-gso-robust: off [fixed]
|
|
tx-fcoe-segmentation: off [fixed]
|
|
tx-gre-segmentation: on
|
|
tx-gre-csum-segmentation: on
|
|
tx-ipxip4-segmentation: on
|
|
tx-ipxip6-segmentation: on
|
|
tx-udp_tnl-segmentation: on
|
|
tx-udp_tnl-csum-segmentation: on
|
|
tx-gso-partial: off [fixed]
|
|
tx-tunnel-remcsum-segmentation: off [fixed]
|
|
tx-sctp-segmentation: on
|
|
tx-esp-segmentation: off [fixed]
|
|
tx-udp-segmentation: on
|
|
tx-gso-list: on
|
|
tx-nocache-copy: off
|
|
loopback: off [fixed]
|
|
rx-fcs: off [fixed]
|
|
rx-all: off [fixed]
|
|
tx-vlan-stag-hw-insert: on
|
|
rx-vlan-stag-hw-parse: on
|
|
rx-vlan-stag-filter: off [fixed]
|
|
l2-fwd-offload: off [fixed]
|
|
hw-tc-offload: off [fixed]
|
|
esp-hw-offload: off [fixed]
|
|
esp-tx-csum-hw-offload: off [fixed]
|
|
rx-udp_tunnel-port-offload: off [fixed]
|
|
tls-hw-tx-offload: off [fixed]
|
|
tls-hw-rx-offload: off [fixed]
|
|
rx-gro-hw: off [fixed]
|
|
tls-hw-record: off [fixed]
|
|
rx-gro-list: off
|
|
macsec-hw-offload: off [fixed]
|
|
rx-udp-gro-forwarding: off
|
|
hsr-tag-ins-offload: off [fixed]
|
|
hsr-tag-rm-offload: off [fixed]
|
|
hsr-fwd-offload: off [fixed]
|
|
hsr-dup-offload: off [fixed]
|
|
[private flags --show-priv-flags]
|
|
netlink error: Operation not supported
|
|
[ntuple/RSS -n]
|
|
Cannot get RX rings: Operation not supported
|
|
rxclass: Cannot get RX class rule count: Operation not supported
|
|
RX classification rule retrieval failed
|
|
[SFP/DOM transceiver -m]
|
|
netlink error: Operation not supported
|
|
[statistics -S (key error/drop counters only)]
|
|
rx_queue_0_drops: 0
|
|
rx_queue_0_xdp_drops: 0
|
|
rx_queue_0_xdp_tx_errors: 0
|
|
tx_queue_0_xdp_xmit_errors: 0
|
|
[statistics -S (throughput counters)]
|
|
|
|
----- ethtool: fwpr601p0 -----
|
|
[driver/version/firmware/bus-info -i]
|
|
driver: veth
|
|
version: 1.0
|
|
firmware-version:
|
|
expansion-rom-version:
|
|
bus-info:
|
|
supports-statistics: yes
|
|
supports-test: no
|
|
supports-eeprom-access: no
|
|
supports-register-dump: no
|
|
supports-priv-flags: no
|
|
[settings - speed/duplex/autoneg/port]
|
|
Settings for fwpr601p0:
|
|
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: Full
|
|
Auto-negotiation: off
|
|
Port: Twisted Pair
|
|
PHYAD: 0
|
|
Transceiver: internal
|
|
MDI-X: Unknown
|
|
Link detected: yes
|
|
[channels -l (RX/TX/combined queue counts)]
|
|
Channel parameters for fwpr601p0:
|
|
Pre-set maximums:
|
|
RX: 32
|
|
TX: 32
|
|
Other: n/a
|
|
Combined: n/a
|
|
Current hardware settings:
|
|
RX: 1
|
|
TX: 1
|
|
Other: n/a
|
|
Combined: n/a
|
|
[coalesce -c (interrupt moderation)]
|
|
netlink error: Operation not supported
|
|
[ring -g (descriptor counts)]
|
|
netlink error: Operation not supported
|
|
[pause / flow-control -a]
|
|
netlink error: Operation not supported
|
|
[offload features -k]
|
|
Features for fwpr601p0:
|
|
rx-checksumming: on
|
|
tx-checksumming: on
|
|
tx-checksum-ipv4: off [fixed]
|
|
tx-checksum-ip-generic: on
|
|
tx-checksum-ipv6: off [fixed]
|
|
tx-checksum-fcoe-crc: off [fixed]
|
|
tx-checksum-sctp: on
|
|
scatter-gather: on
|
|
tx-scatter-gather: on
|
|
tx-scatter-gather-fraglist: on
|
|
tcp-segmentation-offload: on
|
|
tx-tcp-segmentation: on
|
|
tx-tcp-ecn-segmentation: on
|
|
tx-tcp-mangleid-segmentation: on
|
|
tx-tcp6-segmentation: on
|
|
tx-tcp-accecn-segmentation: on
|
|
generic-segmentation-offload: on
|
|
generic-receive-offload: off
|
|
large-receive-offload: off [fixed]
|
|
rx-vlan-offload: on
|
|
tx-vlan-offload: on
|
|
ntuple-filters: off [fixed]
|
|
receive-hashing: off [fixed]
|
|
highdma: on
|
|
rx-vlan-filter: off [fixed]
|
|
vlan-challenged: off [fixed]
|
|
tx-gso-robust: off [fixed]
|
|
tx-fcoe-segmentation: off [fixed]
|
|
tx-gre-segmentation: on
|
|
tx-gre-csum-segmentation: on
|
|
tx-ipxip4-segmentation: on
|
|
tx-ipxip6-segmentation: on
|
|
tx-udp_tnl-segmentation: on
|
|
tx-udp_tnl-csum-segmentation: on
|
|
tx-gso-partial: off [fixed]
|
|
tx-tunnel-remcsum-segmentation: off [fixed]
|
|
tx-sctp-segmentation: on
|
|
tx-esp-segmentation: off [fixed]
|
|
tx-udp-segmentation: on
|
|
tx-gso-list: on
|
|
tx-nocache-copy: off
|
|
loopback: off [fixed]
|
|
rx-fcs: off [fixed]
|
|
rx-all: off [fixed]
|
|
tx-vlan-stag-hw-insert: on
|
|
rx-vlan-stag-hw-parse: on
|
|
rx-vlan-stag-filter: off [fixed]
|
|
l2-fwd-offload: off [fixed]
|
|
hw-tc-offload: off [fixed]
|
|
esp-hw-offload: off [fixed]
|
|
esp-tx-csum-hw-offload: off [fixed]
|
|
rx-udp_tunnel-port-offload: off [fixed]
|
|
tls-hw-tx-offload: off [fixed]
|
|
tls-hw-rx-offload: off [fixed]
|
|
rx-gro-hw: off [fixed]
|
|
tls-hw-record: off [fixed]
|
|
rx-gro-list: off
|
|
macsec-hw-offload: off [fixed]
|
|
rx-udp-gro-forwarding: off
|
|
hsr-tag-ins-offload: off [fixed]
|
|
hsr-tag-rm-offload: off [fixed]
|
|
hsr-fwd-offload: off [fixed]
|
|
hsr-dup-offload: off [fixed]
|
|
[private flags --show-priv-flags]
|
|
netlink error: Operation not supported
|
|
[ntuple/RSS -n]
|
|
Cannot get RX rings: Operation not supported
|
|
rxclass: Cannot get RX class rule count: Operation not supported
|
|
RX classification rule retrieval failed
|
|
[SFP/DOM transceiver -m]
|
|
netlink error: Operation not supported
|
|
[statistics -S (key error/drop counters only)]
|
|
rx_queue_0_drops: 0
|
|
rx_queue_0_xdp_drops: 0
|
|
rx_queue_0_xdp_tx_errors: 0
|
|
tx_queue_0_xdp_xmit_errors: 0
|
|
[statistics -S (throughput counters)]
|
|
|
|
----- ethtool: fwpr602p0 -----
|
|
[driver/version/firmware/bus-info -i]
|
|
driver: veth
|
|
version: 1.0
|
|
firmware-version:
|
|
expansion-rom-version:
|
|
bus-info:
|
|
supports-statistics: yes
|
|
supports-test: no
|
|
supports-eeprom-access: no
|
|
supports-register-dump: no
|
|
supports-priv-flags: no
|
|
[settings - speed/duplex/autoneg/port]
|
|
Settings for fwpr602p0:
|
|
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: Full
|
|
Auto-negotiation: off
|
|
Port: Twisted Pair
|
|
PHYAD: 0
|
|
Transceiver: internal
|
|
MDI-X: Unknown
|
|
Link detected: yes
|
|
[channels -l (RX/TX/combined queue counts)]
|
|
Channel parameters for fwpr602p0:
|
|
Pre-set maximums:
|
|
RX: 32
|
|
TX: 32
|
|
Other: n/a
|
|
Combined: n/a
|
|
Current hardware settings:
|
|
RX: 1
|
|
TX: 1
|
|
Other: n/a
|
|
Combined: n/a
|
|
[coalesce -c (interrupt moderation)]
|
|
netlink error: Operation not supported
|
|
[ring -g (descriptor counts)]
|
|
netlink error: Operation not supported
|
|
[pause / flow-control -a]
|
|
netlink error: Operation not supported
|
|
[offload features -k]
|
|
Features for fwpr602p0:
|
|
rx-checksumming: on
|
|
tx-checksumming: on
|
|
tx-checksum-ipv4: off [fixed]
|
|
tx-checksum-ip-generic: on
|
|
tx-checksum-ipv6: off [fixed]
|
|
tx-checksum-fcoe-crc: off [fixed]
|
|
tx-checksum-sctp: on
|
|
scatter-gather: on
|
|
tx-scatter-gather: on
|
|
tx-scatter-gather-fraglist: on
|
|
tcp-segmentation-offload: on
|
|
tx-tcp-segmentation: on
|
|
tx-tcp-ecn-segmentation: on
|
|
tx-tcp-mangleid-segmentation: on
|
|
tx-tcp6-segmentation: on
|
|
tx-tcp-accecn-segmentation: on
|
|
generic-segmentation-offload: on
|
|
generic-receive-offload: off
|
|
large-receive-offload: off [fixed]
|
|
rx-vlan-offload: on
|
|
tx-vlan-offload: on
|
|
ntuple-filters: off [fixed]
|
|
receive-hashing: off [fixed]
|
|
highdma: on
|
|
rx-vlan-filter: off [fixed]
|
|
vlan-challenged: off [fixed]
|
|
tx-gso-robust: off [fixed]
|
|
tx-fcoe-segmentation: off [fixed]
|
|
tx-gre-segmentation: on
|
|
tx-gre-csum-segmentation: on
|
|
tx-ipxip4-segmentation: on
|
|
tx-ipxip6-segmentation: on
|
|
tx-udp_tnl-segmentation: on
|
|
tx-udp_tnl-csum-segmentation: on
|
|
tx-gso-partial: off [fixed]
|
|
tx-tunnel-remcsum-segmentation: off [fixed]
|
|
tx-sctp-segmentation: on
|
|
tx-esp-segmentation: off [fixed]
|
|
tx-udp-segmentation: on
|
|
tx-gso-list: on
|
|
tx-nocache-copy: off
|
|
loopback: off [fixed]
|
|
rx-fcs: off [fixed]
|
|
rx-all: off [fixed]
|
|
tx-vlan-stag-hw-insert: on
|
|
rx-vlan-stag-hw-parse: on
|
|
rx-vlan-stag-filter: off [fixed]
|
|
l2-fwd-offload: off [fixed]
|
|
hw-tc-offload: off [fixed]
|
|
esp-hw-offload: off [fixed]
|
|
esp-tx-csum-hw-offload: off [fixed]
|
|
rx-udp_tunnel-port-offload: off [fixed]
|
|
tls-hw-tx-offload: off [fixed]
|
|
tls-hw-rx-offload: off [fixed]
|
|
rx-gro-hw: off [fixed]
|
|
tls-hw-record: off [fixed]
|
|
rx-gro-list: off
|
|
macsec-hw-offload: off [fixed]
|
|
rx-udp-gro-forwarding: off
|
|
hsr-tag-ins-offload: off [fixed]
|
|
hsr-tag-rm-offload: off [fixed]
|
|
hsr-fwd-offload: off [fixed]
|
|
hsr-dup-offload: off [fixed]
|
|
[private flags --show-priv-flags]
|
|
netlink error: Operation not supported
|
|
[ntuple/RSS -n]
|
|
Cannot get RX rings: Operation not supported
|
|
rxclass: Cannot get RX class rule count: Operation not supported
|
|
RX classification rule retrieval failed
|
|
[SFP/DOM transceiver -m]
|
|
netlink error: Operation not supported
|
|
[statistics -S (key error/drop counters only)]
|
|
rx_queue_0_drops: 0
|
|
rx_queue_0_xdp_drops: 0
|
|
rx_queue_0_xdp_tx_errors: 0
|
|
tx_queue_0_xdp_xmit_errors: 0
|
|
[statistics -S (throughput counters)]
|
|
|
|
----- ethtool: fwpr603p0 -----
|
|
[driver/version/firmware/bus-info -i]
|
|
driver: veth
|
|
version: 1.0
|
|
firmware-version:
|
|
expansion-rom-version:
|
|
bus-info:
|
|
supports-statistics: yes
|
|
supports-test: no
|
|
supports-eeprom-access: no
|
|
supports-register-dump: no
|
|
supports-priv-flags: no
|
|
[settings - speed/duplex/autoneg/port]
|
|
Settings for fwpr603p0:
|
|
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: Full
|
|
Auto-negotiation: off
|
|
Port: Twisted Pair
|
|
PHYAD: 0
|
|
Transceiver: internal
|
|
MDI-X: Unknown
|
|
Link detected: yes
|
|
[channels -l (RX/TX/combined queue counts)]
|
|
Channel parameters for fwpr603p0:
|
|
Pre-set maximums:
|
|
RX: 32
|
|
TX: 32
|
|
Other: n/a
|
|
Combined: n/a
|
|
Current hardware settings:
|
|
RX: 1
|
|
TX: 1
|
|
Other: n/a
|
|
Combined: n/a
|
|
[coalesce -c (interrupt moderation)]
|
|
netlink error: Operation not supported
|
|
[ring -g (descriptor counts)]
|
|
netlink error: Operation not supported
|
|
[pause / flow-control -a]
|
|
netlink error: Operation not supported
|
|
[offload features -k]
|
|
Features for fwpr603p0:
|
|
rx-checksumming: on
|
|
tx-checksumming: on
|
|
tx-checksum-ipv4: off [fixed]
|
|
tx-checksum-ip-generic: on
|
|
tx-checksum-ipv6: off [fixed]
|
|
tx-checksum-fcoe-crc: off [fixed]
|
|
tx-checksum-sctp: on
|
|
scatter-gather: on
|
|
tx-scatter-gather: on
|
|
tx-scatter-gather-fraglist: on
|
|
tcp-segmentation-offload: on
|
|
tx-tcp-segmentation: on
|
|
tx-tcp-ecn-segmentation: on
|
|
tx-tcp-mangleid-segmentation: on
|
|
tx-tcp6-segmentation: on
|
|
tx-tcp-accecn-segmentation: on
|
|
generic-segmentation-offload: on
|
|
generic-receive-offload: off
|
|
large-receive-offload: off [fixed]
|
|
rx-vlan-offload: on
|
|
tx-vlan-offload: on
|
|
ntuple-filters: off [fixed]
|
|
receive-hashing: off [fixed]
|
|
highdma: on
|
|
rx-vlan-filter: off [fixed]
|
|
vlan-challenged: off [fixed]
|
|
tx-gso-robust: off [fixed]
|
|
tx-fcoe-segmentation: off [fixed]
|
|
tx-gre-segmentation: on
|
|
tx-gre-csum-segmentation: on
|
|
tx-ipxip4-segmentation: on
|
|
tx-ipxip6-segmentation: on
|
|
tx-udp_tnl-segmentation: on
|
|
tx-udp_tnl-csum-segmentation: on
|
|
tx-gso-partial: off [fixed]
|
|
tx-tunnel-remcsum-segmentation: off [fixed]
|
|
tx-sctp-segmentation: on
|
|
tx-esp-segmentation: off [fixed]
|
|
tx-udp-segmentation: on
|
|
tx-gso-list: on
|
|
tx-nocache-copy: off
|
|
loopback: off [fixed]
|
|
rx-fcs: off [fixed]
|
|
rx-all: off [fixed]
|
|
tx-vlan-stag-hw-insert: on
|
|
rx-vlan-stag-hw-parse: on
|
|
rx-vlan-stag-filter: off [fixed]
|
|
l2-fwd-offload: off [fixed]
|
|
hw-tc-offload: off [fixed]
|
|
esp-hw-offload: off [fixed]
|
|
esp-tx-csum-hw-offload: off [fixed]
|
|
rx-udp_tunnel-port-offload: off [fixed]
|
|
tls-hw-tx-offload: off [fixed]
|
|
tls-hw-rx-offload: off [fixed]
|
|
rx-gro-hw: off [fixed]
|
|
tls-hw-record: off [fixed]
|
|
rx-gro-list: off
|
|
macsec-hw-offload: off [fixed]
|
|
rx-udp-gro-forwarding: off
|
|
hsr-tag-ins-offload: off [fixed]
|
|
hsr-tag-rm-offload: off [fixed]
|
|
hsr-fwd-offload: off [fixed]
|
|
hsr-dup-offload: off [fixed]
|
|
[private flags --show-priv-flags]
|
|
netlink error: Operation not supported
|
|
[ntuple/RSS -n]
|
|
Cannot get RX rings: Operation not supported
|
|
rxclass: Cannot get RX class rule count: Operation not supported
|
|
RX classification rule retrieval failed
|
|
[SFP/DOM transceiver -m]
|
|
netlink error: Operation not supported
|
|
[statistics -S (key error/drop counters only)]
|
|
rx_queue_0_drops: 0
|
|
rx_queue_0_xdp_drops: 0
|
|
rx_queue_0_xdp_tx_errors: 0
|
|
tx_queue_0_xdp_xmit_errors: 0
|
|
[statistics -S (throughput counters)]
|
|
|
|
----- ethtool: nic0 -----
|
|
[driver/version/firmware/bus-info -i]
|
|
driver: bnx2
|
|
version: 6.17.2-1-pve
|
|
firmware-version: 5.0.13 bc 5.0.11
|
|
expansion-rom-version:
|
|
bus-info: 0000:01:00.0
|
|
supports-statistics: yes
|
|
supports-test: yes
|
|
supports-eeprom-access: yes
|
|
supports-register-dump: yes
|
|
supports-priv-flags: no
|
|
[settings - speed/duplex/autoneg/port]
|
|
Settings for nic0:
|
|
Supported ports: [ TP ]
|
|
Supported link modes: 10baseT/Half 10baseT/Full
|
|
100baseT/Half 100baseT/Full
|
|
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/Full
|
|
Advertised pause frame use: No
|
|
Advertised auto-negotiation: Yes
|
|
Advertised FEC modes: Not reported
|
|
Speed: 1000Mb/s
|
|
Duplex: Full
|
|
Auto-negotiation: on
|
|
Port: Twisted Pair
|
|
PHYAD: 1
|
|
Transceiver: internal
|
|
MDI-X: on
|
|
Supports Wake-on: g
|
|
Wake-on: d
|
|
Link detected: yes
|
|
[channels -l (RX/TX/combined queue counts)]
|
|
Channel parameters for nic0:
|
|
Pre-set maximums:
|
|
RX: 8
|
|
TX: 8
|
|
Other: n/a
|
|
Combined: n/a
|
|
Current hardware settings:
|
|
RX: 5
|
|
TX: 4
|
|
Other: n/a
|
|
Combined: n/a
|
|
[coalesce -c (interrupt moderation)]
|
|
Coalesce parameters for nic0:
|
|
Adaptive RX: n/a TX: n/a
|
|
stats-block-usecs: 999936
|
|
sample-interval: n/a
|
|
pkt-rate-low: n/a
|
|
pkt-rate-high: n/a
|
|
|
|
rx-usecs: 18
|
|
rx-frames: 12
|
|
rx-usecs-irq: 18
|
|
rx-frames-irq: 2
|
|
|
|
tx-usecs: 80
|
|
tx-frames: 20
|
|
tx-usecs-irq: 18
|
|
tx-frames-irq: 2
|
|
|
|
rx-usecs-low: n/a
|
|
rx-frame-low: n/a
|
|
tx-usecs-low: n/a
|
|
tx-frame-low: n/a
|
|
|
|
rx-usecs-high: n/a
|
|
rx-frame-high: n/a
|
|
tx-usecs-high: n/a
|
|
tx-frame-high: n/a
|
|
|
|
CQE mode RX: n/a TX: n/a
|
|
|
|
tx-aggr-max-bytes: n/a
|
|
tx-aggr-max-frames: n/a
|
|
tx-aggr-time-usecs: n/a
|
|
|
|
[ring -g (descriptor counts)]
|
|
Ring parameters for nic0:
|
|
Pre-set maximums:
|
|
RX: 2040
|
|
RX Mini: n/a
|
|
RX Jumbo: 8160
|
|
TX: 255
|
|
TX push buff len: n/a
|
|
Current hardware settings:
|
|
RX: 255
|
|
RX Mini: n/a
|
|
RX Jumbo: 0
|
|
TX: 255
|
|
RX Buf Len: n/a
|
|
CQE Size: n/a
|
|
TX Push: off
|
|
RX Push: off
|
|
TX push buff len: n/a
|
|
TCP data split: n/a
|
|
[pause / flow-control -a]
|
|
Pause parameters for nic0:
|
|
Autonegotiate: on
|
|
RX: off
|
|
TX: off
|
|
|
|
[offload features -k]
|
|
Features for nic0:
|
|
rx-checksumming: on
|
|
tx-checksumming: on
|
|
tx-checksum-ipv4: on
|
|
tx-checksum-ip-generic: off [fixed]
|
|
tx-checksum-ipv6: on
|
|
tx-checksum-fcoe-crc: off [fixed]
|
|
tx-checksum-sctp: off [fixed]
|
|
scatter-gather: on
|
|
tx-scatter-gather: on
|
|
tx-scatter-gather-fraglist: off [fixed]
|
|
tcp-segmentation-offload: on
|
|
tx-tcp-segmentation: on
|
|
tx-tcp-ecn-segmentation: on
|
|
tx-tcp-mangleid-segmentation: off
|
|
tx-tcp6-segmentation: on
|
|
tx-tcp-accecn-segmentation: off [fixed]
|
|
generic-segmentation-offload: on
|
|
generic-receive-offload: on
|
|
large-receive-offload: off [fixed]
|
|
rx-vlan-offload: on
|
|
tx-vlan-offload: on
|
|
ntuple-filters: off [fixed]
|
|
receive-hashing: on
|
|
highdma: on [fixed]
|
|
rx-vlan-filter: off [fixed]
|
|
vlan-challenged: off [fixed]
|
|
tx-gso-robust: off [fixed]
|
|
tx-fcoe-segmentation: off [fixed]
|
|
tx-gre-segmentation: off [fixed]
|
|
tx-gre-csum-segmentation: off [fixed]
|
|
tx-ipxip4-segmentation: off [fixed]
|
|
tx-ipxip6-segmentation: off [fixed]
|
|
tx-udp_tnl-segmentation: off [fixed]
|
|
tx-udp_tnl-csum-segmentation: off [fixed]
|
|
tx-gso-partial: off [fixed]
|
|
tx-tunnel-remcsum-segmentation: off [fixed]
|
|
tx-sctp-segmentation: off [fixed]
|
|
tx-esp-segmentation: off [fixed]
|
|
tx-udp-segmentation: off [fixed]
|
|
tx-gso-list: off [fixed]
|
|
tx-nocache-copy: off
|
|
loopback: off [fixed]
|
|
rx-fcs: off [fixed]
|
|
rx-all: off [fixed]
|
|
tx-vlan-stag-hw-insert: off [fixed]
|
|
rx-vlan-stag-hw-parse: off [fixed]
|
|
rx-vlan-stag-filter: off [fixed]
|
|
l2-fwd-offload: off [fixed]
|
|
hw-tc-offload: off [fixed]
|
|
esp-hw-offload: off [fixed]
|
|
esp-tx-csum-hw-offload: off [fixed]
|
|
rx-udp_tunnel-port-offload: off [fixed]
|
|
tls-hw-tx-offload: off [fixed]
|
|
tls-hw-rx-offload: off [fixed]
|
|
rx-gro-hw: off [fixed]
|
|
tls-hw-record: off [fixed]
|
|
rx-gro-list: off
|
|
macsec-hw-offload: off [fixed]
|
|
rx-udp-gro-forwarding: off
|
|
hsr-tag-ins-offload: off [fixed]
|
|
hsr-tag-rm-offload: off [fixed]
|
|
hsr-fwd-offload: off [fixed]
|
|
hsr-dup-offload: off [fixed]
|
|
[private flags --show-priv-flags]
|
|
netlink error: Operation not supported
|
|
[ntuple/RSS -n]
|
|
Cannot get RX rings: Operation not supported
|
|
rxclass: Cannot get RX class rule count: Operation not supported
|
|
RX classification rule retrieval failed
|
|
[SFP/DOM transceiver -m]
|
|
netlink error: Operation not supported
|
|
[statistics -S (key error/drop counters only)]
|
|
rx_error_bytes: 0
|
|
tx_error_bytes: 0
|
|
tx_mac_errors: 0
|
|
tx_carrier_errors: 0
|
|
rx_crc_errors: 0
|
|
rx_align_errors: 0
|
|
rx_fragments: 0
|
|
rx_jabbers: 0
|
|
rx_undersize_packets: 0
|
|
rx_oversize_packets: 0
|
|
rx_ftq_discards: 0
|
|
rx_discards: 0
|
|
rx_fw_discards: 0
|
|
[statistics -S (throughput counters)]
|
|
rx_bytes: 6070415
|
|
tx_bytes: 2346038
|
|
|
|
----- ethtool: nic1 -----
|
|
[driver/version/firmware/bus-info -i]
|
|
driver: bnx2
|
|
version: 6.17.2-1-pve
|
|
firmware-version: 5.0.13 bc 5.0.11 NCSI 2.0.5
|
|
expansion-rom-version:
|
|
bus-info: 0000:01:00.1
|
|
supports-statistics: yes
|
|
supports-test: yes
|
|
supports-eeprom-access: yes
|
|
supports-register-dump: yes
|
|
supports-priv-flags: no
|
|
[settings - speed/duplex/autoneg/port]
|
|
Settings for nic1:
|
|
Supported ports: [ TP ]
|
|
Supported link modes: 10baseT/Half 10baseT/Full
|
|
100baseT/Half 100baseT/Full
|
|
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/Full
|
|
Advertised pause frame use: No
|
|
Advertised auto-negotiation: Yes
|
|
Advertised FEC modes: Not reported
|
|
Speed: 1000Mb/s
|
|
Duplex: Full
|
|
Auto-negotiation: on
|
|
Port: Twisted Pair
|
|
PHYAD: 1
|
|
Transceiver: internal
|
|
MDI-X: off
|
|
Supports Wake-on: g
|
|
Wake-on: d
|
|
Link detected: yes
|
|
[channels -l (RX/TX/combined queue counts)]
|
|
Channel parameters for nic1:
|
|
Pre-set maximums:
|
|
RX: 8
|
|
TX: 8
|
|
Other: n/a
|
|
Combined: n/a
|
|
Current hardware settings:
|
|
RX: 5
|
|
TX: 4
|
|
Other: n/a
|
|
Combined: n/a
|
|
[coalesce -c (interrupt moderation)]
|
|
Coalesce parameters for nic1:
|
|
Adaptive RX: n/a TX: n/a
|
|
stats-block-usecs: 999936
|
|
sample-interval: n/a
|
|
pkt-rate-low: n/a
|
|
pkt-rate-high: n/a
|
|
|
|
rx-usecs: 18
|
|
rx-frames: 12
|
|
rx-usecs-irq: 18
|
|
rx-frames-irq: 2
|
|
|
|
tx-usecs: 80
|
|
tx-frames: 20
|
|
tx-usecs-irq: 18
|
|
tx-frames-irq: 2
|
|
|
|
rx-usecs-low: n/a
|
|
rx-frame-low: n/a
|
|
tx-usecs-low: n/a
|
|
tx-frame-low: n/a
|
|
|
|
rx-usecs-high: n/a
|
|
rx-frame-high: n/a
|
|
tx-usecs-high: n/a
|
|
tx-frame-high: n/a
|
|
|
|
CQE mode RX: n/a TX: n/a
|
|
|
|
tx-aggr-max-bytes: n/a
|
|
tx-aggr-max-frames: n/a
|
|
tx-aggr-time-usecs: n/a
|
|
|
|
[ring -g (descriptor counts)]
|
|
Ring parameters for nic1:
|
|
Pre-set maximums:
|
|
RX: 2040
|
|
RX Mini: n/a
|
|
RX Jumbo: 8160
|
|
TX: 255
|
|
TX push buff len: n/a
|
|
Current hardware settings:
|
|
RX: 255
|
|
RX Mini: n/a
|
|
RX Jumbo: 0
|
|
TX: 255
|
|
RX Buf Len: n/a
|
|
CQE Size: n/a
|
|
TX Push: off
|
|
RX Push: off
|
|
TX push buff len: n/a
|
|
TCP data split: n/a
|
|
[pause / flow-control -a]
|
|
Pause parameters for nic1:
|
|
Autonegotiate: on
|
|
RX: off
|
|
TX: off
|
|
|
|
[offload features -k]
|
|
Features for nic1:
|
|
rx-checksumming: on
|
|
tx-checksumming: on
|
|
tx-checksum-ipv4: on
|
|
tx-checksum-ip-generic: off [fixed]
|
|
tx-checksum-ipv6: on
|
|
tx-checksum-fcoe-crc: off [fixed]
|
|
tx-checksum-sctp: off [fixed]
|
|
scatter-gather: on
|
|
tx-scatter-gather: on
|
|
tx-scatter-gather-fraglist: off [fixed]
|
|
tcp-segmentation-offload: on
|
|
tx-tcp-segmentation: on
|
|
tx-tcp-ecn-segmentation: on
|
|
tx-tcp-mangleid-segmentation: off
|
|
tx-tcp6-segmentation: on
|
|
tx-tcp-accecn-segmentation: off [fixed]
|
|
generic-segmentation-offload: on
|
|
generic-receive-offload: on
|
|
large-receive-offload: off [fixed]
|
|
rx-vlan-offload: on [fixed]
|
|
tx-vlan-offload: on
|
|
ntuple-filters: off [fixed]
|
|
receive-hashing: on
|
|
highdma: on [fixed]
|
|
rx-vlan-filter: off [fixed]
|
|
vlan-challenged: off [fixed]
|
|
tx-gso-robust: off [fixed]
|
|
tx-fcoe-segmentation: off [fixed]
|
|
tx-gre-segmentation: off [fixed]
|
|
tx-gre-csum-segmentation: off [fixed]
|
|
tx-ipxip4-segmentation: off [fixed]
|
|
tx-ipxip6-segmentation: off [fixed]
|
|
tx-udp_tnl-segmentation: off [fixed]
|
|
tx-udp_tnl-csum-segmentation: off [fixed]
|
|
tx-gso-partial: off [fixed]
|
|
tx-tunnel-remcsum-segmentation: off [fixed]
|
|
tx-sctp-segmentation: off [fixed]
|
|
tx-esp-segmentation: off [fixed]
|
|
tx-udp-segmentation: off [fixed]
|
|
tx-gso-list: off [fixed]
|
|
tx-nocache-copy: off
|
|
loopback: off [fixed]
|
|
rx-fcs: off [fixed]
|
|
rx-all: off [fixed]
|
|
tx-vlan-stag-hw-insert: off [fixed]
|
|
rx-vlan-stag-hw-parse: off [fixed]
|
|
rx-vlan-stag-filter: off [fixed]
|
|
l2-fwd-offload: off [fixed]
|
|
hw-tc-offload: off [fixed]
|
|
esp-hw-offload: off [fixed]
|
|
esp-tx-csum-hw-offload: off [fixed]
|
|
rx-udp_tunnel-port-offload: off [fixed]
|
|
tls-hw-tx-offload: off [fixed]
|
|
tls-hw-rx-offload: off [fixed]
|
|
rx-gro-hw: off [fixed]
|
|
tls-hw-record: off [fixed]
|
|
rx-gro-list: off
|
|
macsec-hw-offload: off [fixed]
|
|
rx-udp-gro-forwarding: off
|
|
hsr-tag-ins-offload: off [fixed]
|
|
hsr-tag-rm-offload: off [fixed]
|
|
hsr-fwd-offload: off [fixed]
|
|
hsr-dup-offload: off [fixed]
|
|
[private flags --show-priv-flags]
|
|
netlink error: Operation not supported
|
|
[ntuple/RSS -n]
|
|
Cannot get RX rings: Operation not supported
|
|
rxclass: Cannot get RX class rule count: Operation not supported
|
|
RX classification rule retrieval failed
|
|
[SFP/DOM transceiver -m]
|
|
netlink error: Operation not supported
|
|
[statistics -S (key error/drop counters only)]
|
|
rx_error_bytes: 0
|
|
tx_error_bytes: 0
|
|
tx_mac_errors: 0
|
|
tx_carrier_errors: 0
|
|
rx_crc_errors: 0
|
|
rx_align_errors: 0
|
|
rx_fragments: 0
|
|
rx_jabbers: 0
|
|
rx_undersize_packets: 0
|
|
rx_oversize_packets: 0
|
|
rx_ftq_discards: 0
|
|
rx_discards: 0
|
|
rx_fw_discards: 0
|
|
[statistics -S (throughput counters)]
|
|
rx_bytes: 11845150212
|
|
tx_bytes: 1643642455
|
|
|
|
----- ethtool: nic2 -----
|
|
[driver/version/firmware/bus-info -i]
|
|
driver: bnx2
|
|
version: 6.17.2-1-pve
|
|
firmware-version: 5.0.13 bc 5.0.11 NCSI 2.0.5
|
|
expansion-rom-version:
|
|
bus-info: 0000:02:00.0
|
|
supports-statistics: yes
|
|
supports-test: yes
|
|
supports-eeprom-access: yes
|
|
supports-register-dump: yes
|
|
supports-priv-flags: no
|
|
[settings - speed/duplex/autoneg/port]
|
|
Settings for nic2:
|
|
Supported ports: [ TP ]
|
|
Supported link modes: 10baseT/Half 10baseT/Full
|
|
100baseT/Half 100baseT/Full
|
|
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/Full
|
|
Advertised pause frame use: No
|
|
Advertised auto-negotiation: Yes
|
|
Advertised FEC modes: Not reported
|
|
Speed: 1000Mb/s
|
|
Duplex: Full
|
|
Auto-negotiation: on
|
|
Port: Twisted Pair
|
|
PHYAD: 1
|
|
Transceiver: internal
|
|
MDI-X: off
|
|
Supports Wake-on: g
|
|
Wake-on: d
|
|
Link detected: yes
|
|
[channels -l (RX/TX/combined queue counts)]
|
|
Channel parameters for nic2:
|
|
Pre-set maximums:
|
|
RX: 8
|
|
TX: 8
|
|
Other: n/a
|
|
Combined: n/a
|
|
Current hardware settings:
|
|
RX: 5
|
|
TX: 4
|
|
Other: n/a
|
|
Combined: n/a
|
|
[coalesce -c (interrupt moderation)]
|
|
Coalesce parameters for nic2:
|
|
Adaptive RX: n/a TX: n/a
|
|
stats-block-usecs: 999936
|
|
sample-interval: n/a
|
|
pkt-rate-low: n/a
|
|
pkt-rate-high: n/a
|
|
|
|
rx-usecs: 18
|
|
rx-frames: 12
|
|
rx-usecs-irq: 18
|
|
rx-frames-irq: 2
|
|
|
|
tx-usecs: 80
|
|
tx-frames: 20
|
|
tx-usecs-irq: 18
|
|
tx-frames-irq: 2
|
|
|
|
rx-usecs-low: n/a
|
|
rx-frame-low: n/a
|
|
tx-usecs-low: n/a
|
|
tx-frame-low: n/a
|
|
|
|
rx-usecs-high: n/a
|
|
rx-frame-high: n/a
|
|
tx-usecs-high: n/a
|
|
tx-frame-high: n/a
|
|
|
|
CQE mode RX: n/a TX: n/a
|
|
|
|
tx-aggr-max-bytes: n/a
|
|
tx-aggr-max-frames: n/a
|
|
tx-aggr-time-usecs: n/a
|
|
|
|
[ring -g (descriptor counts)]
|
|
Ring parameters for nic2:
|
|
Pre-set maximums:
|
|
RX: 2040
|
|
RX Mini: n/a
|
|
RX Jumbo: 8160
|
|
TX: 255
|
|
TX push buff len: n/a
|
|
Current hardware settings:
|
|
RX: 255
|
|
RX Mini: n/a
|
|
RX Jumbo: 0
|
|
TX: 255
|
|
RX Buf Len: n/a
|
|
CQE Size: n/a
|
|
TX Push: off
|
|
RX Push: off
|
|
TX push buff len: n/a
|
|
TCP data split: n/a
|
|
[pause / flow-control -a]
|
|
Pause parameters for nic2:
|
|
Autonegotiate: on
|
|
RX: off
|
|
TX: off
|
|
|
|
[offload features -k]
|
|
Features for nic2:
|
|
rx-checksumming: on
|
|
tx-checksumming: on
|
|
tx-checksum-ipv4: on
|
|
tx-checksum-ip-generic: off [fixed]
|
|
tx-checksum-ipv6: on
|
|
tx-checksum-fcoe-crc: off [fixed]
|
|
tx-checksum-sctp: off [fixed]
|
|
scatter-gather: on
|
|
tx-scatter-gather: on
|
|
tx-scatter-gather-fraglist: off [fixed]
|
|
tcp-segmentation-offload: on
|
|
tx-tcp-segmentation: on
|
|
tx-tcp-ecn-segmentation: on
|
|
tx-tcp-mangleid-segmentation: off
|
|
tx-tcp6-segmentation: on
|
|
tx-tcp-accecn-segmentation: off [fixed]
|
|
generic-segmentation-offload: on
|
|
generic-receive-offload: on
|
|
large-receive-offload: off [fixed]
|
|
rx-vlan-offload: on [fixed]
|
|
tx-vlan-offload: on
|
|
ntuple-filters: off [fixed]
|
|
receive-hashing: on
|
|
highdma: on [fixed]
|
|
rx-vlan-filter: off [fixed]
|
|
vlan-challenged: off [fixed]
|
|
tx-gso-robust: off [fixed]
|
|
tx-fcoe-segmentation: off [fixed]
|
|
tx-gre-segmentation: off [fixed]
|
|
tx-gre-csum-segmentation: off [fixed]
|
|
tx-ipxip4-segmentation: off [fixed]
|
|
tx-ipxip6-segmentation: off [fixed]
|
|
tx-udp_tnl-segmentation: off [fixed]
|
|
tx-udp_tnl-csum-segmentation: off [fixed]
|
|
tx-gso-partial: off [fixed]
|
|
tx-tunnel-remcsum-segmentation: off [fixed]
|
|
tx-sctp-segmentation: off [fixed]
|
|
tx-esp-segmentation: off [fixed]
|
|
tx-udp-segmentation: off [fixed]
|
|
tx-gso-list: off [fixed]
|
|
tx-nocache-copy: off
|
|
loopback: off [fixed]
|
|
rx-fcs: off [fixed]
|
|
rx-all: off [fixed]
|
|
tx-vlan-stag-hw-insert: off [fixed]
|
|
rx-vlan-stag-hw-parse: off [fixed]
|
|
rx-vlan-stag-filter: off [fixed]
|
|
l2-fwd-offload: off [fixed]
|
|
hw-tc-offload: off [fixed]
|
|
esp-hw-offload: off [fixed]
|
|
esp-tx-csum-hw-offload: off [fixed]
|
|
rx-udp_tunnel-port-offload: off [fixed]
|
|
tls-hw-tx-offload: off [fixed]
|
|
tls-hw-rx-offload: off [fixed]
|
|
rx-gro-hw: off [fixed]
|
|
tls-hw-record: off [fixed]
|
|
rx-gro-list: off
|
|
macsec-hw-offload: off [fixed]
|
|
rx-udp-gro-forwarding: off
|
|
hsr-tag-ins-offload: off [fixed]
|
|
hsr-tag-rm-offload: off [fixed]
|
|
hsr-fwd-offload: off [fixed]
|
|
hsr-dup-offload: off [fixed]
|
|
[private flags --show-priv-flags]
|
|
netlink error: Operation not supported
|
|
[ntuple/RSS -n]
|
|
Cannot get RX rings: Operation not supported
|
|
rxclass: Cannot get RX class rule count: Operation not supported
|
|
RX classification rule retrieval failed
|
|
[SFP/DOM transceiver -m]
|
|
netlink error: Operation not supported
|
|
[statistics -S (key error/drop counters only)]
|
|
rx_error_bytes: 0
|
|
tx_error_bytes: 0
|
|
tx_mac_errors: 0
|
|
tx_carrier_errors: 0
|
|
rx_crc_errors: 0
|
|
rx_align_errors: 0
|
|
rx_fragments: 0
|
|
rx_jabbers: 0
|
|
rx_undersize_packets: 0
|
|
rx_oversize_packets: 0
|
|
rx_ftq_discards: 0
|
|
rx_discards: 0
|
|
rx_fw_discards: 0
|
|
[statistics -S (throughput counters)]
|
|
rx_bytes: 576851797
|
|
tx_bytes: 2612379292
|
|
|
|
----- ethtool: nic3 -----
|
|
[driver/version/firmware/bus-info -i]
|
|
driver: bnx2
|
|
version: 6.17.2-1-pve
|
|
firmware-version: 5.0.13 bc 5.0.11 NCSI 2.0.5
|
|
expansion-rom-version:
|
|
bus-info: 0000:02:00.1
|
|
supports-statistics: yes
|
|
supports-test: yes
|
|
supports-eeprom-access: yes
|
|
supports-register-dump: yes
|
|
supports-priv-flags: no
|
|
[settings - speed/duplex/autoneg/port]
|
|
Settings for nic3:
|
|
Supported ports: [ TP ]
|
|
Supported link modes: 10baseT/Half 10baseT/Full
|
|
100baseT/Half 100baseT/Full
|
|
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/Full
|
|
Advertised pause frame use: No
|
|
Advertised auto-negotiation: Yes
|
|
Advertised FEC modes: Not reported
|
|
Speed: 100Mb/s
|
|
Duplex: Full
|
|
Auto-negotiation: on
|
|
Port: Twisted Pair
|
|
PHYAD: 1
|
|
Transceiver: internal
|
|
MDI-X: on
|
|
Supports Wake-on: g
|
|
Wake-on: d
|
|
Link detected: yes
|
|
[channels -l (RX/TX/combined queue counts)]
|
|
Channel parameters for nic3:
|
|
Pre-set maximums:
|
|
RX: 8
|
|
TX: 8
|
|
Other: n/a
|
|
Combined: n/a
|
|
Current hardware settings:
|
|
RX: 5
|
|
TX: 4
|
|
Other: n/a
|
|
Combined: n/a
|
|
[coalesce -c (interrupt moderation)]
|
|
Coalesce parameters for nic3:
|
|
Adaptive RX: n/a TX: n/a
|
|
stats-block-usecs: 999936
|
|
sample-interval: n/a
|
|
pkt-rate-low: n/a
|
|
pkt-rate-high: n/a
|
|
|
|
rx-usecs: 18
|
|
rx-frames: 12
|
|
rx-usecs-irq: 18
|
|
rx-frames-irq: 2
|
|
|
|
tx-usecs: 80
|
|
tx-frames: 20
|
|
tx-usecs-irq: 18
|
|
tx-frames-irq: 2
|
|
|
|
rx-usecs-low: n/a
|
|
rx-frame-low: n/a
|
|
tx-usecs-low: n/a
|
|
tx-frame-low: n/a
|
|
|
|
rx-usecs-high: n/a
|
|
rx-frame-high: n/a
|
|
tx-usecs-high: n/a
|
|
tx-frame-high: n/a
|
|
|
|
CQE mode RX: n/a TX: n/a
|
|
|
|
tx-aggr-max-bytes: n/a
|
|
tx-aggr-max-frames: n/a
|
|
tx-aggr-time-usecs: n/a
|
|
|
|
[ring -g (descriptor counts)]
|
|
Ring parameters for nic3:
|
|
Pre-set maximums:
|
|
RX: 2040
|
|
RX Mini: n/a
|
|
RX Jumbo: 8160
|
|
TX: 255
|
|
TX push buff len: n/a
|
|
Current hardware settings:
|
|
RX: 255
|
|
RX Mini: n/a
|
|
RX Jumbo: 0
|
|
TX: 255
|
|
RX Buf Len: n/a
|
|
CQE Size: n/a
|
|
TX Push: off
|
|
RX Push: off
|
|
TX push buff len: n/a
|
|
TCP data split: n/a
|
|
[pause / flow-control -a]
|
|
Pause parameters for nic3:
|
|
Autonegotiate: on
|
|
RX: on
|
|
TX: on
|
|
|
|
[offload features -k]
|
|
Features for nic3:
|
|
rx-checksumming: on
|
|
tx-checksumming: on
|
|
tx-checksum-ipv4: on
|
|
tx-checksum-ip-generic: off [fixed]
|
|
tx-checksum-ipv6: on
|
|
tx-checksum-fcoe-crc: off [fixed]
|
|
tx-checksum-sctp: off [fixed]
|
|
scatter-gather: on
|
|
tx-scatter-gather: on
|
|
tx-scatter-gather-fraglist: off [fixed]
|
|
tcp-segmentation-offload: on
|
|
tx-tcp-segmentation: on
|
|
tx-tcp-ecn-segmentation: on
|
|
tx-tcp-mangleid-segmentation: off
|
|
tx-tcp6-segmentation: on
|
|
tx-tcp-accecn-segmentation: off [fixed]
|
|
generic-segmentation-offload: on
|
|
generic-receive-offload: on
|
|
large-receive-offload: off [fixed]
|
|
rx-vlan-offload: on [fixed]
|
|
tx-vlan-offload: on
|
|
ntuple-filters: off [fixed]
|
|
receive-hashing: on
|
|
highdma: on [fixed]
|
|
rx-vlan-filter: off [fixed]
|
|
vlan-challenged: off [fixed]
|
|
tx-gso-robust: off [fixed]
|
|
tx-fcoe-segmentation: off [fixed]
|
|
tx-gre-segmentation: off [fixed]
|
|
tx-gre-csum-segmentation: off [fixed]
|
|
tx-ipxip4-segmentation: off [fixed]
|
|
tx-ipxip6-segmentation: off [fixed]
|
|
tx-udp_tnl-segmentation: off [fixed]
|
|
tx-udp_tnl-csum-segmentation: off [fixed]
|
|
tx-gso-partial: off [fixed]
|
|
tx-tunnel-remcsum-segmentation: off [fixed]
|
|
tx-sctp-segmentation: off [fixed]
|
|
tx-esp-segmentation: off [fixed]
|
|
tx-udp-segmentation: off [fixed]
|
|
tx-gso-list: off [fixed]
|
|
tx-nocache-copy: off
|
|
loopback: off [fixed]
|
|
rx-fcs: off [fixed]
|
|
rx-all: off [fixed]
|
|
tx-vlan-stag-hw-insert: off [fixed]
|
|
rx-vlan-stag-hw-parse: off [fixed]
|
|
rx-vlan-stag-filter: off [fixed]
|
|
l2-fwd-offload: off [fixed]
|
|
hw-tc-offload: off [fixed]
|
|
esp-hw-offload: off [fixed]
|
|
esp-tx-csum-hw-offload: off [fixed]
|
|
rx-udp_tunnel-port-offload: off [fixed]
|
|
tls-hw-tx-offload: off [fixed]
|
|
tls-hw-rx-offload: off [fixed]
|
|
rx-gro-hw: off [fixed]
|
|
tls-hw-record: off [fixed]
|
|
rx-gro-list: off
|
|
macsec-hw-offload: off [fixed]
|
|
rx-udp-gro-forwarding: off
|
|
hsr-tag-ins-offload: off [fixed]
|
|
hsr-tag-rm-offload: off [fixed]
|
|
hsr-fwd-offload: off [fixed]
|
|
hsr-dup-offload: off [fixed]
|
|
[private flags --show-priv-flags]
|
|
netlink error: Operation not supported
|
|
[ntuple/RSS -n]
|
|
Cannot get RX rings: Operation not supported
|
|
rxclass: Cannot get RX class rule count: Operation not supported
|
|
RX classification rule retrieval failed
|
|
[SFP/DOM transceiver -m]
|
|
netlink error: Operation not supported
|
|
[statistics -S (key error/drop counters only)]
|
|
rx_error_bytes: 0
|
|
tx_error_bytes: 0
|
|
tx_mac_errors: 0
|
|
tx_carrier_errors: 0
|
|
rx_crc_errors: 0
|
|
rx_align_errors: 0
|
|
rx_fragments: 0
|
|
rx_jabbers: 0
|
|
rx_undersize_packets: 0
|
|
rx_oversize_packets: 0
|
|
rx_ftq_discards: 0
|
|
rx_discards: 0
|
|
rx_fw_discards: 0
|
|
[statistics -S (throughput counters)]
|
|
rx_bytes: 50662
|
|
tx_bytes: 9094
|
|
|
|
----- ethtool: nic3.2 -----
|
|
[driver/version/firmware/bus-info -i]
|
|
driver: 802.1Q VLAN Support
|
|
version: 1.8
|
|
firmware-version: N/A
|
|
expansion-rom-version:
|
|
bus-info:
|
|
supports-statistics: no
|
|
supports-test: no
|
|
supports-eeprom-access: no
|
|
supports-register-dump: no
|
|
supports-priv-flags: no
|
|
[settings - speed/duplex/autoneg/port]
|
|
Settings for nic3.2:
|
|
Supported ports: [ TP ]
|
|
Supported link modes: 10baseT/Half 10baseT/Full
|
|
100baseT/Half 100baseT/Full
|
|
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/Full
|
|
Advertised pause frame use: No
|
|
Advertised auto-negotiation: Yes
|
|
Advertised FEC modes: Not reported
|
|
Speed: 100Mb/s
|
|
Duplex: Full
|
|
Auto-negotiation: on
|
|
Port: Twisted Pair
|
|
PHYAD: 1
|
|
Transceiver: internal
|
|
MDI-X: on
|
|
Link detected: yes
|
|
[channels -l (RX/TX/combined queue counts)]
|
|
netlink error: Operation not supported
|
|
[coalesce -c (interrupt moderation)]
|
|
netlink error: Operation not supported
|
|
[ring -g (descriptor counts)]
|
|
netlink error: Operation not supported
|
|
[pause / flow-control -a]
|
|
netlink error: Operation not supported
|
|
[offload features -k]
|
|
Features for nic3.2:
|
|
rx-checksumming: off [fixed]
|
|
tx-checksumming: on
|
|
tx-checksum-ipv4: off [fixed]
|
|
tx-checksum-ip-generic: on
|
|
tx-checksum-ipv6: off [fixed]
|
|
tx-checksum-fcoe-crc: off [requested on]
|
|
tx-checksum-sctp: off [requested on]
|
|
scatter-gather: on
|
|
tx-scatter-gather: on
|
|
tx-scatter-gather-fraglist: off [requested on]
|
|
tcp-segmentation-offload: on
|
|
tx-tcp-segmentation: on
|
|
tx-tcp-ecn-segmentation: on
|
|
tx-tcp-mangleid-segmentation: on
|
|
tx-tcp6-segmentation: on
|
|
tx-tcp-accecn-segmentation: on
|
|
generic-segmentation-offload: on
|
|
generic-receive-offload: on
|
|
large-receive-offload: off [fixed]
|
|
rx-vlan-offload: off [fixed]
|
|
tx-vlan-offload: off [fixed]
|
|
ntuple-filters: off [fixed]
|
|
receive-hashing: off [fixed]
|
|
highdma: on
|
|
rx-vlan-filter: off [fixed]
|
|
vlan-challenged: off [fixed]
|
|
tx-gso-robust: off [fixed]
|
|
tx-fcoe-segmentation: off [requested on]
|
|
tx-gre-segmentation: off [requested on]
|
|
tx-gre-csum-segmentation: off [requested on]
|
|
tx-ipxip4-segmentation: off [requested on]
|
|
tx-ipxip6-segmentation: off [requested on]
|
|
tx-udp_tnl-segmentation: off [requested on]
|
|
tx-udp_tnl-csum-segmentation: off [requested on]
|
|
tx-gso-partial: off [fixed]
|
|
tx-tunnel-remcsum-segmentation: off [fixed]
|
|
tx-sctp-segmentation: on
|
|
tx-esp-segmentation: off [fixed]
|
|
tx-udp-segmentation: on
|
|
tx-gso-list: on
|
|
tx-nocache-copy: off
|
|
loopback: off [fixed]
|
|
rx-fcs: off [fixed]
|
|
rx-all: off [fixed]
|
|
tx-vlan-stag-hw-insert: off [fixed]
|
|
rx-vlan-stag-hw-parse: off [fixed]
|
|
rx-vlan-stag-filter: off [fixed]
|
|
l2-fwd-offload: off [fixed]
|
|
hw-tc-offload: off [fixed]
|
|
esp-hw-offload: off [fixed]
|
|
esp-tx-csum-hw-offload: off [fixed]
|
|
rx-udp_tunnel-port-offload: off [fixed]
|
|
tls-hw-tx-offload: off [fixed]
|
|
tls-hw-rx-offload: off [fixed]
|
|
rx-gro-hw: off [fixed]
|
|
tls-hw-record: off [fixed]
|
|
rx-gro-list: off
|
|
macsec-hw-offload: off [fixed]
|
|
rx-udp-gro-forwarding: off
|
|
hsr-tag-ins-offload: off [fixed]
|
|
hsr-tag-rm-offload: off [fixed]
|
|
hsr-fwd-offload: off [fixed]
|
|
hsr-dup-offload: off [fixed]
|
|
[private flags --show-priv-flags]
|
|
netlink error: Operation not supported
|
|
[ntuple/RSS -n]
|
|
Cannot get RX rings: Operation not supported
|
|
rxclass: Cannot get RX class rule count: Operation not supported
|
|
RX classification rule retrieval failed
|
|
[SFP/DOM transceiver -m]
|
|
netlink error: Operation not supported
|
|
[statistics -S (key error/drop counters only)]
|
|
[statistics -S (throughput counters)]
|
|
|
|
----- ethtool: nic4 -----
|
|
[driver/version/firmware/bus-info -i]
|
|
driver: bnx2
|
|
version: 6.17.2-1-pve
|
|
firmware-version: 5.0.13 bc 5.0.11
|
|
expansion-rom-version:
|
|
bus-info: 0000:04:00.0
|
|
supports-statistics: yes
|
|
supports-test: yes
|
|
supports-eeprom-access: yes
|
|
supports-register-dump: yes
|
|
supports-priv-flags: no
|
|
[settings - speed/duplex/autoneg/port]
|
|
Settings for nic4:
|
|
Supported ports: [ TP ]
|
|
Supported link modes: 10baseT/Half 10baseT/Full
|
|
100baseT/Half 100baseT/Full
|
|
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/Full
|
|
Advertised pause frame use: No
|
|
Advertised auto-negotiation: Yes
|
|
Advertised FEC modes: Not reported
|
|
Speed: Unknown!
|
|
Duplex: Half
|
|
Auto-negotiation: on
|
|
Port: Twisted Pair
|
|
PHYAD: 1
|
|
Transceiver: internal
|
|
MDI-X: off
|
|
Supports Wake-on: g
|
|
Wake-on: d
|
|
Link detected: no
|
|
[channels -l (RX/TX/combined queue counts)]
|
|
Channel parameters for nic4:
|
|
Pre-set maximums:
|
|
RX: 8
|
|
TX: 8
|
|
Other: n/a
|
|
Combined: n/a
|
|
Current hardware settings:
|
|
RX: 0
|
|
TX: 0
|
|
Other: n/a
|
|
Combined: n/a
|
|
[coalesce -c (interrupt moderation)]
|
|
Coalesce parameters for nic4:
|
|
Adaptive RX: n/a TX: n/a
|
|
stats-block-usecs: 999936
|
|
sample-interval: n/a
|
|
pkt-rate-low: n/a
|
|
pkt-rate-high: n/a
|
|
|
|
rx-usecs: 18
|
|
rx-frames: 12
|
|
rx-usecs-irq: 18
|
|
rx-frames-irq: 2
|
|
|
|
tx-usecs: 80
|
|
tx-frames: 20
|
|
tx-usecs-irq: 18
|
|
tx-frames-irq: 2
|
|
|
|
rx-usecs-low: n/a
|
|
rx-frame-low: n/a
|
|
tx-usecs-low: n/a
|
|
tx-frame-low: n/a
|
|
|
|
rx-usecs-high: n/a
|
|
rx-frame-high: n/a
|
|
tx-usecs-high: n/a
|
|
tx-frame-high: n/a
|
|
|
|
CQE mode RX: n/a TX: n/a
|
|
|
|
tx-aggr-max-bytes: n/a
|
|
tx-aggr-max-frames: n/a
|
|
tx-aggr-time-usecs: n/a
|
|
|
|
[ring -g (descriptor counts)]
|
|
Ring parameters for nic4:
|
|
Pre-set maximums:
|
|
RX: 2040
|
|
RX Mini: n/a
|
|
RX Jumbo: 8160
|
|
TX: 255
|
|
TX push buff len: n/a
|
|
Current hardware settings:
|
|
RX: 255
|
|
RX Mini: n/a
|
|
RX Jumbo: 0
|
|
TX: 255
|
|
RX Buf Len: n/a
|
|
CQE Size: n/a
|
|
TX Push: off
|
|
RX Push: off
|
|
TX push buff len: n/a
|
|
TCP data split: n/a
|
|
[pause / flow-control -a]
|
|
Pause parameters for nic4:
|
|
Autonegotiate: on
|
|
RX: off
|
|
TX: off
|
|
|
|
[offload features -k]
|
|
Features for nic4:
|
|
rx-checksumming: on
|
|
tx-checksumming: on
|
|
tx-checksum-ipv4: on
|
|
tx-checksum-ip-generic: off [fixed]
|
|
tx-checksum-ipv6: on
|
|
tx-checksum-fcoe-crc: off [fixed]
|
|
tx-checksum-sctp: off [fixed]
|
|
scatter-gather: on
|
|
tx-scatter-gather: on
|
|
tx-scatter-gather-fraglist: off [fixed]
|
|
tcp-segmentation-offload: on
|
|
tx-tcp-segmentation: on
|
|
tx-tcp-ecn-segmentation: on
|
|
tx-tcp-mangleid-segmentation: off
|
|
tx-tcp6-segmentation: on
|
|
tx-tcp-accecn-segmentation: off [fixed]
|
|
generic-segmentation-offload: on
|
|
generic-receive-offload: on
|
|
large-receive-offload: off [fixed]
|
|
rx-vlan-offload: on [fixed]
|
|
tx-vlan-offload: on
|
|
ntuple-filters: off [fixed]
|
|
receive-hashing: on
|
|
highdma: on [fixed]
|
|
rx-vlan-filter: off [fixed]
|
|
vlan-challenged: off [fixed]
|
|
tx-gso-robust: off [fixed]
|
|
tx-fcoe-segmentation: off [fixed]
|
|
tx-gre-segmentation: off [fixed]
|
|
tx-gre-csum-segmentation: off [fixed]
|
|
tx-ipxip4-segmentation: off [fixed]
|
|
tx-ipxip6-segmentation: off [fixed]
|
|
tx-udp_tnl-segmentation: off [fixed]
|
|
tx-udp_tnl-csum-segmentation: off [fixed]
|
|
tx-gso-partial: off [fixed]
|
|
tx-tunnel-remcsum-segmentation: off [fixed]
|
|
tx-sctp-segmentation: off [fixed]
|
|
tx-esp-segmentation: off [fixed]
|
|
tx-udp-segmentation: off [fixed]
|
|
tx-gso-list: off [fixed]
|
|
tx-nocache-copy: off
|
|
loopback: off [fixed]
|
|
rx-fcs: off [fixed]
|
|
rx-all: off [fixed]
|
|
tx-vlan-stag-hw-insert: off [fixed]
|
|
rx-vlan-stag-hw-parse: off [fixed]
|
|
rx-vlan-stag-filter: off [fixed]
|
|
l2-fwd-offload: off [fixed]
|
|
hw-tc-offload: off [fixed]
|
|
esp-hw-offload: off [fixed]
|
|
esp-tx-csum-hw-offload: off [fixed]
|
|
rx-udp_tunnel-port-offload: off [fixed]
|
|
tls-hw-tx-offload: off [fixed]
|
|
tls-hw-rx-offload: off [fixed]
|
|
rx-gro-hw: off [fixed]
|
|
tls-hw-record: off [fixed]
|
|
rx-gro-list: off
|
|
macsec-hw-offload: off [fixed]
|
|
rx-udp-gro-forwarding: off
|
|
hsr-tag-ins-offload: off [fixed]
|
|
hsr-tag-rm-offload: off [fixed]
|
|
hsr-fwd-offload: off [fixed]
|
|
hsr-dup-offload: off [fixed]
|
|
[private flags --show-priv-flags]
|
|
netlink error: Operation not supported
|
|
[ntuple/RSS -n]
|
|
Cannot get RX rings: Operation not supported
|
|
rxclass: Cannot get RX class rule count: Operation not supported
|
|
RX classification rule retrieval failed
|
|
[SFP/DOM transceiver -m]
|
|
netlink error: Operation not supported
|
|
[statistics -S (key error/drop counters only)]
|
|
rx_error_bytes: 0
|
|
tx_error_bytes: 0
|
|
tx_mac_errors: 0
|
|
tx_carrier_errors: 0
|
|
rx_crc_errors: 0
|
|
rx_align_errors: 0
|
|
rx_fragments: 0
|
|
rx_jabbers: 0
|
|
rx_undersize_packets: 0
|
|
rx_oversize_packets: 0
|
|
rx_ftq_discards: 0
|
|
rx_discards: 0
|
|
rx_fw_discards: 0
|
|
[statistics -S (throughput counters)]
|
|
rx_bytes: 0
|
|
tx_bytes: 0
|
|
|
|
----- ethtool: nic5 -----
|
|
[driver/version/firmware/bus-info -i]
|
|
driver: bnx2
|
|
version: 6.17.2-1-pve
|
|
firmware-version: 5.0.13 bc 5.0.11
|
|
expansion-rom-version:
|
|
bus-info: 0000:04:00.1
|
|
supports-statistics: yes
|
|
supports-test: yes
|
|
supports-eeprom-access: yes
|
|
supports-register-dump: yes
|
|
supports-priv-flags: no
|
|
[settings - speed/duplex/autoneg/port]
|
|
Settings for nic5:
|
|
Supported ports: [ TP ]
|
|
Supported link modes: 10baseT/Half 10baseT/Full
|
|
100baseT/Half 100baseT/Full
|
|
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/Full
|
|
Advertised pause frame use: No
|
|
Advertised auto-negotiation: Yes
|
|
Advertised FEC modes: Not reported
|
|
Speed: Unknown!
|
|
Duplex: Half
|
|
Auto-negotiation: on
|
|
Port: Twisted Pair
|
|
PHYAD: 1
|
|
Transceiver: internal
|
|
MDI-X: off
|
|
Supports Wake-on: g
|
|
Wake-on: d
|
|
Link detected: no
|
|
[channels -l (RX/TX/combined queue counts)]
|
|
Channel parameters for nic5:
|
|
Pre-set maximums:
|
|
RX: 8
|
|
TX: 8
|
|
Other: n/a
|
|
Combined: n/a
|
|
Current hardware settings:
|
|
RX: 0
|
|
TX: 0
|
|
Other: n/a
|
|
Combined: n/a
|
|
[coalesce -c (interrupt moderation)]
|
|
Coalesce parameters for nic5:
|
|
Adaptive RX: n/a TX: n/a
|
|
stats-block-usecs: 999936
|
|
sample-interval: n/a
|
|
pkt-rate-low: n/a
|
|
pkt-rate-high: n/a
|
|
|
|
rx-usecs: 18
|
|
rx-frames: 12
|
|
rx-usecs-irq: 18
|
|
rx-frames-irq: 2
|
|
|
|
tx-usecs: 80
|
|
tx-frames: 20
|
|
tx-usecs-irq: 18
|
|
tx-frames-irq: 2
|
|
|
|
rx-usecs-low: n/a
|
|
rx-frame-low: n/a
|
|
tx-usecs-low: n/a
|
|
tx-frame-low: n/a
|
|
|
|
rx-usecs-high: n/a
|
|
rx-frame-high: n/a
|
|
tx-usecs-high: n/a
|
|
tx-frame-high: n/a
|
|
|
|
CQE mode RX: n/a TX: n/a
|
|
|
|
tx-aggr-max-bytes: n/a
|
|
tx-aggr-max-frames: n/a
|
|
tx-aggr-time-usecs: n/a
|
|
|
|
[ring -g (descriptor counts)]
|
|
Ring parameters for nic5:
|
|
Pre-set maximums:
|
|
RX: 2040
|
|
RX Mini: n/a
|
|
RX Jumbo: 8160
|
|
TX: 255
|
|
TX push buff len: n/a
|
|
Current hardware settings:
|
|
RX: 255
|
|
RX Mini: n/a
|
|
RX Jumbo: 0
|
|
TX: 255
|
|
RX Buf Len: n/a
|
|
CQE Size: n/a
|
|
TX Push: off
|
|
RX Push: off
|
|
TX push buff len: n/a
|
|
TCP data split: n/a
|
|
[pause / flow-control -a]
|
|
Pause parameters for nic5:
|
|
Autonegotiate: on
|
|
RX: off
|
|
TX: off
|
|
|
|
[offload features -k]
|
|
Features for nic5:
|
|
rx-checksumming: on
|
|
tx-checksumming: on
|
|
tx-checksum-ipv4: on
|
|
tx-checksum-ip-generic: off [fixed]
|
|
tx-checksum-ipv6: on
|
|
tx-checksum-fcoe-crc: off [fixed]
|
|
tx-checksum-sctp: off [fixed]
|
|
scatter-gather: on
|
|
tx-scatter-gather: on
|
|
tx-scatter-gather-fraglist: off [fixed]
|
|
tcp-segmentation-offload: on
|
|
tx-tcp-segmentation: on
|
|
tx-tcp-ecn-segmentation: on
|
|
tx-tcp-mangleid-segmentation: off
|
|
tx-tcp6-segmentation: on
|
|
tx-tcp-accecn-segmentation: off [fixed]
|
|
generic-segmentation-offload: on
|
|
generic-receive-offload: on
|
|
large-receive-offload: off [fixed]
|
|
rx-vlan-offload: on
|
|
tx-vlan-offload: on
|
|
ntuple-filters: off [fixed]
|
|
receive-hashing: on
|
|
highdma: on [fixed]
|
|
rx-vlan-filter: off [fixed]
|
|
vlan-challenged: off [fixed]
|
|
tx-gso-robust: off [fixed]
|
|
tx-fcoe-segmentation: off [fixed]
|
|
tx-gre-segmentation: off [fixed]
|
|
tx-gre-csum-segmentation: off [fixed]
|
|
tx-ipxip4-segmentation: off [fixed]
|
|
tx-ipxip6-segmentation: off [fixed]
|
|
tx-udp_tnl-segmentation: off [fixed]
|
|
tx-udp_tnl-csum-segmentation: off [fixed]
|
|
tx-gso-partial: off [fixed]
|
|
tx-tunnel-remcsum-segmentation: off [fixed]
|
|
tx-sctp-segmentation: off [fixed]
|
|
tx-esp-segmentation: off [fixed]
|
|
tx-udp-segmentation: off [fixed]
|
|
tx-gso-list: off [fixed]
|
|
tx-nocache-copy: off
|
|
loopback: off [fixed]
|
|
rx-fcs: off [fixed]
|
|
rx-all: off [fixed]
|
|
tx-vlan-stag-hw-insert: off [fixed]
|
|
rx-vlan-stag-hw-parse: off [fixed]
|
|
rx-vlan-stag-filter: off [fixed]
|
|
l2-fwd-offload: off [fixed]
|
|
hw-tc-offload: off [fixed]
|
|
esp-hw-offload: off [fixed]
|
|
esp-tx-csum-hw-offload: off [fixed]
|
|
rx-udp_tunnel-port-offload: off [fixed]
|
|
tls-hw-tx-offload: off [fixed]
|
|
tls-hw-rx-offload: off [fixed]
|
|
rx-gro-hw: off [fixed]
|
|
tls-hw-record: off [fixed]
|
|
rx-gro-list: off
|
|
macsec-hw-offload: off [fixed]
|
|
rx-udp-gro-forwarding: off
|
|
hsr-tag-ins-offload: off [fixed]
|
|
hsr-tag-rm-offload: off [fixed]
|
|
hsr-fwd-offload: off [fixed]
|
|
hsr-dup-offload: off [fixed]
|
|
[private flags --show-priv-flags]
|
|
netlink error: Operation not supported
|
|
[ntuple/RSS -n]
|
|
Cannot get RX rings: Operation not supported
|
|
rxclass: Cannot get RX class rule count: Operation not supported
|
|
RX classification rule retrieval failed
|
|
[SFP/DOM transceiver -m]
|
|
netlink error: Operation not supported
|
|
[statistics -S (key error/drop counters only)]
|
|
rx_error_bytes: 0
|
|
tx_error_bytes: 0
|
|
tx_mac_errors: 0
|
|
tx_carrier_errors: 0
|
|
rx_crc_errors: 0
|
|
rx_align_errors: 0
|
|
rx_fragments: 0
|
|
rx_jabbers: 0
|
|
rx_undersize_packets: 0
|
|
rx_oversize_packets: 0
|
|
rx_ftq_discards: 0
|
|
rx_discards: 0
|
|
rx_fw_discards: 0
|
|
[statistics -S (throughput counters)]
|
|
rx_bytes: 0
|
|
tx_bytes: 0
|
|
|
|
----- ethtool: storagenet -----
|
|
[driver/version/firmware/bus-info -i]
|
|
driver: bridge
|
|
version: 2.3
|
|
firmware-version: N/A
|
|
expansion-rom-version:
|
|
bus-info: N/A
|
|
supports-statistics: no
|
|
supports-test: no
|
|
supports-eeprom-access: no
|
|
supports-register-dump: no
|
|
supports-priv-flags: no
|
|
[settings - speed/duplex/autoneg/port]
|
|
Settings for storagenet:
|
|
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: 2000Mb/s
|
|
Duplex: Unknown! (255)
|
|
Auto-negotiation: off
|
|
Port: Other
|
|
PHYAD: 0
|
|
Transceiver: internal
|
|
Link detected: yes
|
|
[channels -l (RX/TX/combined queue counts)]
|
|
netlink error: Operation not supported
|
|
[coalesce -c (interrupt moderation)]
|
|
netlink error: Operation not supported
|
|
[ring -g (descriptor counts)]
|
|
netlink error: Operation not supported
|
|
[pause / flow-control -a]
|
|
netlink error: Operation not supported
|
|
[offload features -k]
|
|
Features for storagenet:
|
|
rx-checksumming: off [fixed]
|
|
tx-checksumming: on
|
|
tx-checksum-ipv4: off [fixed]
|
|
tx-checksum-ip-generic: on
|
|
tx-checksum-ipv6: off [fixed]
|
|
tx-checksum-fcoe-crc: off [fixed]
|
|
tx-checksum-sctp: off [fixed]
|
|
scatter-gather: on
|
|
tx-scatter-gather: on
|
|
tx-scatter-gather-fraglist: off [requested on]
|
|
tcp-segmentation-offload: on
|
|
tx-tcp-segmentation: on
|
|
tx-tcp-ecn-segmentation: on
|
|
tx-tcp-mangleid-segmentation: on
|
|
tx-tcp6-segmentation: on
|
|
tx-tcp-accecn-segmentation: off [requested on]
|
|
generic-segmentation-offload: on
|
|
generic-receive-offload: on
|
|
large-receive-offload: off [fixed]
|
|
rx-vlan-offload: off [fixed]
|
|
tx-vlan-offload: on
|
|
ntuple-filters: off [fixed]
|
|
receive-hashing: off [fixed]
|
|
highdma: on
|
|
rx-vlan-filter: off [fixed]
|
|
vlan-challenged: off [fixed]
|
|
tx-gso-robust: off [requested on]
|
|
tx-fcoe-segmentation: off [requested on]
|
|
tx-gre-segmentation: on
|
|
tx-gre-csum-segmentation: on
|
|
tx-ipxip4-segmentation: on
|
|
tx-ipxip6-segmentation: on
|
|
tx-udp_tnl-segmentation: on
|
|
tx-udp_tnl-csum-segmentation: on
|
|
tx-gso-partial: on
|
|
tx-tunnel-remcsum-segmentation: on
|
|
tx-sctp-segmentation: off [requested on]
|
|
tx-esp-segmentation: on
|
|
tx-udp-segmentation: off [requested on]
|
|
tx-gso-list: off [requested on]
|
|
tx-nocache-copy: off
|
|
loopback: off [fixed]
|
|
rx-fcs: off [fixed]
|
|
rx-all: off [fixed]
|
|
tx-vlan-stag-hw-insert: on
|
|
rx-vlan-stag-hw-parse: off [fixed]
|
|
rx-vlan-stag-filter: off [fixed]
|
|
l2-fwd-offload: off [fixed]
|
|
hw-tc-offload: off [fixed]
|
|
esp-hw-offload: off [fixed]
|
|
esp-tx-csum-hw-offload: off [fixed]
|
|
rx-udp_tunnel-port-offload: off [fixed]
|
|
tls-hw-tx-offload: off [fixed]
|
|
tls-hw-rx-offload: off [fixed]
|
|
rx-gro-hw: off [fixed]
|
|
tls-hw-record: off [fixed]
|
|
rx-gro-list: off
|
|
macsec-hw-offload: off [fixed]
|
|
rx-udp-gro-forwarding: off
|
|
hsr-tag-ins-offload: off [fixed]
|
|
hsr-tag-rm-offload: off [fixed]
|
|
hsr-fwd-offload: off [fixed]
|
|
hsr-dup-offload: off [fixed]
|
|
[private flags --show-priv-flags]
|
|
netlink error: Operation not supported
|
|
[ntuple/RSS -n]
|
|
Cannot get RX rings: Operation not supported
|
|
rxclass: Cannot get RX class rule count: Operation not supported
|
|
RX classification rule retrieval failed
|
|
[SFP/DOM transceiver -m]
|
|
netlink error: Operation not supported
|
|
[statistics -S (key error/drop counters only)]
|
|
[statistics -S (throughput counters)]
|
|
|
|
----- ethtool: tap601i0 -----
|
|
[driver/version/firmware/bus-info -i]
|
|
driver: tun
|
|
version: 1.6
|
|
firmware-version:
|
|
expansion-rom-version:
|
|
bus-info: tap
|
|
supports-statistics: no
|
|
supports-test: no
|
|
supports-eeprom-access: no
|
|
supports-register-dump: no
|
|
supports-priv-flags: no
|
|
[settings - speed/duplex/autoneg/port]
|
|
Settings for tap601i0:
|
|
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: Full
|
|
Auto-negotiation: off
|
|
Port: Twisted Pair
|
|
PHYAD: 0
|
|
Transceiver: internal
|
|
MDI-X: Unknown
|
|
Current message level: 0x00000000 (0)
|
|
|
|
Link detected: yes
|
|
[channels -l (RX/TX/combined queue counts)]
|
|
Channel parameters for tap601i0:
|
|
Pre-set maximums:
|
|
RX: n/a
|
|
TX: n/a
|
|
Other: n/a
|
|
Combined: 1
|
|
Current hardware settings:
|
|
RX: n/a
|
|
TX: n/a
|
|
Other: n/a
|
|
Combined: 1
|
|
[coalesce -c (interrupt moderation)]
|
|
Coalesce parameters for tap601i0:
|
|
Adaptive RX: n/a TX: n/a
|
|
stats-block-usecs: n/a
|
|
sample-interval: n/a
|
|
pkt-rate-low: n/a
|
|
pkt-rate-high: n/a
|
|
|
|
rx-usecs: n/a
|
|
rx-frames: 0
|
|
rx-usecs-irq: n/a
|
|
rx-frames-irq: n/a
|
|
|
|
tx-usecs: n/a
|
|
tx-frames: n/a
|
|
tx-usecs-irq: n/a
|
|
tx-frames-irq: n/a
|
|
|
|
rx-usecs-low: n/a
|
|
rx-frame-low: n/a
|
|
tx-usecs-low: n/a
|
|
tx-frame-low: n/a
|
|
|
|
rx-usecs-high: n/a
|
|
rx-frame-high: n/a
|
|
tx-usecs-high: n/a
|
|
tx-frame-high: n/a
|
|
|
|
CQE mode RX: n/a TX: n/a
|
|
|
|
tx-aggr-max-bytes: n/a
|
|
tx-aggr-max-frames: n/a
|
|
tx-aggr-time-usecs: n/a
|
|
|
|
[ring -g (descriptor counts)]
|
|
netlink error: Operation not supported
|
|
[pause / flow-control -a]
|
|
netlink error: Operation not supported
|
|
[offload features -k]
|
|
Features for tap601i0:
|
|
rx-checksumming: off [fixed]
|
|
tx-checksumming: on
|
|
tx-checksum-ipv4: off [fixed]
|
|
tx-checksum-ip-generic: on
|
|
tx-checksum-ipv6: off [fixed]
|
|
tx-checksum-fcoe-crc: off [fixed]
|
|
tx-checksum-sctp: off [fixed]
|
|
scatter-gather: on
|
|
tx-scatter-gather: on
|
|
tx-scatter-gather-fraglist: on
|
|
tcp-segmentation-offload: on
|
|
tx-tcp-segmentation: on
|
|
tx-tcp-ecn-segmentation: on
|
|
tx-tcp-mangleid-segmentation: off
|
|
tx-tcp6-segmentation: on
|
|
tx-tcp-accecn-segmentation: off [fixed]
|
|
generic-segmentation-offload: on
|
|
generic-receive-offload: on
|
|
large-receive-offload: off [fixed]
|
|
rx-vlan-offload: off [fixed]
|
|
tx-vlan-offload: on
|
|
ntuple-filters: off [fixed]
|
|
receive-hashing: off [fixed]
|
|
highdma: off [fixed]
|
|
rx-vlan-filter: off [fixed]
|
|
vlan-challenged: off [fixed]
|
|
tx-gso-robust: off [fixed]
|
|
tx-fcoe-segmentation: off [fixed]
|
|
tx-gre-segmentation: off [fixed]
|
|
tx-gre-csum-segmentation: off [fixed]
|
|
tx-ipxip4-segmentation: off [fixed]
|
|
tx-ipxip6-segmentation: off [fixed]
|
|
tx-udp_tnl-segmentation: off
|
|
tx-udp_tnl-csum-segmentation: off
|
|
tx-gso-partial: off [fixed]
|
|
tx-tunnel-remcsum-segmentation: off [fixed]
|
|
tx-sctp-segmentation: off [fixed]
|
|
tx-esp-segmentation: off [fixed]
|
|
tx-udp-segmentation: on
|
|
tx-gso-list: off [fixed]
|
|
tx-nocache-copy: off
|
|
loopback: off [fixed]
|
|
rx-fcs: off [fixed]
|
|
rx-all: off [fixed]
|
|
tx-vlan-stag-hw-insert: on
|
|
rx-vlan-stag-hw-parse: off [fixed]
|
|
rx-vlan-stag-filter: off [fixed]
|
|
l2-fwd-offload: off [fixed]
|
|
hw-tc-offload: off [fixed]
|
|
esp-hw-offload: off [fixed]
|
|
esp-tx-csum-hw-offload: off [fixed]
|
|
rx-udp_tunnel-port-offload: off [fixed]
|
|
tls-hw-tx-offload: off [fixed]
|
|
tls-hw-rx-offload: off [fixed]
|
|
rx-gro-hw: off [fixed]
|
|
tls-hw-record: off [fixed]
|
|
rx-gro-list: off
|
|
macsec-hw-offload: off [fixed]
|
|
rx-udp-gro-forwarding: off
|
|
hsr-tag-ins-offload: off [fixed]
|
|
hsr-tag-rm-offload: off [fixed]
|
|
hsr-fwd-offload: off [fixed]
|
|
hsr-dup-offload: off [fixed]
|
|
[private flags --show-priv-flags]
|
|
netlink error: Operation not supported
|
|
[ntuple/RSS -n]
|
|
Cannot get RX rings: Operation not supported
|
|
rxclass: Cannot get RX class rule count: Operation not supported
|
|
RX classification rule retrieval failed
|
|
[SFP/DOM transceiver -m]
|
|
netlink error: Operation not supported
|
|
[statistics -S (key error/drop counters only)]
|
|
[statistics -S (throughput counters)]
|
|
|
|
----- ethtool: tap602i0 -----
|
|
[driver/version/firmware/bus-info -i]
|
|
driver: tun
|
|
version: 1.6
|
|
firmware-version:
|
|
expansion-rom-version:
|
|
bus-info: tap
|
|
supports-statistics: no
|
|
supports-test: no
|
|
supports-eeprom-access: no
|
|
supports-register-dump: no
|
|
supports-priv-flags: no
|
|
[settings - speed/duplex/autoneg/port]
|
|
Settings for tap602i0:
|
|
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: Full
|
|
Auto-negotiation: off
|
|
Port: Twisted Pair
|
|
PHYAD: 0
|
|
Transceiver: internal
|
|
MDI-X: Unknown
|
|
Current message level: 0x00000000 (0)
|
|
|
|
Link detected: yes
|
|
[channels -l (RX/TX/combined queue counts)]
|
|
Channel parameters for tap602i0:
|
|
Pre-set maximums:
|
|
RX: n/a
|
|
TX: n/a
|
|
Other: n/a
|
|
Combined: 1
|
|
Current hardware settings:
|
|
RX: n/a
|
|
TX: n/a
|
|
Other: n/a
|
|
Combined: 1
|
|
[coalesce -c (interrupt moderation)]
|
|
Coalesce parameters for tap602i0:
|
|
Adaptive RX: n/a TX: n/a
|
|
stats-block-usecs: n/a
|
|
sample-interval: n/a
|
|
pkt-rate-low: n/a
|
|
pkt-rate-high: n/a
|
|
|
|
rx-usecs: n/a
|
|
rx-frames: 0
|
|
rx-usecs-irq: n/a
|
|
rx-frames-irq: n/a
|
|
|
|
tx-usecs: n/a
|
|
tx-frames: n/a
|
|
tx-usecs-irq: n/a
|
|
tx-frames-irq: n/a
|
|
|
|
rx-usecs-low: n/a
|
|
rx-frame-low: n/a
|
|
tx-usecs-low: n/a
|
|
tx-frame-low: n/a
|
|
|
|
rx-usecs-high: n/a
|
|
rx-frame-high: n/a
|
|
tx-usecs-high: n/a
|
|
tx-frame-high: n/a
|
|
|
|
CQE mode RX: n/a TX: n/a
|
|
|
|
tx-aggr-max-bytes: n/a
|
|
tx-aggr-max-frames: n/a
|
|
tx-aggr-time-usecs: n/a
|
|
|
|
[ring -g (descriptor counts)]
|
|
netlink error: Operation not supported
|
|
[pause / flow-control -a]
|
|
netlink error: Operation not supported
|
|
[offload features -k]
|
|
Features for tap602i0:
|
|
rx-checksumming: off [fixed]
|
|
tx-checksumming: on
|
|
tx-checksum-ipv4: off [fixed]
|
|
tx-checksum-ip-generic: on
|
|
tx-checksum-ipv6: off [fixed]
|
|
tx-checksum-fcoe-crc: off [fixed]
|
|
tx-checksum-sctp: off [fixed]
|
|
scatter-gather: on
|
|
tx-scatter-gather: on
|
|
tx-scatter-gather-fraglist: on
|
|
tcp-segmentation-offload: on
|
|
tx-tcp-segmentation: on
|
|
tx-tcp-ecn-segmentation: on
|
|
tx-tcp-mangleid-segmentation: off
|
|
tx-tcp6-segmentation: on
|
|
tx-tcp-accecn-segmentation: off [fixed]
|
|
generic-segmentation-offload: on
|
|
generic-receive-offload: on
|
|
large-receive-offload: off [fixed]
|
|
rx-vlan-offload: off [fixed]
|
|
tx-vlan-offload: on
|
|
ntuple-filters: off [fixed]
|
|
receive-hashing: off [fixed]
|
|
highdma: off [fixed]
|
|
rx-vlan-filter: off [fixed]
|
|
vlan-challenged: off [fixed]
|
|
tx-gso-robust: off [fixed]
|
|
tx-fcoe-segmentation: off [fixed]
|
|
tx-gre-segmentation: off [fixed]
|
|
tx-gre-csum-segmentation: off [fixed]
|
|
tx-ipxip4-segmentation: off [fixed]
|
|
tx-ipxip6-segmentation: off [fixed]
|
|
tx-udp_tnl-segmentation: off
|
|
tx-udp_tnl-csum-segmentation: off
|
|
tx-gso-partial: off [fixed]
|
|
tx-tunnel-remcsum-segmentation: off [fixed]
|
|
tx-sctp-segmentation: off [fixed]
|
|
tx-esp-segmentation: off [fixed]
|
|
tx-udp-segmentation: on
|
|
tx-gso-list: off [fixed]
|
|
tx-nocache-copy: off
|
|
loopback: off [fixed]
|
|
rx-fcs: off [fixed]
|
|
rx-all: off [fixed]
|
|
tx-vlan-stag-hw-insert: on
|
|
rx-vlan-stag-hw-parse: off [fixed]
|
|
rx-vlan-stag-filter: off [fixed]
|
|
l2-fwd-offload: off [fixed]
|
|
hw-tc-offload: off [fixed]
|
|
esp-hw-offload: off [fixed]
|
|
esp-tx-csum-hw-offload: off [fixed]
|
|
rx-udp_tunnel-port-offload: off [fixed]
|
|
tls-hw-tx-offload: off [fixed]
|
|
tls-hw-rx-offload: off [fixed]
|
|
rx-gro-hw: off [fixed]
|
|
tls-hw-record: off [fixed]
|
|
rx-gro-list: off
|
|
macsec-hw-offload: off [fixed]
|
|
rx-udp-gro-forwarding: off
|
|
hsr-tag-ins-offload: off [fixed]
|
|
hsr-tag-rm-offload: off [fixed]
|
|
hsr-fwd-offload: off [fixed]
|
|
hsr-dup-offload: off [fixed]
|
|
[private flags --show-priv-flags]
|
|
netlink error: Operation not supported
|
|
[ntuple/RSS -n]
|
|
Cannot get RX rings: Operation not supported
|
|
rxclass: Cannot get RX class rule count: Operation not supported
|
|
RX classification rule retrieval failed
|
|
[SFP/DOM transceiver -m]
|
|
netlink error: Operation not supported
|
|
[statistics -S (key error/drop counters only)]
|
|
[statistics -S (throughput counters)]
|
|
|
|
----- ethtool: tap603i0 -----
|
|
[driver/version/firmware/bus-info -i]
|
|
driver: tun
|
|
version: 1.6
|
|
firmware-version:
|
|
expansion-rom-version:
|
|
bus-info: tap
|
|
supports-statistics: no
|
|
supports-test: no
|
|
supports-eeprom-access: no
|
|
supports-register-dump: no
|
|
supports-priv-flags: no
|
|
[settings - speed/duplex/autoneg/port]
|
|
Settings for tap603i0:
|
|
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: Full
|
|
Auto-negotiation: off
|
|
Port: Twisted Pair
|
|
PHYAD: 0
|
|
Transceiver: internal
|
|
MDI-X: Unknown
|
|
Current message level: 0x00000000 (0)
|
|
|
|
Link detected: yes
|
|
[channels -l (RX/TX/combined queue counts)]
|
|
Channel parameters for tap603i0:
|
|
Pre-set maximums:
|
|
RX: n/a
|
|
TX: n/a
|
|
Other: n/a
|
|
Combined: 1
|
|
Current hardware settings:
|
|
RX: n/a
|
|
TX: n/a
|
|
Other: n/a
|
|
Combined: 1
|
|
[coalesce -c (interrupt moderation)]
|
|
Coalesce parameters for tap603i0:
|
|
Adaptive RX: n/a TX: n/a
|
|
stats-block-usecs: n/a
|
|
sample-interval: n/a
|
|
pkt-rate-low: n/a
|
|
pkt-rate-high: n/a
|
|
|
|
rx-usecs: n/a
|
|
rx-frames: 0
|
|
rx-usecs-irq: n/a
|
|
rx-frames-irq: n/a
|
|
|
|
tx-usecs: n/a
|
|
tx-frames: n/a
|
|
tx-usecs-irq: n/a
|
|
tx-frames-irq: n/a
|
|
|
|
rx-usecs-low: n/a
|
|
rx-frame-low: n/a
|
|
tx-usecs-low: n/a
|
|
tx-frame-low: n/a
|
|
|
|
rx-usecs-high: n/a
|
|
rx-frame-high: n/a
|
|
tx-usecs-high: n/a
|
|
tx-frame-high: n/a
|
|
|
|
CQE mode RX: n/a TX: n/a
|
|
|
|
tx-aggr-max-bytes: n/a
|
|
tx-aggr-max-frames: n/a
|
|
tx-aggr-time-usecs: n/a
|
|
|
|
[ring -g (descriptor counts)]
|
|
netlink error: Operation not supported
|
|
[pause / flow-control -a]
|
|
netlink error: Operation not supported
|
|
[offload features -k]
|
|
Features for tap603i0:
|
|
rx-checksumming: off [fixed]
|
|
tx-checksumming: on
|
|
tx-checksum-ipv4: off [fixed]
|
|
tx-checksum-ip-generic: on
|
|
tx-checksum-ipv6: off [fixed]
|
|
tx-checksum-fcoe-crc: off [fixed]
|
|
tx-checksum-sctp: off [fixed]
|
|
scatter-gather: on
|
|
tx-scatter-gather: on
|
|
tx-scatter-gather-fraglist: on
|
|
tcp-segmentation-offload: on
|
|
tx-tcp-segmentation: on
|
|
tx-tcp-ecn-segmentation: on
|
|
tx-tcp-mangleid-segmentation: off
|
|
tx-tcp6-segmentation: on
|
|
tx-tcp-accecn-segmentation: off [fixed]
|
|
generic-segmentation-offload: on
|
|
generic-receive-offload: on
|
|
large-receive-offload: off [fixed]
|
|
rx-vlan-offload: off [fixed]
|
|
tx-vlan-offload: on
|
|
ntuple-filters: off [fixed]
|
|
receive-hashing: off [fixed]
|
|
highdma: off [fixed]
|
|
rx-vlan-filter: off [fixed]
|
|
vlan-challenged: off [fixed]
|
|
tx-gso-robust: off [fixed]
|
|
tx-fcoe-segmentation: off [fixed]
|
|
tx-gre-segmentation: off [fixed]
|
|
tx-gre-csum-segmentation: off [fixed]
|
|
tx-ipxip4-segmentation: off [fixed]
|
|
tx-ipxip6-segmentation: off [fixed]
|
|
tx-udp_tnl-segmentation: off
|
|
tx-udp_tnl-csum-segmentation: off
|
|
tx-gso-partial: off [fixed]
|
|
tx-tunnel-remcsum-segmentation: off [fixed]
|
|
tx-sctp-segmentation: off [fixed]
|
|
tx-esp-segmentation: off [fixed]
|
|
tx-udp-segmentation: on
|
|
tx-gso-list: off [fixed]
|
|
tx-nocache-copy: off
|
|
loopback: off [fixed]
|
|
rx-fcs: off [fixed]
|
|
rx-all: off [fixed]
|
|
tx-vlan-stag-hw-insert: on
|
|
rx-vlan-stag-hw-parse: off [fixed]
|
|
rx-vlan-stag-filter: off [fixed]
|
|
l2-fwd-offload: off [fixed]
|
|
hw-tc-offload: off [fixed]
|
|
esp-hw-offload: off [fixed]
|
|
esp-tx-csum-hw-offload: off [fixed]
|
|
rx-udp_tunnel-port-offload: off [fixed]
|
|
tls-hw-tx-offload: off [fixed]
|
|
tls-hw-rx-offload: off [fixed]
|
|
rx-gro-hw: off [fixed]
|
|
tls-hw-record: off [fixed]
|
|
rx-gro-list: off
|
|
macsec-hw-offload: off [fixed]
|
|
rx-udp-gro-forwarding: off
|
|
hsr-tag-ins-offload: off [fixed]
|
|
hsr-tag-rm-offload: off [fixed]
|
|
hsr-fwd-offload: off [fixed]
|
|
hsr-dup-offload: off [fixed]
|
|
[private flags --show-priv-flags]
|
|
netlink error: Operation not supported
|
|
[ntuple/RSS -n]
|
|
Cannot get RX rings: Operation not supported
|
|
rxclass: Cannot get RX class rule count: Operation not supported
|
|
RX classification rule retrieval failed
|
|
[SFP/DOM transceiver -m]
|
|
netlink error: Operation not supported
|
|
[statistics -S (key error/drop counters only)]
|
|
[statistics -S (throughput counters)]
|
|
|
|
----- ethtool: vmbr0 -----
|
|
[driver/version/firmware/bus-info -i]
|
|
driver: bridge
|
|
version: 2.3
|
|
firmware-version: N/A
|
|
expansion-rom-version:
|
|
bus-info: N/A
|
|
supports-statistics: no
|
|
supports-test: no
|
|
supports-eeprom-access: no
|
|
supports-register-dump: no
|
|
supports-priv-flags: no
|
|
[settings - speed/duplex/autoneg/port]
|
|
Settings for vmbr0:
|
|
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)
|
|
Auto-negotiation: off
|
|
Port: Other
|
|
PHYAD: 0
|
|
Transceiver: internal
|
|
Link detected: yes
|
|
[channels -l (RX/TX/combined queue counts)]
|
|
netlink error: Operation not supported
|
|
[coalesce -c (interrupt moderation)]
|
|
netlink error: Operation not supported
|
|
[ring -g (descriptor counts)]
|
|
netlink error: Operation not supported
|
|
[pause / flow-control -a]
|
|
netlink error: Operation not supported
|
|
[offload features -k]
|
|
Features for vmbr0:
|
|
rx-checksumming: off [fixed]
|
|
tx-checksumming: on
|
|
tx-checksum-ipv4: off [fixed]
|
|
tx-checksum-ip-generic: on
|
|
tx-checksum-ipv6: off [fixed]
|
|
tx-checksum-fcoe-crc: off [fixed]
|
|
tx-checksum-sctp: off [fixed]
|
|
scatter-gather: on
|
|
tx-scatter-gather: on
|
|
tx-scatter-gather-fraglist: on
|
|
tcp-segmentation-offload: on
|
|
tx-tcp-segmentation: on
|
|
tx-tcp-ecn-segmentation: on
|
|
tx-tcp-mangleid-segmentation: on
|
|
tx-tcp6-segmentation: on
|
|
tx-tcp-accecn-segmentation: on
|
|
generic-segmentation-offload: on
|
|
generic-receive-offload: on
|
|
large-receive-offload: off [fixed]
|
|
rx-vlan-offload: off [fixed]
|
|
tx-vlan-offload: on
|
|
ntuple-filters: off [fixed]
|
|
receive-hashing: off [fixed]
|
|
highdma: on
|
|
rx-vlan-filter: off [fixed]
|
|
vlan-challenged: off [fixed]
|
|
tx-gso-robust: off [requested on]
|
|
tx-fcoe-segmentation: off [requested on]
|
|
tx-gre-segmentation: on
|
|
tx-gre-csum-segmentation: on
|
|
tx-ipxip4-segmentation: on
|
|
tx-ipxip6-segmentation: on
|
|
tx-udp_tnl-segmentation: on
|
|
tx-udp_tnl-csum-segmentation: on
|
|
tx-gso-partial: on
|
|
tx-tunnel-remcsum-segmentation: on
|
|
tx-sctp-segmentation: on
|
|
tx-esp-segmentation: on
|
|
tx-udp-segmentation: on
|
|
tx-gso-list: on
|
|
tx-nocache-copy: off
|
|
loopback: off [fixed]
|
|
rx-fcs: off [fixed]
|
|
rx-all: off [fixed]
|
|
tx-vlan-stag-hw-insert: on
|
|
rx-vlan-stag-hw-parse: off [fixed]
|
|
rx-vlan-stag-filter: off [fixed]
|
|
l2-fwd-offload: off [fixed]
|
|
hw-tc-offload: off [fixed]
|
|
esp-hw-offload: off [fixed]
|
|
esp-tx-csum-hw-offload: off [fixed]
|
|
rx-udp_tunnel-port-offload: off [fixed]
|
|
tls-hw-tx-offload: off [fixed]
|
|
tls-hw-rx-offload: off [fixed]
|
|
rx-gro-hw: off [fixed]
|
|
tls-hw-record: off [fixed]
|
|
rx-gro-list: off
|
|
macsec-hw-offload: off [fixed]
|
|
rx-udp-gro-forwarding: off
|
|
hsr-tag-ins-offload: off [fixed]
|
|
hsr-tag-rm-offload: off [fixed]
|
|
hsr-fwd-offload: off [fixed]
|
|
hsr-dup-offload: off [fixed]
|
|
[private flags --show-priv-flags]
|
|
netlink error: Operation not supported
|
|
[ntuple/RSS -n]
|
|
Cannot get RX rings: Operation not supported
|
|
rxclass: Cannot get RX class rule count: Operation not supported
|
|
RX classification rule retrieval failed
|
|
[SFP/DOM transceiver -m]
|
|
netlink error: Operation not supported
|
|
[statistics -S (key error/drop counters only)]
|
|
[statistics -S (throughput counters)]
|
|
|
|
###############################################################################
|
|
# 11. NETWORK: BRIDGES / BONDS / VLANS
|
|
###############################################################################
|
|
|
|
--- bridge link
|
|
$ bridge link
|
|
2: nic0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master vmbr0 state forwarding priority 32 cost 5
|
|
10: nic3.2@nic3: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master br-rr-mgmt state forwarding priority 32 cost 19
|
|
12: bond0: <BROADCAST,MULTICAST,MASTER,UP,LOWER_UP> mtu 1500 master storagenet state forwarding priority 32 cost 5
|
|
14: tap601i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 master fwbr601i0 state forwarding priority 32 cost 2
|
|
16: fwpr601p0@fwln601i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master vmbr0 state forwarding priority 32 cost 2
|
|
17: fwln601i0@fwpr601p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master fwbr601i0 state forwarding priority 32 cost 2
|
|
18: tap602i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 master fwbr602i0 state forwarding priority 32 cost 2
|
|
20: fwpr602p0@fwln602i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master vmbr0 state forwarding priority 32 cost 2
|
|
21: fwln602i0@fwpr602p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master fwbr602i0 state forwarding priority 32 cost 2
|
|
22: tap603i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 master fwbr603i0 state forwarding priority 32 cost 2
|
|
24: fwpr603p0@fwln603i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master vmbr0 state forwarding priority 32 cost 2
|
|
25: fwln603i0@fwpr603p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master fwbr603i0 state forwarding priority 32 cost 2
|
|
|
|
--- bridge -d link
|
|
$ bridge -d link
|
|
2: nic0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master vmbr0 state forwarding priority 32 cost 5
|
|
hairpin off guard off root_block off fastleave off learning on flood on mcast_flood on bcast_flood on mcast_router 1 mcast_to_unicast off neigh_suppress off neigh_vlan_suppress off vlan_tunnel off isolated off locked off mab off mcast_n_groups 125 mcast_max_groups 0
|
|
10: nic3.2@nic3: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master br-rr-mgmt state forwarding priority 32 cost 19
|
|
hairpin off guard off root_block off fastleave off learning on flood on mcast_flood on bcast_flood on mcast_router 1 mcast_to_unicast off neigh_suppress off neigh_vlan_suppress off vlan_tunnel off isolated off locked off mab off mcast_n_groups 0 mcast_max_groups 0
|
|
12: bond0: <BROADCAST,MULTICAST,MASTER,UP,LOWER_UP> mtu 1500 master storagenet state forwarding priority 32 cost 5
|
|
hairpin off guard off root_block off fastleave off learning on flood on mcast_flood on bcast_flood on mcast_router 1 mcast_to_unicast off neigh_suppress off neigh_vlan_suppress off vlan_tunnel off isolated off locked off mab off mcast_n_groups 2 mcast_max_groups 0
|
|
14: tap601i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 master fwbr601i0 state forwarding priority 32 cost 2
|
|
hairpin off guard off root_block off fastleave off learning on flood on mcast_flood on bcast_flood on mcast_router 1 mcast_to_unicast off neigh_suppress off neigh_vlan_suppress off vlan_tunnel off isolated off locked off mab off mcast_n_groups 3 mcast_max_groups 0
|
|
16: fwpr601p0@fwln601i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master vmbr0 state forwarding priority 32 cost 2
|
|
hairpin off guard off root_block off fastleave off learning on flood on mcast_flood on bcast_flood on mcast_router 1 mcast_to_unicast off neigh_suppress off neigh_vlan_suppress off vlan_tunnel off isolated off locked off mab off mcast_n_groups 3 mcast_max_groups 0
|
|
17: fwln601i0@fwpr601p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master fwbr601i0 state forwarding priority 32 cost 2
|
|
hairpin off guard off root_block off fastleave off learning on flood on mcast_flood on bcast_flood on mcast_router 1 mcast_to_unicast off neigh_suppress off neigh_vlan_suppress off vlan_tunnel off isolated off locked off mab off mcast_n_groups 126 mcast_max_groups 0
|
|
18: tap602i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 master fwbr602i0 state forwarding priority 32 cost 2
|
|
hairpin off guard off root_block off fastleave off learning on flood on mcast_flood on bcast_flood on mcast_router 1 mcast_to_unicast off neigh_suppress off neigh_vlan_suppress off vlan_tunnel off isolated off locked off mab off mcast_n_groups 3 mcast_max_groups 0
|
|
20: fwpr602p0@fwln602i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master vmbr0 state forwarding priority 32 cost 2
|
|
hairpin off guard off root_block off fastleave off learning on flood on mcast_flood on bcast_flood on mcast_router 1 mcast_to_unicast off neigh_suppress off neigh_vlan_suppress off vlan_tunnel off isolated off locked off mab off mcast_n_groups 3 mcast_max_groups 0
|
|
21: fwln602i0@fwpr602p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master fwbr602i0 state forwarding priority 32 cost 2
|
|
hairpin off guard off root_block off fastleave off learning on flood on mcast_flood on bcast_flood on mcast_router 1 mcast_to_unicast off neigh_suppress off neigh_vlan_suppress off vlan_tunnel off isolated off locked off mab off mcast_n_groups 126 mcast_max_groups 0
|
|
22: tap603i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 master fwbr603i0 state forwarding priority 32 cost 2
|
|
hairpin off guard off root_block off fastleave off learning on flood on mcast_flood on bcast_flood on mcast_router 1 mcast_to_unicast off neigh_suppress off neigh_vlan_suppress off vlan_tunnel off isolated off locked off mab off mcast_n_groups 3 mcast_max_groups 0
|
|
24: fwpr603p0@fwln603i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master vmbr0 state forwarding priority 32 cost 2
|
|
hairpin off guard off root_block off fastleave off learning on flood on mcast_flood on bcast_flood on mcast_router 1 mcast_to_unicast off neigh_suppress off neigh_vlan_suppress off vlan_tunnel off isolated off locked off mab off mcast_n_groups 3 mcast_max_groups 0
|
|
25: fwln603i0@fwpr603p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master fwbr603i0 state forwarding priority 32 cost 2
|
|
hairpin off guard off root_block off fastleave off learning on flood on mcast_flood on bcast_flood on mcast_router 1 mcast_to_unicast off neigh_suppress off neigh_vlan_suppress off vlan_tunnel off isolated off locked off mab off mcast_n_groups 126 mcast_max_groups 0
|
|
|
|
--- bridge vlan
|
|
$ bridge vlan
|
|
port vlan-id
|
|
nic0 1 PVID Egress Untagged
|
|
vmbr0 1 PVID Egress Untagged
|
|
nic3.2 1 PVID Egress Untagged
|
|
br-rr-mgmt 1 PVID Egress Untagged
|
|
bond0 1 PVID Egress Untagged
|
|
storagenet 1 PVID Egress Untagged
|
|
tap601i0 1 PVID Egress Untagged
|
|
fwbr601i0 1 PVID Egress Untagged
|
|
fwpr601p0 1 PVID Egress Untagged
|
|
fwln601i0 1 PVID Egress Untagged
|
|
tap602i0 1 PVID Egress Untagged
|
|
fwbr602i0 1 PVID Egress Untagged
|
|
fwpr602p0 1 PVID Egress Untagged
|
|
fwln602i0 1 PVID Egress Untagged
|
|
tap603i0 1 PVID Egress Untagged
|
|
fwbr603i0 1 PVID Egress Untagged
|
|
fwpr603p0 1 PVID Egress Untagged
|
|
fwln603i0 1 PVID Egress Untagged
|
|
|
|
--- bridge vlan show
|
|
$ bridge vlan show
|
|
port vlan-id
|
|
nic0 1 PVID Egress Untagged
|
|
vmbr0 1 PVID Egress Untagged
|
|
nic3.2 1 PVID Egress Untagged
|
|
br-rr-mgmt 1 PVID Egress Untagged
|
|
bond0 1 PVID Egress Untagged
|
|
storagenet 1 PVID Egress Untagged
|
|
tap601i0 1 PVID Egress Untagged
|
|
fwbr601i0 1 PVID Egress Untagged
|
|
fwpr601p0 1 PVID Egress Untagged
|
|
fwln601i0 1 PVID Egress Untagged
|
|
tap602i0 1 PVID Egress Untagged
|
|
fwbr602i0 1 PVID Egress Untagged
|
|
fwpr602p0 1 PVID Egress Untagged
|
|
fwln602i0 1 PVID Egress Untagged
|
|
tap603i0 1 PVID Egress Untagged
|
|
fwbr603i0 1 PVID Egress Untagged
|
|
fwpr603p0 1 PVID Egress Untagged
|
|
fwln603i0 1 PVID Egress Untagged
|
|
|
|
--- brctl show
|
|
$ brctl show
|
|
bridge name bridge id STP enabled interfaces
|
|
br-rr-mgmt 8000.00219ba27c59 no nic3.2
|
|
fwbr601i0 8000.46edd2a8dc09 no fwln601i0
|
|
tap601i0
|
|
fwbr602i0 8000.a689253bc6fc no fwln602i0
|
|
tap602i0
|
|
fwbr603i0 8000.0a2af41fd97c no fwln603i0
|
|
tap603i0
|
|
storagenet 8000.00219ba27c55 no bond0
|
|
vmbr0 8000.00219ba27c53 no fwpr601p0
|
|
fwpr602p0
|
|
fwpr603p0
|
|
nic0
|
|
|
|
--- bonding state
|
|
--- /proc/net/bonding/bond0 ---
|
|
Ethernet Channel Bonding Driver: v6.17.2-1-pve
|
|
|
|
Bonding Mode: IEEE 802.3ad Dynamic link aggregation
|
|
Transmit Hash Policy: layer3+4 (1)
|
|
MII Status: up
|
|
MII Polling Interval (ms): 100
|
|
Up Delay (ms): 0
|
|
Down Delay (ms): 0
|
|
Peer Notification Delay (ms): 0
|
|
|
|
802.3ad info
|
|
LACP active: on
|
|
LACP rate: slow
|
|
Min links: 0
|
|
Aggregator selection policy (ad_select): stable
|
|
System priority: 65535
|
|
System MAC address: 00:21:9b:a2:7c:55
|
|
Active Aggregator Info:
|
|
Aggregator ID: 2
|
|
Number of ports: 2
|
|
Actor Key: 9
|
|
Partner Key: 26
|
|
Partner Mac Address: 00:13:72:46:95:e4
|
|
|
|
Slave Interface: nic1
|
|
MII Status: up
|
|
Speed: 1000 Mbps
|
|
Duplex: full
|
|
Link Failure Count: 0
|
|
Permanent HW addr: 00:21:9b:a2:7c:55
|
|
Slave queue ID: 0
|
|
Aggregator ID: 2
|
|
Actor Churn State: none
|
|
Partner Churn State: none
|
|
Actor Churned Count: 0
|
|
Partner Churned Count: 0
|
|
details actor lacp pdu:
|
|
system priority: 65535
|
|
system mac address: 00:21:9b:a2:7c:55
|
|
port key: 9
|
|
port priority: 255
|
|
port number: 1
|
|
port state: 61
|
|
details partner lacp pdu:
|
|
system priority: 1
|
|
system mac address: 00:13:72:46:95:e4
|
|
oper key: 26
|
|
port priority: 1
|
|
port number: 8
|
|
port state: 61
|
|
|
|
Slave Interface: nic2
|
|
MII Status: up
|
|
Speed: 1000 Mbps
|
|
Duplex: full
|
|
Link Failure Count: 0
|
|
Permanent HW addr: 00:21:9b:a2:7c:57
|
|
Slave queue ID: 0
|
|
Aggregator ID: 2
|
|
Actor Churn State: none
|
|
Partner Churn State: none
|
|
Actor Churned Count: 0
|
|
Partner Churned Count: 0
|
|
details actor lacp pdu:
|
|
system priority: 65535
|
|
system mac address: 00:21:9b:a2:7c:55
|
|
port key: 9
|
|
port priority: 255
|
|
port number: 2
|
|
port state: 61
|
|
details partner lacp pdu:
|
|
system priority: 1
|
|
system mac address: 00:13:72:46:95:e4
|
|
oper key: 26
|
|
port priority: 1
|
|
port number: 9
|
|
port state: 61
|
|
|
|
--- vlan config
|
|
$ cat /proc/net/vlan/config
|
|
VLAN Dev name | VLAN ID
|
|
Name-Type: VLAN_NAME_TYPE_RAW_PLUS_VID_NO_PAD
|
|
nic3.2 | 2 | nic3
|
|
|
|
--- /proc/net/vlan
|
|
total 0
|
|
dr-xr-xr-x 4 root root 0 Jul 26 16:26 .
|
|
dr-xr-xr-x 62 root root 0 Jul 26 16:26 ..
|
|
-rw------- 1 root root 0 Jul 26 16:26 config
|
|
-rw------- 1 root root 0 Jul 26 16:26 nic3.2
|
|
|
|
--- /etc/network/interfaces
|
|
--- /etc/network/interfaces ---
|
|
# network interface settings; autogenerated
|
|
# Please do NOT modify this file directly, unless you know what
|
|
# you're doing.
|
|
#
|
|
# If you want to manage parts of the network configuration manually,
|
|
# please utilize the 'source' or 'source-directory' directives to do
|
|
# so.
|
|
# PVE will preserve these directives, but will NOT read its network
|
|
# configuration from sourced files, so do not attempt to move any of
|
|
# the PVE managed interfaces into external files!
|
|
|
|
auto lo
|
|
iface lo inet loopback
|
|
|
|
iface nic0 inet manual
|
|
|
|
auto nic1
|
|
iface nic1 inet manual
|
|
#PortID: ifname g8
|
|
|
|
auto nic2
|
|
iface nic2 inet manual
|
|
#PortID: ifname g9
|
|
|
|
iface nic3 inet manual
|
|
|
|
iface nic3.2 inet manual
|
|
|
|
iface nic4 inet manual
|
|
|
|
iface nic5 inet manual
|
|
|
|
auto bond0
|
|
iface bond0 inet manual
|
|
bond-slaves nic1 nic2
|
|
bond-miimon 100
|
|
bond-mode 802.3ad
|
|
bond-xmit-hash-policy layer3+4
|
|
|
|
auto vmbr0
|
|
iface vmbr0 inet dhcp
|
|
bridge-ports nic0
|
|
bridge-stp off
|
|
bridge-fd 0
|
|
|
|
auto br-rr-mgmt
|
|
iface br-rr-mgmt inet static
|
|
address 10.251.2.6/24
|
|
bridge-ports nic3.2
|
|
bridge-stp off
|
|
bridge-fd 0
|
|
|
|
auto storagenet
|
|
iface storagenet inet static
|
|
address 10.100.100.6/24
|
|
bridge-ports bond0
|
|
bridge-stp off
|
|
bridge-fd 0
|
|
|
|
source /etc/network/interfaces.d/*
|
|
|
|
--- interfaces.d (per file)
|
|
$ for f in /etc/network/interfaces.d/*; do
|
|
[ -r "$f" ] || continue
|
|
echo "--- $f ---"
|
|
cat "$f"
|
|
done
|
|
--- /etc/network/interfaces.d/sdn ---
|
|
|
|
###############################################################################
|
|
# 12. NETWORK: IRQ / RPS / XPS / aRFS / SOFTNET
|
|
###############################################################################
|
|
|
|
--- /proc/interrupts
|
|
$ cat /proc/interrupts
|
|
CPU0 CPU1 CPU2 CPU3 CPU4 CPU5 CPU6 CPU7 CPU8 CPU9 CPU10 CPU11 CPU12 CPU13 CPU14 CPU15
|
|
0: 31039 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IO-APIC 2-edge timer
|
|
1: 0 0 0 0 0 0 0 0 0 0 4 0 0 0 0 0 IO-APIC 1-edge i8042
|
|
8: 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 IO-APIC 8-edge rtc0
|
|
9: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IO-APIC 9-fasteoi acpi
|
|
12: 0 0 0 0 0 0 0 0 6 0 0 0 0 0 0 0 IO-APIC 12-edge i8042
|
|
17: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IO-APIC 17-fasteoi uhci_hcd:usb3
|
|
18: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IO-APIC 18-fasteoi uhci_hcd:usb4
|
|
19: 0 0 0 0 0 0 0 77307 0 0 0 0 0 0 0 0 IO-APIC 19-fasteoi ehci_hcd:usb1
|
|
20: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IO-APIC 20-fasteoi uhci_hcd:usb6
|
|
21: 0 0 0 0 0 0 0 0 0 88 0 0 0 0 0 0 IO-APIC 21-fasteoi ehci_hcd:usb2, uhci_hcd:usb5
|
|
25: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI-0000:00:01.0 0-edge PCIe PME, aerdrv, PCIe bwctrl
|
|
26: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI-0000:00:03.0 0-edge PCIe PME, aerdrv, PCIe bwctrl
|
|
27: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI-0000:00:07.0 0-edge PCIe PME, aerdrv, PCIe bwctrl
|
|
28: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI-0000:00:09.0 0-edge PCIe PME, aerdrv, PCIe bwctrl
|
|
29: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSI-0000:00:1c.0 0-edge PCIe PME
|
|
36: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 15910 PCI-MSIX-0000:01:00.0 0-edge nic0-0
|
|
37: 4236 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSIX-0000:01:00.0 1-edge nic0-1
|
|
38: 0 8230 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSIX-0000:01:00.0 2-edge nic0-2
|
|
39: 0 0 6240 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSIX-0000:01:00.0 3-edge nic0-3
|
|
40: 0 0 0 3615 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSIX-0000:01:00.0 4-edge nic0-4
|
|
42: 0 0 0 0 496 0 0 0 0 0 0 0 0 0 0 0 PCI-MSIX-0000:02:00.1 0-edge nic3-0
|
|
43: 0 0 0 0 0 4 0 0 0 0 0 0 0 0 0 0 PCI-MSIX-0000:02:00.1 1-edge nic3-1
|
|
44: 0 0 0 0 0 0 11 0 0 0 0 0 0 0 0 0 PCI-MSIX-0000:02:00.1 2-edge nic3-2
|
|
45: 0 0 0 0 0 0 0 4 0 0 0 0 0 0 0 0 PCI-MSIX-0000:02:00.1 3-edge nic3-3
|
|
46: 0 0 0 0 0 0 0 0 47 0 0 0 0 0 0 0 PCI-MSIX-0000:02:00.1 4-edge nic3-4
|
|
48: 0 0 0 0 0 0 0 0 0 56084 0 0 0 0 0 0 PCI-MSIX-0000:01:00.1 0-edge nic1-0
|
|
49: 0 0 0 0 0 0 0 0 0 0 133375 0 0 0 0 0 PCI-MSIX-0000:01:00.1 1-edge nic1-1
|
|
50: 0 0 0 0 0 0 0 0 0 0 0 451237 0 0 0 0 PCI-MSIX-0000:01:00.1 2-edge nic1-2
|
|
51: 0 0 0 0 0 0 0 0 0 0 0 0 538574 0 0 0 PCI-MSIX-0000:01:00.1 3-edge nic1-3
|
|
52: 0 0 0 0 0 0 0 0 0 0 0 0 0 441463 0 0 PCI-MSIX-0000:01:00.1 4-edge nic1-4
|
|
54: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 14001 0 PCI-MSIX-0000:02:00.0 0-edge nic2-0
|
|
55: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 100995 PCI-MSIX-0000:02:00.0 1-edge nic2-1
|
|
56: 294505 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSIX-0000:02:00.0 2-edge nic2-2
|
|
57: 0 52371 0 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSIX-0000:02:00.0 3-edge nic2-3
|
|
58: 0 0 12892 0 0 0 0 0 0 0 0 0 0 0 0 0 PCI-MSIX-0000:02:00.0 4-edge nic2-4
|
|
NMI: 17 15 22 19 16 16 21 18 14 15 15 31 32 33 27 15 Non-maskable interrupts
|
|
LOC: 141567 88898 82161 91852 91452 75736 88917 92065 87329 80083 98838 181265 174082 169572 96328 140398 Local timer interrupts
|
|
SPU: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 Spurious interrupts
|
|
PMI: 17 15 22 19 16 16 21 18 14 15 15 31 32 33 27 15 Performance monitoring interrupts
|
|
IWI: 0 0 0 0 5 0 0 0 0 2 0 0 0 1 0 2 IRQ work interrupts
|
|
RTR: 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 APIC ICR read retries
|
|
RES: 2662 2354 1543 1053 1791 1231 1968 1318 4797 2044 1736 1850 2156 2394 1869 1262 Rescheduling interrupts
|
|
CAL: 29382 20625 17962 15916 18166 14280 16640 16511 16394 15161 16893 16434 16732 15134 17877 14872 Function call interrupts
|
|
TLB: 1166 571 785 764 1227 515 1146 584 670 614 1095 670 926 607 804 484 TLB shootdowns
|
|
TRM: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 Thermal event interrupts
|
|
THR: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 Threshold APIC interrupts
|
|
DFR: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 Deferred Error APIC interrupts
|
|
MCE: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 Machine check exceptions
|
|
MCP: 2 3 3 3 3 3 3 3 3 3 3 3 3 3 3 3 Machine check polls
|
|
ERR: 0
|
|
MIS: 0
|
|
PIN: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 Posted-interrupt notification event
|
|
NPI: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 Nested posted-interrupt event
|
|
PIW: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 Posted-interrupt wakeup event
|
|
|
|
--- NIC IRQ affinities (which CPUs handle which queue)
|
|
$ for ifc in $NETIFS; do
|
|
[ -d "/sys/class/net/$ifc/device/msi_irqs" ] || continue
|
|
echo "=== $ifc IRQ list (first 40) ==="
|
|
ls "/sys/class/net/$ifc/device/msi_irqs" 2>/dev/null | head -n 40
|
|
done
|
|
=== nic0 IRQ list (first 40) ===
|
|
36
|
|
37
|
|
38
|
|
39
|
|
40
|
|
41
|
|
=== nic1 IRQ list (first 40) ===
|
|
48
|
|
49
|
|
50
|
|
51
|
|
52
|
|
53
|
|
=== nic2 IRQ list (first 40) ===
|
|
54
|
|
55
|
|
56
|
|
57
|
|
58
|
|
59
|
|
=== nic3 IRQ list (first 40) ===
|
|
42
|
|
43
|
|
44
|
|
45
|
|
46
|
|
47
|
|
|
|
--- RPS masks (non-zero only)
|
|
$ for q in /sys/class/net/*/queues/rx-*/rps_cpus; do
|
|
[ -e "$q" ] || continue
|
|
val=$(cat "$q")
|
|
[ "$val" != "0" ] && printf ' %s = %s\n' "$q" "$val"
|
|
done | head -n 60
|
|
/sys/class/net/bond0/queues/rx-0/rps_cpus = 00000000
|
|
/sys/class/net/bond0/queues/rx-10/rps_cpus = 00000000
|
|
/sys/class/net/bond0/queues/rx-11/rps_cpus = 00000000
|
|
/sys/class/net/bond0/queues/rx-12/rps_cpus = 00000000
|
|
/sys/class/net/bond0/queues/rx-13/rps_cpus = 00000000
|
|
/sys/class/net/bond0/queues/rx-14/rps_cpus = 00000000
|
|
/sys/class/net/bond0/queues/rx-15/rps_cpus = 00000000
|
|
/sys/class/net/bond0/queues/rx-1/rps_cpus = 00000000
|
|
/sys/class/net/bond0/queues/rx-2/rps_cpus = 00000000
|
|
/sys/class/net/bond0/queues/rx-3/rps_cpus = 00000000
|
|
/sys/class/net/bond0/queues/rx-4/rps_cpus = 00000000
|
|
/sys/class/net/bond0/queues/rx-5/rps_cpus = 00000000
|
|
/sys/class/net/bond0/queues/rx-6/rps_cpus = 00000000
|
|
/sys/class/net/bond0/queues/rx-7/rps_cpus = 00000000
|
|
/sys/class/net/bond0/queues/rx-8/rps_cpus = 00000000
|
|
/sys/class/net/bond0/queues/rx-9/rps_cpus = 00000000
|
|
/sys/class/net/br-rr-mgmt/queues/rx-0/rps_cpus = 00000000
|
|
/sys/class/net/fwbr601i0/queues/rx-0/rps_cpus = 00000000
|
|
/sys/class/net/fwbr602i0/queues/rx-0/rps_cpus = 00000000
|
|
/sys/class/net/fwbr603i0/queues/rx-0/rps_cpus = 00000000
|
|
/sys/class/net/fwln601i0/queues/rx-0/rps_cpus = 00000000
|
|
/sys/class/net/fwln602i0/queues/rx-0/rps_cpus = 00000000
|
|
/sys/class/net/fwln603i0/queues/rx-0/rps_cpus = 00000000
|
|
/sys/class/net/fwpr601p0/queues/rx-0/rps_cpus = 00000000
|
|
/sys/class/net/fwpr602p0/queues/rx-0/rps_cpus = 00000000
|
|
/sys/class/net/fwpr603p0/queues/rx-0/rps_cpus = 00000000
|
|
/sys/class/net/lo/queues/rx-0/rps_cpus = 00000000
|
|
/sys/class/net/nic0/queues/rx-0/rps_cpus = 00000000
|
|
/sys/class/net/nic0/queues/rx-1/rps_cpus = 00000000
|
|
/sys/class/net/nic0/queues/rx-2/rps_cpus = 00000000
|
|
/sys/class/net/nic0/queues/rx-3/rps_cpus = 00000000
|
|
/sys/class/net/nic0/queues/rx-4/rps_cpus = 00000000
|
|
/sys/class/net/nic1/queues/rx-0/rps_cpus = 00000000
|
|
/sys/class/net/nic1/queues/rx-1/rps_cpus = 00000000
|
|
/sys/class/net/nic1/queues/rx-2/rps_cpus = 00000000
|
|
/sys/class/net/nic1/queues/rx-3/rps_cpus = 00000000
|
|
/sys/class/net/nic1/queues/rx-4/rps_cpus = 00000000
|
|
/sys/class/net/nic2/queues/rx-0/rps_cpus = 00000000
|
|
/sys/class/net/nic2/queues/rx-1/rps_cpus = 00000000
|
|
/sys/class/net/nic2/queues/rx-2/rps_cpus = 00000000
|
|
/sys/class/net/nic2/queues/rx-3/rps_cpus = 00000000
|
|
/sys/class/net/nic2/queues/rx-4/rps_cpus = 00000000
|
|
/sys/class/net/nic3.2/queues/rx-0/rps_cpus = 00000000
|
|
/sys/class/net/nic3/queues/rx-0/rps_cpus = 00000000
|
|
/sys/class/net/nic3/queues/rx-1/rps_cpus = 00000000
|
|
/sys/class/net/nic3/queues/rx-2/rps_cpus = 00000000
|
|
/sys/class/net/nic3/queues/rx-3/rps_cpus = 00000000
|
|
/sys/class/net/nic3/queues/rx-4/rps_cpus = 00000000
|
|
/sys/class/net/nic4/queues/rx-0/rps_cpus = 00000000
|
|
/sys/class/net/nic4/queues/rx-1/rps_cpus = 00000000
|
|
/sys/class/net/nic4/queues/rx-2/rps_cpus = 00000000
|
|
/sys/class/net/nic4/queues/rx-3/rps_cpus = 00000000
|
|
/sys/class/net/nic4/queues/rx-4/rps_cpus = 00000000
|
|
/sys/class/net/nic4/queues/rx-5/rps_cpus = 00000000
|
|
/sys/class/net/nic4/queues/rx-6/rps_cpus = 00000000
|
|
/sys/class/net/nic4/queues/rx-7/rps_cpus = 00000000
|
|
/sys/class/net/nic5/queues/rx-0/rps_cpus = 00000000
|
|
/sys/class/net/nic5/queues/rx-1/rps_cpus = 00000000
|
|
/sys/class/net/nic5/queues/rx-2/rps_cpus = 00000000
|
|
/sys/class/net/nic5/queues/rx-3/rps_cpus = 00000000
|
|
|
|
--- XPS masks (non-zero only)
|
|
$ for q in /sys/class/net/*/queues/tx-*/xps_cpus; do
|
|
[ -e "$q" ] || continue
|
|
val=$(cat "$q")
|
|
[ "$val" != "0" ] && printf ' %s = %s\n' "$q" "$val"
|
|
done | head -n 60
|
|
cat: /sys/class/net/br-rr-mgmt/queues/tx-0/xps_cpus: No such file or directory
|
|
cat: /sys/class/net/fwbr601i0/queues/tx-0/xps_cpus: No such file or directory
|
|
cat: /sys/class/net/fwbr602i0/queues/tx-0/xps_cpus: No such file or directory
|
|
cat: /sys/class/net/fwbr603i0/queues/tx-0/xps_cpus: No such file or directory
|
|
cat: /sys/class/net/lo/queues/tx-0/xps_cpus: No such file or directory
|
|
cat: /sys/class/net/nic3.2/queues/tx-0/xps_cpus: No such file or directory
|
|
/sys/class/net/bond0/queues/tx-0/xps_cpus = 00000000
|
|
/sys/class/net/bond0/queues/tx-10/xps_cpus = 00000000
|
|
/sys/class/net/bond0/queues/tx-11/xps_cpus = 00000000
|
|
/sys/class/net/bond0/queues/tx-12/xps_cpus = 00000000
|
|
/sys/class/net/bond0/queues/tx-13/xps_cpus = 00000000
|
|
/sys/class/net/bond0/queues/tx-14/xps_cpus = 00000000
|
|
/sys/class/net/bond0/queues/tx-15/xps_cpus = 00000000
|
|
/sys/class/net/bond0/queues/tx-1/xps_cpus = 00000000
|
|
/sys/class/net/bond0/queues/tx-2/xps_cpus = 00000000
|
|
/sys/class/net/bond0/queues/tx-3/xps_cpus = 00000000
|
|
/sys/class/net/bond0/queues/tx-4/xps_cpus = 00000000
|
|
/sys/class/net/bond0/queues/tx-5/xps_cpus = 00000000
|
|
/sys/class/net/bond0/queues/tx-6/xps_cpus = 00000000
|
|
/sys/class/net/bond0/queues/tx-7/xps_cpus = 00000000
|
|
/sys/class/net/bond0/queues/tx-8/xps_cpus = 00000000
|
|
/sys/class/net/bond0/queues/tx-9/xps_cpus = 00000000
|
|
/sys/class/net/br-rr-mgmt/queues/tx-0/xps_cpus =
|
|
/sys/class/net/fwbr601i0/queues/tx-0/xps_cpus =
|
|
/sys/class/net/fwbr602i0/queues/tx-0/xps_cpus =
|
|
/sys/class/net/fwbr603i0/queues/tx-0/xps_cpus =
|
|
/sys/class/net/fwln601i0/queues/tx-0/xps_cpus = 00000000
|
|
/sys/class/net/fwln602i0/queues/tx-0/xps_cpus = 00000000
|
|
/sys/class/net/fwln603i0/queues/tx-0/xps_cpus = 00000000
|
|
/sys/class/net/fwpr601p0/queues/tx-0/xps_cpus = 00000000
|
|
/sys/class/net/fwpr602p0/queues/tx-0/xps_cpus = 00000000
|
|
/sys/class/net/fwpr603p0/queues/tx-0/xps_cpus = 00000000
|
|
/sys/class/net/lo/queues/tx-0/xps_cpus =
|
|
/sys/class/net/nic0/queues/tx-0/xps_cpus = 00000000
|
|
/sys/class/net/nic0/queues/tx-1/xps_cpus = 00000000
|
|
/sys/class/net/nic0/queues/tx-2/xps_cpus = 00000000
|
|
/sys/class/net/nic0/queues/tx-3/xps_cpus = 00000000
|
|
/sys/class/net/nic1/queues/tx-0/xps_cpus = 00000000
|
|
/sys/class/net/nic1/queues/tx-1/xps_cpus = 00000000
|
|
/sys/class/net/nic1/queues/tx-2/xps_cpus = 00000000
|
|
/sys/class/net/nic1/queues/tx-3/xps_cpus = 00000000
|
|
/sys/class/net/nic2/queues/tx-0/xps_cpus = 00000000
|
|
/sys/class/net/nic2/queues/tx-1/xps_cpus = 00000000
|
|
/sys/class/net/nic2/queues/tx-2/xps_cpus = 00000000
|
|
/sys/class/net/nic2/queues/tx-3/xps_cpus = 00000000
|
|
/sys/class/net/nic3.2/queues/tx-0/xps_cpus =
|
|
/sys/class/net/nic3/queues/tx-0/xps_cpus = 00000000
|
|
/sys/class/net/nic3/queues/tx-1/xps_cpus = 00000000
|
|
/sys/class/net/nic3/queues/tx-2/xps_cpus = 00000000
|
|
/sys/class/net/nic3/queues/tx-3/xps_cpus = 00000000
|
|
/sys/class/net/nic4/queues/tx-0/xps_cpus = 00000000
|
|
/sys/class/net/nic4/queues/tx-1/xps_cpus = 00000000
|
|
/sys/class/net/nic4/queues/tx-2/xps_cpus = 00000000
|
|
/sys/class/net/nic4/queues/tx-3/xps_cpus = 00000000
|
|
/sys/class/net/nic4/queues/tx-4/xps_cpus = 00000000
|
|
/sys/class/net/nic4/queues/tx-5/xps_cpus = 00000000
|
|
/sys/class/net/nic4/queues/tx-6/xps_cpus = 00000000
|
|
/sys/class/net/nic4/queues/tx-7/xps_cpus = 00000000
|
|
/sys/class/net/nic5/queues/tx-0/xps_cpus = 00000000
|
|
/sys/class/net/nic5/queues/tx-1/xps_cpus = 00000000
|
|
/sys/class/net/nic5/queues/tx-2/xps_cpus = 00000000
|
|
/sys/class/net/nic5/queues/tx-3/xps_cpus = 00000000
|
|
/sys/class/net/nic5/queues/tx-4/xps_cpus = 00000000
|
|
/sys/class/net/nic5/queues/tx-5/xps_cpus = 00000000
|
|
/sys/class/net/nic5/queues/tx-6/xps_cpus = 00000000
|
|
/sys/class/net/nic5/queues/tx-7/xps_cpus = 00000000
|
|
cat: /sys/class/net/storagenet/queues/tx-0/xps_cpus: No such file or directory
|
|
|
|
--- RFS flow counts
|
|
$ for q in /sys/class/net/*/queues/rx-*/rps_flow_cnt; do
|
|
[ -e "$q" ] || continue
|
|
printf ' %s = %s\n' "$q" "$(cat "$q")"
|
|
done | head -n 60
|
|
/sys/class/net/bond0/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/bond0/queues/rx-10/rps_flow_cnt = 0
|
|
/sys/class/net/bond0/queues/rx-11/rps_flow_cnt = 0
|
|
/sys/class/net/bond0/queues/rx-12/rps_flow_cnt = 0
|
|
/sys/class/net/bond0/queues/rx-13/rps_flow_cnt = 0
|
|
/sys/class/net/bond0/queues/rx-14/rps_flow_cnt = 0
|
|
/sys/class/net/bond0/queues/rx-15/rps_flow_cnt = 0
|
|
/sys/class/net/bond0/queues/rx-1/rps_flow_cnt = 0
|
|
/sys/class/net/bond0/queues/rx-2/rps_flow_cnt = 0
|
|
/sys/class/net/bond0/queues/rx-3/rps_flow_cnt = 0
|
|
/sys/class/net/bond0/queues/rx-4/rps_flow_cnt = 0
|
|
/sys/class/net/bond0/queues/rx-5/rps_flow_cnt = 0
|
|
/sys/class/net/bond0/queues/rx-6/rps_flow_cnt = 0
|
|
/sys/class/net/bond0/queues/rx-7/rps_flow_cnt = 0
|
|
/sys/class/net/bond0/queues/rx-8/rps_flow_cnt = 0
|
|
/sys/class/net/bond0/queues/rx-9/rps_flow_cnt = 0
|
|
/sys/class/net/br-rr-mgmt/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/fwbr601i0/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/fwbr602i0/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/fwbr603i0/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/fwln601i0/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/fwln602i0/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/fwln603i0/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/fwpr601p0/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/fwpr602p0/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/fwpr603p0/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/lo/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/nic0/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/nic0/queues/rx-1/rps_flow_cnt = 0
|
|
/sys/class/net/nic0/queues/rx-2/rps_flow_cnt = 0
|
|
/sys/class/net/nic0/queues/rx-3/rps_flow_cnt = 0
|
|
/sys/class/net/nic0/queues/rx-4/rps_flow_cnt = 0
|
|
/sys/class/net/nic1/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/nic1/queues/rx-1/rps_flow_cnt = 0
|
|
/sys/class/net/nic1/queues/rx-2/rps_flow_cnt = 0
|
|
/sys/class/net/nic1/queues/rx-3/rps_flow_cnt = 0
|
|
/sys/class/net/nic1/queues/rx-4/rps_flow_cnt = 0
|
|
/sys/class/net/nic2/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/nic2/queues/rx-1/rps_flow_cnt = 0
|
|
/sys/class/net/nic2/queues/rx-2/rps_flow_cnt = 0
|
|
/sys/class/net/nic2/queues/rx-3/rps_flow_cnt = 0
|
|
/sys/class/net/nic2/queues/rx-4/rps_flow_cnt = 0
|
|
/sys/class/net/nic3.2/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/nic3/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/nic3/queues/rx-1/rps_flow_cnt = 0
|
|
/sys/class/net/nic3/queues/rx-2/rps_flow_cnt = 0
|
|
/sys/class/net/nic3/queues/rx-3/rps_flow_cnt = 0
|
|
/sys/class/net/nic3/queues/rx-4/rps_flow_cnt = 0
|
|
/sys/class/net/nic4/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/nic4/queues/rx-1/rps_flow_cnt = 0
|
|
/sys/class/net/nic4/queues/rx-2/rps_flow_cnt = 0
|
|
/sys/class/net/nic4/queues/rx-3/rps_flow_cnt = 0
|
|
/sys/class/net/nic4/queues/rx-4/rps_flow_cnt = 0
|
|
/sys/class/net/nic4/queues/rx-5/rps_flow_cnt = 0
|
|
/sys/class/net/nic4/queues/rx-6/rps_flow_cnt = 0
|
|
/sys/class/net/nic4/queues/rx-7/rps_flow_cnt = 0
|
|
/sys/class/net/nic5/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/nic5/queues/rx-1/rps_flow_cnt = 0
|
|
/sys/class/net/nic5/queues/rx-2/rps_flow_cnt = 0
|
|
/sys/class/net/nic5/queues/rx-3/rps_flow_cnt = 0
|
|
|
|
--- /proc/net/softnet_stat (drops/backlog)
|
|
$ cat /proc/net/softnet_stat
|
|
0001c35d 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
|
|
00012aa9 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000001 00000000 00000000
|
|
00014ee9 00000000 00000002 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000002 00000000 00000000
|
|
00005990 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000003 00000000 00000000
|
|
00000473 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000004 00000000 00000000
|
|
00000514 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000005 00000000 00000000
|
|
0000024e 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000006 00000000 00000000
|
|
00000173 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000007 00000000 00000000
|
|
000001a8 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000008 00000000 00000000
|
|
000005ec 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000009 00000000 00000000
|
|
000098e6 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 0000000a 00000000 00000000
|
|
003bc8d3 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 0000000b 00000000 00000000
|
|
0016fb98 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 0000000c 00000000 00000000
|
|
0014cd9b 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 0000000d 00000000 00000000
|
|
00000214 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 0000000e 00000000 00000000
|
|
0000f661 00000000 00000004 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 0000000f 00000000 00000000
|
|
|
|
--- softnet_stat decoded
|
|
$ # columns: TOTAL DROPPED DROPPED_BY_NETRX TIME_SQUEEZED CPU_COLLISIONS RPS_RECEIVED_FLOW_LIMIT
|
|
awk '{ printf "cpu%-2d total=%-8s dropped=%-6s time_squeezed=%-6s cpu_collision=%-4s rps_received=%-6s flow_limit=%s\n",
|
|
NR-1, $1, $2, $4, $5, $6, $7 }' /proc/net/softnet_stat
|
|
cpu0 total=0001c35d dropped=00000000 time_squeezed=00000000 cpu_collision=00000000 rps_received=00000000 flow_limit=00000000
|
|
cpu1 total=00012aa9 dropped=00000000 time_squeezed=00000000 cpu_collision=00000000 rps_received=00000000 flow_limit=00000000
|
|
cpu2 total=00014ee9 dropped=00000000 time_squeezed=00000000 cpu_collision=00000000 rps_received=00000000 flow_limit=00000000
|
|
cpu3 total=00005990 dropped=00000000 time_squeezed=00000000 cpu_collision=00000000 rps_received=00000000 flow_limit=00000000
|
|
cpu4 total=00000473 dropped=00000000 time_squeezed=00000000 cpu_collision=00000000 rps_received=00000000 flow_limit=00000000
|
|
cpu5 total=00000514 dropped=00000000 time_squeezed=00000000 cpu_collision=00000000 rps_received=00000000 flow_limit=00000000
|
|
cpu6 total=0000024e dropped=00000000 time_squeezed=00000000 cpu_collision=00000000 rps_received=00000000 flow_limit=00000000
|
|
cpu7 total=00000173 dropped=00000000 time_squeezed=00000000 cpu_collision=00000000 rps_received=00000000 flow_limit=00000000
|
|
cpu8 total=000001a8 dropped=00000000 time_squeezed=00000000 cpu_collision=00000000 rps_received=00000000 flow_limit=00000000
|
|
cpu9 total=000005ec dropped=00000000 time_squeezed=00000000 cpu_collision=00000000 rps_received=00000000 flow_limit=00000000
|
|
cpu10 total=000098e6 dropped=00000000 time_squeezed=00000000 cpu_collision=00000000 rps_received=00000000 flow_limit=00000000
|
|
cpu11 total=003bc8d3 dropped=00000000 time_squeezed=00000000 cpu_collision=00000000 rps_received=00000000 flow_limit=00000000
|
|
cpu12 total=0016fb98 dropped=00000000 time_squeezed=00000000 cpu_collision=00000000 rps_received=00000000 flow_limit=00000000
|
|
cpu13 total=0014cd9b dropped=00000000 time_squeezed=00000000 cpu_collision=00000000 rps_received=00000000 flow_limit=00000000
|
|
cpu14 total=00000214 dropped=00000000 time_squeezed=00000000 cpu_collision=00000000 rps_received=00000000 flow_limit=00000000
|
|
cpu15 total=0000f661 dropped=00000000 time_squeezed=00000000 cpu_collision=00000000 rps_received=00000000 flow_limit=00000000
|
|
|
|
--- netstat drop counters (significant ones)
|
|
$ nstat -az 2>/dev/null | grep -iE '(Drop|Retrans|Fail|Abort|Overflow|Loss|ListenDrop|EmbryonicRsts|InErrs|OutErrs)' || \
|
|
netstat -s 2>/dev/null | grep -iE '(drop|retrans|fail|abort|overflow|loss|listen|error)' | head -n 60
|
|
IpReasmFails 904926 0.0
|
|
IpFragFails 0 0.0
|
|
TcpAttemptFails 7 0.0
|
|
TcpRetransSegs 144534 0.0
|
|
TcpInErrs 0 0.0
|
|
Ip6ReasmFails 0 0.0
|
|
Ip6FragFails 0 0.0
|
|
TcpExtSyncookiesFailed 37 0.0
|
|
TcpExtEmbryonicRsts 1 0.0
|
|
TcpExtLockDroppedIcmps 0 0.0
|
|
TcpExtListenOverflows 0 0.0
|
|
TcpExtListenDrops 0 0.0
|
|
TcpExtTCPLossUndo 3 0.0
|
|
TcpExtTCPLostRetransmit 36991 0.0
|
|
TcpExtTCPRenoFailures 0 0.0
|
|
TcpExtTCPSackFailures 0 0.0
|
|
TcpExtTCPLossFailures 59 0.0
|
|
TcpExtTCPFastRetrans 136157 0.0
|
|
TcpExtTCPSlowStartRetrans 7839 0.0
|
|
TcpExtTCPLossProbes 225 0.0
|
|
TcpExtTCPLossProbeRecovery 1 0.0
|
|
TcpExtTCPRenoRecoveryFail 0 0.0
|
|
TcpExtTCPSackRecoveryFail 149 0.0
|
|
TcpExtTCPAbortOnData 9 0.0
|
|
TcpExtTCPAbortOnClose 3 0.0
|
|
TcpExtTCPAbortOnMemory 0 0.0
|
|
TcpExtTCPAbortOnTimeout 0 0.0
|
|
TcpExtTCPAbortOnLinger 0 0.0
|
|
TcpExtTCPAbortFailed 0 0.0
|
|
TcpExtTCPMD5Failure 0 0.0
|
|
TcpExtTCPBacklogDrop 0 0.0
|
|
TcpExtPFMemallocDrop 0 0.0
|
|
TcpExtTCPMinTTLDrop 0 0.0
|
|
TcpExtTCPDeferAcceptDrop 0 0.0
|
|
TcpExtTCPTimeWaitOverflow 0 0.0
|
|
TcpExtTCPReqQFullDrop 0 0.0
|
|
TcpExtTCPRetransFail 0 0.0
|
|
TcpExtTCPOFODrop 0 0.0
|
|
TcpExtTCPFastOpenActiveFail 0 0.0
|
|
TcpExtTCPFastOpenPassiveFail 0 0.0
|
|
TcpExtTCPFastOpenListenOverflow 0 0.0
|
|
TcpExtTCPSynRetrans 0 0.0
|
|
TcpExtTCPMTUPFail 0 0.0
|
|
TcpExtTCPZeroWindowDrop 0 0.0
|
|
TcpExtTCPRcvQDrop 0 0.0
|
|
TcpExtTCPMigrateReqFailure 0 0.0
|
|
TcpExtTCPAODroppedIcmps 0 0.0
|
|
MPTcpExtMPCapableSYNTXDrop 0 0.0
|
|
MPTcpExtMPTCPRetrans 0 0.0
|
|
MPTcpExtMPJoinSynAckHMacFailure 0 0.0
|
|
MPTcpExtMPJoinAckHMacFailure 0 0.0
|
|
MPTcpExtAddAddrTxDrop 0 0.0
|
|
MPTcpExtEchoAddTxDrop 0 0.0
|
|
MPTcpExtAddAddrDrop 0 0.0
|
|
MPTcpExtRmAddrDrop 0 0.0
|
|
MPTcpExtRmAddrTxDrop 0 0.0
|
|
MPTcpExtMPFailTx 0 0.0
|
|
MPTcpExtMPFailRx 0 0.0
|
|
MPTcpExtFallbackFailed 0 0.0
|
|
|
|
###############################################################################
|
|
# 13. NETWORK: SOCKET / TCP STATE
|
|
###############################################################################
|
|
|
|
--- ss -s
|
|
$ ss -s
|
|
Total: 356
|
|
TCP: 113 (estab 13, closed 90, orphaned 0, timewait 89)
|
|
|
|
Transport Total IP IPv6
|
|
RAW 0 0 0
|
|
UDP 7 4 3
|
|
TCP 23 18 5
|
|
INET 30 22 8
|
|
FRAG 0 0 0
|
|
|
|
|
|
--- ss -t -m (top TCP with skmem/cwnd/rto)
|
|
$ ss -tno state established ( dport != :22 and sport != :22 ) -m
|
|
Recv-Q Send-Q Local Address:Port Peer Address:Port
|
|
0 0 10.100.100.6:704 10.100.100.4:2049 timer:(keepalive,28sec,0)
|
|
skmem:(r0,rb810816,t0,tb757248,f0,w0,o0,bl0,d1)
|
|
0 0 10.100.100.6:913 10.100.100.4:2049 timer:(keepalive,27sec,0)
|
|
skmem:(r0,rb852966,t0,tb1175040,f0,w0,o0,bl0,d0)
|
|
0 0 10.100.100.6:929 10.100.100.4:2049 timer:(keepalive,28sec,0)
|
|
skmem:(r0,rb798988,t0,tb1932288,f0,w0,o0,bl0,d0)
|
|
0 0 10.100.100.6:975 10.100.100.4:2049 timer:(keepalive,23sec,0)
|
|
skmem:(r0,rb826137,t0,tb2010624,f0,w0,o0,bl0,d7)
|
|
0 0 192.168.3.169:60528 209.177.156.94:443 timer:(keepalive,270ms,0)
|
|
skmem:(r0,rb87380,t0,tb130560,f0,w0,o0,bl0,d0)
|
|
0 0 192.168.3.169:55190 192.200.0.106:80 timer:(keepalive,1.806sec,0)
|
|
skmem:(r0,rb87380,t0,tb130560,f0,w0,o0,bl0,d0)
|
|
0 0 10.100.100.6:694 10.100.100.5:2049 timer:(keepalive,15sec,0)
|
|
skmem:(r0,rb87380,t0,tb130560,f0,w0,o0,bl0,d0)
|
|
0 0 10.100.100.6:698 10.100.100.5:2049 timer:(keepalive,1min10sec,0)
|
|
skmem:(r0,rb87380,t0,tb130560,f0,w0,o0,bl0,d0)
|
|
0 0 10.100.100.6:810 10.100.100.5:2049 timer:(keepalive,1min15sec,0)
|
|
skmem:(r0,rb87380,t0,tb130560,f0,w0,o0,bl0,d0)
|
|
0 0 10.100.100.6:888 10.100.100.5:2049 timer:(keepalive,5.816sec,0)
|
|
skmem:(r0,rb87380,t0,tb130560,f0,w0,o0,bl0,d0)
|
|
0 0 192.168.3.169:43800 152.53.37.179:443 timer:(keepalive,3.340sec,0)
|
|
skmem:(r0,rb87380,t0,tb130560,f0,w0,o0,bl0,d0)
|
|
0 0 192.168.3.169:51186 199.165.136.100:443 timer:(keepalive,1.540sec,0)
|
|
skmem:(r0,rb87380,t0,tb130560,f0,w0,o0,bl0,d0)
|
|
|
|
--- ss -ti (TCP internals)
|
|
$ ss -ti
|
|
State Recv-Q Send-Q Local Address:Port Peer Address:Port
|
|
ESTAB 0 0 100.73.35.111:ssh 100.101.187.119:41748
|
|
bbr wscale:7,12 rto:205 rtt:4.651/7.267 ato:40 mss:1228 pmtu:1280 rcvmss:1228 advmss:1228 cwnd:27 bytes_sent:5397 bytes_acked:5397 bytes_received:3993 segs_out:24 segs_in:25 data_segs_out:17 data_segs_in:15 bbr:(bw:25.1Mbps,mrtt:0.548,pacing_gain:2.88672,cwnd_gain:2.88672) send 57Mbps lastsnd:554 lastrcv:554 lastack:554 pacing_rate 512Mbps delivery_rate 25.1Mbps delivered:18 app_limited busy:71ms rcv_rtt:7 rcv_space:12280 rcv_ssthresh:58024 minrtt:0.548 snd_wnd:76544 rcv_wnd:61440
|
|
ESTAB 0 0 10.100.100.6:704 10.100.100.4:nfs
|
|
bbr wscale:9,12 rto:209 rtt:8.742/12.245 ato:40 mss:1448 pmtu:1500 rcvmss:1448 advmss:1448 cwnd:64 ssthresh:136 bytes_sent:10536024 bytes_retrans:186060 bytes_acked:10349965 bytes_received:132135580 segs_out:22015 segs_in:96509 data_segs_out:10350 data_segs_in:94098 bbr:(bw:118Mbps,mrtt:1.054,pacing_gain:1.25,cwnd_gain:2) send 84.8Mbps lastsnd:1414 lastrcv:1414 lastack:1413 pacing_rate 146Mbps delivery_rate 118Mbps delivered:10247 app_limited busy:17146ms retrans:0/160 dsack_dups:56 rcv_rtt:5.081 rcv_space:253380 rcv_ssthresh:505560 minrtt:0.231 snd_wnd:823296 rcv_wnd:507904
|
|
ESTAB 0 0 10.100.100.6:913 10.100.100.4:nfs
|
|
bbr wscale:9,12 rto:205 rtt:4.112/5.227 ato:40 mss:1448 pmtu:1500 rcvmss:256 advmss:1448 cwnd:182 ssthresh:136 bytes_sent:10027020 bytes_retrans:166456 bytes_acked:9860565 bytes_received:134034172 segs_out:21463 segs_in:97508 data_segs_out:9914 data_segs_in:95404 bbr:(bw:313Mbps,mrtt:1.316,pacing_gain:1.25,cwnd_gain:2) send 513Mbps lastsnd:1538 lastrcv:1537 lastack:1537 pacing_rate 387Mbps delivery_rate 275Mbps delivered:9818 app_limited busy:17738ms rwnd_limited:8ms(0.0%) retrans:0/145 dsack_dups:48 rcv_rtt:1.125 rcv_space:59974 rcv_ssthresh:93293 minrtt:0.297 snd_wnd:624640 rcv_wnd:532480
|
|
ESTAB 0 0 10.100.100.6:929 10.100.100.4:nfs
|
|
bbr wscale:9,12 rto:204 rtt:3.563/4.274 ato:40 mss:1448 pmtu:1500 rcvmss:1448 advmss:1448 cwnd:222 ssthresh:175 bytes_sent:10671944 bytes_retrans:97024 bytes_acked:10574921 bytes_received:142004332 segs_out:22868 segs_in:103317 data_segs_out:10498 data_segs_in:101002 bbr:(bw:378Mbps,mrtt:1.344,pacing_gain:1.25,cwnd_gain:2) send 722Mbps lastsnd:1414 lastrcv:1413 lastack:1413 pacing_rate 468Mbps delivery_rate 133Mbps delivered:10452 app_limited busy:18734ms retrans:0/88 dsack_dups:42 rcv_rtt:1 rcv_space:249684 rcv_ssthresh:497927 minrtt:0.286 snd_wnd:793088 rcv_wnd:499712
|
|
ESTAB 0 0 10.100.100.6:975 10.100.100.4:nfs
|
|
bbr wscale:9,12 rto:209 rtt:8.076/10.591 ato:40 mss:1448 pmtu:1500 rcvmss:1448 advmss:1448 cwnd:124 ssthresh:157 bytes_sent:10735304 bytes_retrans:453868 bytes_acked:10281437 bytes_received:140292976 segs_out:22998 segs_in:102309 data_segs_out:10505 data_segs_in:99821 bbr:(bw:201Mbps,mrtt:1.23,pacing_gain:1.25,cwnd_gain:2) send 178Mbps lastsnd:1413 lastrcv:1389 lastack:1389 pacing_rate 248Mbps delivery_rate 46.3Mbps delivered:10220 app_limited busy:19475ms rwnd_limited:63ms(0.3%) retrans:0/333 dsack_dups:47 rcv_rtt:1 rcv_space:258168 rcv_ssthresh:514895 minrtt:0.416 snd_wnd:483840 rcv_wnd:516096 rehash:2
|
|
ESTAB 0 0 192.168.3.169:60528 209.177.156.94:https
|
|
bbr wscale:7,12 rto:214 rtt:13.929/1.131 ato:40 mss:1448 pmtu:1500 rcvmss:1448 advmss:1448 cwnd:18 bytes_sent:6712 bytes_acked:6713 bytes_received:9006 segs_out:67 segs_in:59 data_segs_out:35 data_segs_in:26 bbr:(bw:2.44Mbps,mrtt:13.53,pacing_gain:2.88672,cwnd_gain:2.88672) send 15Mbps lastsnd:12227 lastrcv:9936 lastack:9936 pacing_rate 27.6Mbps delivery_rate 2.44Mbps delivered:36 app_limited busy:301ms rcv_space:14480 rcv_ssthresh:53172 minrtt:11.423 snd_wnd:64128 rcv_wnd:53248
|
|
ESTAB 0 0 192.168.3.169:55190 192.200.0.106:http
|
|
bbr wscale:10,12 rto:360 rtt:145.284/16.46 ato:40 mss:1448 pmtu:1500 rcvmss:1448 advmss:1448 cwnd:18 bytes_sent:6664 bytes_acked:6665 bytes_received:20994 segs_out:55 segs_in:56 data_segs_out:17 data_segs_in:40 bbr:(bw:327kbps,mrtt:138.485,pacing_gain:2.88672,cwnd_gain:2.88672) send 1.44Mbps lastsnd:376136 lastrcv:43570 lastack:13086 pacing_rate 2.36Mbps delivery_rate 327kbps delivered:18 app_limited busy:1026ms rcv_rtt:140 rcv_space:16165 rcv_ssthresh:53172 minrtt:138.485 snd_wnd:68608 rcv_wnd:53248
|
|
ESTAB 0 0 10.100.100.6:694 10.100.100.5:nfs
|
|
bbr wscale:12,12 rto:201 rtt:0.838/0.038 ato:40 mss:1448 pmtu:1500 rcvmss:536 advmss:1448 cwnd:98 bytes_sent:15080 bytes_acked:15081 bytes_received:16820 segs_out:155 segs_in:90 data_segs_out:88 data_segs_in:88 bbr:(bw:19.2Mbps,mrtt:0.426,pacing_gain:2.88672,cwnd_gain:2.88672) send 1.35Gbps lastsnd:3862 lastrcv:3861 lastack:3861 pacing_rate 777Mbps delivery_rate 19.2Mbps delivered:89 app_limited busy:73ms rcv_space:14480 rcv_ssthresh:42242 minrtt:0.426 snd_wnd:65536 rcv_wnd:45056
|
|
ESTAB 0 0 10.100.100.6:698 10.100.100.5:nfs
|
|
bbr wscale:12,12 rto:201 rtt:0.917/0.099 ato:40 mss:1448 pmtu:1500 rcvmss:536 advmss:1448 cwnd:111 bytes_sent:17068 bytes_acked:17069 bytes_received:20168 segs_out:167 segs_in:105 data_segs_out:101 data_segs_in:101 bbr:(bw:26.9Mbps,mrtt:0.43,pacing_gain:2.88672,cwnd_gain:2.88672) send 1.4Gbps lastsnd:19755 lastrcv:19754 lastack:19754 pacing_rate 561Mbps delivery_rate 26.9Mbps delivered:102 app_limited busy:131ms rcv_space:14480 rcv_ssthresh:42242 minrtt:0.43 snd_wnd:65536 rcv_wnd:45056
|
|
ESTAB 0 0 10.100.100.6:810 10.100.100.5:nfs
|
|
bbr wscale:12,12 rto:201 rtt:0.829/0.058 ato:40 mss:1448 pmtu:1500 rcvmss:536 advmss:1448 cwnd:98 bytes_sent:15016 bytes_acked:15017 bytes_received:15844 segs_out:157 segs_in:90 data_segs_out:88 data_segs_in:88 bbr:(bw:19.6Mbps,mrtt:0.591,pacing_gain:2.88672,cwnd_gain:2.88672) send 1.37Gbps lastsnd:14330 lastrcv:14329 lastack:14329 pacing_rate 558Mbps delivery_rate 19.6Mbps delivered:89 app_limited busy:71ms rcv_space:14480 rcv_ssthresh:42242 minrtt:0.591 snd_wnd:65536 rcv_wnd:45056
|
|
ESTAB 0 0 10.100.100.6:888 10.100.100.5:nfs
|
|
bbr wscale:12,12 rto:201 rtt:0.88/0.073 ato:40 mss:1448 pmtu:1500 rcvmss:536 advmss:1448 cwnd:97 bytes_sent:15036 bytes_acked:15037 bytes_received:18092 segs_out:156 segs_in:89 data_segs_out:87 data_segs_in:87 bbr:(bw:25.2Mbps,mrtt:0.459,pacing_gain:2.88672,cwnd_gain:2.88672) send 1.28Gbps lastsnd:3579 lastrcv:3578 lastack:3578 pacing_rate 643Mbps delivery_rate 25.2Mbps delivered:88 app_limited busy:84ms rcv_space:14480 rcv_ssthresh:42242 minrtt:0.459 snd_wnd:65536 rcv_wnd:45056
|
|
ESTAB 0 0 192.168.3.169:43800 152.53.37.179:https
|
|
bbr wscale:11,12 rto:247 rtt:46.95/5.471 ato:40 mss:1448 pmtu:1500 rcvmss:1448 advmss:1448 cwnd:19 bytes_sent:10969 bytes_acked:10970 bytes_received:4558 segs_out:48 segs_in:50 data_segs_out:17 data_segs_in:16 bbr:(bw:991kbps,mrtt:43.877,pacing_gain:2.88672,cwnd_gain:2.88672) send 4.69Mbps lastsnd:42458 lastrcv:42463 lastack:11647 pacing_rate 7.51Mbps delivery_rate 991kbps delivered:18 app_limited busy:589ms rcv_space:14480 rcv_ssthresh:53172 minrtt:43.877 snd_wnd:40960 rcv_wnd:53248
|
|
ESTAB 0 0 192.168.3.169:51186 199.165.136.100:https
|
|
bbr wscale:10,12 rto:265 rtt:64.425/13.971 ato:40 mss:1448 pmtu:1500 rcvmss:1448 advmss:1448 cwnd:26 bytes_sent:47126 bytes_acked:47127 bytes_received:11413 segs_out:154 segs_in:118 data_segs_out:79 data_segs_in:74 bbr:(bw:1.82Mbps,mrtt:40.706,pacing_gain:2.88672,cwnd_gain:2.88672) send 4.67Mbps lastsnd:6448 lastrcv:6366 lastack:6366 pacing_rate 7.04Mbps delivery_rate 1.82Mbps delivered:80 app_limited busy:4516ms rcv_space:14480 rcv_ssthresh:50848 minrtt:40.672 snd_wnd:87040 rcv_wnd:53248
|
|
|
|
--- /proc/net/snmp (TCP summary)
|
|
$ grep -A1 ^Tcp: /proc/net/snmp
|
|
Tcp: RtoAlgorithm RtoMin RtoMax MaxConn ActiveOpens PassiveOpens AttemptFails EstabResets CurrEstab InSegs OutSegs RetransSegs InErrs OutRsts InCsumErrors
|
|
Tcp: 1 200 120000 -1 688 122 7 3 13 1415684 3396466 144534 0 157 0
|
|
Udp: InDatagrams NoPorts InErrors OutDatagrams RcvbufErrors SndbufErrors InCsumErrors IgnoredMulti MemErrors
|
|
|
|
--- TCP retrans stats
|
|
$ grep -A1 ^Tcp: /proc/net/snmp
|
|
Tcp: RtoAlgorithm RtoMin RtoMax MaxConn ActiveOpens PassiveOpens AttemptFails EstabResets CurrEstab InSegs OutSegs RetransSegs InErrs OutRsts InCsumErrors
|
|
Tcp: 1 200 120000 -1 688 122 7 3 13 1415684 3396466 144534 0 157 0
|
|
Udp: InDatagrams NoPorts InErrors OutDatagrams RcvbufErrors SndbufErrors InCsumErrors IgnoredMulti MemErrors
|
|
|
|
--- nstat TCP summary
|
|
$ nstat -az Tcp_RetransSegs Tcp_InErrs Tcp_OutRsts Tcp_ActiveOpens Tcp_PassiveOpens
|
|
#kernel
|
|
|
|
###############################################################################
|
|
# 14. STORAGE: BLOCK DEVICES
|
|
###############################################################################
|
|
|
|
--- lsblk (key cols)
|
|
$ lsblk -o NAME,SIZE,TYPE,MOUNTPOINT,FSTYPE,MODEL,SERIAL,STATE,ROTA,DISC-GRAN,DISC-MAX
|
|
NAME SIZE TYPE MOUNTPOINT FSTYPE MODEL SERIAL STATE ROTA DISC-GRAN DISC-MAX
|
|
sda 1.8T disk WDC WD20SDRM-59A4DS1 WD-WXL2A232X5RX running 1 0B 0B
|
|
├─sda1 1007K part 1 0B 0B
|
|
├─sda2 1G part vfat 1 0B 0B
|
|
└─sda3 1.8T part LVM2_member 1 0B 0B
|
|
├─pve-swap 8G lvm [SWAP] swap running 1 0B 0B
|
|
├─pve-root 96G lvm / ext4 running 1 0B 0B
|
|
├─pve-data_tmeta 15.9G lvm running 1 0B 0B
|
|
│ └─pve-data 1.7T lvm running 1 0B 0B
|
|
└─pve-data_tdata 1.7T lvm running 1 0B 0B
|
|
└─pve-data 1.7T lvm running 1 0B 0B
|
|
|
|
--- lsblk -t
|
|
$ lsblk -t
|
|
NAME ALIGNMENT MIN-IO OPT-IO PHY-SEC LOG-SEC ROTA SCHED RQ-SIZE RA WSAME
|
|
sda 0 512 0 512 512 1 mq-deadline 2 4096 0B
|
|
├─sda1 0 512 0 512 512 1 mq-deadline 2 4096 0B
|
|
├─sda2 0 512 0 512 512 1 mq-deadline 2 4096 0B
|
|
└─sda3 0 512 0 512 512 1 mq-deadline 2 4096 0B
|
|
├─pve-swap 0 512 0 512 512 1 4096 0B
|
|
├─pve-root 0 512 0 512 512 1 4096 0B
|
|
├─pve-data_tmeta 0 512 0 512 512 1 4096 0B
|
|
│ └─pve-data 0 65536 65536 512 512 1 4096 0B
|
|
└─pve-data_tdata 0 512 0 512 512 1 4096 0B
|
|
└─pve-data 0 65536 65536 512 512 1 4096 0B
|
|
|
|
--- lsblk -O (everything, capped)
|
|
$ lsblk -O
|
|
ALIGNMENT ID-LINK ID DISC-ALN DAX DISC-GRAN DISK-SEQ DISC-MAX DISC-ZERO FSAVAIL FSROOTS FSSIZE FSTYPE FSUSED FSUSE% FSVER GROUP HCTL HOTPLUG KNAME LABEL LOG-SEC MAJ:MIN MAJ MIN MIN-IO MODE MODEL MQ NAME OPT-IO OWNER PARTFLAGS PARTLABEL PARTN PARTTYPE PARTTYPENAME PARTUUID PATH PHY-SEC PKNAME PTTYPE PTUUID RA RAND REV RM RO ROTA RQ-SIZE SCHED SERIAL SIZE START STATE SUBSYSTEMS MOUNTPOINT MOUNTPOINTS TRAN TYPE UUID VENDOR WSAME WWN ZONED ZONE-SZ ZONE-WGRAN ZONE-APP ZONE-NR ZONE-OMAX ZONE-AMAX
|
|
0 wwn-0x50014ee215a96feb 0x50014ee215a96feb 0 0 0B 9 0B 0 disk 0:0:0:0 0 sda 512 8:0 8 0 512 brw-rw---- WDC WD20SDRM-59A4DS1 1 sda 0 root /dev/sda 512 gpt 025e5938-0803-4136-bae5-7dcb01e5165d 4096 1 01.01A01 0 0 1 2 mq-deadline WD-WXL2A232X5RX 1.8T running block:scsi:usb:pci usb disk WD 0B 0x50014ee215a96feb none 0B 0B 0B 0 0 0
|
|
0 wwn-0x50014ee215a96feb-part1 0x50014ee215a96feb-part1 0 0 0B 9 0B 0 disk 0 sda1 512 8:1 8 1 512 brw-rw---- 1 ├─sda1 0 root 1 21686148-6449-6e6f-744e-656564454649 BIOS boot 8d928c72-cd89-456f-9c5b-29761e8e1be6 /dev/sda1 512 sda gpt 025e5938-0803-4136-bae5-7dcb01e5165d 4096 1 0 0 1 2 mq-deadline 1007K 34 block:scsi:usb:pci part 0B 0x50014ee215a96feb none 0B 0B 0B 0 0 0
|
|
0 wwn-0x50014ee215a96feb-part2 0x50014ee215a96feb-part2 0 0 0B 9 0B 0 vfat FAT32 disk 0 sda2 512 8:2 8 2 512 brw-rw---- 1 ├─sda2 0 root 2 c12a7328-f81f-11d2-ba4b-00a0c93ec93b EFI System 827007c4-8d16-445e-a1b0-40fadc814747 /dev/sda2 512 sda gpt 025e5938-0803-4136-bae5-7dcb01e5165d 4096 1 0 0 1 2 mq-deadline 1G 2048 block:scsi:usb:pci part 9E38-EF37 0B 0x50014ee215a96feb none 0B 0B 0B 0 0 0
|
|
0 wwn-0x50014ee215a96feb-part3 0x50014ee215a96feb-part3 0 0 0B 9 0B 0 LVM2_member LVM2 001 disk 0 sda3 512 8:3 8 3 512 brw-rw---- 1 └─sda3 0 root 3 e6d6d379-f507-44c2-a23c-238f2a3df928 Linux LVM f534b537-a35f-4721-a245-669bcd1fc02e /dev/sda3 512 sda gpt 025e5938-0803-4136-bae5-7dcb01e5165d 4096 1 0 0 1 2 mq-deadline 1.8T 2099200 block:scsi:usb:pci part aBoPok-Y20Z-3hHs-Buu6-ybpQ-KwCM-fbOoLy 0B 0x50014ee215a96feb none 0B 0B 0B 0 0 0
|
|
0 dm-name-pve-swap name-pve-swap 0 0 0B 10 0B 0 swap 1 disk 0 dm-0 512 252:0 252 0 512 brw-rw---- 1 ├─pve-swap 0 root /dev/mapper/pve-swap 512 sda3 4096 0 0 0 1 8G running block [SWAP] [SWAP] lvm d75fe8d2-f4a5-4bb1-b6e1-75f0459945e7 0B none 0B 0B 0B 0 0 0
|
|
0 dm-name-pve-root name-pve-root 0 0 0B 11 0B 0 80.2G / 93.9G ext4 8.9G 9% 1.0 disk 0 dm-1 512 252:1 252 1 512 brw-rw---- 1 ├─pve-root 0 root /dev/mapper/pve-root 512 sda3 4096 0 0 0 1 96G running block / / lvm 8f69bbb5-3cdd-4b0b-97d0-f1c2541d8e83 0B none 0B 0B 0B 0 0 0
|
|
0 0 0 0B 12 0B 0 disk 0 dm-2 512 252:2 252 2 512 brw-rw---- 1 ├─pve-data_tmeta 0 root /dev/mapper/pve-data_tmeta 512 sda3 4096 0 0 0 1 15.9G running block lvm 0B none 0B 0B 0B 0 0 0
|
|
0 0 0 0B 14 0B 0 disk 0 dm-4 512 252:4 252 4 65536 brw-rw---- 1 │ └─pve-data 65536 root /dev/mapper/pve-data 512 dm-2 4096 0 0 0 1 1.7T running block lvm 0B none 0B 0B 0B 0 0 0
|
|
0 0 0 0B 13 0B 0 disk 0 dm-3 512 252:3 252 3 512 brw-rw---- 1 └─pve-data_tdata 0 root /dev/mapper/pve-data_tdata 512 sda3 4096 0 0 0 1 1.7T running block lvm 0B none 0B 0B 0B 0 0 0
|
|
0 0 0 0B 14 0B 0 disk 0 dm-4 512 252:4 252 4 65536 brw-rw---- 1 └─pve-data 65536 root /dev/mapper/pve-data 512 dm-3 4096 0 0 0 1 1.7T running block lvm 0B none 0B 0B 0B 0 0 0
|
|
|
|
--- blkid
|
|
$ blkid
|
|
/dev/mapper/pve-root: UUID="8f69bbb5-3cdd-4b0b-97d0-f1c2541d8e83" BLOCK_SIZE="4096" TYPE="ext4"
|
|
/dev/mapper/pve-swap: UUID="d75fe8d2-f4a5-4bb1-b6e1-75f0459945e7" TYPE="swap"
|
|
/dev/sda2: UUID="9E38-EF37" BLOCK_SIZE="512" TYPE="vfat" PARTUUID="827007c4-8d16-445e-a1b0-40fadc814747"
|
|
/dev/sda3: UUID="aBoPok-Y20Z-3hHs-Buu6-ybpQ-KwCM-fbOoLy" TYPE="LVM2_member" PARTUUID="f534b537-a35f-4721-a245-669bcd1fc02e"
|
|
/dev/sda1: PARTUUID="8d928c72-cd89-456f-9c5b-29761e8e1be6"
|
|
|
|
--- /proc/partitions
|
|
$ cat /proc/partitions
|
|
major minor #blocks name
|
|
|
|
8 0 1953481728 sda
|
|
8 1 1007 sda1
|
|
8 2 1048576 sda2
|
|
8 3 1952432111 sda3
|
|
252 0 8388608 dm-0
|
|
252 1 100663296 dm-1
|
|
252 2 16650240 dm-2
|
|
252 3 1793044480 dm-3
|
|
252 4 1793044480 dm-4
|
|
|
|
--- fdisk -l
|
|
$ fdisk -l
|
|
Disk /dev/sda: 1.82 TiB, 2000365289472 bytes, 3906963456 sectors
|
|
Disk model: My Passport 260D
|
|
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: 025E5938-0803-4136-BAE5-7DCB01E5165D
|
|
|
|
Device Start End Sectors Size Type
|
|
/dev/sda1 34 2047 2014 1007K BIOS boot
|
|
/dev/sda2 2048 2099199 2097152 1G EFI System
|
|
/dev/sda3 2099200 3906963422 3904864223 1.8T Linux LVM
|
|
|
|
|
|
Disk /dev/mapper/pve-swap: 8 GiB, 8589934592 bytes, 16777216 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/mapper/pve-root: 96 GiB, 103079215104 bytes, 201326592 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
|
|
|
|
--- parted -l
|
|
$ parted -l
|
|
/root/check.sh: line 45: parted: command not found
|
|
[exit=127 / not installed or not permitted]
|
|
|
|
--- block device queue settings (per device)
|
|
$ for d in $(ls /sys/block/ 2>/dev/null | grep -vE '^(loop|ram|md|dm-|sr|fd)'); do
|
|
q="/sys/block/$d/queue"
|
|
[ -d "$q" ] || continue
|
|
printf '----- %s -----\n' "$d"
|
|
for k in scheduler rotational nr_requests read_ahead_kb max_sectors_kb max_hw_sectors_kb \
|
|
logical_block_size physical_block_size discard_granularity discard_max_hw_bytes \
|
|
rq_affinity nomerges wbt_lat_usec write_cache stable_writes io_poll io_poll_delay \
|
|
fua rot_stable_writes add_random zoned dma_alignment iostats;
|
|
do
|
|
f="$q/$k"
|
|
[ -r "$f" ] && printf ' %-22s = %s\n' "$k" "$(cat "$f" 2>/dev/null)"
|
|
done
|
|
# NVMe-specific
|
|
for f in /sys/block/$d/device/model /sys/block/$d/device/serial /sys/block/$d/device/transport /sys/block/$d/device/queue_count; do
|
|
[ -r "$f" ] && printf ' %s = %s\n' "$(echo "$f" | sed "s|/sys/block/$d/device/||")" "$(cat "$f")"
|
|
done
|
|
done
|
|
/root/check.sh: line 62: printf: --: invalid option
|
|
printf: usage: printf [-v var] format [arguments]
|
|
scheduler = none [mq-deadline]
|
|
rotational = 1
|
|
nr_requests = 2
|
|
read_ahead_kb = 4096
|
|
max_sectors_kb = 120
|
|
max_hw_sectors_kb = 120
|
|
logical_block_size = 512
|
|
physical_block_size = 512
|
|
discard_granularity = 0
|
|
discard_max_hw_bytes = 0
|
|
rq_affinity = 1
|
|
nomerges = 0
|
|
wbt_lat_usec = 75000
|
|
write_cache = write through
|
|
stable_writes = 0
|
|
io_poll = 0
|
|
io_poll_delay = -1
|
|
fua = 0
|
|
add_random = 1
|
|
zoned = none
|
|
dma_alignment = 511
|
|
iostats = 1
|
|
model = My Passport 260D
|
|
[exit=1]
|
|
|
|
--- df -h (filesystem usage)
|
|
$ df -h
|
|
Filesystem Size Used Avail Use% Mounted on
|
|
udev 48G 0 48G 0% /dev
|
|
tmpfs 9.5G 1.9M 9.5G 1% /run
|
|
/dev/mapper/pve-root 94G 8.9G 81G 10% /
|
|
tmpfs 48G 46M 48G 1% /dev/shm
|
|
tmpfs 1.0M 0 1.0M 0% /run/credentials/systemd-journald.service
|
|
tmpfs 5.0M 0 5.0M 0% /run/lock
|
|
tmpfs 48G 24K 48G 1% /tmp
|
|
/dev/fuse 128M 20K 128M 1% /etc/pve
|
|
tmpfs 1.0M 0 1.0M 0% /run/credentials/getty@tty1.service
|
|
pfv-tsys4-nfs-stor:/mnt/tsys4/D2 2.7T 187G 2.4T 8% /mnt/pve/D2
|
|
pfv-tsys4-nfs-stor:/mnt/tsys4/D3 469G 2.0M 445G 1% /mnt/pve/D3
|
|
pfv-tsys5-nfs-stor:/mnt/pfv-tsys5/S2 916G 2.0M 870G 1% /mnt/pve/S2
|
|
pfv-tsys5-nfs-stor:/mnt/pfv-tsys5/ssd 234G 83G 140G 38% /mnt/pve/T5-SSD
|
|
pfv-tsys4-nfs-stor:/mnt/tsys4/D5 1.8T 233G 1.5T 14% /mnt/pve/D5
|
|
pfv-tsys5-nfs-stor:/mnt/pfv-tsys5/S4 458G 2.0M 435G 1% /mnt/pve/S4
|
|
pfv-tsys5-nfs-stor:/mnt/pfv-tsys5/S3 916G 2.0M 870G 1% /mnt/pve/S3
|
|
tmpfs 9.5G 4.0K 9.5G 1% /run/user/0
|
|
|
|
--- df -i (inode usage)
|
|
$ df -i
|
|
Filesystem Inodes IUsed IFree IUse% Mounted on
|
|
udev 12345286 598 12344688 1% /dev
|
|
tmpfs 12357435 1096 12356339 1% /run
|
|
/dev/mapper/pve-root 6291456 65045 6226411 2% /
|
|
tmpfs 12357435 107 12357328 1% /dev/shm
|
|
tmpfs 1024 1 1023 1% /run/credentials/systemd-journald.service
|
|
tmpfs 12357435 18 12357417 1% /run/lock
|
|
tmpfs 1048576 14 1048562 1% /tmp
|
|
/dev/fuse 262144 39 262105 1% /etc/pve
|
|
tmpfs 1024 1 1023 1% /run/credentials/getty@tty1.service
|
|
pfv-tsys4-nfs-stor:/mnt/tsys4/D2 183148544 56 183148488 1% /mnt/pve/D2
|
|
pfv-tsys4-nfs-stor:/mnt/tsys4/D3 31260672 13 31260659 1% /mnt/pve/D3
|
|
pfv-tsys5-nfs-stor:/mnt/pfv-tsys5/S2 61054976 13 61054963 1% /mnt/pve/S2
|
|
pfv-tsys5-nfs-stor:/mnt/pfv-tsys5/ssd 15630336 15 15630321 1% /mnt/pve/T5-SSD
|
|
pfv-tsys4-nfs-stor:/mnt/tsys4/D5 122101760 66 122101694 1% /mnt/pve/D5
|
|
pfv-tsys5-nfs-stor:/mnt/pfv-tsys5/S4 30531584 13 30531571 1% /mnt/pve/S4
|
|
pfv-tsys5-nfs-stor:/mnt/pfv-tsys5/S3 61054976 13 61054963 1% /mnt/pve/S3
|
|
tmpfs 2471487 26 2471461 1% /run/user/0
|
|
|
|
###############################################################################
|
|
# 15. STORAGE: MOUNTS & FILESYSTEMS
|
|
###############################################################################
|
|
|
|
--- mount (filtered)
|
|
$ mount
|
|
sysfs on /sys type sysfs (rw,nosuid,nodev,noexec,relatime)
|
|
proc on /proc type proc (rw,relatime)
|
|
udev on /dev type devtmpfs (rw,nosuid,relatime,size=49381144k,nr_inodes=12345286,mode=755,inode64)
|
|
devpts on /dev/pts type devpts (rw,nosuid,noexec,relatime,gid=5,mode=600,ptmxmode=000)
|
|
tmpfs on /run type tmpfs (rw,nosuid,nodev,noexec,relatime,size=9885948k,mode=755,inode64)
|
|
/dev/mapper/pve-root on / type ext4 (rw,relatime,errors=remount-ro)
|
|
securityfs on /sys/kernel/security type securityfs (rw,nosuid,nodev,noexec,relatime)
|
|
tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev,inode64)
|
|
cgroup2 on /sys/fs/cgroup type cgroup2 (rw,nosuid,nodev,noexec,relatime,nsdelegate,memory_recursiveprot)
|
|
none on /sys/fs/pstore type pstore (rw,nosuid,nodev,noexec,relatime)
|
|
bpf on /sys/fs/bpf type bpf (rw,nosuid,nodev,noexec,relatime,mode=700)
|
|
systemd-1 on /proc/sys/fs/binfmt_misc type autofs (rw,relatime,fd=37,pgrp=1,timeout=0,minproto=5,maxproto=5,direct,pipe_ino=6530)
|
|
tmpfs on /run/credentials/systemd-journald.service type tmpfs (ro,nosuid,nodev,noexec,relatime,nosymfollow,size=1024k,nr_inodes=1024,mode=700,inode64,noswap)
|
|
configfs on /sys/kernel/config type configfs (rw,nosuid,nodev,noexec,relatime)
|
|
tracefs on /sys/kernel/tracing type tracefs (rw,nosuid,nodev,noexec,relatime)
|
|
debugfs on /sys/kernel/debug type debugfs (rw,nosuid,nodev,noexec,relatime)
|
|
mqueue on /dev/mqueue type mqueue (rw,nosuid,nodev,noexec,relatime)
|
|
hugetlbfs on /dev/hugepages type hugetlbfs (rw,nosuid,nodev,relatime,pagesize=2M)
|
|
tmpfs on /run/lock type tmpfs (rw,nosuid,nodev,noexec,relatime,size=5120k,inode64)
|
|
fusectl on /sys/fs/fuse/connections type fusectl (rw,nosuid,nodev,noexec,relatime)
|
|
tmpfs on /tmp type tmpfs (rw,nosuid,nodev,nr_inodes=1048576,inode64)
|
|
binfmt_misc on /proc/sys/fs/binfmt_misc type binfmt_misc (rw,nosuid,nodev,noexec,relatime)
|
|
sunrpc on /run/rpc_pipefs type rpc_pipefs (rw,relatime)
|
|
lxcfs on /var/lib/lxcfs type fuse.lxcfs (rw,nosuid,nodev,relatime,user_id=0,group_id=0,allow_other)
|
|
/dev/fuse on /etc/pve type fuse (rw,nosuid,nodev,relatime,user_id=0,group_id=0,default_permissions,allow_other)
|
|
tmpfs on /run/credentials/getty@tty1.service type tmpfs (ro,nosuid,nodev,noexec,relatime,nosymfollow,size=1024k,nr_inodes=1024,mode=700,inode64,noswap)
|
|
pfv-tsys4-nfs-stor:/mnt/tsys4/D2 on /mnt/pve/D2 type nfs4 (rw,noatime,vers=4.2,rsize=1048576,wsize=1048576,namlen=255,hard,fatal_neterrors=none,proto=tcp,nconnect=4,timeo=600,retrans=2,sec=sys,clientaddr=10.100.100.6,local_lock=none,addr=10.100.100.4)
|
|
pfv-tsys4-nfs-stor:/mnt/tsys4/D3 on /mnt/pve/D3 type nfs4 (rw,noatime,vers=4.2,rsize=1048576,wsize=1048576,namlen=255,hard,fatal_neterrors=none,proto=tcp,nconnect=4,timeo=600,retrans=2,sec=sys,clientaddr=10.100.100.6,local_lock=none,addr=10.100.100.4)
|
|
pfv-tsys5-nfs-stor:/mnt/pfv-tsys5/S2 on /mnt/pve/S2 type nfs4 (rw,noatime,vers=4.2,rsize=1048576,wsize=1048576,namlen=255,hard,fatal_neterrors=none,proto=tcp,nconnect=4,timeo=600,retrans=2,sec=sys,clientaddr=10.100.100.6,local_lock=none,addr=10.100.100.5)
|
|
pfv-tsys5-nfs-stor:/mnt/pfv-tsys5/ssd on /mnt/pve/T5-SSD type nfs4 (rw,noatime,vers=4.2,rsize=1048576,wsize=1048576,namlen=255,hard,fatal_neterrors=none,proto=tcp,nconnect=4,timeo=600,retrans=2,sec=sys,clientaddr=10.100.100.6,local_lock=none,addr=10.100.100.5)
|
|
pfv-tsys4-nfs-stor:/mnt/tsys4/D5 on /mnt/pve/D5 type nfs4 (rw,noatime,vers=4.2,rsize=1048576,wsize=1048576,namlen=255,hard,fatal_neterrors=none,proto=tcp,nconnect=4,timeo=600,retrans=2,sec=sys,clientaddr=10.100.100.6,local_lock=none,addr=10.100.100.4)
|
|
pfv-tsys5-nfs-stor:/mnt/pfv-tsys5/S4 on /mnt/pve/S4 type nfs4 (rw,noatime,vers=4.2,rsize=1048576,wsize=1048576,namlen=255,hard,fatal_neterrors=none,proto=tcp,nconnect=4,timeo=600,retrans=2,sec=sys,clientaddr=10.100.100.6,local_lock=none,addr=10.100.100.5)
|
|
pfv-tsys5-nfs-stor:/mnt/pfv-tsys5/S3 on /mnt/pve/S3 type nfs4 (rw,noatime,vers=4.2,rsize=1048576,wsize=1048576,namlen=255,hard,fatal_neterrors=none,proto=tcp,nconnect=4,timeo=600,retrans=2,sec=sys,clientaddr=10.100.100.6,local_lock=none,addr=10.100.100.5)
|
|
tmpfs on /run/user/0 type tmpfs (rw,nosuid,nodev,relatime,size=9885948k,nr_inodes=2471487,mode=700,inode64)
|
|
|
|
--- findmnt (tree)
|
|
$ findmnt -t nfs,nfs4,zfs,ext4,xfs,btrfs
|
|
TARGET SOURCE FSTYPE OPTIONS
|
|
/ /dev/mapper/pve-root ext4 rw,relatime,errors=remount-ro
|
|
├─/mnt/pve/D3 pfv-tsys4-nfs-stor:/mnt/tsys4/D3 nfs4 rw,noatime,vers=4.2,rsize=1048576,wsize=1048576,namlen=255,hard,fatal_neterrors=none,proto=tcp,nconnect=4,timeo=600,retrans=2,sec=sys,clientaddr=10.100.100.6,local_lock=none,addr=10.100.100.4
|
|
├─/mnt/pve/D2 pfv-tsys4-nfs-stor:/mnt/tsys4/D2 nfs4 rw,noatime,vers=4.2,rsize=1048576,wsize=1048576,namlen=255,hard,fatal_neterrors=none,proto=tcp,nconnect=4,timeo=600,retrans=2,sec=sys,clientaddr=10.100.100.6,local_lock=none,addr=10.100.100.4
|
|
├─/mnt/pve/S2 pfv-tsys5-nfs-stor:/mnt/pfv-tsys5/S2 nfs4 rw,noatime,vers=4.2,rsize=1048576,wsize=1048576,namlen=255,hard,fatal_neterrors=none,proto=tcp,nconnect=4,timeo=600,retrans=2,sec=sys,clientaddr=10.100.100.6,local_lock=none,addr=10.100.100.5
|
|
├─/mnt/pve/T5-SSD pfv-tsys5-nfs-stor:/mnt/pfv-tsys5/ssd nfs4 rw,noatime,vers=4.2,rsize=1048576,wsize=1048576,namlen=255,hard,fatal_neterrors=none,proto=tcp,nconnect=4,timeo=600,retrans=2,sec=sys,clientaddr=10.100.100.6,local_lock=none,addr=10.100.100.5
|
|
├─/mnt/pve/D5 pfv-tsys4-nfs-stor:/mnt/tsys4/D5 nfs4 rw,noatime,vers=4.2,rsize=1048576,wsize=1048576,namlen=255,hard,fatal_neterrors=none,proto=tcp,nconnect=4,timeo=600,retrans=2,sec=sys,clientaddr=10.100.100.6,local_lock=none,addr=10.100.100.4
|
|
├─/mnt/pve/S4 pfv-tsys5-nfs-stor:/mnt/pfv-tsys5/S4 nfs4 rw,noatime,vers=4.2,rsize=1048576,wsize=1048576,namlen=255,hard,fatal_neterrors=none,proto=tcp,nconnect=4,timeo=600,retrans=2,sec=sys,clientaddr=10.100.100.6,local_lock=none,addr=10.100.100.5
|
|
└─/mnt/pve/S3 pfv-tsys5-nfs-stor:/mnt/pfv-tsys5/S3 nfs4 rw,noatime,vers=4.2,rsize=1048576,wsize=1048576,namlen=255,hard,fatal_neterrors=none,proto=tcp,nconnect=4,timeo=600,retrans=2,sec=sys,clientaddr=10.100.100.6,local_lock=none,addr=10.100.100.5
|
|
|
|
--- /etc/fstab
|
|
--- /etc/fstab ---
|
|
# <file system> <mount point> <type> <options> <dump> <pass>
|
|
/dev/pve/root / ext4 errors=remount-ro 0 1
|
|
/dev/pve/swap none swap sw 0 0
|
|
proc /proc proc defaults 0 0
|
|
|
|
--- ext4 reserved block % (per fs)
|
|
$ for dev in $(awk '$3=="ext4"{print $1}' /proc/mounts 2>/dev/null); do
|
|
echo "=== $dev ==="
|
|
dumpe2fs -h "$dev" 2>/dev/null | grep -E 'Reserved|Block count|Free blocks|Block size|Mount count|Maximum mount|Last'
|
|
done
|
|
=== /dev/mapper/pve-root ===
|
|
Last mounted on: /
|
|
Block count: 25165824
|
|
Reserved block count: 1258291
|
|
Free blocks: 22292448
|
|
Block size: 4096
|
|
Reserved GDT blocks: 1024
|
|
Last mount time: Sun Jul 26 16:18:12 2026
|
|
Last write time: Sun Jul 26 16:18:05 2026
|
|
Mount count: 16
|
|
Maximum mount count: -1
|
|
Last checked: Sat Apr 4 12:26:59 2026
|
|
Reserved blocks uid: 0 (user root)
|
|
Reserved blocks gid: 0 (group root)
|
|
|
|
--- xfs info (per fs)
|
|
$ for mp in $(awk '$3=="xfs"{print $2}' /proc/mounts 2>/dev/null); do
|
|
echo "=== $mp ==="
|
|
xfs_info "$mp" 2>/dev/null
|
|
done
|
|
|
|
###############################################################################
|
|
# 16. STORAGE: NFS (CLIENT + SERVER)
|
|
###############################################################################
|
|
|
|
--- nfsstat -m (mount options)
|
|
$ nfsstat -m
|
|
/mnt/pve/D2 from pfv-tsys4-nfs-stor:/mnt/tsys4/D2
|
|
Flags: rw,noatime,vers=4.2,rsize=1048576,wsize=1048576,namlen=255,hard,fatal_neterrors=none,proto=tcp,nconnect=4,timeo=600,retrans=2,sec=sys,clientaddr=10.100.100.6,local_lock=none,addr=10.100.100.4
|
|
|
|
/mnt/pve/D3 from pfv-tsys4-nfs-stor:/mnt/tsys4/D3
|
|
Flags: rw,noatime,vers=4.2,rsize=1048576,wsize=1048576,namlen=255,hard,fatal_neterrors=none,proto=tcp,nconnect=4,timeo=600,retrans=2,sec=sys,clientaddr=10.100.100.6,local_lock=none,addr=10.100.100.4
|
|
|
|
/mnt/pve/S2 from pfv-tsys5-nfs-stor:/mnt/pfv-tsys5/S2
|
|
Flags: rw,noatime,vers=4.2,rsize=1048576,wsize=1048576,namlen=255,hard,fatal_neterrors=none,proto=tcp,nconnect=4,timeo=600,retrans=2,sec=sys,clientaddr=10.100.100.6,local_lock=none,addr=10.100.100.5
|
|
|
|
/mnt/pve/T5-SSD from pfv-tsys5-nfs-stor:/mnt/pfv-tsys5/ssd
|
|
Flags: rw,noatime,vers=4.2,rsize=1048576,wsize=1048576,namlen=255,hard,fatal_neterrors=none,proto=tcp,nconnect=4,timeo=600,retrans=2,sec=sys,clientaddr=10.100.100.6,local_lock=none,addr=10.100.100.5
|
|
|
|
/mnt/pve/D5 from pfv-tsys4-nfs-stor:/mnt/tsys4/D5
|
|
Flags: rw,noatime,vers=4.2,rsize=1048576,wsize=1048576,namlen=255,hard,fatal_neterrors=none,proto=tcp,nconnect=4,timeo=600,retrans=2,sec=sys,clientaddr=10.100.100.6,local_lock=none,addr=10.100.100.4
|
|
|
|
/mnt/pve/S4 from pfv-tsys5-nfs-stor:/mnt/pfv-tsys5/S4
|
|
Flags: rw,noatime,vers=4.2,rsize=1048576,wsize=1048576,namlen=255,hard,fatal_neterrors=none,proto=tcp,nconnect=4,timeo=600,retrans=2,sec=sys,clientaddr=10.100.100.6,local_lock=none,addr=10.100.100.5
|
|
|
|
/mnt/pve/S3 from pfv-tsys5-nfs-stor:/mnt/pfv-tsys5/S3
|
|
Flags: rw,noatime,vers=4.2,rsize=1048576,wsize=1048576,namlen=255,hard,fatal_neterrors=none,proto=tcp,nconnect=4,timeo=600,retrans=2,sec=sys,clientaddr=10.100.100.6,local_lock=none,addr=10.100.100.5
|
|
|
|
|
|
--- nfsstat -c (client stats)
|
|
$ nfsstat -c
|
|
Client rpc stats:
|
|
calls retrans authrefrsh
|
|
17721 0 17726
|
|
|
|
Client nfs v4:
|
|
null read write commit open
|
|
3 0% 13046 73% 3779 21% 224 1% 0 0%
|
|
open_conf open_noat open_dgrd close setattr
|
|
0 0% 5 0% 0 0% 0 0% 0 0%
|
|
fsinfo renew setclntid confirm lock
|
|
28 0% 0 0% 0 0% 0 0% 0 0%
|
|
lockt locku access getattr lookup
|
|
0 0% 0 0% 38 0% 114 0% 58 0%
|
|
lookup_root remove rename link symlink
|
|
7 0% 0 0% 0 0% 0 0% 0 0%
|
|
create pathconf statfs readlink readdir
|
|
0 0% 28 0% 316 1% 0 0% 0 0%
|
|
server_caps delegreturn getacl setacl fs_locations
|
|
56 0% 2 0% 0 0% 0 0% 0 0%
|
|
rel_lkowner secinfo fsid_present exchange_id create_session
|
|
0 0% 0 0% 0 0% 4 0% 2 0%
|
|
destroy_session sequence get_lease_time reclaim_comp layoutget
|
|
0 0% 1 0% 0 0% 2 0% 0 0%
|
|
getdevinfo layoutcommit layoutreturn secinfo_no test_stateid
|
|
0 0% 0 0% 0 0% 7 0% 0 0%
|
|
free_stateid getdevicelist bind_conn_to_ses destroy_clientid seek
|
|
0 0% 0 0% 0 0% 0 0% 0 0%
|
|
allocate deallocate layoutstats clone
|
|
0 0% 0 0% 0 0% 0 0%
|
|
|
|
|
|
--- nfsstat -s (server stats)
|
|
$ nfsstat -s
|
|
Error: No Server Stats (/proc/net/rpc/nfsd: No such file or directory).
|
|
[exit=2 / not installed or not permitted]
|
|
|
|
--- nfsstat -234 (version stats)
|
|
$ nfsstat -234
|
|
Client rpc stats:
|
|
calls retrans authrefrsh
|
|
17721 0 17726
|
|
|
|
Client nfs v2:
|
|
null getattr setattr root lookup
|
|
0 0% 0 0% 0 0% 0 0% 0 0%
|
|
readlink read wrcache write create
|
|
0 0% 0 0% 0 0% 0 0% 0 0%
|
|
remove rename link symlink mkdir
|
|
0 0% 0 0% 0 0% 0 0% 0 0%
|
|
rmdir readdir fsstat
|
|
0 0% 0 0% 0 0%
|
|
|
|
Client nfs v3:
|
|
null getattr setattr lookup access
|
|
0 0% 0 0% 0 0% 0 0% 0 0%
|
|
readlink read write create mkdir
|
|
0 0% 0 0% 0 0% 0 0% 0 0%
|
|
symlink mknod remove rmdir rename
|
|
0 0% 0 0% 0 0% 0 0% 0 0%
|
|
link readdir readdirplus fsstat fsinfo
|
|
0 0% 0 0% 0 0% 0 0% 0 0%
|
|
pathconf commit
|
|
0 0% 0 0%
|
|
|
|
Client nfs v4:
|
|
null read write commit open
|
|
3 0% 13046 73% 3779 21% 224 1% 0 0%
|
|
open_conf open_noat open_dgrd close setattr
|
|
0 0% 5 0% 0 0% 0 0% 0 0%
|
|
fsinfo renew setclntid confirm lock
|
|
28 0% 0 0% 0 0% 0 0% 0 0%
|
|
lockt locku access getattr lookup
|
|
0 0% 0 0% 38 0% 114 0% 58 0%
|
|
lookup_root remove rename link symlink
|
|
7 0% 0 0% 0 0% 0 0% 0 0%
|
|
create pathconf statfs readlink readdir
|
|
0 0% 28 0% 316 1% 0 0% 0 0%
|
|
server_caps delegreturn getacl setacl fs_locations
|
|
56 0% 2 0% 0 0% 0 0% 0 0%
|
|
rel_lkowner secinfo fsid_present exchange_id create_session
|
|
0 0% 0 0% 0 0% 4 0% 2 0%
|
|
destroy_session sequence get_lease_time reclaim_comp layoutget
|
|
0 0% 1 0% 0 0% 2 0% 0 0%
|
|
getdevinfo layoutcommit layoutreturn secinfo_no test_stateid
|
|
0 0% 0 0% 0 0% 7 0% 0 0%
|
|
free_stateid getdevicelist bind_conn_to_ses destroy_clientid seek
|
|
0 0% 0 0% 0 0% 0 0% 0 0%
|
|
allocate deallocate layoutstats clone
|
|
0 0% 0 0% 0 0% 0 0%
|
|
|
|
|
|
--- showmount -e (exports)
|
|
$ showmount -e
|
|
clnt_create: RPC: Timed out
|
|
[exit=1 / not installed or not permitted]
|
|
|
|
--- /proc/net/rpc/nfs
|
|
$ cat /proc/net/rpc/nfs
|
|
net 0 0 0 0
|
|
rpc 18697 0 18705
|
|
proc4 71 3 13046 4539 267 0 0 5 0 0 0 28 0 0 0 0 0 0 38 155 58 7 0 0 0 0 0 28 449 0 0 56 2 0 0 0 0 0 0 4 2 0 1 0 2 0 0 0 0 7 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
|
|
|
--- /proc/net/rpc/nfsd
|
|
$ cat /proc/net/rpc/nfsd
|
|
cat: /proc/net/rpc/nfsd: No such file or directory
|
|
[exit=1 / not installed or not permitted]
|
|
|
|
--- exports
|
|
[missing: /etc/exports]
|
|
[missing: /etc/exports.d/*.exports]
|
|
|
|
--- nfs.conf
|
|
--- /etc/nfs.conf ---
|
|
#
|
|
# This is a general configuration for the
|
|
# NFS daemons and tools
|
|
#
|
|
[general]
|
|
pipefs-directory=/run/rpc_pipefs
|
|
#
|
|
[nfsrahead]
|
|
# nfs=15000
|
|
# nfs4=16000
|
|
#
|
|
[exports]
|
|
# rootdir=/export
|
|
#
|
|
[exportfs]
|
|
# debug=0
|
|
#
|
|
[gssd]
|
|
# verbosity=0
|
|
# rpc-verbosity=0
|
|
# use-memcache=0
|
|
# use-machine-creds=1
|
|
# use-gss-proxy=0
|
|
# avoid-dns=1
|
|
# limit-to-legacy-enctypes=0
|
|
# allowed-enctypes=aes256-cts-hmac-sha384-192,aes128-cts-hmac-sha256-128,camellia256-cts-cmac,camellia128-cts-cmac,aes256-cts-hmac-sha1-96,aes128-cts-hmac-sha1-96
|
|
# context-timeout=0
|
|
# rpc-timeout=5
|
|
# keytab-file=/etc/krb5.keytab
|
|
# cred-cache-directory=
|
|
# preferred-realm=
|
|
# set-home=1
|
|
# upcall-timeout=30
|
|
# cancel-timed-out-upcalls=0
|
|
#
|
|
[lockd]
|
|
# port=0
|
|
# udp-port=0
|
|
#
|
|
[exportd]
|
|
# debug="all|auth|call|general|parse"
|
|
# manage-gids=n
|
|
# state-directory-path=/var/lib/nfs
|
|
# threads=1
|
|
# cache-use-ipaddr=n
|
|
# ttl=1800
|
|
[mountd]
|
|
# debug="all|auth|call|general|parse"
|
|
manage-gids=y
|
|
# descriptors=0
|
|
# port=0
|
|
# threads=1
|
|
# reverse-lookup=n
|
|
# state-directory-path=/var/lib/nfs
|
|
# ha-callout=
|
|
# cache-use-ipaddr=n
|
|
# ttl=1800
|
|
#
|
|
[nfsdcld]
|
|
# debug=0
|
|
# storagedir=/var/lib/nfs/nfsdcld
|
|
#
|
|
[nfsd]
|
|
# debug=0
|
|
# threads=16
|
|
# host=
|
|
# port=0
|
|
# grace-time=90
|
|
# lease-time=90
|
|
# udp=n
|
|
# tcp=y
|
|
# vers3=y
|
|
# vers4=y
|
|
# vers4.0=y
|
|
# vers4.1=y
|
|
# vers4.2=y
|
|
# rdma=n
|
|
# rdma-port=20049
|
|
|
|
[statd]
|
|
# debug=0
|
|
# port=0
|
|
# outgoing-port=0
|
|
# name=
|
|
# state-directory-path=/var/lib/nfs/statd
|
|
# ha-callout=
|
|
# no-notify=0
|
|
#
|
|
[sm-notify]
|
|
# debug=0
|
|
# force=0
|
|
# retry-time=900
|
|
# outgoing-port=
|
|
# outgoing-addr=
|
|
# lift-grace=y
|
|
#
|
|
[svcgssd]
|
|
# principal=
|
|
[missing: /etc/nfs.conf.d/*.conf]
|
|
|
|
--- nfs defaults
|
|
[missing: /etc/default/nfs-kernel-server]
|
|
--- /etc/default/nfs-common ---
|
|
# If you do not set values for the NEED_ options, they will be attempted
|
|
# autodetected; this should be sufficient for most people. Valid alternatives
|
|
# for the NEED_ options are "yes" and "no".
|
|
|
|
# Do you want to start the statd daemon? It is not needed for NFSv4.
|
|
NEED_STATD=
|
|
|
|
# Do you want to start the idmapd daemon? It is only needed for NFSv4.
|
|
NEED_IDMAPD=
|
|
|
|
# Do you want to start the gssd daemon? It is required for Kerberos mounts.
|
|
NEED_GSSD=
|
|
|
|
--- idmapd.conf
|
|
--- /etc/idmapd.conf ---
|
|
[General]
|
|
|
|
Verbosity = 0
|
|
# set your own domain here, if it differs from FQDN minus hostname
|
|
# Domain = localdomain
|
|
|
|
[Mapping]
|
|
|
|
Nobody-User = nobody
|
|
Nobody-Group = nogroup
|
|
|
|
--- pvesm status
|
|
$ pvesm status
|
|
Name Type Status Total (KiB) Used (KiB) Available (KiB) %
|
|
D2 nfs active 2883130368 195840000 2540761088 6.79%
|
|
D3 nfs active 491133952 2048 466110464 0.00%
|
|
D5 nfs active 1921726464 244210688 1579823104 12.71%
|
|
S2 nfs active 960304128 2048 911448064 0.00%
|
|
S3 nfs active 960304128 2048 911448064 0.00%
|
|
S4 nfs active 479597568 2048 455159808 0.00%
|
|
T5-SSD nfs active 245023744 86468608 146035712 35.29%
|
|
local dir active 98497780 9337284 84110948 9.48%
|
|
local-lvm lvmthin active 1793044480 0 1793044480 0.00%
|
|
|
|
--- pvesm list per storage
|
|
$ for s in $(pvesm status 2>/dev/null | awk 'NR>1 && $3=="active"{print $1}'); do
|
|
echo "--- storage: $s ---"
|
|
pvesm list "$s" 2>/dev/null | head -n 30
|
|
echo "--- pvesm config $s ---"
|
|
pvesm config "$s" 2>/dev/null
|
|
done
|
|
--- storage: D2 ---
|
|
Volid Format Type Size VMID
|
|
D2:100/vm-100-disk-0.raw raw images 34359738368 100
|
|
D2:100/vm-100-disk-1.raw raw images 540672 100
|
|
D2:101/vm-101-disk-0.qcow2 qcow2 images 34359738368 101
|
|
D2:104/vm-104-disk-0.qcow2 qcow2 images 53687091200 104
|
|
D2:105/vm-105-disk-0.qcow2 qcow2 images 34359738368 105
|
|
D2:106/vm-106-disk-0.qcow2 qcow2 images 34359738368 106
|
|
D2:108/vm-108-disk-0.qcow2 qcow2 images 34359738368 108
|
|
D2:109/vm-109-disk-0.qcow2 qcow2 images 26843545600 109
|
|
D2:114/vm-114-disk-0.qcow2 qcow2 images 34359738368 114
|
|
D2:117/vm-117-disk-0.qcow2 qcow2 images 34359738368 117
|
|
D2:3000/base-3000-disk-0.qcow2 qcow2 images 34359738368 3000
|
|
D2:500/vm-500-disk-0.qcow2 qcow2 images 540672 500
|
|
D2:509/vm-509-disk-0.qcow2 qcow2 images 34359738368 509
|
|
D2:600/vm-600-disk-1.qcow2 qcow2 images 34359738368 600
|
|
D2:601/vm-601-disk-0.qcow2 qcow2 images 34359738368 601
|
|
D2:603/vm-603-disk-0.qcow2 qcow2 images 34359738368 603
|
|
D2:702/vm-702-disk-0.qcow2 qcow2 images 107374182400 702
|
|
D2:703/vm-703-disk-0.qcow2 qcow2 images 34359738368 703
|
|
D2:704/vm-704-disk-0.qcow2 qcow2 images 34359738368 704
|
|
D2:901/vm-901-disk-0.qcow2 qcow2 images 141733920768 901
|
|
D2:904/vm-904-disk-0.qcow2 qcow2 images 34359738368 904
|
|
--- pvesm config D2 ---
|
|
--- storage: D3 ---
|
|
Volid Format Type Size VMID
|
|
--- pvesm config D3 ---
|
|
--- storage: D5 ---
|
|
Volid Format Type Size VMID
|
|
D5:100/vm-100-disk-0.qcow2 qcow2 images 34359738368 100
|
|
D5:103/vm-103-disk-0.qcow2 qcow2 images 34359738368 103
|
|
D5:107/vm-107-disk-0.qcow2 qcow2 images 34359738368 107
|
|
D5:313/vm-313-disk-0.qcow2 qcow2 images 34359738368 313
|
|
D5:530/vm-101-disk-0.qcow2 qcow2 images 34359738368 530
|
|
D5:531/vm-103-disk-0.qcow2 qcow2 images 34359738368 531
|
|
D5:532/vm-102-disk-0.qcow2 qcow2 images 34359738368 532
|
|
D5:533/vm-103-disk-0.qcow2 qcow2 images 34359738368 533
|
|
D5:534/vm-104-disk-0.qcow2 qcow2 images 34359738368 534
|
|
D5:535/vm-105-disk-0.qcow2 qcow2 images 34359738368 535
|
|
D5:536/vm-106-disk-0.qcow2 qcow2 images 34359738368 536
|
|
D5:537/vm-800-disk-0.qcow2 qcow2 images 34359738368 537
|
|
D5:538/vm-812-disk-0.qcow2 qcow2 images 540672 538
|
|
D5:538/vm-812-disk-2.raw raw images 429496729600 538
|
|
D5:541/vm-109-disk-0.qcow2 qcow2 images 34359738368 541
|
|
D5:602/vm-602-disk-0.qcow2 qcow2 images 34359738368 602
|
|
D5:701/vm-701-disk-0.qcow2 qcow2 images 34359738368 701
|
|
D5:902/vm-902-disk-0.qcow2 qcow2 images 53687091200 902
|
|
D5:903/vm-903-disk-0.qcow2 qcow2 images 34359738368 903
|
|
--- pvesm config D5 ---
|
|
--- storage: S2 ---
|
|
Volid Format Type Size VMID
|
|
--- pvesm config S2 ---
|
|
--- storage: S3 ---
|
|
Volid Format Type Size VMID
|
|
--- pvesm config S3 ---
|
|
--- storage: S4 ---
|
|
Volid Format Type Size VMID
|
|
--- pvesm config S4 ---
|
|
--- storage: T5-SSD ---
|
|
Volid Format Type Size VMID
|
|
T5-SSD:5111/vm-5111-disk-0.qcow2 qcow2 images 309237645312 5111
|
|
--- pvesm config T5-SSD ---
|
|
--- storage: local ---
|
|
Volid Format Type Size VMID
|
|
local:iso/debian.iso iso iso 791674880
|
|
--- pvesm config local ---
|
|
--- storage: local-lvm ---
|
|
Volid Format Type Size VMID
|
|
--- pvesm config local-lvm ---
|
|
[exit=255]
|
|
|
|
###############################################################################
|
|
# 17. STORAGE: LVM
|
|
###############################################################################
|
|
|
|
--- pvs
|
|
$ pvs -v
|
|
PV VG Fmt Attr PSize PFree DevSize PV UUID
|
|
/dev/sda3 pve lvm2 a-- <1.82t 16.24g <1.82t aBoPok-Y20Z-3hHs-Buu6-ybpQ-KwCM-fbOoLy
|
|
|
|
--- vgs
|
|
$ vgs -v
|
|
VG Attr Ext #PV #LV #SN VSize VFree VG UUID VProfile
|
|
pve wz--n- 4.00m 1 3 0 <1.82t 16.24g VLhH9x-Y3yB-zA1O-LhK8-fOtL-oW3X-8xjxcq
|
|
|
|
--- lvs
|
|
$ lvs -o +lv_layout,role,pool_lv,data_percent,metadata_percent --units b
|
|
LV VG Attr LSize Pool Origin Data% Meta% Move Log Cpy%Sync Convert Layout Role Pool Data% Meta%
|
|
data pve twi-a-tz-- 1836077547520B 0.00 0.15 thin,pool private 0.00 0.15
|
|
root pve -wi-ao---- 103079215104B linear public
|
|
swap pve -wi-ao---- 8589934592B linear public
|
|
|
|
--- pvdisplay
|
|
$ pvdisplay
|
|
--- Physical volume ---
|
|
PV Name /dev/sda3
|
|
VG Name pve
|
|
PV Size <1.82 TiB / not usable 3.98 MiB
|
|
Allocatable yes
|
|
PE Size 4.00 MiB
|
|
Total PE 476667
|
|
Free PE 4158
|
|
Allocated PE 472509
|
|
PV UUID aBoPok-Y20Z-3hHs-Buu6-ybpQ-KwCM-fbOoLy
|
|
|
|
|
|
--- vgdisplay
|
|
$ vgdisplay
|
|
--- Volume group ---
|
|
VG Name pve
|
|
System ID
|
|
Format lvm2
|
|
Metadata Areas 1
|
|
Metadata Sequence No 7
|
|
VG Access read/write
|
|
VG Status resizable
|
|
MAX LV 0
|
|
Cur LV 3
|
|
Open LV 2
|
|
Max PV 0
|
|
Cur PV 1
|
|
Act PV 1
|
|
VG Size <1.82 TiB
|
|
PE Size 4.00 MiB
|
|
Total PE 476667
|
|
Alloc PE / Size 472509 / 1.80 TiB
|
|
Free PE / Size 4158 / 16.24 GiB
|
|
VG UUID VLhH9x-Y3yB-zA1O-LhK8-fOtL-oW3X-8xjxcq
|
|
|
|
|
|
--- lvdisplay
|
|
$ lvdisplay
|
|
--- Logical volume ---
|
|
LV Name data
|
|
VG Name pve
|
|
LV UUID A2o3em-JGs9-FRfH-vqsz-yVy7-XucO-CeWKPW
|
|
LV Write Access read/write
|
|
LV Creation host, time proxmox, 2026-04-04 12:08:10 -0500
|
|
LV Pool metadata data_tmeta
|
|
LV Pool data data_tdata
|
|
LV Status available
|
|
# open 0
|
|
LV Size <1.67 TiB
|
|
Allocated pool data 0.00%
|
|
Allocated metadata 0.15%
|
|
Current LE 437755
|
|
Segments 1
|
|
Allocation inherit
|
|
Read ahead sectors auto
|
|
- currently set to 8192
|
|
Block device 252:4
|
|
|
|
--- Logical volume ---
|
|
LV Path /dev/pve/swap
|
|
LV Name swap
|
|
VG Name pve
|
|
LV UUID A1dQoM-c3cN-o10U-aTrf-E6xE-9qlY-qvi56O
|
|
LV Write Access read/write
|
|
LV Creation host, time proxmox, 2026-04-04 12:08:09 -0500
|
|
LV Status available
|
|
# open 1
|
|
LV Size 8.00 GiB
|
|
Current LE 2048
|
|
Segments 1
|
|
Allocation inherit
|
|
Read ahead sectors auto
|
|
- currently set to 8192
|
|
Block device 252:0
|
|
|
|
--- Logical volume ---
|
|
LV Path /dev/pve/root
|
|
LV Name root
|
|
VG Name pve
|
|
LV UUID BcScYG-321V-uPMn-mVoW-g7hS-ln1B-0uOD3j
|
|
LV Write Access read/write
|
|
LV Creation host, time proxmox, 2026-04-04 12:08:10 -0500
|
|
LV Status available
|
|
# open 1
|
|
LV Size 96.00 GiB
|
|
Current LE 24576
|
|
Segments 1
|
|
Allocation inherit
|
|
Read ahead sectors auto
|
|
- currently set to 8192
|
|
Block device 252:1
|
|
|
|
|
|
--- lvm/lvm.conf (filters only)
|
|
--- /etc/lvm/lvm.conf ---
|
|
# This is an example configuration file for the LVM2 system.
|
|
# It contains the default settings that would be used if there was no
|
|
# /etc/lvm/lvm.conf file.
|
|
#
|
|
# Refer to 'man lvm.conf' for further information including the file layout.
|
|
#
|
|
# Refer to 'man lvm.conf' for information about how settings configured in
|
|
# this file are combined with built-in values and command line options to
|
|
# arrive at the final values used by LVM.
|
|
#
|
|
# Refer to 'man lvmconfig' for information about displaying the built-in
|
|
# and configured values used by LVM.
|
|
#
|
|
# If a default value is set in this file (not commented out), then a
|
|
# new version of LVM using this file will continue using that value,
|
|
# even if the new version of LVM changes the built-in default value.
|
|
#
|
|
# To put this file in a different directory and override /etc/lvm set
|
|
# the environment variable LVM_SYSTEM_DIR before running the tools.
|
|
#
|
|
# N.B. Take care that each setting only appears once if uncommenting
|
|
# example settings in this file.
|
|
|
|
|
|
# Configuration section config.
|
|
# How LVM configuration settings are handled.
|
|
config {
|
|
|
|
# Configuration option config/checks.
|
|
# If enabled, any LVM configuration mismatch is reported.
|
|
# This implies checking that the configuration key is understood by
|
|
# LVM and that the value of the key is the proper type. If disabled,
|
|
# any configuration mismatch is ignored and the default value is used
|
|
# without any warning (a message about the configuration key not being
|
|
# found is issued in verbose mode only).
|
|
# This configuration option has an automatic default value.
|
|
# checks = 1
|
|
|
|
# Configuration option config/validate_metadata.
|
|
# Allows to select the level of validation after metadata transformation.
|
|
# Validation takes extra CPU time to verify internal consistency.
|
|
# Accepted values:
|
|
# full
|
|
# Do a full metadata validation before disk write.
|
|
# none
|
|
# Skip any checks (unrecommended, slightly faster).
|
|
#
|
|
# This configuration option is advanced.
|
|
# This configuration option has an automatic default value.
|
|
# validate_metadata = "full"
|
|
|
|
# Configuration option config/abort_on_errors.
|
|
# Abort the LVM process if a configuration mismatch is found.
|
|
# This configuration option has an automatic default value.
|
|
# abort_on_errors = 0
|
|
|
|
# Configuration option config/profile_dir.
|
|
# Directory where LVM looks for configuration profiles.
|
|
# This configuration option has an automatic default value.
|
|
# profile_dir = "/etc/lvm/profile"
|
|
}
|
|
|
|
# Configuration section devices.
|
|
# How LVM uses block devices.
|
|
devices {
|
|
|
|
# Configuration option devices/dir.
|
|
# Directory in which to create volume group device nodes.
|
|
# Commands also accept this as a prefix on volume group names.
|
|
# This configuration option is advanced.
|
|
# This configuration option has an automatic default value.
|
|
# dir = "/dev"
|
|
|
|
# Configuration option devices/scan.
|
|
# Directories containing device nodes to use with LVM.
|
|
# This configuration option is advanced.
|
|
# This configuration option has an automatic default value.
|
|
# scan = [ "/dev" ]
|
|
|
|
# Configuration option devices/obtain_device_list_from_udev.
|
|
# Obtain the list of available devices from udev.
|
|
# This avoids opening or using any inapplicable non-block devices or
|
|
# subdirectories found in the udev directory. Any device node or
|
|
# symlink not managed by udev in the udev directory is ignored. This
|
|
# setting applies only to the udev-managed device directory; other
|
|
# directories will be scanned fully. LVM needs to be compiled with
|
|
# udev support for this setting to apply.
|
|
# This configuration option has an automatic default value.
|
|
# obtain_device_list_from_udev = 0
|
|
|
|
# Configuration option devices/external_device_info_source.
|
|
# Enable device information from udev.
|
|
# If set to "udev", lvm will supplement its own native device information
|
|
# with information from libudev. This can potentially improve the detection
|
|
# of MD component devices and multipath component devices.
|
|
# This configuration option has an automatic default value.
|
|
# external_device_info_source = "none"
|
|
|
|
# Configuration option devices/hints.
|
|
# Use a local file to remember which devices have PVs on them.
|
|
# Some commands will use this as an optimization to reduce device
|
|
# scanning, and will only scan the listed PVs. Removing the hint file
|
|
# will cause lvm to generate a new one. Disable hints if PVs will
|
|
# be copied onto devices using non-lvm commands, like dd.
|
|
#
|
|
# Accepted values:
|
|
# all
|
|
# Use all hints.
|
|
# none
|
|
# Use no hints.
|
|
#
|
|
# This configuration option has an automatic default value.
|
|
# hints = "all"
|
|
|
|
# Configuration option devices/preferred_names.
|
|
# Select which path name to display for a block device.
|
|
# If multiple path names exist for a block device, and LVM needs to
|
|
# display a name for the device, the path names are matched against
|
|
# each item in this list of regular expressions. The first match is
|
|
# used. Try to avoid using undescriptive /dev/dm-N names, if present.
|
|
# If no preferred name matches, or if preferred_names are not defined,
|
|
# the following built-in preferences are applied in order until one
|
|
# produces a preferred name:
|
|
# Prefer names with path prefixes in the order of:
|
|
# /dev/mapper, /dev/disk, /dev/dm-*, /dev/block.
|
|
# Prefer the name with the least number of slashes.
|
|
# Prefer a name that is a symlink.
|
|
# Prefer the path with least value in lexicographical order.
|
|
#
|
|
# Example
|
|
# preferred_names = [ "^/dev/mpath/", "^/dev/mapper/mpath", "^/dev/[hs]d" ]
|
|
#
|
|
# This configuration option does not have a default value defined.
|
|
|
|
# Configuration option devices/use_devicesfile.
|
|
# Enable or disable the use of a devices file.
|
|
# When enabled, lvm will only use devices that
|
|
# are listed in the devices file. A devices file will
|
|
# be used, regardless of this setting, when the --devicesfile
|
|
# option is set to a specific file name.
|
|
# This configuration option has an automatic default value.
|
|
# use_devicesfile = 0
|
|
|
|
# Configuration option devices/devicesfile.
|
|
# The name of the system devices file, listing devices that LVM should use.
|
|
# This should not be used to select a non-system devices file.
|
|
# The --devicesfile option is intended for alternative devices files.
|
|
# This configuration option has an automatic default value.
|
|
# devicesfile = "system.devices"
|
|
|
|
# Configuration option devices/devicesfile_backup_limit.
|
|
# The max number of backup files to keep in /etc/lvm/devices/backup.
|
|
# LVM creates a backup of the devices file each time a new
|
|
# version is created, or each time a modification is detected.
|
|
# When the max number of backups is reached, the oldest are
|
|
# removed to remain at the limit. Set to 0 to disable backups.
|
|
# Only the system devices file is backed up.
|
|
# This configuration option has an automatic default value.
|
|
# devicesfile_backup_limit = 50
|
|
|
|
# Configuration option devices/search_for_devnames.
|
|
# Look outside of the devices file for missing devname entries.
|
|
# A devname entry is used for a device that does not have a stable
|
|
# device id, e.g. wwid, so the unstable device name is used as
|
|
# the device id. After reboot, or if the device is reattached,
|
|
# the device name may change, in which case lvm will not find
|
|
# the expected PV on the device listed in the devices file.
|
|
# This setting controls whether lvm will search other devices,
|
|
# outside the devices file, to look for the missing PV on a
|
|
# renamed device. If "none", lvm will not look at other devices,
|
|
# and the PV may appear to be missing. If "auto", lvm will look
|
|
# at other devices, but only those that are likely to have the PV.
|
|
# If "all", lvm will look at all devices on the system.
|
|
# This configuration option has an automatic default value.
|
|
# search_for_devnames = "all"
|
|
|
|
# Configuration option devices/device_ids_refresh.
|
|
# Find PVs on new devices and update the device IDs in the devices file.
|
|
# If PVs are restored or moved to a new system with new devices, but
|
|
# an old system.devices remains with old device IDs, then search for
|
|
# the PVIDs on new devices and update the device IDs in system.devices.
|
|
# The original device IDs must also not be found on the new system.
|
|
# See device_ids_refresh_check for conditions that trigger the refresh.
|
|
# This configuration option has an automatic default value.
|
|
# device_ids_refresh = 1
|
|
|
|
# Configuration option devices/device_ids_refresh_checks.
|
|
# Conditions that trigger device_ids_refresh to locate PVIDs on new devices.
|
|
# product_uuid: refresh if /sys/devices/virtual/dmi/id/product_uuid does not
|
|
# match the value saved in system.devices.
|
|
# hostname: refresh if hostname does not match the value saved in system.devices.
|
|
# (hostname is used if product_uuid is not available.)
|
|
# Remove values from this list to prevent lvm from using them.
|
|
# This configuration option has an automatic default value.
|
|
# device_ids_refresh_checks = [ "product_uuid", "hostname" ]
|
|
|
|
# Configuration option devices/filter.
|
|
# Limit the block devices that are used by LVM commands.
|
|
# This is a list of regular expressions used to accept or reject block
|
|
# device path names. Each regex is delimited by a vertical bar '|'
|
|
# (or any character) and is preceded by 'a' to accept the path, or
|
|
# by 'r' to reject the path. The first regex in the list to match the
|
|
# path is used, producing the 'a' or 'r' result for the device.
|
|
# When multiple path names exist for a block device, if any path name
|
|
# matches an 'a' pattern before an 'r' pattern, then the device is
|
|
# accepted. If all the path names match an 'r' pattern first, then the
|
|
# device is rejected. Unmatching path names do not affect the accept
|
|
# or reject decision. If no path names for a device match a pattern,
|
|
# then the device is accepted. Be careful mixing 'a' and 'r' patterns,
|
|
# as the combination might produce unexpected results (test changes.)
|
|
# Run vgscan after changing the filter to regenerate the cache.
|
|
#
|
|
# Example
|
|
# Accept every block device:
|
|
# filter = [ "a|.*|" ]
|
|
# Reject the cdrom drive:
|
|
# filter = [ "r|/dev/cdrom|" ]
|
|
# Work with just loopback devices, e.g. for testing:
|
|
# filter = [ "a|loop|", "r|.*|" ]
|
|
# Accept all loop devices and ide drives except hdc:
|
|
# filter = [ "a|loop|", "r|/dev/hdc|", "a|/dev/ide|", "r|.*|" ]
|
|
# Use anchors to be very specific:
|
|
# filter = [ "a|^/dev/hda8$|", "r|.*|" ]
|
|
#
|
|
# This configuration option has an automatic default value.
|
|
# filter = [ "a|.*|" ]
|
|
|
|
# Configuration option devices/global_filter.
|
|
# Limit the block devices that are used by LVM system components.
|
|
# Because devices/filter may be overridden from the command line, it is
|
|
# not suitable for system-wide device filtering, e.g. udev.
|
|
# Use global_filter to hide devices from these LVM system components.
|
|
# The syntax is the same as devices/filter. Devices rejected by
|
|
# global_filter are not opened by LVM.
|
|
# This configuration option has an automatic default value.
|
|
# global_filter = [ "a|.*|" ]
|
|
|
|
# Configuration option devices/types.
|
|
# List of additional acceptable block device types.
|
|
# These are of device type names from /proc/devices, followed by the
|
|
# maximum number of partitions.
|
|
#
|
|
# Example
|
|
# types = [ "fd", 16 ]
|
|
#
|
|
# This configuration option is advanced.
|
|
# This configuration option does not have a default value defined.
|
|
|
|
# Configuration option devices/sysfs_scan.
|
|
# Restrict device scanning to block devices appearing in sysfs.
|
|
# This is a quick way of filtering out block devices that are not
|
|
# present on the system. sysfs must be part of the kernel and mounted.)
|
|
# This configuration option has an automatic default value.
|
|
# sysfs_scan = 1
|
|
|
|
# Configuration option devices/scan_lvs.
|
|
# Allow LVM LVs to be used as PVs. When enabled, LVM commands will
|
|
# scan active LVs to look for other PVs. Caution is required to
|
|
# avoid using PVs that belong to guest images stored on LVs.
|
|
# When enabled, the LVs scanned should be restricted using the
|
|
# devices file or the filter. This option does not enable autoactivation
|
|
# of layered VGs, which requires editing LVM udev rules (see LVM_PVSCAN_ON_LVS.)
|
|
# This configuration option has an automatic default value.
|
|
# scan_lvs = 0
|
|
|
|
# Configuration option devices/multipath_component_detection.
|
|
# Ignore devices that are components of DM multipath devices.
|
|
# This configuration option has an automatic default value.
|
|
# multipath_component_detection = 1
|
|
|
|
# Configuration option devices/multipath_wwids_file.
|
|
# The path to the multipath wwids file used for multipath component detection.
|
|
# Set this to an empty string to disable the use of the multipath wwids file.
|
|
# This configuration option has an automatic default value.
|
|
# multipath_wwids_file = "/etc/multipath/wwids"
|
|
|
|
# Configuration option devices/md_component_detection.
|
|
# Enable detection and exclusion of MD component devices.
|
|
# An MD component device is a block device that MD uses as part
|
|
# of a software RAID virtual device. When an LVM PV is created
|
|
# on an MD device, LVM must only use the top level MD device as
|
|
# the PV, and should ignore the underlying component devices.
|
|
# In cases where the MD superblock is located at the end of the
|
|
# component devices, it is more difficult for LVM to consistently
|
|
# identify an MD component, see the md_component_checks setting.
|
|
# This configuration option has an automatic default value.
|
|
# md_component_detection = 1
|
|
|
|
# Configuration option devices/md_component_checks.
|
|
# The checks LVM should use to detect MD component devices.
|
|
# MD component devices are block devices used by MD software RAID.
|
|
#
|
|
# Accepted values:
|
|
# auto
|
|
# LVM will skip scanning the end of devices when it has other
|
|
# indications that the device is not an MD component.
|
|
# start
|
|
# LVM will only scan the start of devices for MD superblocks.
|
|
# This does not incur extra I/O by LVM.
|
|
# full
|
|
|
|
--- lvm.conf active filter
|
|
$ grep -E '^\s*(filter|global_filter|use_devicesfile|obtain_device_list_from_udev)' /etc/lvm/lvm.conf 2>/dev/null
|
|
global_filter=["r|/dev/zd.*|","r|/dev/rbd.*|"]
|
|
|
|
###############################################################################
|
|
# 18. STORAGE: MULTIPATH
|
|
###############################################################################
|
|
|
|
--- multipath -ll
|
|
$ multipath -ll
|
|
/root/check.sh: line 45: multipath: command not found
|
|
[exit=127 / not installed or not permitted]
|
|
|
|
--- multipath -v3 -ll (verbose, capped)
|
|
$ multipath -v3 -ll
|
|
/root/check.sh: line 45: multipath: command not found
|
|
[exit=127 / not installed or not permitted]
|
|
|
|
--- multipath.conf
|
|
[missing: /etc/multipath.conf]
|
|
|
|
--- systemctl is-active multipathd
|
|
$ systemctl is-active multipathd
|
|
inactive
|
|
[exit=4 / not installed or not permitted]
|
|
|
|
###############################################################################
|
|
# 19. STORAGE: ZFS
|
|
###############################################################################
|
|
|
|
--- zfs version (userland)
|
|
$ zfs version
|
|
zfs-2.3.4-pve1
|
|
zfs-kmod-2.3.4-pve1
|
|
|
|
--- zpool version
|
|
$ zpool version
|
|
zfs-2.3.4-pve1
|
|
zfs-kmod-2.3.4-pve1
|
|
|
|
--- zpool list -v
|
|
$ zpool list -v
|
|
no pools available
|
|
|
|
--- zpool status -v
|
|
$ zpool status -v
|
|
no pools available
|
|
|
|
--- zpool key properties
|
|
$ zpool get name,size,alloc,free,expandsize,fragmentation,capacity,health,ashift,autotrim,autoreplace,cachefile,comment,listsnapshots,multihost,version,bootfs,delegation,failmode,freeing,leaked,readonly
|
|
|
|
--- zfs per-dataset key properties
|
|
$ zfs get -r -o name,property,value,source \
|
|
compression,atime,recordsize,volblocksize,sync,primarycache,secondarycache,checksum,xattr,acltype,aclinherit,copies,logbias,refreservation,reservation,quota,used,avail,refer,mountpoint,mounted,canmount,relative_path,snapdir,version,primarycache,redundant_metadata,encryption 2>/dev/null
|
|
[exit=2]
|
|
|
|
--- ARC stats
|
|
$ cat /proc/spl/kstat/zfs/arcstats
|
|
22 1 0x01 147 39984 20455017452 750684533879
|
|
name type data
|
|
hits 4 0
|
|
iohits 4 0
|
|
misses 4 0
|
|
demand_data_hits 4 0
|
|
demand_data_iohits 4 0
|
|
demand_data_misses 4 0
|
|
demand_metadata_hits 4 0
|
|
demand_metadata_iohits 4 0
|
|
demand_metadata_misses 4 0
|
|
prefetch_data_hits 4 0
|
|
prefetch_data_iohits 4 0
|
|
prefetch_data_misses 4 0
|
|
prefetch_metadata_hits 4 0
|
|
prefetch_metadata_iohits 4 0
|
|
prefetch_metadata_misses 4 0
|
|
mru_hits 4 0
|
|
mru_ghost_hits 4 0
|
|
mfu_hits 4 0
|
|
mfu_ghost_hits 4 0
|
|
uncached_hits 4 0
|
|
deleted 4 0
|
|
mutex_miss 4 0
|
|
access_skip 4 0
|
|
evict_skip 4 0
|
|
evict_not_enough 4 0
|
|
evict_l2_cached 4 0
|
|
evict_l2_eligible 4 0
|
|
evict_l2_eligible_mfu 4 0
|
|
evict_l2_eligible_mru 4 0
|
|
evict_l2_ineligible 4 0
|
|
evict_l2_skip 4 0
|
|
hash_elements 4 0
|
|
hash_elements_max 4 0
|
|
hash_collisions 4 0
|
|
hash_chains 4 0
|
|
hash_chain_max 4 0
|
|
meta 4 1073741824
|
|
pd 4 2147483648
|
|
pm 4 2147483648
|
|
c 4 3163503360
|
|
c_min 4 3163503360
|
|
c_max 4 13515096064
|
|
size 4 3840
|
|
compressed_size 4 0
|
|
uncompressed_size 4 0
|
|
overhead_size 4 0
|
|
hdr_size 4 3840
|
|
data_size 4 0
|
|
metadata_size 4 0
|
|
dbuf_size 4 0
|
|
dnode_size 4 0
|
|
bonus_size 4 0
|
|
anon_size 4 0
|
|
anon_data 4 0
|
|
anon_metadata 4 0
|
|
anon_evictable_data 4 0
|
|
anon_evictable_metadata 4 0
|
|
mru_size 4 0
|
|
mru_data 4 0
|
|
mru_metadata 4 0
|
|
mru_evictable_data 4 0
|
|
mru_evictable_metadata 4 0
|
|
mru_ghost_size 4 0
|
|
mru_ghost_data 4 0
|
|
mru_ghost_metadata 4 0
|
|
mru_ghost_evictable_data 4 0
|
|
mru_ghost_evictable_metadata 4 0
|
|
mfu_size 4 0
|
|
mfu_data 4 0
|
|
mfu_metadata 4 0
|
|
mfu_evictable_data 4 0
|
|
mfu_evictable_metadata 4 0
|
|
mfu_ghost_size 4 0
|
|
mfu_ghost_data 4 0
|
|
mfu_ghost_metadata 4 0
|
|
mfu_ghost_evictable_data 4 0
|
|
mfu_ghost_evictable_metadata 4 0
|
|
uncached_size 4 0
|
|
uncached_data 4 0
|
|
uncached_metadata 4 0
|
|
uncached_evictable_data 4 0
|
|
uncached_evictable_metadata 4 0
|
|
l2_hits 4 0
|
|
l2_misses 4 0
|
|
l2_prefetch_asize 4 0
|
|
l2_mru_asize 4 0
|
|
l2_mfu_asize 4 0
|
|
l2_bufc_data_asize 4 0
|
|
l2_bufc_metadata_asize 4 0
|
|
l2_feeds 4 0
|
|
l2_rw_clash 4 0
|
|
l2_read_bytes 4 0
|
|
l2_write_bytes 4 0
|
|
l2_writes_sent 4 0
|
|
l2_writes_done 4 0
|
|
l2_writes_error 4 0
|
|
l2_writes_lock_retry 4 0
|
|
l2_evict_lock_retry 4 0
|
|
l2_evict_reading 4 0
|
|
l2_evict_l1cached 4 0
|
|
l2_free_on_write 4 0
|
|
l2_abort_lowmem 4 0
|
|
l2_cksum_bad 4 0
|
|
l2_io_error 4 0
|
|
l2_size 4 0
|
|
l2_asize 4 0
|
|
l2_hdr_size 4 0
|
|
l2_log_blk_writes 4 0
|
|
l2_log_blk_avg_asize 4 0
|
|
l2_log_blk_asize 4 0
|
|
l2_log_blk_count 4 0
|
|
l2_data_to_meta_ratio 4 0
|
|
l2_rebuild_success 4 0
|
|
l2_rebuild_unsupported 4 0
|
|
l2_rebuild_io_errors 4 0
|
|
l2_rebuild_dh_errors 4 0
|
|
l2_rebuild_cksum_lb_errors 4 0
|
|
l2_rebuild_lowmem 4 0
|
|
l2_rebuild_size 4 0
|
|
l2_rebuild_asize 4 0
|
|
l2_rebuild_bufs 4 0
|
|
l2_rebuild_bufs_precached 4 0
|
|
l2_rebuild_log_blks 4 0
|
|
memory_throttle_count 4 0
|
|
memory_direct_count 4 0
|
|
memory_indirect_count 4 0
|
|
memory_all_bytes 4 101232107520
|
|
memory_free_bytes 4 96788582400
|
|
memory_available_bytes 3 93319637760
|
|
arc_no_grow 4 0
|
|
arc_tempreserve 4 0
|
|
arc_loaned_bytes 4 0
|
|
arc_prune 4 0
|
|
arc_meta_used 4 3840
|
|
arc_dnode_limit 4 1351509606
|
|
async_upgrade_sync 4 0
|
|
predictive_prefetch 4 0
|
|
demand_hit_predictive_prefetch 4 0
|
|
demand_iohit_predictive_prefetch 4 0
|
|
prescient_prefetch 4 0
|
|
demand_hit_prescient_prefetch 4 0
|
|
demand_iohit_prescient_prefetch 4 0
|
|
arc_need_free 4 0
|
|
arc_sys_free 4 3468944640
|
|
arc_raw_size 4 0
|
|
cached_only_in_progress 4 0
|
|
abd_chunk_waste_size 4 0
|
|
|
|
--- dmu_tx
|
|
$ cat /proc/spl/kstat/zfs/dmu_tx
|
|
18 1 0x01 13 3536 20430860345 750686016232
|
|
name type data
|
|
dmu_tx_assigned 4 0
|
|
dmu_tx_delay 4 0
|
|
dmu_tx_error 4 0
|
|
dmu_tx_suspended 4 0
|
|
dmu_tx_group 4 0
|
|
dmu_tx_memory_reserve 4 0
|
|
dmu_tx_memory_reclaim 4 0
|
|
dmu_tx_dirty_throttle 4 0
|
|
dmu_tx_dirty_delay 4 0
|
|
dmu_tx_dirty_over_max 4 0
|
|
dmu_tx_dirty_frees_delay 4 0
|
|
dmu_tx_wrlog_delay 4 0
|
|
dmu_tx_quota 4 0
|
|
|
|
--- zfetchstats
|
|
$ cat /proc/spl/kstat/zfs/zfetchstats
|
|
17 1 0x01 8 2176 20430859387 750687427612
|
|
name type data
|
|
hits 4 0
|
|
future 4 0
|
|
stride 4 0
|
|
past 4 0
|
|
misses 4 0
|
|
max_streams 4 0
|
|
io_issued 4 0
|
|
io_active 4 0
|
|
|
|
--- vdev_cache_stats
|
|
$ cat /proc/spl/kstat/zfs/vdev_cache_stats
|
|
cat: /proc/spl/kstat/zfs/vdev_cache_stats: No such file or directory
|
|
[exit=1 / not installed or not permitted]
|
|
|
|
--- abdstats
|
|
$ cat /proc/spl/kstat/zfs/abdstats
|
|
15 1 0x01 20 5440 20430714428 750690294403
|
|
name type data
|
|
struct_size 4 96
|
|
linear_cnt 4 0
|
|
linear_data_size 4 0
|
|
scatter_cnt 4 1
|
|
scatter_data_size 4 4096
|
|
scatter_chunk_waste 4 0
|
|
scatter_order_0 4 0
|
|
scatter_order_1 4 0
|
|
scatter_order_2 4 0
|
|
scatter_order_3 4 0
|
|
scatter_order_4 4 0
|
|
scatter_order_5 4 0
|
|
scatter_order_6 4 0
|
|
scatter_order_7 4 0
|
|
scatter_order_8 4 0
|
|
scatter_order_9 4 0
|
|
scatter_page_multi_chunk 4 1
|
|
scatter_page_multi_zone 4 0
|
|
scatter_page_alloc_retry 4 0
|
|
scatter_sg_table_retry 4 0
|
|
|
|
--- ZFS module parameters (perf-relevant)
|
|
$ for f in /sys/module/zfs/parameters/*; do
|
|
[ -r "$f" ] || continue
|
|
name="$(basename "$f")"
|
|
case "$name" in
|
|
zfs_arc_*|zfs_abd_*|zfs_dbuf_*|zfs_txg_*|zfs_vdev_*|zfs_sync_*|zfs_dirty_*|zfs_*io_*|zvol_*|l2arc_*|zfs_prefetch_*|zfs_*max_active|zfs_*_taskq*) ;;
|
|
*) continue ;;
|
|
esac
|
|
printf ' %-50s = %s\n' "$name" "$(cat "$f")"
|
|
done
|
|
l2arc_exclude_special = 0
|
|
l2arc_feed_again = 1
|
|
l2arc_feed_min_ms = 200
|
|
l2arc_feed_secs = 1
|
|
l2arc_headroom = 8
|
|
l2arc_headroom_boost = 200
|
|
l2arc_meta_percent = 33
|
|
l2arc_mfuonly = 0
|
|
l2arc_noprefetch = 1
|
|
l2arc_norw = 0
|
|
l2arc_rebuild_blocks_min_l2size = 1073741824
|
|
l2arc_rebuild_enabled = 1
|
|
l2arc_trim_ahead = 0
|
|
l2arc_write_boost = 33554432
|
|
l2arc_write_max = 33554432
|
|
zfs_abd_scatter_enabled = 1
|
|
zfs_abd_scatter_max_order = 9
|
|
zfs_abd_scatter_min_size = 1536
|
|
zfs_arc_average_blocksize = 8192
|
|
zfs_arc_dnode_limit = 0
|
|
zfs_arc_dnode_limit_percent = 10
|
|
zfs_arc_dnode_reduce_percent = 10
|
|
zfs_arc_evict_batch_limit = 10
|
|
zfs_arc_eviction_pct = 200
|
|
zfs_arc_evict_threads = 6
|
|
zfs_arc_grow_retry = 0
|
|
zfs_arc_lotsfree_percent = 10
|
|
zfs_arc_max = 13515096064
|
|
zfs_arc_meta_balance = 500
|
|
zfs_arc_min = 0
|
|
zfs_arc_min_prefetch_ms = 0
|
|
zfs_arc_min_prescient_prefetch_ms = 0
|
|
zfs_arc_pc_percent = 0
|
|
zfs_arc_prune_task_threads = 1
|
|
zfs_arc_shrinker_limit = 0
|
|
zfs_arc_shrinker_seeks = 2
|
|
zfs_arc_shrink_shift = 0
|
|
zfs_arc_sys_free = 0
|
|
zfs_dbuf_state_index = 0
|
|
zfs_dio_enabled = 1
|
|
zfs_dio_write_verify_events_per_second = 20
|
|
zfs_dirty_data_max = 4294967296
|
|
zfs_dirty_data_max_max = 4294967296
|
|
zfs_dirty_data_max_max_percent = 25
|
|
zfs_dirty_data_max_percent = 10
|
|
zfs_dirty_data_sync_percent = 20
|
|
zfs_prefetch_disable = 0
|
|
zfs_slow_io_events_per_second = 20
|
|
zfs_sync_pass_deferred_free = 2
|
|
zfs_sync_pass_dont_compress = 8
|
|
zfs_sync_pass_rewrite = 2
|
|
zfs_txg_history = 100
|
|
zfs_txg_timeout = 5
|
|
zfs_vdev_aggregation_limit = 1048576
|
|
zfs_vdev_aggregation_limit_non_rotating = 131072
|
|
zfs_vdev_async_read_max_active = 3
|
|
zfs_vdev_async_read_min_active = 1
|
|
zfs_vdev_async_write_active_max_dirty_percent = 60
|
|
zfs_vdev_async_write_active_min_dirty_percent = 30
|
|
zfs_vdev_async_write_max_active = 10
|
|
zfs_vdev_async_write_min_active = 2
|
|
zfs_vdev_default_ms_count = 200
|
|
zfs_vdev_default_ms_shift = 29
|
|
zfs_vdev_def_queue_depth = 32
|
|
zfs_vdev_direct_write_verify = 1
|
|
zfs_vdev_disk_classic = 0
|
|
zfs_vdev_disk_max_segs = 0
|
|
zfs_vdev_failfast_mask = 1
|
|
zfs_vdev_initializing_max_active = 1
|
|
zfs_vdev_initializing_min_active = 1
|
|
zfs_vdev_max_active = 1000
|
|
zfs_vdev_max_auto_ashift = 14
|
|
zfs_vdev_max_ms_shift = 34
|
|
zfs_vdev_min_auto_ashift = 9
|
|
zfs_vdev_min_ms_count = 16
|
|
zfs_vdev_mirror_non_rotating_inc = 0
|
|
zfs_vdev_mirror_non_rotating_seek_inc = 1
|
|
zfs_vdev_mirror_rotating_inc = 0
|
|
zfs_vdev_mirror_rotating_seek_inc = 5
|
|
zfs_vdev_mirror_rotating_seek_offset = 1048576
|
|
zfs_vdev_ms_count_limit = 131072
|
|
zfs_vdev_nia_credit = 5
|
|
zfs_vdev_nia_delay = 5
|
|
zfs_vdev_open_timeout_ms = 1000
|
|
zfs_vdev_queue_depth_pct = 1000
|
|
zfs_vdev_raidz_impl = cycle [fastest] original scalar sse2 ssse3
|
|
zfs_vdev_read_gap_limit = 32768
|
|
zfs_vdev_rebuild_max_active = 3
|
|
zfs_vdev_rebuild_min_active = 1
|
|
zfs_vdev_removal_max_active = 2
|
|
zfs_vdev_removal_min_active = 1
|
|
zfs_vdev_scheduler = unused
|
|
zfs_vdev_scrub_max_active = 3
|
|
zfs_vdev_scrub_min_active = 1
|
|
zfs_vdev_sync_read_max_active = 10
|
|
zfs_vdev_sync_read_min_active = 10
|
|
zfs_vdev_sync_write_max_active = 10
|
|
zfs_vdev_sync_write_min_active = 10
|
|
zfs_vdev_trim_max_active = 2
|
|
zfs_vdev_trim_min_active = 1
|
|
zfs_vdev_write_gap_limit = 4096
|
|
zfs_zil_clean_taskq_maxalloc = 1048576
|
|
zfs_zil_clean_taskq_minalloc = 1024
|
|
zfs_zil_clean_taskq_nthr_pct = 100
|
|
zvol_blk_mq_blocks_per_thread = 8
|
|
zvol_blk_mq_queue_depth = 128
|
|
zvol_enforce_quotas = 1
|
|
zvol_inhibit_dev = 0
|
|
zvol_major = 230
|
|
zvol_max_discard_blocks = 16384
|
|
zvol_num_taskqs = 0
|
|
zvol_open_timeout_ms = 1000
|
|
zvol_prefetch_bytes = 131072
|
|
zvol_request_sync = 0
|
|
zvol_threads = 0
|
|
zvol_use_blk_mq = 0
|
|
zvol_volmode = 1
|
|
|
|
--- zpool iostat snapshot
|
|
$ zpool iostat 1 1
|
|
no pools available
|
|
|
|
--- arc_summary (if present)
|
|
$ arc_summary
|
|
|
|
------------------------------------------------------------------------
|
|
ZFS Subsystem Report Sun Jul 26 16:30:27 2026
|
|
Linux 6.17.2-1-pve 2.3.4-pve1
|
|
Machine: pfv-tsys6 (x86_64) 2.3.4-pve1
|
|
|
|
ARC status:
|
|
Total memory size: 94.3 GiB
|
|
Min target size: 3.1 % 2.9 GiB
|
|
Max target size: 13.4 % 12.6 GiB
|
|
Target size (adaptive): < 0.1 % 2.9 GiB
|
|
Current size: < 0.1 % 3.8 KiB
|
|
Free memory size: 90.2 GiB
|
|
Available memory size: 86.9 GiB
|
|
|
|
ARC structural breakdown (current size): 3.8 KiB
|
|
Compressed size: 0.0 % 0 Bytes
|
|
Overhead size: 0.0 % 0 Bytes
|
|
Bonus size: 0.0 % 0 Bytes
|
|
Dnode size: 0.0 % 0 Bytes
|
|
Dbuf size: 0.0 % 0 Bytes
|
|
Header size: 100.0 % 3.8 KiB
|
|
L2 header size: 0.0 % 0 Bytes
|
|
ABD chunk waste size: 0.0 % 0 Bytes
|
|
|
|
ARC types breakdown (compressed + overhead): 0 Bytes
|
|
Data size: n/a 0 Bytes
|
|
Metadata size: n/a 0 Bytes
|
|
|
|
ARC states breakdown (compressed + overhead): 0 Bytes
|
|
Anonymous data size: n/a 0 Bytes
|
|
Anonymous metadata size: n/a 0 Bytes
|
|
MFU data target: 37.5 % 0 Bytes
|
|
MFU data size: n/a 0 Bytes
|
|
MFU evictable data size: n/a 0 Bytes
|
|
MFU ghost data size: 0 Bytes
|
|
MFU metadata target: 12.5 % 0 Bytes
|
|
MFU metadata size: n/a 0 Bytes
|
|
MFU evictable metadata size: n/a 0 Bytes
|
|
MFU ghost metadata size: 0 Bytes
|
|
MRU data target: 37.5 % 0 Bytes
|
|
MRU data size: n/a 0 Bytes
|
|
MRU evictable data size: n/a 0 Bytes
|
|
MRU ghost data size: 0 Bytes
|
|
MRU metadata target: 12.5 % 0 Bytes
|
|
MRU metadata size: n/a 0 Bytes
|
|
MRU evictable metadata size: n/a 0 Bytes
|
|
MRU ghost metadata size: 0 Bytes
|
|
Uncached data size: n/a 0 Bytes
|
|
Uncached metadata size: n/a 0 Bytes
|
|
|
|
ARC hash breakdown:
|
|
Elements: 0
|
|
Collisions: 0
|
|
Chain max: 0
|
|
Chains: 0
|
|
|
|
ARC misc:
|
|
Uncompressed size: n/a 0 Bytes
|
|
Memory throttles: 0
|
|
Memory direct reclaims: 0
|
|
Memory indirect reclaims: 0
|
|
Deleted: 0
|
|
Mutex misses: 0
|
|
Eviction skips: 0
|
|
Eviction skips due to L2 writes: 0
|
|
L2 cached evictions: 0 Bytes
|
|
L2 eligible evictions: 0 Bytes
|
|
L2 eligible MFU evictions: n/a 0 Bytes
|
|
L2 eligible MRU evictions: n/a 0 Bytes
|
|
L2 ineligible evictions: 0 Bytes
|
|
|
|
ARC total accesses: 0
|
|
Total hits: n/a 0
|
|
Total I/O hits: n/a 0
|
|
Total misses: n/a 0
|
|
|
|
ARC demand data accesses: n/a 0
|
|
Demand data hits: n/a 0
|
|
Demand data I/O hits: n/a 0
|
|
Demand data misses: n/a 0
|
|
|
|
ARC demand metadata accesses: n/a 0
|
|
Demand metadata hits: n/a 0
|
|
Demand metadata I/O hits: n/a 0
|
|
Demand metadata misses: n/a 0
|
|
|
|
ARC prefetch data accesses: n/a 0
|
|
Prefetch data hits: n/a 0
|
|
Prefetch data I/O hits: n/a 0
|
|
Prefetch data misses: n/a 0
|
|
|
|
ARC prefetch metadata accesses: n/a 0
|
|
Prefetch metadata hits: n/a 0
|
|
Prefetch metadata I/O hits: n/a 0
|
|
Prefetch metadata misses: n/a 0
|
|
|
|
ARC predictive prefetches: n/a 0
|
|
Demand hits after predictive: n/a 0
|
|
Demand I/O hits after predictive: n/a 0
|
|
Never demanded after predictive: n/a 0
|
|
|
|
ARC prescient prefetches: n/a 0
|
|
Demand hits after prescient: n/a 0
|
|
Demand I/O hits after prescient: n/a 0
|
|
Never demanded after prescient: n/a 0
|
|
|
|
ARC states hits of all accesses:
|
|
Most frequently used (MFU): n/a 0
|
|
Most recently used (MRU): n/a 0
|
|
Most frequently used (MFU) ghost: n/a 0
|
|
Most recently used (MRU) ghost: n/a 0
|
|
Uncached: n/a 0
|
|
|
|
DMU predictive prefetcher calls: 0
|
|
Stream hits: n/a 0
|
|
Hits ahead of stream: n/a 0
|
|
Hits behind stream: n/a 0
|
|
Stream misses: n/a 0
|
|
Streams limit reached: n/a 0
|
|
Stream strides: 0
|
|
Prefetches issued 0
|
|
|
|
L2ARC not detected, skipping section
|
|
|
|
Solaris Porting Layer (SPL):
|
|
spl_hostid 0
|
|
spl_hostid_path /etc/hostid
|
|
spl_kmem_alloc_max 1048576
|
|
spl_kmem_alloc_warn 65536
|
|
spl_kmem_cache_kmem_threads 4
|
|
spl_kmem_cache_magazine_size 0
|
|
spl_kmem_cache_max_size 32
|
|
spl_kmem_cache_obj_per_slab 8
|
|
spl_kmem_cache_slab_limit 16384
|
|
spl_panic_halt 0
|
|
spl_schedule_hrtimeout_slack_us 0
|
|
spl_taskq_kick 0
|
|
spl_taskq_thread_bind 0
|
|
spl_taskq_thread_dynamic 1
|
|
spl_taskq_thread_priority 1
|
|
spl_taskq_thread_sequential 4
|
|
spl_taskq_thread_timeout_ms 5000
|
|
|
|
Tunables:
|
|
brt_zap_default_bs 12
|
|
brt_zap_default_ibs 12
|
|
brt_zap_prefetch 1
|
|
dbuf_cache_hiwater_pct 10
|
|
dbuf_cache_lowater_pct 10
|
|
dbuf_cache_max_bytes 18446744073709551615
|
|
dbuf_cache_shift 5
|
|
dbuf_metadata_cache_max_bytes 18446744073709551615
|
|
dbuf_metadata_cache_shift 6
|
|
dbuf_mutex_cache_shift 0
|
|
ddt_zap_default_bs 15
|
|
ddt_zap_default_ibs 15
|
|
dmu_ddt_copies 0
|
|
dmu_object_alloc_chunk_shift 7
|
|
dmu_prefetch_max 134217728
|
|
icp_aes_impl cycle [fastest] generic x86_64
|
|
icp_gcm_avx_chunk_size 32736
|
|
icp_gcm_impl cycle [fastest] generic
|
|
l2arc_exclude_special 0
|
|
l2arc_feed_again 1
|
|
l2arc_feed_min_ms 200
|
|
l2arc_feed_secs 1
|
|
l2arc_headroom 8
|
|
l2arc_headroom_boost 200
|
|
l2arc_meta_percent 33
|
|
l2arc_mfuonly 0
|
|
l2arc_noprefetch 1
|
|
l2arc_norw 0
|
|
l2arc_rebuild_blocks_min_l2size 1073741824
|
|
l2arc_rebuild_enabled 1
|
|
l2arc_trim_ahead 0
|
|
l2arc_write_boost 33554432
|
|
l2arc_write_max 33554432
|
|
metaslab_aliquot 1048576
|
|
metaslab_bias_enabled 1
|
|
metaslab_debug_load 0
|
|
metaslab_debug_unload 0
|
|
metaslab_df_max_search 16777216
|
|
metaslab_df_use_largest_segment 0
|
|
metaslab_force_ganging 16777217
|
|
metaslab_force_ganging_pct 3
|
|
metaslab_fragmentation_factor_enabled 1
|
|
metaslab_lba_weighting_enabled 1
|
|
metaslab_preload_enabled 1
|
|
metaslab_preload_limit 10
|
|
metaslab_preload_pct 50
|
|
metaslab_unload_delay 32
|
|
metaslab_unload_delay_ms 600000
|
|
raidz_expand_max_copy_bytes 167772160
|
|
raidz_expand_max_reflow_bytes 0
|
|
raidz_io_aggregate_rows 4
|
|
send_holes_without_birth_time 1
|
|
spa_asize_inflation 24
|
|
spa_config_path /etc/zfs/zpool.cache
|
|
spa_cpus_per_allocator 4
|
|
spa_load_print_vdev_tree 0
|
|
spa_load_verify_data 1
|
|
spa_load_verify_metadata 1
|
|
spa_load_verify_shift 4
|
|
spa_num_allocators 4
|
|
spa_slop_shift 5
|
|
spa_upgrade_errlog_limit 0
|
|
vdev_file_logical_ashift 9
|
|
vdev_file_physical_ashift 9
|
|
vdev_removal_max_span 32768
|
|
vdev_validate_skip 0
|
|
zap_iterate_prefetch 1
|
|
zap_micro_max_size 131072
|
|
zap_shrink_enabled 1
|
|
zfetch_hole_shift 2
|
|
zfetch_max_distance 67108864
|
|
zfetch_max_idistance 134217728
|
|
zfetch_max_reorder 16777216
|
|
zfetch_max_sec_reap 2
|
|
zfetch_max_streams 8
|
|
zfetch_min_distance 4194304
|
|
zfetch_min_sec_reap 1
|
|
zfs_abd_scatter_enabled 1
|
|
zfs_abd_scatter_max_order 9
|
|
zfs_abd_scatter_min_size 1536
|
|
zfs_active_allocator dynamic
|
|
zfs_admin_snapshot 0
|
|
zfs_allow_redacted_dataset_mount 0
|
|
zfs_arc_average_blocksize 8192
|
|
zfs_arc_dnode_limit 0
|
|
zfs_arc_dnode_limit_percent 10
|
|
zfs_arc_dnode_reduce_percent 10
|
|
zfs_arc_evict_batch_limit 10
|
|
zfs_arc_evict_threads 6
|
|
zfs_arc_eviction_pct 200
|
|
zfs_arc_grow_retry 0
|
|
zfs_arc_lotsfree_percent 10
|
|
zfs_arc_max 13515096064
|
|
zfs_arc_meta_balance 500
|
|
zfs_arc_min 0
|
|
zfs_arc_min_prefetch_ms 0
|
|
zfs_arc_min_prescient_prefetch_ms 0
|
|
zfs_arc_pc_percent 0
|
|
zfs_arc_prune_task_threads 1
|
|
zfs_arc_shrink_shift 0
|
|
zfs_arc_shrinker_limit 0
|
|
zfs_arc_shrinker_seeks 2
|
|
zfs_arc_sys_free 0
|
|
zfs_async_block_max_blocks 18446744073709551615
|
|
zfs_autoimport_disable 1
|
|
zfs_bclone_enabled 1
|
|
zfs_bclone_wait_dirty 1
|
|
zfs_blake3_impl cycle [fastest] generic sse2 sse41
|
|
zfs_btree_verify_intensity 0
|
|
zfs_checksum_events_per_second 20
|
|
zfs_commit_timeout_pct 10
|
|
zfs_compressed_arc_enabled 1
|
|
zfs_condense_indirect_commit_entry_delay_ms 0
|
|
zfs_condense_indirect_obsolete_pct 25
|
|
zfs_condense_indirect_vdevs_enable 1
|
|
zfs_condense_max_obsolete_bytes 1073741824
|
|
zfs_condense_min_mapping_bytes 131072
|
|
zfs_dbgmsg_enable 1
|
|
zfs_dbgmsg_maxsize 4194304
|
|
zfs_dbuf_state_index 0
|
|
zfs_ddt_data_is_special 1
|
|
zfs_deadman_checktime_ms 60000
|
|
zfs_deadman_enabled 1
|
|
zfs_deadman_events_per_second 1
|
|
zfs_deadman_failmode wait
|
|
zfs_deadman_synctime_ms 600000
|
|
zfs_deadman_ziotime_ms 300000
|
|
zfs_dedup_log_cap 4294967295
|
|
zfs_dedup_log_flush_entries_max 4294967295
|
|
zfs_dedup_log_flush_entries_min 200
|
|
zfs_dedup_log_flush_flow_rate_txgs 10
|
|
zfs_dedup_log_flush_min_time_ms 1000
|
|
zfs_dedup_log_flush_txgs 100
|
|
zfs_dedup_log_hard_cap 0
|
|
zfs_dedup_log_mem_max 1012321075
|
|
zfs_dedup_log_mem_max_percent 1
|
|
zfs_dedup_log_txg_max 8
|
|
zfs_dedup_prefetch 0
|
|
zfs_default_bs 9
|
|
zfs_default_ibs 17
|
|
zfs_delay_min_dirty_percent 60
|
|
zfs_delay_scale 500000
|
|
zfs_delete_blocks 20480
|
|
zfs_dio_enabled 1
|
|
zfs_dio_write_verify_events_per_second 20
|
|
zfs_dirty_data_max 4294967296
|
|
zfs_dirty_data_max_max 4294967296
|
|
zfs_dirty_data_max_max_percent 25
|
|
zfs_dirty_data_max_percent 10
|
|
zfs_dirty_data_sync_percent 20
|
|
zfs_disable_ivset_guid_check 0
|
|
zfs_dmu_offset_next_sync 1
|
|
zfs_embedded_slog_min_ms 64
|
|
zfs_expire_snapshot 300
|
|
zfs_fallocate_reserve_percent 110
|
|
zfs_flags 0
|
|
zfs_fletcher_4_impl [fastest] scalar superscalar superscalar4 sse2 ssse3
|
|
zfs_free_bpobj_enabled 1
|
|
zfs_free_leak_on_eio 0
|
|
zfs_free_min_time_ms 1000
|
|
zfs_history_output_max 1048576
|
|
zfs_immediate_write_sz 32768
|
|
zfs_initialize_chunk_size 1048576
|
|
zfs_initialize_value 16045690984833335022
|
|
zfs_keep_log_spacemaps_at_export 0
|
|
zfs_key_max_salt_uses 400000000
|
|
zfs_livelist_condense_new_alloc 0
|
|
zfs_livelist_condense_sync_cancel 0
|
|
zfs_livelist_condense_sync_pause 0
|
|
zfs_livelist_condense_zthr_cancel 0
|
|
zfs_livelist_condense_zthr_pause 0
|
|
zfs_livelist_max_entries 500000
|
|
zfs_livelist_min_percent_shared 75
|
|
zfs_lua_max_instrlimit 100000000
|
|
zfs_lua_max_memlimit 104857600
|
|
zfs_max_async_dedup_frees 100000
|
|
zfs_max_dataset_nesting 50
|
|
zfs_max_log_walking 5
|
|
zfs_max_logsm_summary_length 10
|
|
zfs_max_missing_tvds 0
|
|
zfs_max_nvlist_src_size 0
|
|
zfs_max_recordsize 16777216
|
|
zfs_metaslab_find_max_tries 100
|
|
zfs_metaslab_fragmentation_threshold 77
|
|
zfs_metaslab_max_size_cache_sec 3600
|
|
zfs_metaslab_mem_limit 25
|
|
zfs_metaslab_segment_weight_enabled 1
|
|
zfs_metaslab_switch_threshold 2
|
|
zfs_metaslab_try_hard_before_gang 0
|
|
zfs_mg_fragmentation_threshold 95
|
|
zfs_mg_noalloc_threshold 0
|
|
zfs_min_metaslabs_to_flush 1
|
|
zfs_multihost_fail_intervals 10
|
|
zfs_multihost_history 0
|
|
zfs_multihost_import_intervals 20
|
|
zfs_multihost_interval 1000
|
|
zfs_multilist_num_sublists 0
|
|
zfs_no_scrub_io 0
|
|
zfs_no_scrub_prefetch 0
|
|
zfs_nocacheflush 0
|
|
zfs_nopwrite_enabled 1
|
|
zfs_object_mutex_size 64
|
|
zfs_obsolete_min_time_ms 500
|
|
zfs_override_estimate_recordsize 0
|
|
zfs_pd_bytes_max 52428800
|
|
zfs_per_txg_dirty_frees_percent 30
|
|
zfs_prefetch_disable 0
|
|
zfs_read_history 0
|
|
zfs_read_history_hits 0
|
|
zfs_rebuild_max_segment 1048576
|
|
zfs_rebuild_scrub_enabled 1
|
|
zfs_rebuild_vdev_limit 67108864
|
|
zfs_reconstruct_indirect_combinations_max 4096
|
|
zfs_recover 0
|
|
zfs_recv_best_effort_corrective 0
|
|
zfs_recv_queue_ff 20
|
|
zfs_recv_queue_length 16777216
|
|
zfs_recv_write_batch_size 1048576
|
|
zfs_removal_ignore_errors 0
|
|
zfs_removal_suspend_progress 0
|
|
zfs_remove_max_segment 16777216
|
|
zfs_resilver_defer_percent 10
|
|
zfs_resilver_disable_defer 0
|
|
zfs_resilver_min_time_ms 3000
|
|
zfs_scan_blkstats 0
|
|
zfs_scan_checkpoint_intval 7200
|
|
zfs_scan_fill_weight 3
|
|
zfs_scan_ignore_errors 0
|
|
zfs_scan_issue_strategy 0
|
|
zfs_scan_legacy 0
|
|
zfs_scan_max_ext_gap 2097152
|
|
zfs_scan_mem_lim_fact 20
|
|
zfs_scan_mem_lim_soft_fact 20
|
|
zfs_scan_report_txgs 0
|
|
zfs_scan_strict_mem_lim 0
|
|
zfs_scan_suspend_progress 0
|
|
zfs_scan_vdev_limit 16777216
|
|
zfs_scrub_after_expand 1
|
|
zfs_scrub_error_blocks_per_txg 4096
|
|
zfs_scrub_min_time_ms 1000
|
|
zfs_send_corrupt_data 0
|
|
zfs_send_no_prefetch_queue_ff 20
|
|
zfs_send_no_prefetch_queue_length 1048576
|
|
zfs_send_queue_ff 20
|
|
zfs_send_queue_length 16777216
|
|
zfs_send_unmodified_spill_blocks 1
|
|
zfs_sha256_impl cycle [fastest] generic x64 ssse3
|
|
zfs_sha512_impl cycle [fastest] generic x64
|
|
zfs_slow_io_events_per_second 20
|
|
zfs_snapshot_history_enabled 1
|
|
zfs_snapshot_no_setuid 0
|
|
zfs_spa_discard_memory_limit 16777216
|
|
zfs_special_class_metadata_reserve_pct 25
|
|
zfs_sync_pass_deferred_free 2
|
|
zfs_sync_pass_dont_compress 8
|
|
zfs_sync_pass_rewrite 2
|
|
zfs_traverse_indirect_prefetch_limit 32
|
|
zfs_trim_extent_bytes_max 134217728
|
|
zfs_trim_extent_bytes_min 32768
|
|
zfs_trim_metaslab_skip 0
|
|
zfs_trim_queue_limit 10
|
|
zfs_trim_txg_batch 32
|
|
zfs_txg_history 100
|
|
zfs_txg_timeout 5
|
|
zfs_unflushed_log_block_max 131072
|
|
zfs_unflushed_log_block_min 1000
|
|
zfs_unflushed_log_block_pct 400
|
|
zfs_unflushed_log_txg_max 1000
|
|
zfs_unflushed_max_mem_amt 1073741824
|
|
zfs_unflushed_max_mem_ppm 1000
|
|
zfs_unlink_suspend_progress 0
|
|
zfs_user_indirect_is_special 1
|
|
zfs_vdev_aggregation_limit 1048576
|
|
zfs_vdev_aggregation_limit_non_rotating 131072
|
|
zfs_vdev_async_read_max_active 3
|
|
zfs_vdev_async_read_min_active 1
|
|
zfs_vdev_async_write_active_max_dirty_percent 60
|
|
zfs_vdev_async_write_active_min_dirty_percent 30
|
|
zfs_vdev_async_write_max_active 10
|
|
zfs_vdev_async_write_min_active 2
|
|
zfs_vdev_def_queue_depth 32
|
|
zfs_vdev_default_ms_count 200
|
|
zfs_vdev_default_ms_shift 29
|
|
zfs_vdev_direct_write_verify 1
|
|
zfs_vdev_disk_classic 0
|
|
zfs_vdev_disk_max_segs 0
|
|
zfs_vdev_failfast_mask 1
|
|
zfs_vdev_initializing_max_active 1
|
|
zfs_vdev_initializing_min_active 1
|
|
zfs_vdev_max_active 1000
|
|
zfs_vdev_max_auto_ashift 14
|
|
zfs_vdev_max_ms_shift 34
|
|
zfs_vdev_min_auto_ashift 9
|
|
zfs_vdev_min_ms_count 16
|
|
zfs_vdev_mirror_non_rotating_inc 0
|
|
zfs_vdev_mirror_non_rotating_seek_inc 1
|
|
zfs_vdev_mirror_rotating_inc 0
|
|
zfs_vdev_mirror_rotating_seek_inc 5
|
|
zfs_vdev_mirror_rotating_seek_offset 1048576
|
|
zfs_vdev_ms_count_limit 131072
|
|
zfs_vdev_nia_credit 5
|
|
zfs_vdev_nia_delay 5
|
|
zfs_vdev_open_timeout_ms 1000
|
|
zfs_vdev_queue_depth_pct 1000
|
|
zfs_vdev_raidz_impl cycle [fastest] original scalar sse2 ssse3
|
|
zfs_vdev_read_gap_limit 32768
|
|
zfs_vdev_rebuild_max_active 3
|
|
zfs_vdev_rebuild_min_active 1
|
|
zfs_vdev_removal_max_active 2
|
|
zfs_vdev_removal_min_active 1
|
|
zfs_vdev_scheduler unused
|
|
zfs_vdev_scrub_max_active 3
|
|
zfs_vdev_scrub_min_active 1
|
|
zfs_vdev_sync_read_max_active 10
|
|
zfs_vdev_sync_read_min_active 10
|
|
zfs_vdev_sync_write_max_active 10
|
|
zfs_vdev_sync_write_min_active 10
|
|
zfs_vdev_trim_max_active 2
|
|
zfs_vdev_trim_min_active 1
|
|
zfs_vdev_write_gap_limit 4096
|
|
zfs_vnops_read_chunk_size 33554432
|
|
zfs_wrlog_data_max 8589934592
|
|
zfs_xattr_compat 0
|
|
zfs_zevent_len_max 512
|
|
zfs_zevent_retain_expire_secs 900
|
|
zfs_zevent_retain_max 2000
|
|
zfs_zil_clean_taskq_maxalloc 1048576
|
|
zfs_zil_clean_taskq_minalloc 1024
|
|
zfs_zil_clean_taskq_nthr_pct 100
|
|
zfs_zil_saxattr 1
|
|
zil_maxblocksize 131072
|
|
zil_maxcopied 7680
|
|
zil_nocacheflush 0
|
|
zil_replay_disable 0
|
|
zil_slog_bulk 67108864
|
|
zio_deadman_log_all 0
|
|
zio_dva_throttle_enabled 1
|
|
zio_requeue_io_start_cut_in_line 1
|
|
zio_slow_io_ms 30000
|
|
zio_taskq_batch_pct 80
|
|
zio_taskq_batch_tpq 0
|
|
zio_taskq_read fixed,1,8 null scale null
|
|
zio_taskq_write sync null scale null
|
|
zio_taskq_write_tpq 16
|
|
zstd_abort_size 131072
|
|
zstd_earlyabort_pass 1
|
|
zvol_blk_mq_blocks_per_thread 8
|
|
zvol_blk_mq_queue_depth 128
|
|
zvol_enforce_quotas 1
|
|
zvol_inhibit_dev 0
|
|
zvol_major 230
|
|
zvol_max_discard_blocks 16384
|
|
zvol_num_taskqs 0
|
|
zvol_open_timeout_ms 1000
|
|
zvol_prefetch_bytes 131072
|
|
zvol_request_sync 0
|
|
zvol_threads 0
|
|
zvol_use_blk_mq 0
|
|
zvol_volmode 1
|
|
|
|
ZIL committed transactions: 0
|
|
Commit requests: 0
|
|
Flushes to stable storage: 0
|
|
Transactions to SLOG storage pool: 0 Bytes 0
|
|
Transactions to non-SLOG storage pool: 0 Bytes 0
|
|
|
|
|
|
--- zpool events -v (recent)
|
|
$ zpool events -v
|
|
TIME CLASS
|
|
|
|
--- zpool history (last 30 events)
|
|
$ zpool history -il 2>/dev/null | tail -n 30
|
|
|
|
###############################################################################
|
|
# 20. STORAGE: DRIVE HEALTH
|
|
###############################################################################
|
|
|
|
--- nvme list
|
|
$ nvme list
|
|
Node Generic SN Model Namespace Usage Format FW Rev
|
|
--------------------- --------------------- -------------------- ---------------------------------------- ---------- -------------------------- ---------------- --------
|
|
|
|
--- nvme smart-log per device
|
|
$ for n in /dev/nvme[0-9]*; do
|
|
[ -b "$n" ] || continue
|
|
echo "--- $n smart-log ---"
|
|
nvme smart-log "$n" 2>&1
|
|
echo "--- $n error-log (first 5) ---"
|
|
nvme error-log "$n" 2>&1 | head -n 80
|
|
done
|
|
|
|
--- nvme id-ctrl per device (key fields)
|
|
$ for n in /dev/nvme[0-9]*; do
|
|
[ -b "$n" ] || continue
|
|
echo "--- $n id-ctrl (filtered) ---"
|
|
nvme id-ctrl "$n" 2>&1 | grep -E '^(mn|sn|fn|fr|tnvmcap|vid|IEEE|cntlid|ver|rab|lpa|elpe|npdg|mdts|hmpre|hmmin|cap|frmw|lba|ws|awun|awupf|acwu|apsta)'
|
|
done
|
|
|
|
--- smartctl -a per disk
|
|
$ for d in $(ls /sys/block/ 2>/dev/null | grep -E '^(sd|vd)'); do
|
|
dev="/dev/$d"
|
|
[ -b "$dev" ] || continue
|
|
echo "--- smartctl -a $dev ---"
|
|
smartctl -a "$dev" 2>&1 | head -n 200
|
|
done
|
|
--- smartctl -a /dev/sda ---
|
|
smartctl 7.5 2025-04-30 r5714 [x86_64-linux-6.17.2-1-pve] (local build)
|
|
Copyright (C) 2002-25, Bruce Allen, Christian Franke, www.smartmontools.org
|
|
|
|
=== START OF INFORMATION SECTION ===
|
|
Device Model: WDC WD20SDRM-59A4DS1
|
|
Serial Number: WD-WXL2A232X5RX
|
|
LU WWN Device Id: 5 0014ee 215a96feb
|
|
Firmware Version: 01.01A01
|
|
User Capacity: 2,000,365,379,584 bytes [2.00 TB]
|
|
Sector Sizes: 512 bytes logical, 4096 bytes physical
|
|
Rotation Rate: 5400 rpm
|
|
Form Factor: 2.5 inches
|
|
TRIM Command: Available, deterministic
|
|
Device is: Not in smartctl database 7.5/5706
|
|
ATA Version is: ACS-3 T13/2161-D revision 5
|
|
SATA Version is: SATA 3.1, 6.0 Gb/s (current: 6.0 Gb/s)
|
|
Local Time is: Sun Jul 26 16:30:28 2026 CDT
|
|
SMART support is: Available - device has SMART capability.
|
|
SMART support is: Enabled
|
|
|
|
=== START OF READ SMART DATA SECTION ===
|
|
SMART overall-health self-assessment test result: PASSED
|
|
|
|
General SMART Values:
|
|
Offline data collection status: (0x00) Offline data collection activity
|
|
was never started.
|
|
Auto Offline Data Collection: Disabled.
|
|
Self-test execution status: ( 0) The previous self-test routine completed
|
|
without error or no self-test has ever
|
|
been run.
|
|
Total time to complete Offline
|
|
data collection: ( 1980) seconds.
|
|
Offline data collection
|
|
capabilities: (0x51) SMART execute Offline immediate.
|
|
No Auto Offline data collection support.
|
|
Suspend Offline collection upon new
|
|
command.
|
|
No Offline surface scan supported.
|
|
Self-test supported.
|
|
No Conveyance Self-test supported.
|
|
Selective Self-test supported.
|
|
SMART capabilities: (0x0003) Saves SMART data before entering
|
|
power-saving mode.
|
|
Supports SMART auto save timer.
|
|
Error logging capability: (0x01) Error logging supported.
|
|
General Purpose Logging supported.
|
|
Short self-test routine
|
|
recommended polling time: ( 2) minutes.
|
|
Extended self-test routine
|
|
recommended polling time: ( 100) minutes.
|
|
SCT capabilities: (0x7035) SCT Status supported.
|
|
SCT Feature Control supported.
|
|
SCT Data Table supported.
|
|
|
|
SMART Attributes Data Structure revision number: 16
|
|
Vendor Specific SMART Attributes with Thresholds:
|
|
ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE
|
|
1 Raw_Read_Error_Rate 0x002f 200 200 051 Pre-fail Always - 0
|
|
3 Spin_Up_Time 0x0027 195 190 021 Pre-fail Always - 3241
|
|
4 Start_Stop_Count 0x0032 094 094 000 Old_age Always - 6735
|
|
5 Reallocated_Sector_Ct 0x0033 200 200 140 Pre-fail Always - 0
|
|
7 Seek_Error_Rate 0x002e 200 200 000 Old_age Always - 0
|
|
9 Power_On_Hours 0x0032 078 078 000 Old_age Always - 16289
|
|
10 Spin_Retry_Count 0x0032 100 100 000 Old_age Always - 0
|
|
11 Calibration_Retry_Count 0x0032 100 100 000 Old_age Always - 0
|
|
12 Power_Cycle_Count 0x0032 100 100 000 Old_age Always - 372
|
|
192 Power-Off_Retract_Count 0x0032 200 200 000 Old_age Always - 266
|
|
193 Load_Cycle_Count 0x0032 190 190 000 Old_age Always - 30231
|
|
194 Temperature_Celsius 0x0022 107 091 000 Old_age Always - 40
|
|
196 Reallocated_Event_Count 0x0032 200 200 000 Old_age Always - 0
|
|
197 Current_Pending_Sector 0x0032 200 200 000 Old_age Always - 0
|
|
198 Offline_Uncorrectable 0x0030 100 253 000 Old_age Offline - 0
|
|
199 UDMA_CRC_Error_Count 0x0032 200 200 000 Old_age Always - 0
|
|
200 Multi_Zone_Error_Rate 0x0008 100 253 000 Old_age Offline - 0
|
|
|
|
SMART Error Log Version: 1
|
|
No Errors Logged
|
|
|
|
SMART Self-test log structure revision number 1
|
|
No self-tests have been logged. [To run self-tests, use: smartctl -t]
|
|
|
|
SMART Selective self-test log data structure revision number 1
|
|
SPAN MIN_LBA MAX_LBA CURRENT_TEST_STATUS
|
|
1 0 0 Not_testing
|
|
2 0 0 Not_testing
|
|
3 0 0 Not_testing
|
|
4 0 0 Not_testing
|
|
5 0 0 Not_testing
|
|
Selective self-test flags (0x0):
|
|
After scanning selected spans, do NOT read-scan remainder of disk.
|
|
If Selective self-test is pending on power-up, resume after 0 minute delay.
|
|
|
|
The above only provides legacy SMART information - try 'smartctl -x' for more
|
|
|
|
|
|
###############################################################################
|
|
# 21. STORAGE: HBA / RAID CONTROLLERS
|
|
###############################################################################
|
|
|
|
###############################################################################
|
|
# 22. VIRTUAL MACHINES (qm)
|
|
###############################################################################
|
|
|
|
--- qm list
|
|
$ qm list
|
|
VMID NAME STATUS MEM(MB) BOOTDISK(GB) PID
|
|
100 pfv-k8s-wnode-tsys6 stopped 32000 32.00 0
|
|
600 tsys-awx stopped 12000 32.00 0
|
|
601 pfv-k8s-cnode4 running 4096 32.00 1730
|
|
602 pfv-k8s-cnode5 running 4096 32.00 1918
|
|
603 pfv-k8s-cnode2 running 4096 32.00 2127
|
|
|
|
--- qm config per VM
|
|
$ for vmid in $(qm list 2>/dev/null | awk 'NR>1{print $1}'); do
|
|
echo "--- VM $vmid ---"
|
|
qm config "$vmid" 2>&1
|
|
echo ""
|
|
done
|
|
--- VM 100 ---
|
|
balloon: 0
|
|
boot: order=scsi0;ide2;net0
|
|
cores: 2
|
|
cpu: host
|
|
ide2: local:iso/debian.iso,media=cdrom,size=755M
|
|
memory: 32000
|
|
meta: creation-qemu=10.1.2,ctime=1785085054
|
|
name: pfv-k8s-wnode-tsys6
|
|
net0: virtio=BC:24:11:F6:74:E8,bridge=vmbr0,firewall=1
|
|
numa: 0
|
|
onboot: 1
|
|
ostype: l26
|
|
scsi0: D5:100/vm-100-disk-0.qcow2,iothread=1,size=32G
|
|
scsihw: virtio-scsi-single
|
|
smbios1: uuid=03709518-2933-4764-8006-f3946ce59063
|
|
sockets: 2
|
|
vmgenid: 5a31db88-9ad1-4a8d-95cc-156eea8e87ae
|
|
|
|
--- VM 600 ---
|
|
agent: 1
|
|
balloon: 0
|
|
boot: order=scsi0
|
|
cores: 2
|
|
cpu: host
|
|
ide2: none,media=cdrom
|
|
memory: 12000
|
|
meta: creation-qemu=10.1.2,ctime=1771904766
|
|
name: tsys-awx
|
|
net0: virtio=BC:24:11:80:0D:16,bridge=vmbr0,firewall=1
|
|
numa: 0
|
|
onboot: 1
|
|
ostype: l26
|
|
scsi0: D2:600/vm-600-disk-1.qcow2,cache=writethrough,format=qcow2,iothread=1,size=32G
|
|
scsihw: virtio-scsi-single
|
|
smbios1: uuid=3f480575-849f-421c-8a53-0d46fcce3154
|
|
sockets: 2
|
|
vmgenid: b62bf796-cde6-4697-9df0-66cdb313e63d
|
|
|
|
--- VM 601 ---
|
|
agent: 1
|
|
balloon: 0
|
|
boot: order=scsi0;ide2;net0
|
|
cores: 4
|
|
cpu: host
|
|
ide2: none,media=cdrom
|
|
memory: 4096
|
|
meta: creation-qemu=10.1.2,ctime=1771904766
|
|
name: pfv-k8s-cnode4
|
|
net0: virtio=BC:24:11:27:4F:1C,bridge=vmbr0,firewall=1
|
|
numa: 0
|
|
onboot: 1
|
|
ostype: l26
|
|
scsi0: D2:601/vm-601-disk-0.qcow2,cache=writethrough,format=qcow2,iothread=1,size=32G
|
|
scsihw: virtio-scsi-single
|
|
smbios1: uuid=b9ef082b-3eb8-474d-a1b6-5a947433aa98
|
|
sockets: 1
|
|
vmgenid: c533aceb-c8c2-46e0-b3ff-cb547d6d9669
|
|
|
|
--- VM 602 ---
|
|
agent: 1
|
|
balloon: 0
|
|
boot: order=scsi0
|
|
cores: 4
|
|
cpu: host
|
|
memory: 4096
|
|
meta: creation-qemu=10.1.2,ctime=1771904766
|
|
name: pfv-k8s-cnode5
|
|
net0: virtio=BC:24:11:94:71:07,bridge=vmbr0,firewall=1
|
|
numa: 0
|
|
onboot: 1
|
|
ostype: l26
|
|
scsi0: D5:602/vm-602-disk-0.qcow2,format=qcow2,iothread=1,size=32G
|
|
scsihw: virtio-scsi-single
|
|
smbios1: uuid=186032bf-fc6e-45c1-a8f2-7d3fb8b26d54
|
|
sockets: 1
|
|
vmgenid: b5bf1594-fdfb-4b56-b455-9366fbd21c56
|
|
|
|
--- VM 603 ---
|
|
agent: 1
|
|
balloon: 0
|
|
boot: order=scsi0;net0
|
|
cores: 4
|
|
cpu: host
|
|
memory: 4096
|
|
meta: creation-qemu=10.1.2,ctime=1771904766
|
|
name: pfv-k8s-cnode2
|
|
net0: virtio=BC:24:11:40:25:F8,bridge=vmbr0,firewall=1
|
|
numa: 0
|
|
onboot: 1
|
|
ostype: l26
|
|
scsi0: D2:603/vm-603-disk-0.qcow2,cache=writethrough,format=qcow2,iothread=1,size=32G
|
|
scsihw: virtio-scsi-single
|
|
smbios1: uuid=7b189aa1-9525-4366-b570-81e786de3351
|
|
sockets: 1
|
|
vmgenid: 1c296c7a-ffc3-4086-8390-85691f1ab104
|
|
|
|
|
|
--- VM runtime status (qm guest agent if running)
|
|
$ for vmid in $(qm list 2>/dev/null | awk 'NR>1{print $1}'); do
|
|
echo "--- VM $vmid runtime ---"
|
|
qm guest cmd "$vmid" network-get-interfaces 2>/dev/null | head -n 40 || echo " [no agent or VM not running]"
|
|
done
|
|
--- VM 100 runtime ---
|
|
--- VM 600 runtime ---
|
|
--- VM 601 runtime ---
|
|
[
|
|
{
|
|
"hardware-address" : "00:00:00:00:00:00",
|
|
"ip-addresses" : [
|
|
{
|
|
"ip-address" : "127.0.0.1",
|
|
"ip-address-type" : "ipv4",
|
|
"prefix" : 8
|
|
},
|
|
{
|
|
"ip-address" : "::1",
|
|
"ip-address-type" : "ipv6",
|
|
"prefix" : 128
|
|
}
|
|
],
|
|
"name" : "lo",
|
|
"statistics" : {
|
|
"rx-bytes" : 12960,
|
|
"rx-dropped" : 0,
|
|
"rx-errs" : 0,
|
|
"rx-packets" : 160,
|
|
"tx-bytes" : 12960,
|
|
"tx-dropped" : 0,
|
|
"tx-errs" : 0,
|
|
"tx-packets" : 160
|
|
}
|
|
},
|
|
{
|
|
"hardware-address" : "bc:24:11:27:4f:1c",
|
|
"ip-addresses" : [
|
|
{
|
|
"ip-address" : "192.168.3.157",
|
|
"ip-address-type" : "ipv4",
|
|
"prefix" : 22
|
|
},
|
|
{
|
|
"ip-address" : "2600:1700:1d1:eb00::d",
|
|
"ip-address-type" : "ipv6",
|
|
"prefix" : 128
|
|
},
|
|
--- VM 602 runtime ---
|
|
[
|
|
{
|
|
"hardware-address" : "00:00:00:00:00:00",
|
|
"ip-addresses" : [
|
|
{
|
|
"ip-address" : "127.0.0.1",
|
|
"ip-address-type" : "ipv4",
|
|
"prefix" : 8
|
|
},
|
|
{
|
|
"ip-address" : "::1",
|
|
"ip-address-type" : "ipv6",
|
|
"prefix" : 128
|
|
}
|
|
],
|
|
"name" : "lo",
|
|
"statistics" : {
|
|
"rx-bytes" : 8288,
|
|
"rx-dropped" : 0,
|
|
"rx-errs" : 0,
|
|
"rx-packets" : 96,
|
|
"tx-bytes" : 8288,
|
|
"tx-dropped" : 0,
|
|
"tx-errs" : 0,
|
|
"tx-packets" : 96
|
|
}
|
|
},
|
|
{
|
|
"hardware-address" : "bc:24:11:94:71:07",
|
|
"ip-addresses" : [
|
|
{
|
|
"ip-address" : "192.168.3.180",
|
|
"ip-address-type" : "ipv4",
|
|
"prefix" : 22
|
|
},
|
|
{
|
|
"ip-address" : "2600:1700:1d1:eb00::b",
|
|
"ip-address-type" : "ipv6",
|
|
"prefix" : 128
|
|
},
|
|
--- VM 603 runtime ---
|
|
[
|
|
{
|
|
"hardware-address" : "00:00:00:00:00:00",
|
|
"ip-addresses" : [
|
|
{
|
|
"ip-address" : "127.0.0.1",
|
|
"ip-address-type" : "ipv4",
|
|
"prefix" : 8
|
|
},
|
|
{
|
|
"ip-address" : "::1",
|
|
"ip-address-type" : "ipv6",
|
|
"prefix" : 128
|
|
}
|
|
],
|
|
"name" : "lo",
|
|
"statistics" : {
|
|
"rx-bytes" : 12960,
|
|
"rx-dropped" : 0,
|
|
"rx-errs" : 0,
|
|
"rx-packets" : 160,
|
|
"tx-bytes" : 12960,
|
|
"tx-dropped" : 0,
|
|
"tx-errs" : 0,
|
|
"tx-packets" : 160
|
|
}
|
|
},
|
|
{
|
|
"hardware-address" : "bc:24:11:40:25:f8",
|
|
"ip-addresses" : [
|
|
{
|
|
"ip-address" : "192.168.1.214",
|
|
"ip-address-type" : "ipv4",
|
|
"prefix" : 22
|
|
},
|
|
{
|
|
"ip-address" : "2600:1700:1d1:eb00::a",
|
|
"ip-address-type" : "ipv6",
|
|
"prefix" : 128
|
|
},
|
|
|
|
--- /etc/pve/qemu-server
|
|
lrwxr-xr-x 1 root www-data 27 Dec 31 1969 /etc/pve/qemu-server -> nodes/pfv-tsys6/qemu-server
|
|
|
|
--- /etc/pve/firewall
|
|
total 0
|
|
drwxr-xr-x 2 root www-data 0 Apr 4 12:47 .
|
|
drwxr-xr-x 2 root www-data 0 Dec 31 1969 ..
|
|
|
|
###############################################################################
|
|
# 23. CONTAINERS (pct)
|
|
###############################################################################
|
|
|
|
--- pct list
|
|
$ pct list
|
|
|
|
--- pct config per CT
|
|
$ for ctid in $(pct list 2>/dev/null | awk 'NR>1{print $1}'); do
|
|
echo "--- CT $ctid ---"
|
|
pct config "$ctid" 2>&1
|
|
echo ""
|
|
done
|
|
|
|
###############################################################################
|
|
# 24. SERVICES / FAILED UNITS
|
|
###############################################################################
|
|
|
|
--- running services
|
|
$ systemctl list-units --type=service --state=running --no-pager
|
|
UNIT LOAD ACTIVE SUB DESCRIPTION
|
|
beszel-agent.service loaded active running Beszel Agent Service
|
|
chrony.service loaded active running chrony, an NTP client/server
|
|
cron.service loaded active running Regular background program processing daemon
|
|
dbus.service loaded active running D-Bus System Message Bus
|
|
dm-event.service loaded active running Device-mapper event daemon
|
|
getty@tty1.service loaded active running Getty on tty1
|
|
ksmtuned.service loaded active running Kernel Samepage Merging (KSM) Tuning Daemon
|
|
lldpd.service loaded active running LLDP daemon
|
|
lxc-monitord.service loaded active running LXC Container Monitoring Daemon
|
|
lxcfs.service loaded active running FUSE filesystem for LXC
|
|
nfs-blkmap.service loaded active running pNFS block layout mapping daemon
|
|
polkit.service loaded active running Authorization Manager
|
|
postfix.service loaded active running Postfix Mail Transport Agent (main/default instance)
|
|
proxmox-firewall.service loaded active running Proxmox nftables firewall
|
|
pve-cluster.service loaded active running The Proxmox VE cluster filesystem
|
|
pve-firewall.service loaded active running Proxmox VE firewall
|
|
pve-ha-crm.service loaded active running PVE Cluster HA Resource Manager Daemon
|
|
pve-ha-lrm.service loaded active running PVE Local HA Resource Manager Daemon
|
|
pve-lxc-syscalld.service loaded active running Proxmox VE LXC Syscall Daemon
|
|
pvedaemon.service loaded active running PVE API Daemon
|
|
pvefw-logger.service loaded active running Proxmox VE firewall logger
|
|
pveproxy.service loaded active running PVE API Proxy Server
|
|
pvescheduler.service loaded active running Proxmox VE scheduler
|
|
pvestatd.service loaded active running PVE Status Daemon
|
|
qmeventd.service loaded active running PVE Qemu Event Daemon
|
|
rpcbind.service loaded active running RPC bind portmap service
|
|
rrdcached.service loaded active running Data caching daemon for rrdtool
|
|
smartmontools.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon
|
|
spiceproxy.service loaded active running PVE SPICE Proxy Server
|
|
ssh.service loaded active running OpenBSD Secure Shell server
|
|
systemd-journald.service loaded active running Journal Service
|
|
systemd-logind.service loaded active running User Login Management
|
|
systemd-udevd.service loaded active running Rule-based Manager for Device Events and Files
|
|
tailscaled.service loaded active running Tailscale node agent
|
|
tuned.service loaded active running Dynamic System Tuning Daemon
|
|
user@0.service loaded active running User Manager for UID 0
|
|
watchdog-mux.service loaded active running Proxmox VE watchdog multiplexer
|
|
zfs-zed.service loaded active running ZFS Event Daemon (zed)
|
|
|
|
Legend: LOAD → Reflects whether the unit definition was properly loaded.
|
|
ACTIVE → The high-level unit activation state, i.e. generalization of SUB.
|
|
SUB → The low-level unit activation state, values depend on unit type.
|
|
|
|
38 loaded units listed.
|
|
|
|
--- failed services
|
|
$ systemctl --failed --no-pager
|
|
UNIT LOAD ACTIVE SUB DESCRIPTION
|
|
|
|
0 loaded units listed.
|
|
|
|
--- enabled services
|
|
$ systemctl list-unit-files --state=enabled --no-pager
|
|
UNIT FILE STATE PRESET
|
|
apparmor.service enabled enabled
|
|
beszel-agent.service enabled enabled
|
|
blk-availability.service enabled enabled
|
|
chrony.service enabled enabled
|
|
console-setup.service enabled enabled
|
|
corosync.service enabled enabled
|
|
cron.service enabled enabled
|
|
e2scrub_reap.service enabled enabled
|
|
getty@.service enabled enabled
|
|
grub-common.service enabled enabled
|
|
keyboard-setup.service enabled enabled
|
|
ksmtuned.service enabled enabled
|
|
lldpd.service enabled enabled
|
|
lvm2-monitor.service enabled enabled
|
|
lxc-monitord.service enabled enabled
|
|
lxc-net.service enabled enabled
|
|
lxc.service enabled enabled
|
|
lxcfs.service enabled enabled
|
|
netavark-dhcp-proxy.service enabled enabled
|
|
netavark-firewalld-reload.service enabled enabled
|
|
networking.service enabled enabled
|
|
nfs-blkmap.service enabled enabled
|
|
nvmefc-boot-connections.service enabled enabled
|
|
nvmf-autoconnect.service enabled enabled
|
|
open-iscsi.service enabled enabled
|
|
postfix.service enabled enabled
|
|
proxmox-boot-cleanup.service enabled enabled
|
|
proxmox-firewall.service enabled enabled
|
|
pve-cluster.service enabled enabled
|
|
pve-firewall-commit.service enabled enabled
|
|
pve-firewall.service enabled enabled
|
|
pve-guests.service enabled enabled
|
|
pve-ha-crm.service enabled enabled
|
|
pve-ha-lrm.service enabled enabled
|
|
pve-lxc-syscalld.service enabled enabled
|
|
pve-query-machine-capabilities.service enabled enabled
|
|
pve-sdn-commit.service enabled enabled
|
|
pvebanner.service enabled enabled
|
|
pvedaemon.service enabled enabled
|
|
pvefw-logger.service enabled enabled
|
|
pvenetcommit.service enabled enabled
|
|
pveproxy.service enabled enabled
|
|
pvescheduler.service enabled enabled
|
|
pvestatd.service enabled enabled
|
|
qmeventd.service enabled enabled
|
|
rbdmap.service enabled enabled
|
|
rpcbind.service enabled enabled
|
|
rrdcached.service enabled enabled
|
|
smartmontools.service enabled enabled
|
|
spiceproxy.service enabled enabled
|
|
ssh.service enabled enabled
|
|
sshd-keygen.service enabled enabled
|
|
sysstat.service enabled enabled
|
|
systemd-pstore.service enabled enabled
|
|
tailscaled.service enabled enabled
|
|
tuned.service enabled enabled
|
|
wtmpdb-update-boot.service enabled enabled
|
|
zfs-import-cache.service enabled enabled
|
|
zfs-mount.service enabled enabled
|
|
zfs-share.service enabled enabled
|
|
zfs-volume-wait.service enabled enabled
|
|
zfs-zed.service enabled enabled
|
|
system-xfs_scrub.slice enabled enabled
|
|
dm-event.socket enabled enabled
|
|
iscsid.socket enabled enabled
|
|
lvm2-lvmpolld.socket enabled enabled
|
|
netavark-dhcp-proxy.socket enabled enabled
|
|
rpcbind.socket enabled enabled
|
|
rrdcached.socket enabled enabled
|
|
uuidd.socket enabled enabled
|
|
ceph-fuse.target enabled enabled
|
|
ceph.target enabled enabled
|
|
nfs-client.target enabled enabled
|
|
remote-fs.target enabled enabled
|
|
zfs-import.target enabled enabled
|
|
zfs-volumes.target enabled enabled
|
|
zfs.target enabled enabled
|
|
apt-daily-upgrade.timer enabled enabled
|
|
apt-daily.timer enabled enabled
|
|
beszel-agent-update.timer enabled enabled
|
|
dpkg-db-backup.timer enabled enabled
|
|
e2scrub_all.timer enabled enabled
|
|
fstrim.timer enabled enabled
|
|
logrotate.timer enabled enabled
|
|
man-db.timer enabled enabled
|
|
pve-daily-update.timer enabled enabled
|
|
sysstat-collect.timer enabled enabled
|
|
sysstat-rotate.timer enabled enabled
|
|
sysstat-summary.timer enabled enabled
|
|
xfs_scrub_all.timer enabled enabled
|
|
|
|
90 unit files listed.
|
|
|
|
--- pve-* service status
|
|
$ systemctl status pve-cluster pvedaemon pveproxy pve-firewall pve-ha-crm pve-ha-lrm pvestatd pvebanner --no-pager 2>&1 | head -n 120
|
|
● pve-cluster.service - The Proxmox VE cluster filesystem
|
|
Loaded: loaded (/usr/lib/systemd/system/pve-cluster.service; enabled; preset: enabled)
|
|
Active: active (running) since Sun 2026-07-26 16:19:04 CDT; 11min ago
|
|
Invocation: 06e68d32bce34b4d967ffb12b9bc0040
|
|
Main PID: 1225 (pmxcfs)
|
|
Tasks: 6 (limit: 115736)
|
|
Memory: 57.5M (peak: 64.7M)
|
|
CPU: 945ms
|
|
CGroup: /system.slice/pve-cluster.service
|
|
└─1225 /usr/bin/pmxcfs
|
|
|
|
Jul 26 16:19:02 pfv-tsys6 systemd[1]: Starting pve-cluster.service - The Proxmox VE cluster filesystem...
|
|
Jul 26 16:19:02 pfv-tsys6 pmxcfs[1188]: [main] notice: resolved node name 'pfv-tsys6' to '192.168.100.2' for default node IP address
|
|
Jul 26 16:19:02 pfv-tsys6 pmxcfs[1188]: [main] notice: resolved node name 'pfv-tsys6' to '192.168.100.2' for default node IP address
|
|
Jul 26 16:19:04 pfv-tsys6 systemd[1]: Started pve-cluster.service - The Proxmox VE cluster filesystem.
|
|
|
|
● pvedaemon.service - PVE API Daemon
|
|
Loaded: loaded (/usr/lib/systemd/system/pvedaemon.service; enabled; preset: enabled)
|
|
Active: active (running) since Sun 2026-07-26 16:19:14 CDT; 12min ago
|
|
Invocation: 444c4af193194e7d9355c0679b68cb7e
|
|
Main PID: 1488 (pvedaemon)
|
|
Tasks: 4 (limit: 115736)
|
|
Memory: 178.8M (peak: 195.2M)
|
|
CPU: 2.378s
|
|
CGroup: /system.slice/pvedaemon.service
|
|
├─1488 pvedaemon
|
|
├─1489 "pvedaemon worker"
|
|
├─1490 "pvedaemon worker"
|
|
└─1491 "pvedaemon worker"
|
|
|
|
Jul 26 16:19:04 pfv-tsys6 systemd[1]: Starting pvedaemon.service - PVE API Daemon...
|
|
Jul 26 16:19:13 pfv-tsys6 pvedaemon[1488]: starting server
|
|
Jul 26 16:19:13 pfv-tsys6 pvedaemon[1488]: starting 3 worker(s)
|
|
Jul 26 16:19:13 pfv-tsys6 pvedaemon[1488]: worker 1489 started
|
|
Jul 26 16:19:13 pfv-tsys6 pvedaemon[1488]: worker 1490 started
|
|
Jul 26 16:19:13 pfv-tsys6 pvedaemon[1488]: worker 1491 started
|
|
Jul 26 16:19:14 pfv-tsys6 systemd[1]: Started pvedaemon.service - PVE API Daemon.
|
|
Jul 26 16:19:18 pfv-tsys6 pvedaemon[1491]: <root@pam> successful auth for user 'root@pam'
|
|
Jul 26 16:19:27 pfv-tsys6 pvedaemon[1490]: <root@pam> successful auth for user 'root@pam'
|
|
|
|
● pveproxy.service - PVE API Proxy Server
|
|
Loaded: loaded (/usr/lib/systemd/system/pveproxy.service; enabled; preset: enabled)
|
|
Active: active (running) since Sun 2026-07-26 16:19:17 CDT; 12min ago
|
|
Invocation: ee0b6bee858248c5a77e5181a9a3bbb0
|
|
Main PID: 1512 (pveproxy)
|
|
Tasks: 4 (limit: 115736)
|
|
Memory: 204.4M (peak: 205.6M)
|
|
CPU: 3.818s
|
|
CGroup: /system.slice/pveproxy.service
|
|
├─1512 pveproxy
|
|
├─1513 "pveproxy worker"
|
|
├─1514 "pveproxy worker"
|
|
└─1515 "pveproxy worker"
|
|
|
|
Jul 26 16:19:14 pfv-tsys6 systemd[1]: Starting pveproxy.service - PVE API Proxy Server...
|
|
Jul 26 16:19:17 pfv-tsys6 pveproxy[1512]: starting server
|
|
Jul 26 16:19:17 pfv-tsys6 pveproxy[1512]: starting 3 worker(s)
|
|
Jul 26 16:19:17 pfv-tsys6 pveproxy[1512]: worker 1513 started
|
|
Jul 26 16:19:17 pfv-tsys6 pveproxy[1512]: worker 1514 started
|
|
Jul 26 16:19:17 pfv-tsys6 pveproxy[1512]: worker 1515 started
|
|
Jul 26 16:19:17 pfv-tsys6 systemd[1]: Started pveproxy.service - PVE API Proxy Server.
|
|
|
|
● pve-firewall.service - Proxmox VE firewall
|
|
Loaded: loaded (/usr/lib/systemd/system/pve-firewall.service; enabled; preset: enabled)
|
|
Active: active (running) since Sun 2026-07-26 16:19:12 CDT; 12min ago
|
|
Invocation: d9b3bf78833340a7ba3d0f86278ba61e
|
|
Main PID: 1399 (pve-firewall)
|
|
Tasks: 1 (limit: 115736)
|
|
Memory: 107.9M (peak: 133.9M)
|
|
CPU: 8.256s
|
|
CGroup: /system.slice/pve-firewall.service
|
|
└─1399 pve-firewall
|
|
|
|
Jul 26 16:19:04 pfv-tsys6 systemd[1]: Starting pve-firewall.service - Proxmox VE firewall...
|
|
Jul 26 16:19:12 pfv-tsys6 pve-firewall[1399]: starting server
|
|
Jul 26 16:19:12 pfv-tsys6 systemd[1]: Started pve-firewall.service - Proxmox VE firewall.
|
|
|
|
● pve-ha-crm.service - PVE Cluster HA Resource Manager Daemon
|
|
Loaded: loaded (/usr/lib/systemd/system/pve-ha-crm.service; enabled; preset: enabled)
|
|
Active: active (running) since Sun 2026-07-26 16:19:15 CDT; 12min ago
|
|
Invocation: 206ff3191fb948b8846eb0aa63fbf758
|
|
Main PID: 1499 (pve-ha-crm)
|
|
Tasks: 1 (limit: 115736)
|
|
Memory: 115.9M (peak: 135.3M)
|
|
CPU: 1.613s
|
|
CGroup: /system.slice/pve-ha-crm.service
|
|
└─1499 pve-ha-crm
|
|
|
|
Jul 26 16:19:14 pfv-tsys6 systemd[1]: Starting pve-ha-crm.service - PVE Cluster HA Resource Manager Daemon...
|
|
Jul 26 16:19:15 pfv-tsys6 pve-ha-crm[1499]: starting server
|
|
Jul 26 16:19:15 pfv-tsys6 pve-ha-crm[1499]: status change startup => wait_for_quorum
|
|
Jul 26 16:19:15 pfv-tsys6 systemd[1]: Started pve-ha-crm.service - PVE Cluster HA Resource Manager Daemon.
|
|
|
|
● pve-ha-lrm.service - PVE Local HA Resource Manager Daemon
|
|
Loaded: loaded (/usr/lib/systemd/system/pve-ha-lrm.service; enabled; preset: enabled)
|
|
Active: active (running) since Sun 2026-07-26 16:19:18 CDT; 12min ago
|
|
Invocation: 517586c238044dc1921804c41903b415
|
|
Main PID: 1560 (pve-ha-lrm)
|
|
Tasks: 1 (limit: 115736)
|
|
Memory: 115.3M (peak: 134.6M)
|
|
CPU: 1.711s
|
|
CGroup: /system.slice/pve-ha-lrm.service
|
|
└─1560 pve-ha-lrm
|
|
|
|
Jul 26 16:19:17 pfv-tsys6 systemd[1]: Starting pve-ha-lrm.service - PVE Local HA Resource Manager Daemon...
|
|
Jul 26 16:19:18 pfv-tsys6 pve-ha-lrm[1560]: starting server
|
|
Jul 26 16:19:18 pfv-tsys6 pve-ha-lrm[1560]: status change startup => wait_for_agent_lock
|
|
Jul 26 16:19:18 pfv-tsys6 systemd[1]: Started pve-ha-lrm.service - PVE Local HA Resource Manager Daemon.
|
|
|
|
● pvestatd.service - PVE Status Daemon
|
|
Loaded: loaded (/usr/lib/systemd/system/pvestatd.service; enabled; preset: enabled)
|
|
Active: active (running) since Sun 2026-07-26 16:19:12 CDT; 12min ago
|
|
Invocation: 2831f5f068454cceb8c15847f0d95a82
|
|
Main PID: 1414 (pvestatd)
|
|
Tasks: 1 (limit: 115736)
|
|
Memory: 122.8M (peak: 204.3M)
|
|
CPU: 20.666s
|
|
CGroup: /system.slice/pvestatd.service
|
|
└─1414 pvestatd
|
|
|
|
|
|
--- storage-related service status
|
|
$ systemctl status nfs-kernel-server nfs-server rpcbind rpc-statd zfs-import zfs-mount zfs-target smartd nvme-stat multipathd --no-pager 2>&1 | head -n 80
|
|
Unit nfs-kernel-server.service could not be found.
|
|
Unit nfs-server.service could not be found.
|
|
Unit zfs-target.service could not be found.
|
|
Unit nvme-stat.service could not be found.
|
|
Unit multipathd.service could not be found.
|
|
● rpcbind.service - RPC bind portmap service
|
|
Loaded: loaded (/usr/lib/systemd/system/rpcbind.service; enabled; preset: enabled)
|
|
Active: active (running) since Sun 2026-07-26 16:18:39 CDT; 12min ago
|
|
Invocation: ed2b247a563d4814a058678c3c651ee2
|
|
TriggeredBy: ● rpcbind.socket
|
|
Docs: man:rpcbind(8)
|
|
Main PID: 841 (rpcbind)
|
|
Tasks: 1 (limit: 115736)
|
|
Memory: 620K (peak: 1.7M)
|
|
CPU: 14ms
|
|
CGroup: /system.slice/rpcbind.service
|
|
└─841 /usr/sbin/rpcbind -f -w
|
|
|
|
Jul 26 16:18:39 pfv-tsys6 systemd[1]: Starting rpcbind.service - RPC bind portmap service...
|
|
Jul 26 16:18:39 pfv-tsys6 systemd[1]: Started rpcbind.service - RPC bind portmap service.
|
|
|
|
○ rpc-statd.service - NFS status monitor for NFSv2/3 locking.
|
|
Loaded: loaded (/usr/lib/systemd/system/rpc-statd.service; static)
|
|
Active: inactive (dead)
|
|
Docs: man:rpc.statd(8)
|
|
|
|
○ zfs-import.service
|
|
Loaded: masked (Reason: Unit zfs-import.service is masked.)
|
|
Active: inactive (dead)
|
|
|
|
● zfs-mount.service - Mount ZFS filesystems
|
|
Loaded: loaded (/usr/lib/systemd/system/zfs-mount.service; enabled; preset: enabled)
|
|
Active: active (exited) since Sun 2026-07-26 16:18:23 CDT; 13min ago
|
|
Invocation: 53bddb8a7caf4143aedf1958631b5e17
|
|
Docs: man:zfs(8)
|
|
Main PID: 678 (code=exited, status=0/SUCCESS)
|
|
Mem peak: 1.6M
|
|
CPU: 15ms
|
|
|
|
Jul 26 16:18:22 pfv-tsys6 systemd[1]: Starting zfs-mount.service - Mount ZFS filesystems...
|
|
Jul 26 16:18:23 pfv-tsys6 systemd[1]: Finished zfs-mount.service - Mount ZFS filesystems.
|
|
|
|
● smartmontools.service - Self Monitoring and Reporting Technology (SMART) Daemon
|
|
Loaded: loaded (/usr/lib/systemd/system/smartmontools.service; enabled; preset: enabled)
|
|
Active: active (running) since Sun 2026-07-26 16:18:44 CDT; 12min ago
|
|
Invocation: 40eacc0ae7d043f0bfa57f9fe99e589b
|
|
Docs: man:smartd(8)
|
|
man:smartd.conf(5)
|
|
Main PID: 857 (smartd)
|
|
Status: "Next check of 1 device will start at 16:48:44"
|
|
Tasks: 1 (limit: 115736)
|
|
Memory: 3.5M (peak: 4.6M)
|
|
CPU: 52ms
|
|
CGroup: /system.slice/smartmontools.service
|
|
└─857 /usr/sbin/smartd -n -q never
|
|
|
|
Jul 26 16:18:42 pfv-tsys6 smartd[857]: Configuration file /etc/smartd.conf was parsed, found DEVICESCAN, scanning devices
|
|
Jul 26 16:18:42 pfv-tsys6 smartd[857]: Device: /dev/sda [SAT], opened
|
|
Jul 26 16:18:43 pfv-tsys6 smartd[857]: Device: /dev/sda [SAT], WDC WD20SDRM-59A4DS1, S/N:WD-WXL2A232X5RX, WWN:5-0014ee-215a96feb, FW:01.01A01, 2.00 TB
|
|
Jul 26 16:18:43 pfv-tsys6 smartd[857]: Device: /dev/sda [SAT], not found in smartd database 7.5/5706.
|
|
Jul 26 16:18:43 pfv-tsys6 smartd[857]: Device: /dev/sda [SAT], is SMART capable. Adding to "monitor" list.
|
|
Jul 26 16:18:43 pfv-tsys6 smartd[857]: Device: /dev/sda [SAT], state read from /var/lib/smartmontools/smartd.WDC_WD20SDRM_59A4DS1-WD_WXL2A232X5RX.ata.state
|
|
Jul 26 16:18:43 pfv-tsys6 smartd[857]: Monitoring 1 ATA/SATA, 0 SCSI/SAS and 0 NVMe devices
|
|
Jul 26 16:18:43 pfv-tsys6 smartd[857]: Device: /dev/sda [SAT], SMART Prefailure Attribute: 3 Spin_Up_Time changed from 194 to 195
|
|
Jul 26 16:18:44 pfv-tsys6 smartd[857]: Device: /dev/sda [SAT], state written to /var/lib/smartmontools/smartd.WDC_WD20SDRM_59A4DS1-WD_WXL2A232X5RX.ata.state
|
|
Jul 26 16:18:44 pfv-tsys6 systemd[1]: Started smartmontools.service - Self Monitoring and Reporting Technology (SMART) Daemon.
|
|
|
|
###############################################################################
|
|
# 25. TIMERS / CRON
|
|
###############################################################################
|
|
|
|
--- systemctl list-timers
|
|
$ systemctl list-timers --all --no-pager
|
|
NEXT LEFT LAST PASSED UNIT ACTIVATES
|
|
Sun 2026-07-26 16:32:55 CDT 1min 22s - - systemd-tmpfiles-clean.timer systemd-tmpfiles-clean.service
|
|
Sun 2026-07-26 16:40:00 CDT 8min Sun 2026-07-26 16:30:03 CDT 1min 29s ago sysstat-collect.timer sysstat-collect.service
|
|
Sun 2026-07-26 21:32:37 CDT 5h 1min Sun 2026-07-26 11:24:32 CDT - apt-daily.timer apt-daily.service
|
|
Mon 2026-07-27 00:00:00 CDT 7h Sun 2026-07-26 00:00:08 CDT - dpkg-db-backup.timer dpkg-db-backup.service
|
|
Mon 2026-07-27 00:00:00 CDT 7h - - sysstat-rotate.timer sysstat-rotate.service
|
|
Mon 2026-07-27 00:07:00 CDT 7h - - sysstat-summary.timer sysstat-summary.service
|
|
Mon 2026-07-27 00:27:03 CDT 7h Mon 2026-07-20 00:09:30 CDT - fstrim.timer fstrim.service
|
|
Mon 2026-07-27 00:31:55 CDT 8h Sun 2026-07-26 00:58:33 CDT - logrotate.timer logrotate.service
|
|
Mon 2026-07-27 01:15:29 CDT 8h Sun 2026-07-26 03:50:00 CDT - beszel-agent-update.timer beszel-agent-update.service
|
|
Mon 2026-07-27 02:09:57 CDT 9h Sun 2026-07-26 03:03:30 CDT - pve-daily-update.timer pve-daily-update.service
|
|
Mon 2026-07-27 06:06:03 CDT 13h Sun 2026-07-26 06:44:51 CDT - apt-daily-upgrade.timer apt-daily-upgrade.service
|
|
Mon 2026-07-27 10:51:27 CDT 18h Sun 2026-07-26 01:32:41 CDT - man-db.timer man-db.service
|
|
Sun 2026-08-02 03:10:04 CDT 6 days Sun 2026-07-26 03:11:00 CDT - xfs_scrub_all.timer xfs_scrub_all.service
|
|
Sun 2026-08-02 03:10:15 CDT 6 days Sun 2026-07-26 03:10:43 CDT - e2scrub_all.timer e2scrub_all.service
|
|
|
|
14 timers listed.
|
|
|
|
--- /etc/cron.d
|
|
total 24
|
|
drwxr-xr-x 2 root root 4096 Jul 26 16:27 .
|
|
drwxr-xr-x 106 root root 4096 Jul 26 16:27 ..
|
|
-rw-r--r-- 1 root root 188 Jul 30 2025 e2scrub_all
|
|
-rw-r--r-- 1 root root 102 Jun 13 2025 .placeholder
|
|
-rw-r--r-- 1 root root 400 Jan 15 2024 sysstat
|
|
lrwxrwxrwx 1 root root 20 Apr 4 12:47 vzdump -> /etc/pve/vzdump.cron
|
|
-rw-r--r-- 1 root root 377 Aug 26 2025 zfsutils-linux
|
|
|
|
--- /etc/cron.daily
|
|
total 32
|
|
drwxr-xr-x 2 root root 4096 Jul 26 16:27 .
|
|
drwxr-xr-x 106 root root 4096 Jul 26 16:27 ..
|
|
-rwxr-xr-x 1 root root 1478 Jun 24 2025 apt-compat
|
|
-rwxr-xr-x 1 root root 123 May 27 2025 dpkg
|
|
-rwxr-xr-x 1 root root 377 Jul 14 2024 logrotate
|
|
-rwxr-xr-x 1 root root 1395 May 2 2025 man-db
|
|
-rw-r--r-- 1 root root 102 Jun 13 2025 .placeholder
|
|
-rwxr-xr-x 1 root root 526 Jan 15 2024 sysstat
|
|
|
|
--- /etc/cron.hourly
|
|
total 12
|
|
drwxr-xr-x 2 root root 4096 Apr 4 12:31 .
|
|
drwxr-xr-x 106 root root 4096 Jul 26 16:27 ..
|
|
-rw-r--r-- 1 root root 102 Jun 13 2025 .placeholder
|
|
|
|
--- /etc/cron.weekly
|
|
total 16
|
|
drwxr-xr-x 2 root root 4096 Apr 4 12:31 .
|
|
drwxr-xr-x 106 root root 4096 Jul 26 16:27 ..
|
|
-rwxr-xr-x 1 root root 1055 May 2 2025 man-db
|
|
-rw-r--r-- 1 root root 102 Jun 13 2025 .placeholder
|
|
|
|
--- crontabs
|
|
--- /etc/crontab ---
|
|
# /etc/crontab: system-wide crontab
|
|
# Unlike any other crontab you don't have to run the `crontab'
|
|
# command to install the new version when you edit this file
|
|
# and files in /etc/cron.d. These files also have username fields,
|
|
# that none of the other crontabs do.
|
|
|
|
SHELL=/bin/sh
|
|
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
|
|
|
|
# Example of job definition:
|
|
# .---------------- minute (0 - 59)
|
|
# | .------------- hour (0 - 23)
|
|
# | | .---------- day of month (1 - 31)
|
|
# | | | .------- month (1 - 12) OR jan,feb,mar,apr ...
|
|
# | | | | .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat
|
|
# | | | | |
|
|
# * * * * * user-name command to be executed
|
|
17 * * * * root cd / && run-parts --report /etc/cron.hourly
|
|
25 6 * * * root test -x /usr/sbin/anacron || { cd / && run-parts --report /etc/cron.daily; }
|
|
47 6 * * 7 root test -x /usr/sbin/anacron || { cd / && run-parts --report /etc/cron.weekly; }
|
|
52 6 1 * * root test -x /usr/sbin/anacron || { cd / && run-parts --report /etc/cron.monthly; }
|
|
#
|
|
|
|
--- root crontab
|
|
$ crontab -l 2>/dev/null || echo " [no root crontab]"
|
|
[no root crontab]
|
|
|
|
###############################################################################
|
|
# 26. LIVE PERFORMANCE SNAPSHOT
|
|
###############################################################################
|
|
|
|
--- /proc/loadavg
|
|
$ cat /proc/loadavg
|
|
1.48 1.09 0.81 1/415 10058
|
|
|
|
--- vmstat 1 3
|
|
$ vmstat 1 3
|
|
procs -----------memory---------- ---swap-- -----io---- -system-- -------cpu-------
|
|
r b swpd free buff cache si so bi bo in cs us sy id wa st gu
|
|
0 0 0 93275596 23408 1692420 0 0 2209 352 6116 3 1 1 92 6 0 0
|
|
0 0 0 93276596 23408 1692516 0 0 0 0 2367 3188 0 1 99 0 0 0
|
|
0 0 0 93277592 23416 1692540 0 0 20 128 1549 2938 0 0 99 0 0 0
|
|
|
|
--- mpstat 1 3 (per-cpu)
|
|
$ mpstat 1 3
|
|
Linux 6.17.2-1-pve (pfv-tsys6) 07/26/2026 _x86_64_ (16 CPU)
|
|
|
|
04:31:34 PM CPU %usr %nice %sys %iowait %irq %soft %steal %guest %gnice %idle
|
|
04:31:35 PM all 0.00 0.00 0.00 0.44 0.00 0.00 0.00 0.19 0.00 99.31
|
|
04:31:36 PM all 0.00 0.00 0.06 0.00 0.00 0.00 0.00 0.06 0.00 99.81
|
|
04:31:37 PM all 0.00 0.00 0.06 0.00 0.00 0.00 0.00 0.19 0.00 99.69
|
|
Average: all 0.00 0.00 0.04 0.15 0.00 0.00 0.00 0.15 0.00 99.65
|
|
|
|
--- iostat -xz 1 3
|
|
$ iostat -xz 1 3
|
|
Linux 6.17.2-1-pve (pfv-tsys6) 07/26/2026 _x86_64_ (16 CPU)
|
|
|
|
avg-cpu: %user %nice %system %iowait %steal %idle
|
|
1.40 0.00 1.26 5.75 0.00 91.59
|
|
|
|
Device r/s rkB/s rrqm/s %rrqm r_await rareq-sz w/s wkB/s wrqm/s %wrqm w_await wareq-sz d/s dkB/s drqm/s %drqm d_await dareq-sz f/s f_await aqu-sz %util
|
|
dm-0 0.16 2.68 0.00 0.00 39.72 16.92 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.01 0.61
|
|
dm-1 28.64 2128.69 0.00 0.00 26.21 74.32 19.41 350.43 0.00 0.00 7.09 18.06 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.89 24.79
|
|
dm-2 0.03 9.81 0.00 0.00 13.71 288.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.05
|
|
sda 35.81 2196.08 8.89 19.88 9.34 61.33 14.37 350.43 7.10 33.07 3.81 24.39 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.39 21.55
|
|
|
|
|
|
avg-cpu: %user %nice %system %iowait %steal %idle
|
|
0.13 0.00 0.06 1.25 0.00 98.56
|
|
|
|
Device r/s rkB/s rrqm/s %rrqm r_await rareq-sz w/s wkB/s wrqm/s %wrqm w_await wareq-sz d/s dkB/s drqm/s %drqm d_await dareq-sz f/s f_await aqu-sz %util
|
|
|
|
|
|
avg-cpu: %user %nice %system %iowait %steal %idle
|
|
0.13 0.00 1.25 8.52 0.00 90.10
|
|
|
|
Device r/s rkB/s rrqm/s %rrqm r_await rareq-sz w/s wkB/s wrqm/s %wrqm w_await wareq-sz d/s dkB/s drqm/s %drqm d_await dareq-sz f/s f_await aqu-sz %util
|
|
dm-1 0.00 0.00 0.00 0.00 0.00 0.00 13.00 224.00 0.00 0.00 1.62 17.23 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.02 1.20
|
|
sda 0.00 0.00 0.00 0.00 0.00 0.00 7.00 224.00 7.00 50.00 2.43 32.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.02 1.20
|
|
|
|
|
|
|
|
--- sar -dp 1 2
|
|
$ sar -dp 1 2
|
|
Linux 6.17.2-1-pve (pfv-tsys6) 07/26/2026 _x86_64_ (16 CPU)
|
|
|
|
04:31:39 PM tps rkB/s wkB/s dkB/s areq-sz aqu-sz await %util DEV
|
|
04:31:40 PM 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 sda
|
|
04:31:40 PM 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 pve-swap
|
|
04:31:40 PM 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 pve-root
|
|
04:31:40 PM 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 pve-data_tmeta
|
|
|
|
04:31:40 PM tps rkB/s wkB/s dkB/s areq-sz aqu-sz await %util DEV
|
|
04:31:41 PM 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 sda
|
|
04:31:41 PM 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 pve-swap
|
|
04:31:41 PM 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 pve-root
|
|
04:31:41 PM 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 pve-data_tmeta
|
|
|
|
Average: tps rkB/s wkB/s dkB/s areq-sz aqu-sz await %util DEV
|
|
Average: 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 sda
|
|
Average: 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 pve-swap
|
|
Average: 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 pve-root
|
|
Average: 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 pve-data_tmeta
|
|
|
|
--- sar -n DEV 1 2
|
|
$ sar -n DEV 1 2
|
|
Linux 6.17.2-1-pve (pfv-tsys6) 07/26/2026 _x86_64_ (16 CPU)
|
|
|
|
04:31:41 PM IFACE rxpck/s txpck/s rxkB/s txkB/s rxcmp/s txcmp/s rxmcst/s %ifutil
|
|
04:31:42 PM lo 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
|
|
04:31:42 PM nic0 37.00 8.00 4.62 2.71 0.00 0.00 17.00 0.00
|
|
04:31:42 PM nic1 51.00 52.00 5.65 4.62 0.00 0.00 0.00 0.00
|
|
04:31:42 PM nic2 4.00 0.00 0.64 0.00 0.00 0.00 0.00 0.00
|
|
04:31:42 PM nic3 1.00 0.00 0.06 0.00 0.00 0.00 1.00 0.00
|
|
04:31:42 PM nic4 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
|
|
04:31:42 PM nic5 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
|
|
04:31:42 PM tailscale0 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
|
|
04:31:42 PM vmbr0 26.00 0.00 1.56 0.00 0.00 0.00 12.00 0.00
|
|
04:31:42 PM nic3.2 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
|
|
04:31:42 PM br-rr-mgmt 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
|
|
04:31:42 PM bond0 55.00 52.00 6.29 4.62 0.00 0.00 0.00 0.00
|
|
04:31:42 PM storagenet 64.00 98.00 6.33 8.78 0.00 0.00 0.00 0.00
|
|
04:31:42 PM tap601i0 2.00 28.00 0.35 2.27 0.00 0.00 0.00 0.00
|
|
04:31:42 PM fwbr601i0 26.00 0.00 1.56 0.00 0.00 0.00 12.00 0.00
|
|
04:31:42 PM fwpr601p0 2.00 28.00 0.35 2.27 0.00 0.00 0.00 0.00
|
|
04:31:42 PM fwln601i0 28.00 2.00 2.27 0.35 0.00 0.00 0.00 0.00
|
|
04:31:42 PM tap602i0 9.00 47.00 3.46 9.81 0.00 0.00 0.00 0.00
|
|
04:31:42 PM fwbr602i0 26.00 0.00 1.56 0.00 0.00 0.00 12.00 0.00
|
|
04:31:42 PM fwpr602p0 9.00 47.00 3.46 9.81 0.00 0.00 0.00 0.00
|
|
04:31:42 PM fwln602i0 47.00 9.00 9.81 3.46 0.00 0.00 0.00 0.00
|
|
04:31:42 PM tap603i0 2.00 28.00 0.35 2.27 0.00 0.00 0.00 0.00
|
|
04:31:42 PM fwbr603i0 26.00 0.00 1.56 0.00 0.00 0.00 12.00 0.00
|
|
04:31:42 PM fwpr603p0 2.00 28.00 0.35 2.27 0.00 0.00 0.00 0.00
|
|
04:31:42 PM fwln603i0 28.00 2.00 2.27 0.35 0.00 0.00 0.00 0.00
|
|
|
|
04:31:42 PM IFACE rxpck/s txpck/s rxkB/s txkB/s rxcmp/s txcmp/s rxmcst/s %ifutil
|
|
04:31:43 PM lo 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
|
|
04:31:43 PM nic0 58.00 14.00 11.88 3.90 0.00 0.00 17.00 0.01
|
|
04:31:43 PM nic1 1.00 0.00 0.06 0.00 0.00 0.00 1.00 0.00
|
|
04:31:43 PM nic2 13.00 46.00 1.80 4.54 0.00 0.00 0.00 0.00
|
|
04:31:43 PM nic3 1.00 0.00 0.06 0.00 0.00 0.00 1.00 0.00
|
|
04:31:43 PM nic4 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
|
|
04:31:43 PM nic5 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
|
|
04:31:43 PM tailscale0 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
|
|
04:31:43 PM vmbr0 23.00 6.00 1.65 1.27 0.00 0.00 8.00 0.00
|
|
04:31:43 PM nic3.2 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
|
|
04:31:43 PM br-rr-mgmt 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
|
|
04:31:43 PM bond0 14.00 46.00 1.86 4.54 0.00 0.00 1.00 0.00
|
|
04:31:43 PM storagenet 1.00 0.00 0.04 0.00 0.00 0.00 1.00 0.00
|
|
04:31:43 PM tap601i0 0.00 18.00 0.00 1.18 0.00 0.00 0.00 0.00
|
|
04:31:43 PM fwbr601i0 18.00 0.00 0.94 0.00 0.00 0.00 8.00 0.00
|
|
04:31:43 PM fwpr601p0 0.00 18.00 0.00 1.18 0.00 0.00 0.00 0.00
|
|
04:31:43 PM fwln601i0 18.00 0.00 1.18 0.00 0.00 0.00 0.00 0.00
|
|
04:31:43 PM tap602i0 4.00 38.00 1.35 8.61 0.00 0.00 0.00 0.00
|
|
04:31:43 PM fwbr602i0 18.00 0.00 0.94 0.00 0.00 0.00 8.00 0.00
|
|
04:31:43 PM fwpr602p0 4.00 38.00 1.35 8.61 0.00 0.00 0.00 0.00
|
|
04:31:43 PM fwln602i0 38.00 4.00 8.61 1.35 0.00 0.00 0.00 0.00
|
|
04:31:43 PM tap603i0 0.00 18.00 0.00 1.18 0.00 0.00 0.00 0.00
|
|
04:31:43 PM fwbr603i0 18.00 0.00 0.94 0.00 0.00 0.00 8.00 0.00
|
|
04:31:43 PM fwpr603p0 0.00 18.00 0.00 1.18 0.00 0.00 0.00 0.00
|
|
04:31:43 PM fwln603i0 18.00 0.00 1.18 0.00 0.00 0.00 0.00 0.00
|
|
|
|
Average: IFACE rxpck/s txpck/s rxkB/s txkB/s rxcmp/s txcmp/s rxmcst/s %ifutil
|
|
Average: lo 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
|
|
Average: nic0 47.50 11.00 8.25 3.31 0.00 0.00 17.00 0.01
|
|
Average: nic1 26.00 26.00 2.86 2.31 0.00 0.00 0.50 0.00
|
|
Average: nic2 8.50 23.00 1.22 2.27 0.00 0.00 0.00 0.00
|
|
Average: nic3 1.00 0.00 0.06 0.00 0.00 0.00 1.00 0.00
|
|
Average: nic4 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
|
|
Average: nic5 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
|
|
Average: tailscale0 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
|
|
Average: vmbr0 24.50 3.00 1.60 0.63 0.00 0.00 10.00 0.00
|
|
Average: nic3.2 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
|
|
Average: br-rr-mgmt 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
|
|
Average: bond0 34.50 49.00 4.08 4.58 0.00 0.00 0.50 0.00
|
|
Average: storagenet 32.50 49.00 3.19 4.39 0.00 0.00 0.50 0.00
|
|
Average: tap601i0 1.00 23.00 0.17 1.72 0.00 0.00 0.00 0.00
|
|
Average: fwbr601i0 22.00 0.00 1.25 0.00 0.00 0.00 10.00 0.00
|
|
Average: fwpr601p0 1.00 23.00 0.17 1.72 0.00 0.00 0.00 0.00
|
|
Average: fwln601i0 23.00 1.00 1.72 0.17 0.00 0.00 0.00 0.00
|
|
Average: tap602i0 6.50 42.50 2.41 9.21 0.00 0.00 0.00 0.00
|
|
Average: fwbr602i0 22.00 0.00 1.25 0.00 0.00 0.00 10.00 0.00
|
|
Average: fwpr602p0 6.50 42.50 2.41 9.21 0.00 0.00 0.00 0.00
|
|
Average: fwln602i0 42.50 6.50 9.21 2.41 0.00 0.00 0.00 0.00
|
|
Average: tap603i0 1.00 23.00 0.17 1.72 0.00 0.00 0.00 0.00
|
|
Average: fwbr603i0 22.00 0.00 1.25 0.00 0.00 0.00 10.00 0.00
|
|
Average: fwpr603p0 1.00 23.00 0.17 1.72 0.00 0.00 0.00 0.00
|
|
Average: fwln603i0 23.00 1.00 1.72 0.17 0.00 0.00 0.00 0.00
|
|
|
|
--- sar -n NFS,NFSD 1 2
|
|
$ sar -n NFS,NFSD 1 2
|
|
Linux 6.17.2-1-pve (pfv-tsys6) 07/26/2026 _x86_64_ (16 CPU)
|
|
|
|
04:31:43 PM call/s retrans/s read/s write/s access/s getatt/s
|
|
04:31:44 PM 5.00 0.00 0.00 4.00 0.00 0.00
|
|
|
|
04:31:43 PM scall/s badcall/s packet/s udp/s tcp/s hit/s miss/s sread/s swrite/s saccess/s sgetatt/s
|
|
04:31:44 PM 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
|
|
|
|
04:31:44 PM call/s retrans/s read/s write/s access/s getatt/s
|
|
04:31:45 PM 1.00 0.00 0.00 1.00 0.00 0.00
|
|
|
|
04:31:44 PM scall/s badcall/s packet/s udp/s tcp/s hit/s miss/s sread/s swrite/s saccess/s sgetatt/s
|
|
04:31:45 PM 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
|
|
|
|
Average: call/s retrans/s read/s write/s access/s getatt/s
|
|
Average: 3.00 0.00 0.00 2.50 0.00 0.00
|
|
|
|
Average: scall/s badcall/s packet/s udp/s tcp/s hit/s miss/s sread/s swrite/s saccess/s sgetatt/s
|
|
Average: 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
|
|
|
|
--- sar -n SOCK 1 1
|
|
$ sar -n SOCK 1 1
|
|
Linux 6.17.2-1-pve (pfv-tsys6) 07/26/2026 _x86_64_ (16 CPU)
|
|
|
|
04:31:45 PM totsck tcpsck udpsck rawsck ip-frag tcp-tw
|
|
04:31:46 PM 357 18 4 0 0 85
|
|
Average: 357 18 4 0 0 85
|
|
|
|
--- sar -n TCP,ETCP 1 2
|
|
$ sar -n TCP,ETCP 1 2
|
|
Linux 6.17.2-1-pve (pfv-tsys6) 07/26/2026 _x86_64_ (16 CPU)
|
|
|
|
04:31:46 PM active/s passive/s iseg/s oseg/s
|
|
04:31:47 PM 0.00 0.00 1.00 0.00
|
|
|
|
04:31:46 PM atmptf/s estres/s retrans/s isegerr/s orsts/s
|
|
04:31:47 PM 0.00 0.00 0.00 0.00 0.00
|
|
|
|
04:31:47 PM active/s passive/s iseg/s oseg/s
|
|
04:31:48 PM 0.00 0.00 0.00 0.00
|
|
|
|
04:31:47 PM atmptf/s estres/s retrans/s isegerr/s orsts/s
|
|
04:31:48 PM 0.00 0.00 0.00 0.00 0.00
|
|
|
|
Average: active/s passive/s iseg/s oseg/s
|
|
Average: 0.00 0.00 0.50 0.00
|
|
|
|
Average: atmptf/s estres/s retrans/s isegerr/s orsts/s
|
|
Average: 0.00 0.00 0.00 0.00 0.00
|
|
|
|
--- pidstat -d 1 2 (top disk)
|
|
$ pidstat -d 1 2
|
|
Linux 6.17.2-1-pve (pfv-tsys6) 07/26/2026 _x86_64_ (16 CPU)
|
|
|
|
04:31:48 PM UID PID kB_rd/s kB_wr/s kB_ccwr/s iodelay Command
|
|
04:31:49 PM 0 1225 15.53 23.30 0.00 0 pmxcfs
|
|
04:31:49 PM 0 1560 0.00 0.08 0.00 0 pve-ha-lrm
|
|
|
|
04:31:49 PM UID PID kB_rd/s kB_wr/s kB_ccwr/s iodelay Command
|
|
04:31:50 PM 0 443 0.00 16.00 0.00 0 systemd-journal
|
|
|
|
Average: UID PID kB_rd/s kB_wr/s kB_ccwr/s iodelay Command
|
|
Average: 0 443 0.00 7.88 0.00 0 systemd-journal
|
|
Average: 0 1225 7.88 11.82 0.00 0 pmxcfs
|
|
Average: 0 1560 0.00 0.04 0.00 0 pve-ha-lrm
|
|
|
|
--- pidstat -u 1 2 (top cpu)
|
|
$ pidstat -u 1 2
|
|
Linux 6.17.2-1-pve (pfv-tsys6) 07/26/2026 _x86_64_ (16 CPU)
|
|
|
|
04:31:50 PM UID PID %usr %system %guest %wait %CPU CPU Command
|
|
04:31:51 PM 0 1730 0.00 0.00 3.92 0.00 0.98 4 kvm
|
|
04:31:51 PM 0 1918 0.00 0.98 0.98 0.00 0.98 14 kvm
|
|
04:31:51 PM 0 2127 0.00 0.00 0.98 0.00 0.98 12 kvm
|
|
04:31:51 PM 0 10155 0.98 0.98 0.00 0.00 1.96 8 pidstat
|
|
|
|
04:31:51 PM UID PID %usr %system %guest %wait %CPU CPU Command
|
|
04:31:52 PM 0 1414 5.00 8.00 0.00 0.00 13.00 7 pvestatd
|
|
04:31:52 PM 0 1730 0.00 0.00 3.00 0.00 3.00 4 kvm
|
|
04:31:52 PM 0 1918 2.00 0.00 0.00 0.00 2.00 14 kvm
|
|
04:31:52 PM 0 2127 0.00 0.00 3.00 0.00 2.00 12 kvm
|
|
04:31:52 PM 0 10155 1.00 1.00 0.00 0.00 2.00 8 pidstat
|
|
|
|
Average: UID PID %usr %system %guest %wait %CPU CPU Command
|
|
Average: 0 1414 2.48 3.96 0.00 0.00 6.44 - pvestatd
|
|
Average: 0 1730 0.00 0.00 3.47 0.00 1.98 - kvm
|
|
Average: 0 1918 0.50 0.50 0.50 0.00 1.49 - kvm
|
|
Average: 0 2127 0.00 0.00 1.98 0.00 1.49 - kvm
|
|
Average: 0 10155 0.99 0.99 0.00 0.00 1.98 - pidstat
|
|
|
|
--- top (single snapshot, top 30)
|
|
$ top -b -n 1
|
|
top - 16:31:52 up 13 min, 1 user, load average: 1.06, 1.01, 0.79
|
|
Tasks: 324 total, 1 running, 323 sleeping, 0 stopped, 0 zombie
|
|
%Cpu(s): 0.7 us, 1.0 sy, 0.0 ni, 95.9 id, 2.4 wa, 0.0 hi, 0.0 si, 0.0 st
|
|
MiB Mem : 96542.5 total, 91082.9 free, 4661.2 used, 1676.2 buff/cache
|
|
MiB Swap: 8192.0 total, 8192.0 free, 0.0 used. 91881.2 avail Mem
|
|
|
|
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
|
|
10183 root 20 0 10424 5500 3404 R 8.3 0.0 0:00.01 top
|
|
1 root 20 0 25300 15828 10700 S 0.0 0.0 0:10.47 systemd
|
|
2 root 20 0 0 0 0 S 0.0 0.0 0:00.01 kthreadd
|
|
3 root 20 0 0 0 0 S 0.0 0.0 0:00.00 pool_wo+
|
|
4 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
5 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
6 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
7 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
8 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
10 root 20 0 0 0 0 I 0.0 0.0 0:00.04 kworker+
|
|
11 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
12 root 20 0 0 0 0 I 0.0 0.0 0:00.02 kworker+
|
|
13 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
14 root 20 0 0 0 0 S 0.0 0.0 0:00.03 ksoftir+
|
|
15 root 20 0 0 0 0 I 0.0 0.0 0:00.55 rcu_pre+
|
|
16 root 20 0 0 0 0 S 0.0 0.0 0:00.00 rcu_exp+
|
|
17 root 20 0 0 0 0 S 0.0 0.0 0:00.00 rcu_exp+
|
|
18 root rt 0 0 0 0 S 0.0 0.0 0:00.00 migrati+
|
|
19 root -51 0 0 0 0 S 0.0 0.0 0:00.00 idle_in+
|
|
20 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/0
|
|
21 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/1
|
|
22 root -51 0 0 0 0 S 0.0 0.0 0:00.00 idle_in+
|
|
23 root rt 0 0 0 0 S 0.0 0.0 0:00.91 migrati+
|
|
24 root 20 0 0 0 0 S 0.0 0.0 0:00.01 ksoftir+
|
|
25 root 20 0 0 0 0 I 0.0 0.0 0:00.29 kworker+
|
|
26 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
27 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/2
|
|
28 root -51 0 0 0 0 S 0.0 0.0 0:00.00 idle_in+
|
|
29 root rt 0 0 0 0 S 0.0 0.0 0:00.91 migrati+
|
|
30 root 20 0 0 0 0 S 0.0 0.0 0:00.02 ksoftir+
|
|
32 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
33 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/3
|
|
34 root -51 0 0 0 0 S 0.0 0.0 0:00.00 idle_in+
|
|
35 root rt 0 0 0 0 S 0.0 0.0 0:00.91 migrati+
|
|
36 root 20 0 0 0 0 S 0.0 0.0 0:00.00 ksoftir+
|
|
38 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
39 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/4
|
|
40 root -51 0 0 0 0 S 0.0 0.0 0:00.00 idle_in+
|
|
41 root rt 0 0 0 0 S 0.0 0.0 0:00.91 migrati+
|
|
42 root 20 0 0 0 0 S 0.0 0.0 0:00.00 ksoftir+
|
|
44 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
45 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/5
|
|
46 root -51 0 0 0 0 S 0.0 0.0 0:00.00 idle_in+
|
|
47 root rt 0 0 0 0 S 0.0 0.0 0:00.92 migrati+
|
|
48 root 20 0 0 0 0 S 0.0 0.0 0:00.00 ksoftir+
|
|
50 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
51 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/6
|
|
52 root -51 0 0 0 0 S 0.0 0.0 0:00.00 idle_in+
|
|
53 root rt 0 0 0 0 S 0.0 0.0 0:00.92 migrati+
|
|
54 root 20 0 0 0 0 S 0.0 0.0 0:00.00 ksoftir+
|
|
55 root 20 0 0 0 0 I 0.0 0.0 0:00.28 kworker+
|
|
56 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
57 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/7
|
|
58 root -51 0 0 0 0 S 0.0 0.0 0:00.00 idle_in+
|
|
59 root rt 0 0 0 0 S 0.0 0.0 0:00.92 migrati+
|
|
60 root 20 0 0 0 0 S 0.0 0.0 0:00.00 ksoftir+
|
|
62 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
63 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/8
|
|
64 root -51 0 0 0 0 S 0.0 0.0 0:00.00 idle_in+
|
|
65 root rt 0 0 0 0 S 0.0 0.0 0:00.92 migrati+
|
|
66 root 20 0 0 0 0 S 0.0 0.0 0:00.00 ksoftir+
|
|
68 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
69 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/9
|
|
70 root -51 0 0 0 0 S 0.0 0.0 0:00.00 idle_in+
|
|
71 root rt 0 0 0 0 S 0.0 0.0 0:00.92 migrati+
|
|
72 root 20 0 0 0 0 S 0.0 0.0 0:00.00 ksoftir+
|
|
74 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
75 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/10
|
|
76 root -51 0 0 0 0 S 0.0 0.0 0:00.00 idle_in+
|
|
77 root rt 0 0 0 0 S 0.0 0.0 0:00.92 migrati+
|
|
78 root 20 0 0 0 0 S 0.0 0.0 0:00.00 ksoftir+
|
|
79 root 20 0 0 0 0 I 0.0 0.0 0:00.49 kworker+
|
|
80 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
81 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/11
|
|
82 root -51 0 0 0 0 S 0.0 0.0 0:00.00 idle_in+
|
|
83 root rt 0 0 0 0 S 0.0 0.0 0:00.93 migrati+
|
|
84 root 20 0 0 0 0 S 0.0 0.0 0:00.02 ksoftir+
|
|
86 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
87 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/12
|
|
88 root -51 0 0 0 0 S 0.0 0.0 0:00.00 idle_in+
|
|
89 root rt 0 0 0 0 S 0.0 0.0 0:00.93 migrati+
|
|
90 root 20 0 0 0 0 S 0.0 0.0 0:00.02 ksoftir+
|
|
92 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
93 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/13
|
|
94 root -51 0 0 0 0 S 0.0 0.0 0:00.00 idle_in+
|
|
95 root rt 0 0 0 0 S 0.0 0.0 0:00.93 migrati+
|
|
96 root 20 0 0 0 0 S 0.0 0.0 0:00.01 ksoftir+
|
|
98 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
99 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/14
|
|
100 root -51 0 0 0 0 S 0.0 0.0 0:00.00 idle_in+
|
|
101 root rt 0 0 0 0 S 0.0 0.0 0:00.93 migrati+
|
|
102 root 20 0 0 0 0 S 0.0 0.0 0:00.00 ksoftir+
|
|
104 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
105 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/15
|
|
106 root -51 0 0 0 0 S 0.0 0.0 0:00.00 idle_in+
|
|
107 root rt 0 0 0 0 S 0.0 0.0 0:00.93 migrati+
|
|
108 root 20 0 0 0 0 S 0.0 0.0 0:00.00 ksoftir+
|
|
110 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
111 root 20 0 0 0 0 I 0.0 0.0 0:00.24 kworker+
|
|
112 root 20 0 0 0 0 I 0.0 0.0 0:01.24 kworker+
|
|
113 root 20 0 0 0 0 S 0.0 0.0 0:00.00 kdevtmp+
|
|
114 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
115 root 20 0 0 0 0 I 0.0 0.0 0:00.00 rcu_tas+
|
|
116 root 20 0 0 0 0 I 0.0 0.0 0:00.00 rcu_tas+
|
|
117 root 20 0 0 0 0 I 0.0 0.0 0:00.00 rcu_tas+
|
|
118 root 20 0 0 0 0 S 0.0 0.0 0:00.00 kauditd
|
|
119 root 20 0 0 0 0 S 0.0 0.0 0:00.00 khungta+
|
|
120 root 20 0 0 0 0 I 0.0 0.0 0:00.16 kworker+
|
|
121 root 20 0 0 0 0 S 0.0 0.0 0:00.00 oom_rea+
|
|
122 root 20 0 0 0 0 I 0.0 0.0 0:00.20 kworker+
|
|
123 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
124 root 20 0 0 0 0 S 0.0 0.0 0:00.01 kcompac+
|
|
125 root 25 5 0 0 0 S 0.0 0.0 0:00.00 ksmd
|
|
126 root 39 19 0 0 0 S 0.0 0.0 0:00.00 khugepa+
|
|
127 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
128 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
129 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
130 root -51 0 0 0 0 S 0.0 0.0 0:00.00 irq/9-a+
|
|
132 root 20 0 0 0 0 I 0.0 0.0 0:03.57 kworker+
|
|
133 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
135 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
136 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
137 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
138 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
139 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
140 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
141 root -51 0 0 0 0 S 0.0 0.0 0:00.00 watchdo+
|
|
142 root 0 -20 0 0 0 I 0.0 0.0 0:00.13 kworker+
|
|
143 root 20 0 0 0 0 S 0.0 0.0 0:00.00 kswapd0
|
|
144 root 20 0 0 0 0 S 0.0 0.0 0:00.00 ecryptf+
|
|
145 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
146 root -51 0 0 0 0 S 0.0 0.0 0:00.00 irq/25-+
|
|
147 root -51 0 0 0 0 S 0.0 0.0 0:00.00 irq/26-+
|
|
148 root -51 0 0 0 0 S 0.0 0.0 0:00.00 irq/27-+
|
|
149 root -51 0 0 0 0 S 0.0 0.0 0:00.00 irq/28-+
|
|
150 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
152 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
153 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
154 root 20 0 0 0 0 I 0.0 0.0 0:00.04 kworker+
|
|
155 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
156 root 0 -20 0 0 0 I 0.0 0.0 0:00.03 kworker+
|
|
157 root 20 0 0 0 0 I 0.0 0.0 0:00.03 kworker+
|
|
158 root 20 0 0 0 0 I 0.0 0.0 0:01.55 kworker+
|
|
159 root 20 0 0 0 0 I 0.0 0.0 0:00.36 kworker+
|
|
161 root 20 0 0 0 0 I 0.0 0.0 0:00.32 kworker+
|
|
162 root 20 0 0 0 0 I 0.0 0.0 0:00.01 kworker+
|
|
165 root 20 0 0 0 0 I 0.0 0.0 0:00.93 kworker+
|
|
167 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
168 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
169 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
180 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
181 root 0 -20 0 0 0 I 0.0 0.0 0:00.01 kworker+
|
|
209 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
213 root 20 0 0 0 0 I 0.0 0.0 0:00.36 kworker+
|
|
215 root 0 -20 0 0 0 I 0.0 0.0 0:00.02 kworker+
|
|
226 root 0 -20 0 0 0 I 0.0 0.0 0:00.06 kworker+
|
|
237 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
238 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
239 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
240 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
241 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
242 root 0 -20 0 0 0 I 0.0 0.0 0:00.03 kworker+
|
|
243 root 0 -20 0 0 0 I 0.0 0.0 0:00.01 kworker+
|
|
245 root 0 -20 0 0 0 I 0.0 0.0 0:00.04 kworker+
|
|
246 root 0 -20 0 0 0 I 0.0 0.0 0:00.01 kworker+
|
|
247 root 20 0 0 0 0 I 0.0 0.0 0:00.34 kworker+
|
|
249 root 0 -20 0 0 0 I 0.0 0.0 0:00.02 kworker+
|
|
253 root 20 0 0 0 0 I 0.0 0.0 0:01.31 kworker+
|
|
254 root 20 0 0 0 0 I 0.0 0.0 0:00.30 kworker+
|
|
256 root 20 0 0 0 0 I 0.0 0.0 0:00.37 kworker+
|
|
269 root 20 0 0 0 0 I 0.0 0.0 0:00.24 kworker+
|
|
279 root 20 0 0 0 0 I 0.0 0.0 0:00.55 kworker+
|
|
280 root 20 0 0 0 0 I 0.0 0.0 0:00.21 kworker+
|
|
289 root 20 0 0 0 0 I 0.0 0.0 0:02.48 kworker+
|
|
290 root 20 0 0 0 0 S 0.0 0.0 0:00.00 scsi_eh+
|
|
291 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
292 root 20 0 0 0 0 S 0.0 0.0 0:02.12 usb-sto+
|
|
293 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
330 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
331 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
342 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
348 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
349 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
378 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
379 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
380 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
395 root 20 0 0 0 0 S 0.0 0.0 0:00.06 jbd2/dm+
|
|
396 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
443 root 20 0 75036 49760 48252 S 0.0 0.1 0:00.72 systemd+
|
|
451 root 20 0 0 0 0 I 0.0 0.0 0:00.13 kworker+
|
|
455 root 20 0 0 0 0 I 0.0 0.0 0:02.29 kworker+
|
|
457 root 20 0 0 0 0 I 0.0 0.0 0:01.41 kworker+
|
|
483 root 20 0 0 0 0 I 0.0 0.0 0:00.98 kworker+
|
|
486 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 spl_sys+
|
|
487 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 spl_del+
|
|
488 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 spl_dyn+
|
|
489 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 spl_kme+
|
|
493 root 20 0 36732 10356 7884 S 0.0 0.0 0:00.85 systemd+
|
|
495 root 20 0 77296 22300 9124 S 0.0 0.0 0:00.06 dmeventd
|
|
498 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 zvol_tq+
|
|
499 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 zvol_tq+
|
|
500 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 zvol_tq+
|
|
501 root 20 0 0 0 0 S 0.0 0.0 0:00.00 arc_pru+
|
|
502 root 20 0 0 0 0 S 0.0 0.0 0:00.00 arc_evi+
|
|
503 root 20 0 0 0 0 S 0.0 0.0 0:00.00 arc_evi+
|
|
504 root 20 0 0 0 0 S 0.0 0.0 0:00.00 arc_evi+
|
|
505 root 20 0 0 0 0 S 0.0 0.0 0:00.00 arc_evi+
|
|
506 root 20 0 0 0 0 S 0.0 0.0 0:00.00 arc_evi+
|
|
507 root 20 0 0 0 0 S 0.0 0.0 0:00.00 arc_evi+
|
|
508 root 20 0 0 0 0 S 0.0 0.0 0:00.00 arc_flu+
|
|
509 root 20 0 0 0 0 S 0.0 0.0 0:00.00 arc_evi+
|
|
510 root 39 19 0 0 0 S 0.0 0.0 0:00.00 arc_reap
|
|
511 root 20 0 0 0 0 S 0.0 0.0 0:00.00 dbu_evi+
|
|
512 root 39 19 0 0 0 S 0.0 0.0 0:00.00 dbuf_ev+
|
|
514 root -2 0 0 0 0 S 0.0 0.0 0:00.00 psimon
|
|
561 root 39 19 0 0 0 S 0.0 0.0 0:00.00 z_vdev_+
|
|
578 root 20 0 0 0 0 S 0.0 0.0 0:00.00 l2arc_f+
|
|
599 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
603 root 39 19 0 0 0 S 0.0 0.0 0:00.00 kipmi0
|
|
656 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
709 root 20 0 79620 2372 2160 S 0.0 0.0 0:00.08 pvefw-l+
|
|
841 _rpc 20 0 6568 3912 3496 S 0.0 0.0 0:00.00 rpcbind
|
|
843 _chrony 20 0 19940 5464 4696 S 0.0 0.0 0:00.06 chronyd
|
|
844 message+ 20 0 8472 5112 4236 S 0.0 0.0 0:01.10 dbus-da+
|
|
851 root 20 0 276136 3592 3296 S 0.0 0.0 0:00.00 pve-lxc+
|
|
854 root 20 0 404848 7784 6796 S 0.0 0.0 0:00.12 rrdcach+
|
|
857 root 20 0 10080 6296 4844 S 0.0 0.0 0:00.05 smartd
|
|
858 root 20 0 19080 9120 7828 S 0.0 0.0 0:00.53 systemd+
|
|
865 root 20 0 1422736 63172 26704 S 0.0 0.1 0:07.21 tailsca+
|
|
871 root 20 0 5748 2044 1860 S 0.0 0.0 0:00.00 qmeventd
|
|
872 root 20 0 7216 2344 2000 S 0.0 0.0 0:00.00 ksmtuned
|
|
874 root 20 0 2432 1608 1508 S 0.0 0.0 0:00.02 watchdo+
|
|
877 root 20 0 104408 6376 5232 S 0.0 0.0 0:00.00 zed
|
|
881 root 20 0 159036 2472 2104 S 0.0 0.0 0:00.00 lxcfs
|
|
908 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
909 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
919 root 20 0 5256 1624 1400 S 0.0 0.0 0:00.00 blkmapd
|
|
950 root 20 0 0 0 0 I 0.0 0.0 0:00.20 kworker+
|
|
951 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
952 _chrony 20 0 11612 2376 1744 S 0.0 0.0 0:00.00 chronyd
|
|
1057 root 20 0 5972 3548 2704 S 0.0 0.0 0:00.00 dhclient
|
|
1120 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
1183 beszel 20 0 2223376 17544 10396 S 0.0 0.0 0:00.51 beszel-+
|
|
1184 _lldpd 20 0 21376 6584 5420 S 0.0 0.0 0:00.03 lldpd
|
|
1185 root 20 0 5520 2592 2348 S 0.0 0.0 0:00.00 lxc-mon+
|
|
1193 root 20 0 266308 32352 15148 S 0.0 0.0 0:00.44 tuned
|
|
1201 root 20 0 8168 2592 2364 S 0.0 0.0 0:00.33 agetty
|
|
1204 root 20 0 11776 7712 6488 S 0.0 0.0 0:00.23 sshd
|
|
1225 root 20 0 486116 58116 51032 S 0.0 0.1 0:00.96 pmxcfs
|
|
1232 _lldpd 20 0 21376 2892 1748 S 0.0 0.0 0:00.03 lldpd
|
|
1263 root 20 0 6864 2944 2692 S 0.0 0.0 0:00.00 cron
|
|
1264 root 20 0 13584 6044 5132 S 0.0 0.0 0:00.08 proxmox+
|
|
1378 root 20 0 43984 4756 4112 S 0.0 0.0 0:00.00 master
|
|
1379 postfix 20 0 44472 7688 7004 S 0.0 0.0 0:00.00 pickup
|
|
1380 postfix 20 0 44524 7708 7016 S 0.0 0.0 0:00.00 qmgr
|
|
1383 polkitd 20 0 306704 8176 7112 S 0.0 0.0 0:00.19 polkitd
|
|
1399 root 20 0 177924 108936 5316 S 0.0 0.1 0:02.59 pve-fir+
|
|
1414 root 20 0 181428 116928 10684 S 0.0 0.1 0:10.18 pvestatd
|
|
1415 root 20 0 0 0 0 I 0.0 0.0 0:00.10 kworker+
|
|
1488 root 20 0 219500 149704 3372 S 0.0 0.2 0:00.02 pvedaem+
|
|
1489 root 20 0 227668 155868 8448 S 0.0 0.2 0:00.08 pvedaem+
|
|
1490 root 20 0 228040 156600 8984 S 0.0 0.2 0:00.10 pvedaem+
|
|
1491 root 20 0 228048 156608 9044 S 0.0 0.2 0:00.12 pvedaem+
|
|
1499 root 20 0 205240 122188 4344 S 0.0 0.1 0:00.06 pve-ha-+
|
|
1512 www-data 20 0 220892 151020 3476 S 0.0 0.2 0:00.01 pveproxy
|
|
1513 www-data 20 0 230484 159848 9772 S 0.0 0.2 0:00.32 pveprox+
|
|
1514 www-data 20 0 242824 176248 13864 S 0.0 0.2 0:00.40 pveprox+
|
|
1515 www-data 20 0 233740 166964 13720 S 0.0 0.2 0:00.32 pveprox+
|
|
1548 www-data 20 0 92572 55296 3392 S 0.0 0.1 0:00.01 spicepr+
|
|
1549 www-data 20 0 92680 56032 3956 S 0.0 0.1 0:00.03 spicepr+
|
|
1559 root 20 0 0 0 0 I 0.0 0.0 0:00.06 kworker+
|
|
1560 root 20 0 204552 121304 4116 S 0.0 0.1 0:00.14 pve-ha-+
|
|
1674 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
1690 root 20 0 0 0 0 I 0.0 0.0 0:00.00 NFSv4 c+
|
|
1730 root 20 0 4968180 680632 11500 S 0.0 0.7 0:31.59 kvm
|
|
1855 root 20 0 0 0 0 S 0.0 0.0 0:00.00 kvm-pit+
|
|
1918 root 20 0 4964060 702644 11344 S 0.0 0.7 0:36.75 kvm
|
|
1973 root 20 0 0 0 0 S 0.0 0.0 0:00.00 kvm-pit+
|
|
2127 root 20 0 4999016 686880 11364 S 0.0 0.7 0:33.92 kvm
|
|
2212 root 20 0 0 0 0 S 0.0 0.0 0:00.00 kvm-pit+
|
|
2224 root 20 0 201144 124592 3552 S 0.0 0.1 0:00.07 pvesche+
|
|
2304 root 20 0 0 0 0 I 0.0 0.0 0:00.01 kworker+
|
|
2305 root 20 0 0 0 0 I 0.0 0.0 0:00.06 kworker+
|
|
2306 root 20 0 0 0 0 I 0.0 0.0 0:00.10 kworker+
|
|
2424 root 20 0 0 0 0 I 0.0 0.0 0:00.11 kworker+
|
|
2466 root 20 0 0 0 0 I 0.0 0.0 0:00.13 kworker+
|
|
2596 root 20 0 0 0 0 I 0.0 0.0 0:00.08 kworker+
|
|
2712 root 20 0 0 0 0 I 0.0 0.0 0:00.02 kworker+
|
|
3557 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
3709 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
3789 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
3837 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
3843 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
4068 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
4189 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
4239 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
4325 root 20 0 22244 12468 10068 S 0.0 0.0 0:00.34 systemd
|
|
4329 root 20 0 24404 3820 2024 S 0.0 0.0 0:00.00 (sd-pam)
|
|
4351 root -2 0 0 0 0 S 0.0 0.0 0:00.00 psimon
|
|
4384 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
4507 root 20 0 0 0 0 I 0.0 0.0 0:02.08 kworker+
|
|
4539 root 20 0 19648 11524 9756 S 0.0 0.0 0:00.02 sshd-se+
|
|
4548 root 20 0 19904 7456 5416 S 0.0 0.0 0:00.00 sshd-se+
|
|
4549 root 20 0 7316 3808 3276 S 0.0 0.0 0:00.64 bash
|
|
5734 root 20 0 0 0 0 I 0.0 0.0 0:00.02 kworker+
|
|
6974 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
7768 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
7769 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
7770 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
7771 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
7976 root -2 0 0 0 0 S 0.0 0.0 0:00.00 psimon
|
|
7981 root 20 0 0 0 0 I 0.0 0.0 0:00.02 kworker+
|
|
8582 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
8866 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
9150 root 20 0 0 0 0 I 0.0 0.0 0:00.04 kworker+
|
|
9804 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
9921 root 20 0 0 0 0 I 0.0 0.0 0:00.24 kworker+
|
|
10017 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
10084 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
10093 root 20 0 5580 2216 2104 S 0.0 0.0 0:00.00 sleep
|
|
10151 root 20 0 36736 6092 3584 S 0.0 0.0 0:00.00 (udev-w+
|
|
10152 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
10181 root 20 0 7316 2528 1996 S 0.0 0.0 0:00.00 bash
|
|
10182 root 20 0 5588 2136 2016 S 0.0 0.0 0:00.00 head
|
|
|
|
--- zpool iostat 1 2
|
|
$ zpool iostat 1 2
|
|
no pools available
|
|
no pools available
|
|
|
|
--- arcstat 1 2
|
|
$ arcstat 1 2
|
|
time read ddread ddh% dmread dmh% pread ph% size c avail
|
|
16:31:54 0 0 0 0 0 0 0 3.8K 2.9G 86.0G
|
|
16:31:55 0 0 0 0 0 0 0 3.8K 2.9G 86.0G
|
|
|
|
--- /proc/net/dev delta (1s)
|
|
$ awk '{print $1}' /proc/net/dev
|
|
echo "--- t0 ---"
|
|
cat /proc/net/dev
|
|
sleep 1
|
|
echo "--- t1 (1s later) ---"
|
|
cat /proc/net/dev
|
|
Inter-|
|
|
face
|
|
lo:
|
|
nic0:
|
|
nic1:
|
|
nic2:
|
|
nic3:
|
|
nic4:
|
|
nic5:
|
|
tailscale0:
|
|
vmbr0:
|
|
nic3.2:
|
|
br-rr-mgmt:
|
|
bond0:
|
|
storagenet:
|
|
tap601i0:
|
|
fwbr601i0:
|
|
fwpr601p0:
|
|
fwln601i0:
|
|
tap602i0:
|
|
fwbr602i0:
|
|
fwpr602p0:
|
|
fwln602i0:
|
|
tap603i0:
|
|
fwbr603i0:
|
|
fwpr603p0:
|
|
fwln603i0:
|
|
--- t0 ---
|
|
Inter-| Receive | Transmit
|
|
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
|
|
lo: 48351 280 0 0 0 0 0 0 48351 280 0 0 0 0 0 0
|
|
nic0: 11848019 53590 0 26 0 0 0 21694 3810506 14227 0 3 0 0 0 0
|
|
nic1: 11845197824 8436660 0 0 0 0 0 616 1650965209 1399232 0 0 0 0 0 0
|
|
nic2: 581561737 411361 0 0 0 0 0 138 2614673586 2150975 0 0 0 0 0 0
|
|
nic3: 85935 859 0 0 0 0 0 768 11976 58 0 0 0 0 0 0
|
|
nic4: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
|
nic5: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
|
tailscale0: 512640 1965 0 0 0 0 0 0 1234488 1760 0 0 0 0 0 0
|
|
vmbr0: 6943174 37193 0 0 0 0 0 18978 2241873 6601 0 5 0 0 0 0
|
|
nic3.2: 0 0 0 0 0 0 0 0 906 7 0 0 0 0 0 0
|
|
br-rr-mgmt: 0 0 0 0 0 0 0 0 906 7 0 0 0 0 0 0
|
|
bond0: 12426759561 8848021 0 50 0 0 0 754 4265638795 3550207 0 0 0 0 0 0
|
|
storagenet: 11929485747 2348173 0 0 0 0 0 648 4075744027 887683 0 0 0 0 0 0
|
|
tap601i0: 454168 2211 0 0 0 0 0 0 3763820 31078 0 0 0 0 0 0
|
|
fwbr601i0: 2293871 27348 0 27 0 0 0 18012 0 0 0 0 0 0 0 0
|
|
fwpr601p0: 460393 2236 0 25 0 0 0 0 3763845 31078 0 0 0 0 0 0
|
|
fwln601i0: 3763845 31078 0 25 0 0 0 0 460393 2236 0 0 0 0 0 0
|
|
tap602i0: 562905 2747 0 0 0 0 0 0 3961414 31610 0 0 0 0 0 0
|
|
fwbr602i0: 2277986 27148 0 27 0 0 0 17877 0 0 0 0 0 0 0 0
|
|
fwpr602p0: 569130 2772 0 25 0 0 0 0 3961439 31610 0 0 0 0 0 0
|
|
fwln602i0: 3961439 31610 0 25 0 0 0 0 569130 2772 0 0 0 0 0 0
|
|
tap603i0: 446170 2167 0 0 0 0 0 0 3716431 30333 0 410 0 0 0 0
|
|
fwbr603i0: 2265200 27009 0 27 0 0 0 17795 0 0 0 0 0 0 0 0
|
|
fwpr603p0: 452395 2192 0 25 0 0 0 0 3752619 30743 0 0 0 0 0 0
|
|
fwln603i0: 3752619 30743 0 25 0 0 0 0 452395 2192 0 0 0 0 0 0
|
|
--- t1 (1s later) ---
|
|
Inter-| Receive | Transmit
|
|
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
|
|
lo: 48351 280 0 0 0 0 0 0 48351 280 0 0 0 0 0 0
|
|
nic0: 11860992 53656 0 26 0 0 0 21706 3812677 14246 0 3 0 0 0 0
|
|
nic1: 11845197888 8436661 0 0 0 0 0 617 1650983513 1399248 0 0 0 0 0 0
|
|
nic2: 581563697 411377 0 0 0 0 0 138 2614704276 2150998 0 0 0 0 0 0
|
|
nic3: 85999 860 0 0 0 0 0 769 11976 58 0 0 0 0 0 0
|
|
nic4: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
|
nic5: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
|
tailscale0: 512796 1967 0 0 0 0 0 0 1234568 1761 0 0 0 0 0 0
|
|
vmbr0: 6945080 37218 0 0 0 0 0 18984 2242345 6604 0 5 0 0 0 0
|
|
nic3.2: 0 0 0 0 0 0 0 0 906 7 0 0 0 0 0 0
|
|
br-rr-mgmt: 0 0 0 0 0 0 0 0 906 7 0 0 0 0 0 0
|
|
bond0: 12426761585 8848038 0 50 0 0 0 755 4265687789 3550246 0 0 0 0 0 0
|
|
storagenet: 11929486940 2348180 0 0 0 0 0 649 4075753413 887692 0 0 0 0 0 0
|
|
tap601i0: 454168 2211 0 0 0 0 0 0 3765545 31099 0 0 0 0 0 0
|
|
fwbr601i0: 2295131 27368 0 27 0 0 0 18018 0 0 0 0 0 0 0 0
|
|
fwpr601p0: 460393 2236 0 25 0 0 0 0 3765570 31099 0 0 0 0 0 0
|
|
fwln601i0: 3765570 31099 0 25 0 0 0 0 460393 2236 0 0 0 0 0 0
|
|
tap602i0: 562905 2747 0 0 0 0 0 0 3963139 31631 0 0 0 0 0 0
|
|
fwbr602i0: 2279246 27168 0 27 0 0 0 17883 0 0 0 0 0 0 0 0
|
|
fwpr602p0: 569130 2772 0 25 0 0 0 0 3963164 31631 0 0 0 0 0 0
|
|
fwln602i0: 3963164 31631 0 25 0 0 0 0 569130 2772 0 0 0 0 0 0
|
|
tap603i0: 449892 2187 0 0 0 0 0 0 3731433 30395 0 410 0 0 0 0
|
|
fwbr603i0: 2266460 27029 0 27 0 0 0 17801 0 0 0 0 0 0 0 0
|
|
fwpr603p0: 456117 2212 0 25 0 0 0 0 3767621 30805 0 0 0 0 0 0
|
|
fwln603i0: 3767621 30805 0 25 0 0 0 0 456117 2212 0 0 0 0 0 0
|
|
|
|
###############################################################################
|
|
# 27. DNS / NTP / TIME
|
|
###############################################################################
|
|
|
|
--- /etc/resolv.conf
|
|
--- /etc/resolv.conf ---
|
|
domain knel.net
|
|
search knel.net
|
|
nameserver 100.100.100.100
|
|
|
|
--- /etc/hosts
|
|
--- /etc/hosts ---
|
|
127.0.0.1 localhost.localdomain localhost
|
|
192.168.100.2 pfv-tsys6.knel.net pfv-tsys6
|
|
|
|
# The following lines are desirable for IPv6 capable hosts
|
|
|
|
::1 ip6-localhost ip6-loopback
|
|
fe00::0 ip6-localnet
|
|
ff00::0 ip6-mcastprefix
|
|
ff02::1 ip6-allnodes
|
|
ff02::2 ip6-allrouters
|
|
ff02::3 ip6-allhosts
|
|
|
|
10.100.100.4 pfv-tsys4-nfs-stor
|
|
10.100.100.5 pfv-tsys5-nfs-stor
|
|
|
|
--- /etc/ntp.conf
|
|
[missing: /etc/ntp.conf]
|
|
|
|
--- /etc/chrony/chrony.conf
|
|
--- /etc/chrony/chrony.conf ---
|
|
# Welcome to the chrony configuration file. See chrony.conf(5) for more
|
|
# information about usable directives.
|
|
|
|
# Use Debian vendor zone.
|
|
pool 2.debian.pool.ntp.org iburst
|
|
|
|
# Use time sources from DHCP.
|
|
sourcedir /run/chrony-dhcp
|
|
|
|
# Use NTP sources found in /etc/chrony/sources.d.
|
|
sourcedir /etc/chrony/sources.d
|
|
|
|
# This directive specifies the location of the file containing ID/key pairs for
|
|
# NTP authentication.
|
|
keyfile /etc/chrony/chrony.keys
|
|
|
|
# This directive specifies the file into which chronyd will store the rate
|
|
# information.
|
|
driftfile /var/lib/chrony/chrony.drift
|
|
|
|
# Save NTS keys and cookies.
|
|
ntsdumpdir /var/lib/chrony
|
|
|
|
# Uncomment the following line to turn logging on.
|
|
#log tracking measurements statistics
|
|
|
|
# Log files location.
|
|
logdir /var/log/chrony
|
|
|
|
# Stop bad estimates upsetting machine clock.
|
|
maxupdateskew 100.0
|
|
|
|
# This directive enables kernel synchronisation (every 11 minutes) of the
|
|
# real-time clock. Note that it can't be used along with the 'rtcfile' directive.
|
|
rtcsync
|
|
|
|
# Step the system clock instead of slewing it if the adjustment is larger than
|
|
# one second, but only in the first three clock updates.
|
|
makestep 1 3
|
|
|
|
# Get TAI-UTC offset and leap seconds from the system tz database.
|
|
# This directive must be commented out when using time sources serving
|
|
# leap-smeared time.
|
|
leapseclist /usr/share/zoneinfo/leap-seconds.list
|
|
|
|
# Include configuration files found in /etc/chrony/conf.d.
|
|
confdir /etc/chrony/conf.d
|
|
|
|
--- timedatectl
|
|
$ timedatectl
|
|
Local time: Sun 2026-07-26 16:31:56 CDT
|
|
Universal time: Sun 2026-07-26 21:31:56 UTC
|
|
RTC time: Sun 2026-07-26 21:31:56
|
|
Time zone: America/Chicago (CDT, -0500)
|
|
System clock synchronized: yes
|
|
NTP service: active
|
|
RTC in local TZ: no
|
|
|
|
--- chronyc tracking
|
|
$ chronyc tracking
|
|
Reference ID : 4AD00E95 (ip74-208-14-149.pbiaas.com)
|
|
Stratum : 2
|
|
Ref time (UTC) : Sun Jul 26 21:31:16 2026
|
|
System time : 0.000252371 seconds fast of NTP time
|
|
Last offset : +0.000553723 seconds
|
|
RMS offset : 0.001378522 seconds
|
|
Frequency : 39.263 ppm slow
|
|
Residual freq : +0.026 ppm
|
|
Skew : 1.046 ppm
|
|
Root delay : 0.022815762 seconds
|
|
Root dispersion : 0.000465359 seconds
|
|
Update interval : 64.9 seconds
|
|
Leap status : Normal
|
|
|
|
--- chronyc sources
|
|
$ chronyc sources
|
|
MS Name/IP address Stratum Poll Reach LastRx Last sample
|
|
===============================================================================
|
|
^+ ntp.nyc.icanbwell.com 2 6 377 43 +247us[ +800us] +/- 23ms
|
|
^- pentane.latt.net 3 6 377 170 -1015us[ -776us] +/- 85ms
|
|
^* ip74-208-14-149.pbiaas.c> 1 6 377 40 +330us[ +884us] +/- 11ms
|
|
^- sensei.ruselabs.com 2 6 377 43 -18ms[ -18ms] +/- 39ms
|
|
|
|
--- ntpq peers
|
|
$ ntpq -pn
|
|
/root/check.sh: line 45: ntpq: command not found
|
|
[exit=127 / not installed or not permitted]
|
|
|
|
###############################################################################
|
|
# 28. FIREWALL / SECURITY
|
|
###############################################################################
|
|
|
|
--- pve-firewall status
|
|
$ pve-firewall status
|
|
Status: disabled/running
|
|
|
|
--- nft ruleset (count)
|
|
$ nft list ruleset
|
|
|
|
--- nft ruleset (head)
|
|
$ nft list ruleset
|
|
|
|
--- iptables-save (legacy)
|
|
$ iptables-save
|
|
# Generated by iptables-save v1.8.11 on Sun Jul 26 16:31:57 2026
|
|
*mangle
|
|
:PREROUTING ACCEPT [1463373:10750894943]
|
|
:INPUT ACCEPT [1433911:10747462542]
|
|
:FORWARD ACCEPT [0:0]
|
|
:OUTPUT ACCEPT [895686:4066743584]
|
|
:POSTROUTING ACCEPT [895686:4066743584]
|
|
-A PREROUTING -m conntrack --ctstate RELATED,ESTABLISHED -j CONNMARK --restore-mark --nfmask 0xff0000 --ctmask 0xff0000
|
|
-A OUTPUT -m conntrack --ctstate NEW -m mark ! --mark 0x0/0xff0000 -j CONNMARK --save-mark --nfmask 0xff0000 --ctmask 0xff0000
|
|
COMMIT
|
|
# Completed on Sun Jul 26 16:31:57 2026
|
|
# Generated by iptables-save v1.8.11 on Sun Jul 26 16:31:57 2026
|
|
*raw
|
|
:PREROUTING ACCEPT [1463462:10750926746]
|
|
:OUTPUT ACCEPT [895776:4066753116]
|
|
COMMIT
|
|
# Completed on Sun Jul 26 16:31:57 2026
|
|
# Generated by iptables-save v1.8.11 on Sun Jul 26 16:31:57 2026
|
|
*nat
|
|
:PREROUTING ACCEPT [28560:3264330]
|
|
:INPUT ACCEPT [720:185114]
|
|
:OUTPUT ACCEPT [1750:120015]
|
|
:POSTROUTING ACCEPT [1750:120015]
|
|
:ts-postrouting - [0:0]
|
|
-A POSTROUTING -j ts-postrouting
|
|
-A ts-postrouting -m mark --mark 0x40000/0xff0000 -j MASQUERADE
|
|
COMMIT
|
|
# Completed on Sun Jul 26 16:31:57 2026
|
|
# Generated by iptables-save v1.8.11 on Sun Jul 26 16:31:57 2026
|
|
*filter
|
|
:INPUT ACCEPT [1428267:10746075686]
|
|
:FORWARD ACCEPT [0:0]
|
|
:OUTPUT ACCEPT [895811:4066755765]
|
|
:ts-forward - [0:0]
|
|
:ts-input - [0:0]
|
|
-A INPUT -j ts-input
|
|
-A FORWARD -j ts-forward
|
|
-A ts-forward -i tailscale0 -j MARK --set-xmark 0x40000/0xff0000
|
|
-A ts-forward -m mark --mark 0x40000/0xff0000 -j ACCEPT
|
|
-A ts-forward -s 100.64.0.0/10 -o tailscale0 -j DROP
|
|
-A ts-forward -o tailscale0 -j ACCEPT
|
|
-A ts-input -s 100.73.35.111/32 -i lo -j ACCEPT
|
|
-A ts-input -i tailscale0 -j ACCEPT
|
|
-A ts-input -p udp -m udp --dport 41641 -j ACCEPT
|
|
-A ts-input -s 100.115.92.0/23 ! -i tailscale0 -j RETURN
|
|
-A ts-input -s 100.64.0.0/10 ! -i tailscale0 -j DROP
|
|
COMMIT
|
|
# Completed on Sun Jul 26 16:31:57 2026
|
|
|
|
--- ipset list (names)
|
|
$ ipset list -n
|
|
|
|
--- apparmor status
|
|
$ aa-status
|
|
apparmor module is loaded.
|
|
119 profiles are loaded.
|
|
20 profiles are in enforce mode.
|
|
/usr/bin/lxc-copy
|
|
/usr/bin/lxc-start
|
|
/usr/bin/man
|
|
/usr/lib/NetworkManager/nm-dhcp-client.action
|
|
/usr/lib/connman/scripts/dhclient-script
|
|
/usr/sbin/chronyd
|
|
/usr/{lib/NetworkManager,libexec}/nm-dhcp-helper
|
|
/{,usr/}sbin/dhclient
|
|
lsb_release
|
|
lxc-container-default
|
|
lxc-container-default-cgns
|
|
lxc-container-default-with-mounting
|
|
lxc-container-default-with-nesting
|
|
man_filter
|
|
man_groff
|
|
nvidia_modprobe
|
|
nvidia_modprobe//kmod
|
|
pve-container-mounthotplug
|
|
swtpm
|
|
tcpdump
|
|
23 profiles are in complain mode.
|
|
Xorg
|
|
plasmashell
|
|
plasmashell//QtWebEngineProcess
|
|
sbuild
|
|
sbuild-abort
|
|
sbuild-adduser
|
|
sbuild-apt
|
|
sbuild-checkpackages
|
|
sbuild-clean
|
|
sbuild-createchroot
|
|
sbuild-destroychroot
|
|
sbuild-distupgrade
|
|
sbuild-hold
|
|
sbuild-shell
|
|
sbuild-unhold
|
|
sbuild-update
|
|
sbuild-upgrade
|
|
transmission-cli
|
|
transmission-daemon
|
|
transmission-gtk
|
|
transmission-qt
|
|
unix-chkpwd
|
|
unprivileged_userns
|
|
0 profiles are in prompt mode.
|
|
0 profiles are in kill mode.
|
|
76 profiles are in unconfined mode.
|
|
1password
|
|
Discord
|
|
MongoDB Compass
|
|
QtWebEngineProcess
|
|
balena-etcher
|
|
brave
|
|
buildah
|
|
busybox
|
|
cam
|
|
ch-checkns
|
|
ch-run
|
|
chrome
|
|
chromium
|
|
crun
|
|
devhelp
|
|
element-desktop
|
|
epiphany
|
|
evolution
|
|
firefox
|
|
flatpak
|
|
foliate
|
|
geary
|
|
github-desktop
|
|
goldendict
|
|
ipa_verify
|
|
kchmviewer
|
|
keybase
|
|
lc-compliance
|
|
libcamerify
|
|
linux-sandbox
|
|
loupe
|
|
lxc-attach
|
|
lxc-create
|
|
lxc-destroy
|
|
lxc-execute
|
|
lxc-stop
|
|
lxc-unshare
|
|
lxc-usernsexec
|
|
mmdebstrap
|
|
msedge
|
|
nautilus
|
|
notepadqq
|
|
obsidian
|
|
opam
|
|
opera
|
|
pageedit
|
|
polypane
|
|
privacybrowser
|
|
qcam
|
|
qmapshack
|
|
qutebrowser
|
|
rootlesskit
|
|
rpm
|
|
rssguard
|
|
runc
|
|
scide
|
|
signal-desktop
|
|
slack
|
|
slirp4netns
|
|
steam
|
|
stress-ng
|
|
surfshark
|
|
systemd-coredump
|
|
toybox
|
|
trinity
|
|
tup
|
|
tuxedo-control-center
|
|
userbindmount
|
|
uwsgi-core
|
|
vdens
|
|
virtiofsd
|
|
vivaldi-bin
|
|
vpnns
|
|
vscode
|
|
wike
|
|
wpcom
|
|
3 processes have profiles defined.
|
|
3 processes are in enforce mode.
|
|
/usr/sbin/chronyd (843)
|
|
/usr/sbin/chronyd (952)
|
|
/usr/sbin/dhclient (1057) /{,usr/}sbin/dhclient
|
|
0 processes are in complain mode.
|
|
0 processes are in prompt mode.
|
|
0 processes are in kill mode.
|
|
0 processes are unconfined but have a profile defined.
|
|
0 processes are in mixed mode.
|
|
|
|
###############################################################################
|
|
# 29. TOP CONSUMERS
|
|
###############################################################################
|
|
|
|
--- top 10 memory hogs
|
|
$ ps -eo pid,user,rss,vsz,pcpu,pmem,comm --sort=-rss | head -n 11
|
|
PID USER RSS VSZ %CPU %MEM COMMAND
|
|
1918 root 702644 4964060 5.0 0.7 kvm
|
|
2127 root 686880 4999016 4.6 0.6 kvm
|
|
1730 root 680632 4968180 4.3 0.6 kvm
|
|
1514 www-data 176248 242824 0.0 0.1 pveproxy worker
|
|
1515 www-data 166964 233740 0.0 0.1 pveproxy worker
|
|
1513 www-data 159848 230484 0.0 0.1 pveproxy worker
|
|
1491 root 156608 228048 0.0 0.1 pvedaemon worke
|
|
1490 root 156600 228040 0.0 0.1 pvedaemon worke
|
|
1489 root 155868 227668 0.0 0.1 pvedaemon worke
|
|
1512 www-data 151020 220892 0.0 0.1 pveproxy
|
|
|
|
--- top 10 CPU hogs
|
|
$ ps -eo pid,user,pcpu,pmem,rss,comm --sort=-pcpu | head -n 11
|
|
PID USER %CPU %MEM RSS COMMAND
|
|
1918 root 5.0 0.7 702644 kvm
|
|
2127 root 4.6 0.6 686880 kvm
|
|
1730 root 4.3 0.6 680632 kvm
|
|
10214 root 3.7 0.0 7780 systemd-timedat
|
|
1414 root 1.3 0.1 116928 pvestatd
|
|
1 root 1.2 0.0 15828 systemd
|
|
865 root 0.9 0.0 63184 tailscaled
|
|
4507 root 0.5 0.0 0 kworker/15:0-events
|
|
9921 root 0.4 0.0 0 kworker/12:1-events
|
|
132 root 0.4 0.0 0 kworker/7:1-events
|
|
|
|
--- top file-handle holders
|
|
$ for pid in $(ps -e -o pid= | head -n 200); do
|
|
n="$(ls /proc/$pid/fd 2>/dev/null | wc -l)"
|
|
[ "$n" -gt 50 ] && printf '%6d fd=%-6s %s\n' "$pid" "$n" "$(cat /proc/$pid/comm 2>/dev/null)"
|
|
done | sort -k2 -t= -nr | head -n 15
|
|
1 fd=183 systemd
|
|
|
|
--- largest files in /var/log (top 10)
|
|
$ find /var/log -type f -size +10M -exec ls -lh {} \; 2>/dev/null | sort -k5 -h -r | head -n 10
|
|
-rw-r-----+ 1 root systemd-journal 40M Jun 30 19:37 /var/log/journal/3a16e11f1dd84d21b50d511e804fd378/system@c57197d92b4f425da80c8c1fe0cefbff-000000000038a442-0006557cf09641f4.journal
|
|
-rw-r-----+ 1 root systemd-journal 40M Jun 30 13:42 /var/log/journal/3a16e11f1dd84d21b50d511e804fd378/system@c57197d92b4f425da80c8c1fe0cefbff-0000000000376a86-000655780da6f4c5.journal
|
|
-rw-r-----+ 1 root systemd-journal 40M Jun 30 07:52 /var/log/journal/3a16e11f1dd84d21b50d511e804fd378/system@c57197d92b4f425da80c8c1fe0cefbff-0000000000362fde-000655734d2df63f.journal
|
|
-rw-r-----+ 1 root systemd-journal 40M Jun 30 02:12 /var/log/journal/3a16e11f1dd84d21b50d511e804fd378/system@c57197d92b4f425da80c8c1fe0cefbff-000000000034f5bb-0006556e8bddd9eb.journal
|
|
-rw-r-----+ 1 root systemd-journal 40M Jun 29 20:32 /var/log/journal/3a16e11f1dd84d21b50d511e804fd378/system@c57197d92b4f425da80c8c1fe0cefbff-000000000033bbf2-00065569a06bd630.journal
|
|
-rw-r-----+ 1 root systemd-journal 40M Jun 29 14:40 /var/log/journal/3a16e11f1dd84d21b50d511e804fd378/system@c57197d92b4f425da80c8c1fe0cefbff-000000000032826f-00065564cdc63e62.journal
|
|
-rw-r-----+ 1 root systemd-journal 40M Jun 29 08:54 /var/log/journal/3a16e11f1dd84d21b50d511e804fd378/system@c57197d92b4f425da80c8c1fe0cefbff-00000000003147da-00065560245e3f80.journal
|
|
-rw-r-----+ 1 root systemd-journal 40M Jul 9 21:03 /var/log/journal/3a16e11f1dd84d21b50d511e804fd378/system@c57197d92b4f425da80c8c1fe0cefbff-00000000006767b5-00065633481dab4d.journal
|
|
-rw-r-----+ 1 root systemd-journal 40M Jul 9 15:15 /var/log/journal/3a16e11f1dd84d21b50d511e804fd378/system@c57197d92b4f425da80c8c1fe0cefbff-0000000000662e14-0006562e61a1bc3f.journal
|
|
-rw-r-----+ 1 root systemd-journal 40M Jul 9 09:24 /var/log/journal/3a16e11f1dd84d21b50d511e804fd378/system@c57197d92b4f425da80c8c1fe0cefbff-000000000064f3c0-00065629babb9e3d.journal
|
|
|
|
###############################################################################
|
|
# 30. QUICK-LOOK SUSPECT SUMMARY
|
|
###############################################################################
|
|
|
|
Auto-detected performance anti-patterns (verify against full data above):
|
|
|
|
|
|
--- [A] Network interfaces < 10 Gbps and up
|
|
$ hits=0
|
|
for ifc in $NETIFS; do
|
|
s=$(cat "/sys/class/net/$ifc/speed" 2>/dev/null)
|
|
c=$(cat "/sys/class/net/$ifc/carrier" 2>/dev/null)
|
|
case "$s" in
|
|
10|100|1000)
|
|
if [ "$c" = "1" ]; then
|
|
printf ' %s : %s Mbps (UP) <-- sub-10GbE; suspect if this carries storage/migration\n' "$ifc" "$s"
|
|
hits=$((hits+1))
|
|
fi
|
|
;;
|
|
esac
|
|
done
|
|
[ "$hits" = "0" ] && echo " no <10GbE interfaces are UP (or speed unreadable)"
|
|
br-rr-mgmt : 100 Mbps (UP) <-- sub-10GbE; suspect if this carries storage/migration
|
|
nic0 : 1000 Mbps (UP) <-- sub-10GbE; suspect if this carries storage/migration
|
|
nic1 : 1000 Mbps (UP) <-- sub-10GbE; suspect if this carries storage/migration
|
|
nic2 : 1000 Mbps (UP) <-- sub-10GbE; suspect if this carries storage/migration
|
|
nic3 : 100 Mbps (UP) <-- sub-10GbE; suspect if this carries storage/migration
|
|
nic3.2 : 100 Mbps (UP) <-- sub-10GbE; suspect if this carries storage/migration
|
|
[exit=1]
|
|
|
|
|
|
--- [B] MTU not jumbo on carrier-up interfaces
|
|
$ hits=0
|
|
for ifc in $NETIFS; do
|
|
m=$(cat "/sys/class/net/$ifc/mtu" 2>/dev/null)
|
|
c=$(cat "/sys/class/net/$ifc/carrier" 2>/dev/null)
|
|
[ "$c" = "1" ] || continue
|
|
if [ -n "$m" ] && [ "$m" != "9000" ]; then
|
|
printf ' %s : mtu=%s\n' "$ifc" "$m"
|
|
hits=$((hits+1))
|
|
fi
|
|
done
|
|
[ "$hits" = "0" ] && echo " all carrier-up interfaces have MTU 9000 (or none are up)"
|
|
bond0 : mtu=1500
|
|
br-rr-mgmt : mtu=1500
|
|
fwbr601i0 : mtu=1500
|
|
fwbr602i0 : mtu=1500
|
|
fwbr603i0 : mtu=1500
|
|
fwln601i0 : mtu=1500
|
|
fwln602i0 : mtu=1500
|
|
fwln603i0 : mtu=1500
|
|
fwpr601p0 : mtu=1500
|
|
fwpr602p0 : mtu=1500
|
|
fwpr603p0 : mtu=1500
|
|
nic0 : mtu=1500
|
|
nic1 : mtu=1500
|
|
nic2 : mtu=1500
|
|
nic3 : mtu=1500
|
|
nic3.2 : mtu=1500
|
|
storagenet : mtu=1500
|
|
tap601i0 : mtu=1500
|
|
tap602i0 : mtu=1500
|
|
tap603i0 : mtu=1500
|
|
vmbr0 : mtu=1500
|
|
[exit=1]
|
|
|
|
|
|
--- [C] CPU governor != performance
|
|
$ g=$(cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor 2>/dev/null)
|
|
if [ -z "$g" ]; then
|
|
echo " cpufreq driver not loaded (governor unknown)"
|
|
elif [ "$g" = "performance" ]; then
|
|
echo " OK: performance governor"
|
|
else
|
|
echo " <-- governor=$g (recommend 'performance')"
|
|
fi
|
|
OK: performance governor
|
|
|
|
|
|
--- [D] EPB / EPP not performance-bias
|
|
$ epb=$(cat /sys/devices/system/cpu/cpu0/power/energy_perf_bias 2>/dev/null)
|
|
epp=$(cat /sys/devices/system/cpu/cpu0/cpufreq/energy_performance_preference 2>/dev/null)
|
|
echo " EPB=$epb EPP=$epp (0=performance, 15=max-power on EPB; 'performance' on EPP)"
|
|
EPB= EPP= (0=performance, 15=max-power on EPB; 'performance' on EPP)
|
|
|
|
|
|
--- [E] vm.swappiness and dirty ratios
|
|
$ sw=$(sysctl -n vm.swappiness 2>/dev/null)
|
|
dr=$(sysctl -n vm.dirty_ratio 2>/dev/null)
|
|
dbr=$(sysctl -n vm.dirty_background_ratio 2>/dev/null)
|
|
echo " swappiness=$sw dirty_ratio=$dr dirty_background_ratio=$dbr"
|
|
[ "$sw" != "10" ] && [ -n "$sw" ] && echo " <-- swappiness not 10 (Proxmox default)"
|
|
swappiness=10 dirty_ratio=40 dirty_background_ratio=5
|
|
[exit=1]
|
|
|
|
|
|
--- [F] TCP congestion control
|
|
$ cc=$(sysctl -n net.ipv4.tcp_congestion_control 2>/dev/null)
|
|
avail=$(sysctl -n net.ipv4.tcp_available_congestion_control 2>/dev/null)
|
|
echo " active: $cc"
|
|
echo " available: $avail"
|
|
[ "$cc" = "cubic" ] && echo " <-- consider bbr (if available) for high-BDP NFS paths"
|
|
active: bbr
|
|
available: reno cubic bbr
|
|
[exit=1]
|
|
|
|
|
|
--- [G] ZFS dataset red flags
|
|
$ if ! command -v zfs >/dev/null 2>&1; then
|
|
echo " ZFS not present"
|
|
else
|
|
zfs get -r -o name,property,value compression,atime,sync,recordsize,xattr 2>/dev/null \
|
|
| awk '$2=="compression" && $3=="off" {print " <-- "$1" has compression=off"}
|
|
$2=="atime" && $3=="on" {print " <-- "$1" has atime=on"}
|
|
$2=="sync" && $3=="always" {print " <-- "$1" has sync=always (slow without SLOG)"}
|
|
$2=="xattr" && $3=="on" {print " <-- "$1" has xattr=on (use sa)"}'
|
|
fi
|
|
|
|
|
|
--- [H] ARC size vs RAM
|
|
$ if [ -r /proc/spl/kstat/zfs/arcstats ]; then
|
|
arc=$(awk '/^size /{print $3}' /proc/spl/kstat/zfs/arcstats 2>/dev/null)
|
|
cmax=$(awk '/^c_max /{print $3}' /proc/spl/kstat/zfs/arcstats 2>/dev/null)
|
|
ram=$(awk '/MemTotal/{print $2*1024}' /proc/meminfo)
|
|
echo " ARC current=$arc bytes ARC max=$cmax bytes RAM total=$ram bytes"
|
|
if [ -n "$cmax" ] && [ -n "$ram" ] && [ "$ram" -gt 0 ]; then
|
|
pct=$((cmax * 100 / ram))
|
|
echo " ARC max is ${pct}% of RAM (Proxmox default ~50%)"
|
|
fi
|
|
hits=$(awk '/^hits /{print $3}' /proc/spl/kstat/zfs/arcstats 2>/dev/null)
|
|
miss=$(awk '/^misses /{print $3}' /proc/spl/kstat/zfs/arcstats 2>/dev/null)
|
|
if [ -n "$hits" ] && [ -n "$miss" ] && [ "$((hits+miss))" -gt 0 ]; then
|
|
hr=$((hits * 100 / (hits + miss)))
|
|
echo " ARC hit rate since boot: ${hr}% (hits=$hits misses=$miss)"
|
|
fi
|
|
else
|
|
echo " ZFS ARC stats not available (ZFS not loaded?)"
|
|
fi
|
|
ARC current=3840 bytes ARC max=13515096064 bytes RAM total=101232107520 bytes
|
|
ARC max is 13% of RAM (Proxmox default ~50%)
|
|
|
|
|
|
--- [I] VMs with non-optimal storage/NIC models
|
|
$ hits=0
|
|
for vmid in $(qm list 2>/dev/null | awk 'NR>1{print $1}'); do
|
|
cfg=$(qm config "$vmid" 2>/dev/null)
|
|
flags=""
|
|
echo "$cfg" | grep -qE '^ide[0-9]' && flags="${flags}ide-disk "
|
|
echo "$cfg" | grep -qE '^sata[0-9]' && flags="${flags}sata-disk "
|
|
echo "$cfg" | grep -qE '^scsi[0-9].*:,' && echo "$cfg" | grep -E '^scsi[0-9]' | grep -qv 'virtio-scsi' && flags="${flags}scsi-no-virtio-scsi "
|
|
echo "$cfg" | grep -qE '^scsihw: ' && ! echo "$cfg" | grep -qE '^scsihw: virtio-scsi-single' && flags="${flags}scsihw!=virtio-scsi-single "
|
|
echo "$cfg" | grep -qE '^cpu: .*kvm64' && flags="${flags}cpu=kvm64 "
|
|
echo "$cfg" | grep -q '^iothread: 1' || echo "$cfg" | grep -qE '^scsi[0-9].*iothread=1' || flags="${flags}no-iothread "
|
|
echo "$cfg" | grep -qE '^net[0-9].*model=(e1000|rtl8139|vmxnet)' && flags="${flags}legacy-nic "
|
|
echo "$cfg" | grep -qE '^net[0-9].*model=virtio' && ! echo "$cfg" | grep -qE 'multiqueue=|queues=' && flags="${flags}virtio-no-multiqueue "
|
|
if [ -n "$flags" ]; then
|
|
echo " VM $vmid: $flags"
|
|
hits=$((hits+1))
|
|
fi
|
|
done
|
|
[ "$hits" = "0" ] && echo " no obvious VM storage/NIC anti-patterns"
|
|
VM 100: ide-disk
|
|
VM 600: ide-disk
|
|
VM 601: ide-disk
|
|
[exit=1]
|
|
|
|
|
|
--- [J] NFS client mount option red flags
|
|
$ if ! command -v nfsstat >/dev/null 2>&1; then
|
|
echo " nfsstat not available"
|
|
else
|
|
nfsstat -m 2>/dev/null | awk '
|
|
/^.*:/ {mp=$0; next}
|
|
/Flags:/ {
|
|
gsub(/Flags:|,/,"",$0)
|
|
line=$0
|
|
if (line !~ /noatime/) print " "mp" : missing noatime"
|
|
if (line !~ /nconnect/) print " "mp" : missing nconnect (kernel >=5.3)"
|
|
if (line !~ /rsize=1048576/) print " "mp" : rsize<1M"
|
|
if (line !~ /wsize=1048576/) print " "mp" : wsize<1M"
|
|
if (line ~ /sync/) print " "mp" : sync mount (slow)"
|
|
}
|
|
'
|
|
fi
|
|
|
|
|
|
--- [K] Softnet / NIC drops (non-zero)
|
|
$ awk 'NR<=32 && ($2+0 > 0 || $4+0 > 0) {printf " cpu%d: dropped=%d time_squeezed=%d\n", NR-1, $2, $4}' /proc/net/softnet_stat
|
|
echo " (also check ethtool -S sections above for rx_dropped/rx_missed_errors)"
|
|
(also check ethtool -S sections above for rx_dropped/rx_missed_errors)
|
|
|
|
|
|
--- [L] Failed systemd services
|
|
$ failed=$(systemctl --failed --no-legend 2>/dev/null | head -n 10)
|
|
if [ -n "$failed" ]; then
|
|
echo "$failed" | sed 's/^/ /'
|
|
else
|
|
echo " no failed services"
|
|
fi
|
|
no failed services
|
|
|
|
|
|
--- [M] Filesystem usage > 80%
|
|
$ df -h 2>/dev/null | awk 'NR>1 && $5+0 > 80 {print " "$0}'
|
|
|
|
|
|
--- [N] SMART / NVMe health warnings
|
|
$ if command -v nvme >/dev/null 2>&1; then
|
|
for n in /dev/nvme[0-9]*; do
|
|
[ -b "$n" ] || continue
|
|
crit=$(nvme smart-log "$n" 2>/dev/null | grep -iE 'critical_warning|media_and_data_integrity|available_spare' | head -n 5)
|
|
[ -n "$crit" ] && echo " $n: $crit" | tr '\n' ' '
|
|
done
|
|
fi
|
|
if command -v smartctl >/dev/null 2>&1; then
|
|
for d in $(ls /sys/block/ 2>/dev/null | grep -E '^sd'); do
|
|
dev="/dev/$d"
|
|
[ -b "$dev" ] || continue
|
|
chk=$(smartctl -H "$dev" 2>/dev/null | grep -iE 'result|health|passed|failed')
|
|
echo "$chk" | grep -qi fail && echo " $dev: $chk"
|
|
done
|
|
fi
|
|
echo " (see section 20 for full smartctl/nvme output)"
|
|
(see section 20 for full smartctl/nvme output)
|
|
|
|
###############################################################################
|
|
# Collection complete: pfv-tsys6
|
|
# Output: /root/pfv-tsys6.log
|
|
# Size: 743209 bytes / 14556 lines
|
|
# Elapsed: 369 seconds
|
|
###############################################################################
|