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
17342 lines
875 KiB
Plaintext
17342 lines
875 KiB
Plaintext
###############################################################################
|
|
# Proxmox VE host performance assessment (READ-ONLY)
|
|
# Host: pfv-tsys7 (pfv-tsys7.knel.net)
|
|
# FQDN: pfv-tsys7.knel.net
|
|
# All IPs: 100.110.146.27 192.168.0.250 10.100.100.7 fd7a:115c:a1e0::333b:921b
|
|
# 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.2.5/20242970da7fbcef (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.4.3-pve1 zfs-kmod-2.3.4-pve1
|
|
zfs yes /usr/sbin/zfs zfs-2.4.3-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 yes /usr/bin/htop
|
|
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
|
|
htop 3.4.1-5
|
|
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.1.0
|
|
proxmox-enterprise-support-keyring 1.0
|
|
proxmox-firewall 1.2.3
|
|
proxmox-kernel-6.17 6.17.13-19
|
|
proxmox-kernel-6.17.13-19-pve-signed 6.17.13-19
|
|
proxmox-kernel-6.17.2-1-pve-signed 6.17.2-1
|
|
proxmox-kernel-7.0 7.0.14-6
|
|
proxmox-kernel-7.0.14-6-pve-signed 7.0.14-6
|
|
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.1.12
|
|
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.2.4
|
|
pve-i18n 3.9.0
|
|
pve-lxc-syscalld 2.0.2
|
|
pve-manager 9.2.5
|
|
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.2.1
|
|
smartmontools 7.5-pve2
|
|
tuned 2.25.1-1
|
|
zfs-initramfs 2.4.3-pve1
|
|
zfs-zed 2.4.3-pve1
|
|
zfsutils-linux 2.4.3-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
|
|
rpcsec_gss_krb5 28672 0
|
|
nfsv4 1175552 2
|
|
tcp_diag 12288 0
|
|
bonding 245760 0
|
|
sunrpc 786432 23 nfsv4,auth_rpcgss,lockd,rpcsec_gss_krb5,nfs
|
|
kvm_intel 532480 22
|
|
kvm 1376256 15 kvm_intel
|
|
zfs 6344704 6
|
|
spl 151552 1 zfs
|
|
vhost_net 32768 6
|
|
vhost 69632 1 vhost_net
|
|
vhost_iotlb 16384 1 vhost
|
|
tcp_bbr 20480 26
|
|
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
|
|
tg3 217088 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 31 min, 2 users, load average: 0.67, 0.58, 0.82
|
|
|
|
--- uptime raw (since boot)
|
|
$ cat /proc/uptime
|
|
1872.11 42983.46
|
|
|
|
--- last reboot
|
|
$ last -x reboot
|
|
reboot system boot 6.17.2-1-pve Sun Jul 26 15:54 - still running
|
|
reboot system boot 6.17.2-1-pve Fri Jul 24 13:39 - 15:50 (2+02:10)
|
|
shutdown system down 6.17.2-1-pve Sun Jul 26 15:50 - 15:54 (00:04)
|
|
reboot system boot 6.17.2-1-pve Thu Jul 23 20:49 - 10:45 (13:56)
|
|
shutdown system down 6.17.2-1-pve Fri Jul 24 10:45 - 13:39 (02:54)
|
|
reboot system boot 6.17.2-1-pve Thu Jul 23 13:38 - 20:46 (07:07)
|
|
shutdown system down 6.17.2-1-pve Thu Jul 23 20:46 - 20:49 (00:02)
|
|
reboot system boot 6.17.2-1-pve Fri Jun 19 03:05 - 18:06 (33+15:01)
|
|
shutdown system down 6.17.2-1-pve Wed Jul 22 18:06 - 13:38 (19:32)
|
|
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:40 - crash
|
|
reboot system boot 6.17.2-1-pve Sun May 10 22:00 - crash
|
|
reboot system boot 6.17.2-1-pve Sun May 10 21:55 - crash
|
|
reboot system boot 6.17.2-1-pve Sat Apr 4 17:01 - crash
|
|
|
|
wtmpdb begins Sat Apr 4 17:01:39 2026
|
|
|
|
--- last logins
|
|
$ last
|
|
root pts/0 100.87.49.37 Sun Jul 26 16:14 - 16:14 (00:00)
|
|
root pts/0 100.87.49.37 Sun Jul 26 16:14 - 16:14 (00:00)
|
|
root pts/0 100.87.49.37 Sun Jul 26 16:04 - 16:10 (00:05)
|
|
reboot system boot 6.17.2-1-pve Sun Jul 26 15:54 - still running
|
|
root pts/1 100.87.49.37 Sun Jul 26 15:42 - 15:42 (00:00)
|
|
root pts/1 100.87.49.37 Sun Jul 26 15:39 - 15:40 (00:01)
|
|
root pts/1 100.87.49.37 Sun Jul 26 14:56 - 15:06 (00:10)
|
|
root pts/1 100.87.49.37 Sun Jul 26 14:41 - 14:54 (00:12)
|
|
root pts/1 100.87.49.37 Sun Jul 26 11:54 - 11:55 (00:01)
|
|
root pts/1 100.87.49.37 Sun Jul 26 11:52 - 11:53 (00:00)
|
|
root pts/0 100.87.49.37 Sun Jul 26 09:21 - 09:33 (00:12)
|
|
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:30 (00:05)
|
|
reboot system boot 6.17.2-1-pve Fri Jul 24 13:39 - 15:50 (2+02:10)
|
|
root pts/0 100.87.49.37 Fri Jul 24 10:45 - 10:45 (00:00)
|
|
reboot system boot 6.17.2-1-pve Thu Jul 23 20:49 - 10:45 (13:56)
|
|
reboot system boot 6.17.2-1-pve Thu Jul 23 13:38 - 20:46 (07:07)
|
|
root pts/0 100.87.49.37 Wed Jul 22 17:58 - 18:06 (00:08)
|
|
root pts/0 100.87.49.37 Wed Jul 22 17:27 - 17:40 (00:12)
|
|
root pts/1 100.87.49.37 Wed Jul 22 17:20 - 17:25 (00:04)
|
|
root pts/0 100.87.49.37 Wed Jul 22 17:01 - 17:20 (00:18)
|
|
root pts/0 100.87.49.37 Mon Jul 20 19:02 - 19:02 (00:00)
|
|
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:25 - 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:13 - 11:14 (00:00)
|
|
root pts/0 100.87.49.37 Mon Jul 20 10:58 - 11:10 (00:11)
|
|
root pts/0 100.87.49.37 Mon Jul 20 10:49 - 10:49 (00:00)
|
|
root pts/0 Fri Jun 26 11:48 - 11:50 (00:01)
|
|
reboot system boot 6.17.2-1-pve Fri Jun 19 03:05 - 18:06 (33+15:01)
|
|
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:40 - crash
|
|
reboot system boot 6.17.2-1-pve Sun May 10 22:00 - 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:49 - 13:52 (00:02)
|
|
root pts/0 100.118.91.16 Mon Apr 27 13:47 - 13:48 (00:00)
|
|
root pts/0 100.118.91.16 Mon Apr 27 13:45 - 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 09:42 - 09:43 (00:00)
|
|
root pts/1 100.118.91.16 Sun Apr 5 11:23 - 11:23 (00:00)
|
|
root pts/1 100.118.91.16 Sun Apr 5 11:20 - 11:20 (00:00)
|
|
root pts/0 100.118.91.16 Sun Apr 5 11:20 - 11:26 (00:05)
|
|
root pts/0 100.118.91.16 Sun Apr 5 11:20 - 11:20 (00:00)
|
|
root pts/0 100.118.91.16 Sun Apr 5 11:17 - 11:17 (00:00)
|
|
root pts/0 100.118.91.16 Sun Apr 5 11:14 - 11:14 (00:00)
|
|
root pts/1 100.118.91.16 Sun Apr 5 11:14 - 11:14 (00:00)
|
|
root pts/0 100.118.91.16 Sun Apr 5 11:14 - 11:14 (00:00)
|
|
root pts/0 100.118.91.16 Sun Apr 5 10:13 - 10:13 (00:00)
|
|
root pts/1 100.118.91.16 Sun Apr 5 06:06 - 06:06 (00:00)
|
|
root pts/1 100.118.91.16 Sun Apr 5 06:05 - 06:06 (00:00)
|
|
root pts/0 192.168.3.32 Sun Apr 5 05:51 - 10:01 (04:10)
|
|
root tty1 Sat Apr 4 17:05 - 17:06 (00:00)
|
|
reboot system boot 6.17.2-1-pve Sat Apr 4 17:01 - crash
|
|
|
|
wtmpdb begins Sat Apr 4 17:01:39 2026
|
|
|
|
--- uname
|
|
$ uname -a
|
|
Linux pfv-tsys7 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 quiet
|
|
|
|
###############################################################################
|
|
# 3. HARDWARE INVENTORY
|
|
###############################################################################
|
|
|
|
--- dmidecode -t system
|
|
$ dmidecode -t system
|
|
# dmidecode 3.6
|
|
Getting SMBIOS data from sysfs.
|
|
SMBIOS 2.7 present.
|
|
|
|
Handle 0x0100, DMI type 1, 27 bytes
|
|
System Information
|
|
Manufacturer: Dell Inc.
|
|
Product Name: PowerEdge R620
|
|
Version: Not Specified
|
|
Serial Number: B8B8H02
|
|
UUID: 4c4c4544-0038-4210-8038-c2c04f483032
|
|
Wake-up Type: Power Switch
|
|
SKU Number: SKU=NotProvided;ModelName=PowerEdge R620
|
|
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.7 present.
|
|
|
|
Handle 0x0200, DMI type 2, 9 bytes
|
|
Base Board Information
|
|
Manufacturer: Dell Inc.
|
|
Product Name: 01W23F
|
|
Version: A00
|
|
Serial Number: ..CN747513CP0750.
|
|
Asset Tag: Not Specified
|
|
|
|
Handle 0x2900, DMI type 41, 11 bytes
|
|
Onboard Device
|
|
Reference Designation: Integrated 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: Integrated 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: Integrated 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: Integrated 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: Ethernet
|
|
Status: Disabled
|
|
Type Instance: 5
|
|
|
|
Handle 0x2905, DMI type 41, 11 bytes
|
|
Onboard Device
|
|
Reference Designation:
|
|
Type: Ethernet
|
|
Status: Disabled
|
|
Type Instance: 6
|
|
|
|
Handle 0x2906, DMI type 41, 11 bytes
|
|
Onboard Device
|
|
Reference Designation:
|
|
Type: Ethernet
|
|
Status: Disabled
|
|
Type Instance: 7
|
|
|
|
Handle 0x2907, DMI type 41, 11 bytes
|
|
Onboard Device
|
|
Reference Designation:
|
|
Type: Ethernet
|
|
Status: Disabled
|
|
Type Instance: 8
|
|
|
|
Handle 0x290A, DMI type 41, 11 bytes
|
|
Onboard Device
|
|
Reference Designation: Embedded Video
|
|
Type: Video
|
|
Status: Enabled
|
|
Type Instance: 4
|
|
Bus Address: 0000:0b:00.0
|
|
|
|
Handle 0x290B, DMI type 41, 11 bytes
|
|
Onboard Device
|
|
Reference Designation:
|
|
Type: SATA Controller
|
|
Status: Enabled
|
|
Type Instance: 1
|
|
Bus Address: 0000:00:1f.2
|
|
|
|
|
|
--- dmidecode -t bios
|
|
$ dmidecode -t bios
|
|
# dmidecode 3.6
|
|
Getting SMBIOS data from sysfs.
|
|
SMBIOS 2.7 present.
|
|
|
|
Handle 0x0000, DMI type 0, 24 bytes
|
|
BIOS Information
|
|
Vendor: Dell Inc.
|
|
Version: 2.5.2
|
|
Release Date: 01/28/2015
|
|
Address: 0xF0000
|
|
Runtime Size: 64 kB
|
|
ROM Size: 8 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
|
|
UEFI is supported
|
|
BIOS Revision: 2.5
|
|
|
|
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.7 present.
|
|
|
|
Handle 0x0300, DMI type 3, 22 bytes
|
|
Chassis Information
|
|
Manufacturer: Dell Inc.
|
|
Type: Rack Mount Chassis
|
|
Lock: Present
|
|
Version: Not Specified
|
|
Serial Number: B8B8H02
|
|
Asset Tag: Not Specified
|
|
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
|
|
SKU Number: Not Specified
|
|
|
|
|
|
--- dmidecode -t processor
|
|
$ dmidecode -t processor
|
|
# dmidecode 3.6
|
|
Getting SMBIOS data from sysfs.
|
|
SMBIOS 2.7 present.
|
|
|
|
Handle 0x0400, DMI type 4, 40 bytes
|
|
Processor Information
|
|
Socket Designation: CPU1
|
|
Type: Central Processor
|
|
Family: Xeon
|
|
Manufacturer: Intel
|
|
ID: E4 06 03 00 FF FB EB BF
|
|
Signature: Type 0, Family 6, Model 62, Stepping 4
|
|
Flags:
|
|
FPU (Floating-point unit on-chip)
|
|
VME (Virtual mode extension)
|
|
DE (Debugging extension)
|
|
PSE (Page size extension)
|
|
TSC (Time stamp counter)
|
|
MSR (Model specific registers)
|
|
PAE (Physical address extension)
|
|
MCE (Machine check exception)
|
|
CX8 (CMPXCHG8 instruction supported)
|
|
APIC (On-chip APIC hardware supported)
|
|
SEP (Fast system call)
|
|
MTRR (Memory type range registers)
|
|
PGE (Page global enable)
|
|
MCA (Machine check architecture)
|
|
CMOV (Conditional move instruction supported)
|
|
PAT (Page attribute table)
|
|
PSE-36 (36-bit page size extension)
|
|
CLFSH (CLFLUSH instruction supported)
|
|
DS (Debug store)
|
|
ACPI (ACPI supported)
|
|
MMX (MMX technology supported)
|
|
FXSR (FXSAVE and FXSTOR instructions supported)
|
|
SSE (Streaming SIMD extensions)
|
|
SSE2 (Streaming SIMD extensions 2)
|
|
SS (Self-snoop)
|
|
HTT (Multi-threading)
|
|
TM (Thermal monitor supported)
|
|
PBE (Pending break enabled)
|
|
Version: Intel(R) Xeon(R) CPU E5-2630 v2 @ 2.60GHz
|
|
Voltage: 1.2 V
|
|
External Clock: 7200 MHz
|
|
Max Speed: 3600 MHz
|
|
Current Speed: 2600 MHz
|
|
Status: Populated, Enabled
|
|
Upgrade: Socket LGA2011
|
|
L1 Cache Handle: 0x0700
|
|
L2 Cache Handle: 0x0701
|
|
L3 Cache Handle: 0x0702
|
|
Serial Number: Not Specified
|
|
Asset Tag: Not Specified
|
|
Part Number: Not Specified
|
|
Core Count: 6
|
|
Core Enabled: 6
|
|
Thread Count: 12
|
|
Characteristics:
|
|
64-bit capable
|
|
Multi-Core
|
|
Hardware Thread
|
|
Execute Protection
|
|
Enhanced Virtualization
|
|
Power/Performance Control
|
|
|
|
Handle 0x0401, DMI type 4, 40 bytes
|
|
Processor Information
|
|
Socket Designation: CPU2
|
|
Type: Central Processor
|
|
Family: Xeon
|
|
Manufacturer: Intel
|
|
ID: E4 06 03 00 FF FB EB BF
|
|
Signature: Type 0, Family 6, Model 62, Stepping 4
|
|
Flags:
|
|
FPU (Floating-point unit on-chip)
|
|
VME (Virtual mode extension)
|
|
DE (Debugging extension)
|
|
PSE (Page size extension)
|
|
TSC (Time stamp counter)
|
|
MSR (Model specific registers)
|
|
PAE (Physical address extension)
|
|
MCE (Machine check exception)
|
|
CX8 (CMPXCHG8 instruction supported)
|
|
APIC (On-chip APIC hardware supported)
|
|
SEP (Fast system call)
|
|
MTRR (Memory type range registers)
|
|
PGE (Page global enable)
|
|
MCA (Machine check architecture)
|
|
CMOV (Conditional move instruction supported)
|
|
PAT (Page attribute table)
|
|
PSE-36 (36-bit page size extension)
|
|
CLFSH (CLFLUSH instruction supported)
|
|
DS (Debug store)
|
|
ACPI (ACPI supported)
|
|
MMX (MMX technology supported)
|
|
FXSR (FXSAVE and FXSTOR instructions supported)
|
|
SSE (Streaming SIMD extensions)
|
|
SSE2 (Streaming SIMD extensions 2)
|
|
SS (Self-snoop)
|
|
HTT (Multi-threading)
|
|
TM (Thermal monitor supported)
|
|
PBE (Pending break enabled)
|
|
Version: Intel(R) Xeon(R) CPU E5-2630 v2 @ 2.60GHz
|
|
Voltage: 1.2 V
|
|
External Clock: 7200 MHz
|
|
Max Speed: 3600 MHz
|
|
Current Speed: 2600 MHz
|
|
Status: Populated, Idle
|
|
Upgrade: Socket LGA2011
|
|
L1 Cache Handle: 0x0703
|
|
L2 Cache Handle: 0x0704
|
|
L3 Cache Handle: 0x0705
|
|
Serial Number: Not Specified
|
|
Asset Tag: Not Specified
|
|
Part Number: Not Specified
|
|
Core Count: 6
|
|
Core Enabled: 6
|
|
Thread Count: 12
|
|
Characteristics:
|
|
64-bit capable
|
|
Multi-Core
|
|
Hardware Thread
|
|
Execute Protection
|
|
Enhanced Virtualization
|
|
Power/Performance Control
|
|
|
|
|
|
--- dmidecode -t memory
|
|
$ dmidecode -t memory
|
|
# dmidecode 3.6
|
|
Getting SMBIOS data from sysfs.
|
|
SMBIOS 2.7 present.
|
|
|
|
Handle 0x1000, DMI type 16, 23 bytes
|
|
Physical Memory Array
|
|
Location: System Board Or Motherboard
|
|
Use: System Memory
|
|
Error Correction Type: Multi-bit ECC
|
|
Maximum Capacity: 1536 GB
|
|
Error Information Handle: Not Provided
|
|
Number Of Devices: 24
|
|
|
|
Handle 0x1100, DMI type 17, 34 bytes
|
|
Memory Device
|
|
Array Handle: 0x1000
|
|
Error Information Handle: Not Provided
|
|
Total Width: 72 bits
|
|
Data Width: 64 bits
|
|
Size: 16 GB
|
|
Form Factor: DIMM
|
|
Set: 1
|
|
Locator: DIMM_A1
|
|
Bank Locator: Not Specified
|
|
Type: DDR3
|
|
Type Detail: Synchronous Registered (Buffered)
|
|
Speed: 1600 MT/s
|
|
Manufacturer: 00CE00B300CE
|
|
Serial Number: 36F68086
|
|
Asset Tag: 02134463
|
|
Part Number: M393B2G70QH0-YK0
|
|
Rank: 2
|
|
Configured Memory Speed: 1600 MT/s
|
|
|
|
Handle 0x1101, DMI type 17, 34 bytes
|
|
Memory Device
|
|
Array Handle: 0x1000
|
|
Error Information Handle: Not Provided
|
|
Total Width: 72 bits
|
|
Data Width: 64 bits
|
|
Size: 16 GB
|
|
Form Factor: DIMM
|
|
Set: 1
|
|
Locator: DIMM_A2
|
|
Bank Locator: Not Specified
|
|
Type: DDR3
|
|
Type Detail: Synchronous Registered (Buffered)
|
|
Speed: 1600 MT/s
|
|
Manufacturer: 00CE00B300CE
|
|
Serial Number: 36F680DF
|
|
Asset Tag: 02134463
|
|
Part Number: M393B2G70QH0-YK0
|
|
Rank: 2
|
|
Configured Memory Speed: 1600 MT/s
|
|
|
|
Handle 0x1102, DMI type 17, 34 bytes
|
|
Memory Device
|
|
Array Handle: 0x1000
|
|
Error Information Handle: Not Provided
|
|
Total Width: 72 bits
|
|
Data Width: 64 bits
|
|
Size: 16 GB
|
|
Form Factor: DIMM
|
|
Set: 1
|
|
Locator: DIMM_A3
|
|
Bank Locator: Not Specified
|
|
Type: DDR3
|
|
Type Detail: Synchronous Registered (Buffered)
|
|
Speed: 1600 MT/s
|
|
Manufacturer: 00CE00B300CE
|
|
Serial Number: 36F680DA
|
|
Asset Tag: 02134463
|
|
Part Number: M393B2G70QH0-YK0
|
|
Rank: 2
|
|
Configured Memory Speed: 1600 MT/s
|
|
|
|
Handle 0x1103, DMI type 17, 34 bytes
|
|
Memory Device
|
|
Array Handle: 0x1000
|
|
Error Information Handle: Not Provided
|
|
Total Width: 72 bits
|
|
Data Width: 64 bits
|
|
Size: 16 GB
|
|
Form Factor: DIMM
|
|
Set: 1
|
|
Locator: DIMM_A4
|
|
Bank Locator: Not Specified
|
|
Type: DDR3
|
|
Type Detail: Synchronous Registered (Buffered)
|
|
Speed: 1600 MT/s
|
|
Manufacturer: 00CE00B300CE
|
|
Serial Number: 36F6710D
|
|
Asset Tag: 02134463
|
|
Part Number: M393B2G70QH0-YK0
|
|
Rank: 2
|
|
Configured Memory Speed: 1600 MT/s
|
|
|
|
Handle 0x1104, DMI type 17, 34 bytes
|
|
Memory Device
|
|
Array Handle: 0x1000
|
|
Error Information Handle: Not Provided
|
|
Total Width: 72 bits
|
|
Data Width: 64 bits
|
|
Size: 16 GB
|
|
Form Factor: DIMM
|
|
Set: 2
|
|
Locator: DIMM_A5
|
|
Bank Locator: Not Specified
|
|
Type: DDR3
|
|
Type Detail: Synchronous Registered (Buffered)
|
|
Speed: 1600 MT/s
|
|
Manufacturer: 00CE00B300CE
|
|
Serial Number: 36F68087
|
|
Asset Tag: 02134463
|
|
Part Number: M393B2G70QH0-YK0
|
|
Rank: 2
|
|
Configured Memory Speed: 1600 MT/s
|
|
|
|
Handle 0x1105, DMI type 17, 34 bytes
|
|
Memory Device
|
|
Array Handle: 0x1000
|
|
Error Information Handle: Not Provided
|
|
Total Width: 72 bits
|
|
Data Width: 64 bits
|
|
Size: 16 GB
|
|
Form Factor: DIMM
|
|
Set: 2
|
|
Locator: DIMM_A6
|
|
Bank Locator: Not Specified
|
|
Type: DDR3
|
|
Type Detail: Synchronous Registered (Buffered)
|
|
Speed: 1600 MT/s
|
|
Manufacturer: 00CE00B300CE
|
|
Serial Number: 36F680AC
|
|
Asset Tag: 02134463
|
|
Part Number: M393B2G70QH0-YK0
|
|
Rank: 2
|
|
Configured Memory Speed: 1600 MT/s
|
|
|
|
Handle 0x1106, DMI type 17, 34 bytes
|
|
Memory Device
|
|
Array Handle: 0x1000
|
|
Error Information Handle: Not Provided
|
|
Total Width: 72 bits
|
|
Data Width: 64 bits
|
|
Size: No Module Installed
|
|
Form Factor: DIMM
|
|
Set: 2
|
|
Locator: DIMM_A7
|
|
Bank Locator: Not Specified
|
|
Type: DDR3
|
|
Type Detail: Synchronous
|
|
|
|
Handle 0x1107, DMI type 17, 34 bytes
|
|
Memory Device
|
|
Array Handle: 0x1000
|
|
Error Information Handle: Not Provided
|
|
Total Width: 72 bits
|
|
Data Width: 64 bits
|
|
Size: No Module Installed
|
|
Form Factor: DIMM
|
|
Set: 2
|
|
Locator: DIMM_A8
|
|
Bank Locator: Not Specified
|
|
Type: DDR3
|
|
Type Detail: Synchronous
|
|
|
|
Handle 0x1108, DMI type 17, 34 bytes
|
|
Memory Device
|
|
Array Handle: 0x1000
|
|
Error Information Handle: Not Provided
|
|
Total Width: 72 bits
|
|
Data Width: 64 bits
|
|
Size: No Module Installed
|
|
Form Factor: DIMM
|
|
Set: 3
|
|
Locator: DIMM_A9
|
|
Bank Locator: Not Specified
|
|
Type: DDR3
|
|
Type Detail: Synchronous
|
|
|
|
Handle 0x1109, DMI type 17, 34 bytes
|
|
Memory Device
|
|
Array Handle: 0x1000
|
|
Error Information Handle: Not Provided
|
|
Total Width: 72 bits
|
|
Data Width: 64 bits
|
|
Size: No Module Installed
|
|
Form Factor: DIMM
|
|
Set: 3
|
|
Locator: DIMM_A10
|
|
Bank Locator: Not Specified
|
|
Type: DDR3
|
|
Type Detail: Synchronous
|
|
|
|
Handle 0x110A, DMI type 17, 34 bytes
|
|
Memory Device
|
|
Array Handle: 0x1000
|
|
Error Information Handle: Not Provided
|
|
Total Width: 72 bits
|
|
Data Width: 64 bits
|
|
Size: No Module Installed
|
|
Form Factor: DIMM
|
|
Set: 3
|
|
Locator: DIMM_A11
|
|
Bank Locator: Not Specified
|
|
Type: DDR3
|
|
Type Detail: Synchronous
|
|
|
|
Handle 0x110B, DMI type 17, 34 bytes
|
|
Memory Device
|
|
Array Handle: 0x1000
|
|
Error Information Handle: Not Provided
|
|
Total Width: 72 bits
|
|
Data Width: 64 bits
|
|
Size: No Module Installed
|
|
Form Factor: DIMM
|
|
Set: 3
|
|
Locator: DIMM_A12
|
|
Bank Locator: Not Specified
|
|
Type: DDR3
|
|
Type Detail: Synchronous
|
|
|
|
Handle 0x110C, DMI type 17, 34 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: 4
|
|
Locator: DIMM_B1
|
|
Bank Locator: Not Specified
|
|
Type: DDR3
|
|
Type Detail: Synchronous Registered (Buffered)
|
|
Speed: 1600 MT/s
|
|
Manufacturer: 00CE00B300CE
|
|
Serial Number: 36F68088
|
|
Asset Tag: 02134463
|
|
Part Number: M393B2G70QH0-YK0
|
|
Rank: 2
|
|
Configured Memory Speed: 1600 MT/s
|
|
|
|
Handle 0x110D, DMI type 17, 34 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: 4
|
|
Locator: DIMM_B2
|
|
Bank Locator: Not Specified
|
|
Type: DDR3
|
|
Type Detail: Synchronous Registered (Buffered)
|
|
Speed: 1600 MT/s
|
|
Manufacturer: 00CE00B300CE
|
|
Serial Number: 36F680D9
|
|
Asset Tag: 02134463
|
|
Part Number: M393B2G70QH0-YK0
|
|
Rank: 2
|
|
Configured Memory Speed: 1600 MT/s
|
|
|
|
Handle 0x110E, DMI type 17, 34 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: 4
|
|
Locator: DIMM_B3
|
|
Bank Locator: Not Specified
|
|
Type: DDR3
|
|
Type Detail: Synchronous Registered (Buffered)
|
|
Speed: 1600 MT/s
|
|
Manufacturer: 00CE00B300CE
|
|
Serial Number: 36F680DD
|
|
Asset Tag: 02134463
|
|
Part Number: M393B2G70QH0-YK0
|
|
Rank: 2
|
|
Configured Memory Speed: 1600 MT/s
|
|
|
|
Handle 0x110F, DMI type 17, 34 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: 4
|
|
Locator: DIMM_B4
|
|
Bank Locator: Not Specified
|
|
Type: DDR3
|
|
Type Detail: Synchronous Registered (Buffered)
|
|
Speed: 1600 MT/s
|
|
Manufacturer: 00CE00B300CE
|
|
Serial Number: 36F68125
|
|
Asset Tag: 02134463
|
|
Part Number: M393B2G70QH0-YK0
|
|
Rank: 2
|
|
Configured Memory Speed: 1600 MT/s
|
|
|
|
Handle 0x1110, DMI type 17, 34 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: 5
|
|
Locator: DIMM_B5
|
|
Bank Locator: Not Specified
|
|
Type: DDR3
|
|
Type Detail: Synchronous Registered (Buffered)
|
|
Speed: 1600 MT/s
|
|
Manufacturer: 00CE00B300CE
|
|
Serial Number: 36F680AD
|
|
Asset Tag: 02134463
|
|
Part Number: M393B2G70QH0-YK0
|
|
Rank: 2
|
|
Configured Memory Speed: 1600 MT/s
|
|
|
|
Handle 0x1111, DMI type 17, 34 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: 5
|
|
Locator: DIMM_B6
|
|
Bank Locator: Not Specified
|
|
Type: DDR3
|
|
Type Detail: Synchronous Registered (Buffered)
|
|
Speed: 1600 MT/s
|
|
Manufacturer: 00CE00B300CE
|
|
Serial Number: 36F680A7
|
|
Asset Tag: 02134463
|
|
Part Number: M393B2G70QH0-YK0
|
|
Rank: 2
|
|
Configured Memory Speed: 1600 MT/s
|
|
|
|
Handle 0x1112, DMI type 17, 34 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_B7
|
|
Bank Locator: Not Specified
|
|
Type: DDR3
|
|
Type Detail: Synchronous
|
|
|
|
Handle 0x1113, DMI type 17, 34 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_B8
|
|
Bank Locator: Not Specified
|
|
Type: DDR3
|
|
Type Detail: Synchronous
|
|
|
|
Handle 0x1114, DMI type 17, 34 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_B9
|
|
Bank Locator: Not Specified
|
|
Type: DDR3
|
|
Type Detail: Synchronous
|
|
|
|
Handle 0x1115, DMI type 17, 34 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_B10
|
|
Bank Locator: Not Specified
|
|
Type: DDR3
|
|
Type Detail: Synchronous
|
|
|
|
Handle 0x1116, DMI type 17, 34 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_B11
|
|
Bank Locator: Not Specified
|
|
Type: DDR3
|
|
Type Detail: Synchronous
|
|
|
|
Handle 0x1117, DMI type 17, 34 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_B12
|
|
Bank Locator: Not Specified
|
|
Type: DDR3
|
|
Type Detail: Synchronous
|
|
|
|
|
|
--- dmidecode -t cache
|
|
$ dmidecode -t cache
|
|
# dmidecode 3.6
|
|
Getting SMBIOS data from sysfs.
|
|
SMBIOS 2.7 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: 192 kB
|
|
Maximum Size: 192 kB
|
|
Supported SRAM Types:
|
|
Unknown
|
|
Installed SRAM Type: Unknown
|
|
Speed: Unknown
|
|
Error Correction Type: Single-bit ECC
|
|
System Type: Data
|
|
Associativity: 8-way Set-associative
|
|
|
|
Handle 0x0701, DMI type 7, 19 bytes
|
|
Cache Information
|
|
Socket Designation: Not Specified
|
|
Configuration: Enabled, Not Socketed, Level 2
|
|
Operational Mode: Write Back
|
|
Location: Internal
|
|
Installed Size: 1536 kB
|
|
Maximum Size: 1536 kB
|
|
Supported SRAM Types:
|
|
Unknown
|
|
Installed SRAM Type: Unknown
|
|
Speed: Unknown
|
|
Error Correction Type: Single-bit ECC
|
|
System Type: Unified
|
|
Associativity: 8-way Set-associative
|
|
|
|
Handle 0x0702, DMI type 7, 19 bytes
|
|
Cache Information
|
|
Socket Designation: Not Specified
|
|
Configuration: Enabled, Not Socketed, Level 3
|
|
Operational Mode: Write Back
|
|
Location: Internal
|
|
Installed Size: 15 MB
|
|
Maximum Size: 15 MB
|
|
Supported SRAM Types:
|
|
Unknown
|
|
Installed SRAM Type: Unknown
|
|
Speed: Unknown
|
|
Error Correction Type: Single-bit ECC
|
|
System Type: Unified
|
|
Associativity: 20-way Set-associative
|
|
|
|
Handle 0x0703, DMI type 7, 19 bytes
|
|
Cache Information
|
|
Socket Designation: Not Specified
|
|
Configuration: Enabled, Not Socketed, Level 1
|
|
Operational Mode: Write Back
|
|
Location: Internal
|
|
Installed Size: 192 kB
|
|
Maximum Size: 192 kB
|
|
Supported SRAM Types:
|
|
Unknown
|
|
Installed SRAM Type: Unknown
|
|
Speed: Unknown
|
|
Error Correction Type: Single-bit ECC
|
|
System Type: Data
|
|
Associativity: 8-way Set-associative
|
|
|
|
Handle 0x0704, DMI type 7, 19 bytes
|
|
Cache Information
|
|
Socket Designation: Not Specified
|
|
Configuration: Enabled, Not Socketed, Level 2
|
|
Operational Mode: Write Back
|
|
Location: Internal
|
|
Installed Size: 1536 kB
|
|
Maximum Size: 1536 kB
|
|
Supported SRAM Types:
|
|
Unknown
|
|
Installed SRAM Type: Unknown
|
|
Speed: Unknown
|
|
Error Correction Type: Single-bit ECC
|
|
System Type: Unified
|
|
Associativity: 8-way Set-associative
|
|
|
|
Handle 0x0705, DMI type 7, 19 bytes
|
|
Cache Information
|
|
Socket Designation: Not Specified
|
|
Configuration: Enabled, Not Socketed, Level 3
|
|
Operational Mode: Write Back
|
|
Location: Internal
|
|
Installed Size: 15 MB
|
|
Maximum Size: 15 MB
|
|
Supported SRAM Types:
|
|
Unknown
|
|
Installed SRAM Type: Unknown
|
|
Speed: Unknown
|
|
Error Correction Type: Single-bit ECC
|
|
System Type: Unified
|
|
Associativity: 20-way Set-associative
|
|
|
|
|
|
--- dmidecode -t connector
|
|
$ dmidecode -t connector
|
|
# dmidecode 3.6
|
|
Getting SMBIOS data from sysfs.
|
|
SMBIOS 2.7 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 0x0804, 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 0x0805, 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 0x0807, 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 0x0808, DMI type 8, 9 bytes
|
|
Port Connector Information
|
|
Internal Reference Designator: SD Card 1
|
|
Internal Connector Type: Other
|
|
External Reference Designator: Not Specified
|
|
External Connector Type: None
|
|
Port Type: USB
|
|
|
|
Handle 0x0809, DMI type 8, 9 bytes
|
|
Port Connector Information
|
|
Internal Reference Designator: SD Card 2
|
|
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.7 present.
|
|
|
|
Handle 0x0900, DMI type 9, 17 bytes
|
|
System Slot Information
|
|
Designation: PCI1
|
|
Type: PCI Express 3 x16
|
|
Data Bus Width: 8x or x8
|
|
Current Usage: Available
|
|
Length: Long
|
|
ID: 1
|
|
Characteristics:
|
|
3.3 V is provided
|
|
PME signal is supported
|
|
|
|
Handle 0x0901, DMI type 9, 17 bytes
|
|
System Slot Information
|
|
Designation: PCI2
|
|
Type: PCI Express 3
|
|
Data Bus Width: 16x or x16
|
|
Current Usage: Available
|
|
Length: Long
|
|
ID: 2
|
|
Characteristics:
|
|
3.3 V is provided
|
|
PME signal is supported
|
|
|
|
Handle 0x0902, DMI type 9, 17 bytes
|
|
System Slot Information
|
|
Designation: PCI3
|
|
Type: PCI Express 3
|
|
Data Bus Width: 16x or x16
|
|
Current Usage: Available
|
|
Length: Long
|
|
ID: 3
|
|
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: 46 bits physical, 48 bits virtual
|
|
Byte Order: Little Endian
|
|
CPU(s): 24
|
|
On-line CPU(s) list: 0-23
|
|
Vendor ID: GenuineIntel
|
|
Model name: Intel(R) Xeon(R) CPU E5-2630 v2 @ 2.60GHz
|
|
CPU family: 6
|
|
Model: 62
|
|
Thread(s) per core: 2
|
|
Core(s) per socket: 6
|
|
Socket(s): 2
|
|
Stepping: 4
|
|
CPU(s) scaling MHz: 95%
|
|
CPU max MHz: 3100.0000
|
|
CPU min MHz: 1200.0000
|
|
BogoMIPS: 5199.70
|
|
Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 x2apic popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm cpuid_fault pti ssbd ibrs ibpb stibp tpr_shadow flexpriority ept vpid fsgsbase smep erms xsaveopt dtherm ida arat pln pts vnmi md_clear flush_l1d
|
|
Virtualization: VT-x
|
|
L1d cache: 384 KiB (12 instances)
|
|
L1i cache: 384 KiB (12 instances)
|
|
L2 cache: 3 MiB (12 instances)
|
|
L3 cache: 30 MiB (2 instances)
|
|
NUMA node(s): 2
|
|
NUMA node0 CPU(s): 0,2,4,6,8,10,12,14,16,18,20,22
|
|
NUMA node1 CPU(s): 1,3,5,7,9,11,13,15,17,19,21,23
|
|
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: Mitigation; Clear CPU buffers; 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: Mitigation; IBPB before exit to userspace
|
|
|
|
--- lscpu cache
|
|
$ lscpu -C
|
|
NAME ONE-SIZE ALL-SIZE WAYS TYPE LEVEL SETS PHY-LINE COHERENCY-SIZE
|
|
L1d 32K 384K 8 Data 1 64 1 64
|
|
L1i 32K 384K 8 Instruction 1 64 1 64
|
|
L2 256K 3M 8 Unified 2 512 1 64
|
|
L3 15M 30M 20 Unified 3 12288 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 Xeon E7 v2/Xeon E5 v2/Core i7 DMI2 [8086:0e00] (rev 04)
|
|
Subsystem: Dell Device [1028:04ce]
|
|
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 0
|
|
NUMA node: 0
|
|
IOMMU group: 4
|
|
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 L1, Exit Latency L1 <4us
|
|
ClockPM- Surprise+ LLActRep+ BwNot+ ASPMOptComp+
|
|
LnkCtl: ASPM Disabled; RCB 64 bytes, LnkDisable- CommClk-
|
|
ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
|
|
LnkSta: Speed unknown, Width x0
|
|
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: 50us to 50ms, TimeoutDis- ARIFwd-
|
|
AtomicOpsCtl: ReqEn- EgressBlck-
|
|
IDOReq- IDOCompl- LTR- EmergencyPowerReductionReq-
|
|
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
|
|
LnkCap2: Supported Link Speeds: 2.5-5GT/s, Crosslink- Retimer- 2Retimers- DRS-
|
|
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] Vendor Specific Information: ID=0002 Rev=0 Len=00c <?>
|
|
Capabilities: [144 v1] Vendor Specific Information: ID=0004 Rev=1 Len=03c <?>
|
|
Capabilities: [1d0 v1] Vendor Specific Information: ID=0003 Rev=1 Len=00a <?>
|
|
Capabilities: [280 v1] Vendor Specific Information: ID=0005 Rev=3 Len=018 <?>
|
|
|
|
00:01.0 PCI bridge [0604]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 1a [8086:0e02] (rev 04) (prog-if 00 [Normal decode])
|
|
Subsystem: Dell Device [1028:04ce]
|
|
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
|
|
NUMA node: 0
|
|
IOMMU group: 5
|
|
Bus: primary=00, secondary=02, subordinate=02, sec-latency=0
|
|
I/O behind bridge: [disabled] [16-bit]
|
|
Memory behind bridge: dc000000-dc7fffff [size=8M] [32-bit]
|
|
Prefetchable memory behind bridge: d9000000-d90fffff [size=1M] [32-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:04ce]
|
|
Capabilities: [60] MSI: Enable+ Count=1/2 Maskable+ 64bit-
|
|
Address: fee00218 Data: 0000
|
|
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 8GT/s, Width x4, ASPM L1, Exit Latency L1 <16us
|
|
ClockPM- Surprise+ LLActRep+ BwNot+ ASPMOptComp+
|
|
LnkCtl: ASPM Disabled; RCB 64 bytes, LnkDisable- CommClk+
|
|
ExtSynch- ClockPM- AutWidDis- BWInt+ AutBWInt+
|
|
LnkSta: Speed 5GT/s, Width x1
|
|
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: 65ms to 210ms, TimeoutDis- ARIFwd-
|
|
AtomicOpsCtl: ReqEn- EgressBlck-
|
|
IDOReq- IDOCompl- LTR- EmergencyPowerReductionReq-
|
|
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
|
|
LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
|
|
LnkCtl2: Target Link Speed: 8GT/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] Vendor Specific Information: ID=0002 Rev=0 Len=00c <?>
|
|
Capabilities: [110 v1] Access Control Services
|
|
ACSCap: SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
|
|
ACSCtl: SrcValid+ TransBlk- ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
|
|
Capabilities: [148 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: [1d0 v1] Vendor Specific Information: ID=0003 Rev=1 Len=00a <?>
|
|
Capabilities: [250 v1] Secondary PCI Express
|
|
LnkCtl3: LnkEquIntrruptEn- PerformEqu-
|
|
LaneErrStat: 0
|
|
Capabilities: [280 v1] Vendor Specific Information: ID=0005 Rev=3 Len=018 <?>
|
|
Kernel driver in use: pcieport
|
|
|
|
00:01.1 PCI bridge [0604]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 1b [8086:0e03] (rev 04) (prog-if 00 [Normal decode])
|
|
Subsystem: Dell Device [1028:04ce]
|
|
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
|
|
NUMA node: 0
|
|
IOMMU group: 6
|
|
Bus: primary=00, secondary=01, subordinate=01, sec-latency=0
|
|
I/O behind bridge: [disabled] [16-bit]
|
|
Memory behind bridge: dc800000-dcffffff [size=8M] [32-bit]
|
|
Prefetchable memory behind bridge: d9100000-d91fffff [size=1M] [32-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:04ce]
|
|
Capabilities: [60] MSI: Enable+ Count=1/2 Maskable+ 64bit-
|
|
Address: fee00238 Data: 0000
|
|
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 #2, Speed 8GT/s, Width x4, ASPM L1, Exit Latency L1 <16us
|
|
ClockPM- Surprise+ LLActRep+ BwNot+ ASPMOptComp+
|
|
LnkCtl: ASPM Disabled; RCB 64 bytes, LnkDisable- CommClk+
|
|
ExtSynch- ClockPM- AutWidDis- BWInt+ AutBWInt+
|
|
LnkSta: Speed 5GT/s, Width x1
|
|
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: 65ms to 210ms, TimeoutDis- ARIFwd-
|
|
AtomicOpsCtl: ReqEn- EgressBlck-
|
|
IDOReq- IDOCompl- LTR- EmergencyPowerReductionReq-
|
|
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
|
|
LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
|
|
LnkCtl2: Target Link Speed: 8GT/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] Vendor Specific Information: ID=0002 Rev=0 Len=00c <?>
|
|
Capabilities: [110 v1] Access Control Services
|
|
ACSCap: SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
|
|
ACSCtl: SrcValid+ TransBlk- ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
|
|
Capabilities: [148 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: [1d0 v1] Vendor Specific Information: ID=0003 Rev=1 Len=00a <?>
|
|
Capabilities: [250 v1] Secondary PCI Express
|
|
LnkCtl3: LnkEquIntrruptEn- PerformEqu-
|
|
LaneErrStat: 0
|
|
Capabilities: [280 v1] Vendor Specific Information: ID=0005 Rev=3 Len=018 <?>
|
|
Kernel driver in use: pcieport
|
|
|
|
00:02.0 PCI bridge [0604]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 2a [8086:0e04] (rev 04) (prog-if 00 [Normal decode])
|
|
Subsystem: Dell Device [1028:04ce]
|
|
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
|
|
NUMA node: 0
|
|
IOMMU group: 7
|
|
Bus: primary=00, secondary=04, subordinate=04, 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:04ce]
|
|
Capabilities: [60] MSI: Enable+ Count=1/2 Maskable+ 64bit-
|
|
Address: fee00258 Data: 0000
|
|
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 #3, Speed 8GT/s, Width x8, ASPM L1, Exit Latency L1 <16us
|
|
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-
|
|
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: 65ms to 210ms, TimeoutDis- ARIFwd-
|
|
AtomicOpsCtl: ReqEn- EgressBlck-
|
|
IDOReq- IDOCompl- LTR- EmergencyPowerReductionReq-
|
|
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
|
|
LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
|
|
LnkCtl2: Target Link Speed: 8GT/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: D3 NoSoftRst+ PME-Enable+ DSel=0 DScale=0 PME-
|
|
Capabilities: [100 v1] Vendor Specific Information: ID=0002 Rev=0 Len=00c <?>
|
|
Capabilities: [110 v1] Access Control Services
|
|
ACSCap: SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
|
|
ACSCtl: SrcValid+ TransBlk- ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
|
|
Capabilities: [148 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: [1d0 v1] Vendor Specific Information: ID=0003 Rev=1 Len=00a <?>
|
|
Capabilities: [250 v1] Secondary PCI Express
|
|
LnkCtl3: LnkEquIntrruptEn- PerformEqu-
|
|
LaneErrStat: 0
|
|
Capabilities: [280 v1] Vendor Specific Information: ID=0005 Rev=3 Len=018 <?>
|
|
Kernel driver in use: pcieport
|
|
|
|
00:02.2 PCI bridge [0604]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 2c [8086:0e06] (rev 04) (prog-if 00 [Normal decode])
|
|
Subsystem: Dell Device [1028:04ce]
|
|
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
|
|
NUMA node: 0
|
|
IOMMU group: 8
|
|
Bus: primary=00, secondary=03, subordinate=03, 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:04ce]
|
|
Capabilities: [60] MSI: Enable+ Count=1/2 Maskable+ 64bit-
|
|
Address: fee00278 Data: 0000
|
|
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 #5, Speed 8GT/s, Width x8, ASPM L1, Exit Latency L1 <16us
|
|
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-
|
|
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: 65ms to 210ms, TimeoutDis- ARIFwd-
|
|
AtomicOpsCtl: ReqEn- EgressBlck-
|
|
IDOReq- IDOCompl- LTR- EmergencyPowerReductionReq-
|
|
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
|
|
LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
|
|
LnkCtl2: Target Link Speed: 8GT/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: D3 NoSoftRst+ PME-Enable+ DSel=0 DScale=0 PME-
|
|
Capabilities: [100 v1] Vendor Specific Information: ID=0002 Rev=0 Len=00c <?>
|
|
Capabilities: [110 v1] Access Control Services
|
|
ACSCap: SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
|
|
ACSCtl: SrcValid+ TransBlk- ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
|
|
Capabilities: [148 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: [1d0 v1] Vendor Specific Information: ID=0003 Rev=1 Len=00a <?>
|
|
Capabilities: [250 v1] Secondary PCI Express
|
|
LnkCtl3: LnkEquIntrruptEn- PerformEqu-
|
|
LaneErrStat: 0
|
|
Capabilities: [280 v1] Vendor Specific Information: ID=0005 Rev=3 Len=018 <?>
|
|
Kernel driver in use: pcieport
|
|
|
|
00:03.0 PCI bridge [0604]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 3a [8086:0e08] (rev 04) (prog-if 00 [Normal decode])
|
|
DeviceName: SLOT 3
|
|
Subsystem: Dell Device [1028:04ce]
|
|
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 31
|
|
NUMA node: 0
|
|
IOMMU group: 9
|
|
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:04ce]
|
|
Capabilities: [60] MSI: Enable+ Count=1/2 Maskable+ 64bit-
|
|
Address: fee00298 Data: 0000
|
|
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 #7, Speed 8GT/s, Width x16, ASPM L1, Exit Latency L1 <16us
|
|
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 #3, 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: 65ms to 210ms, TimeoutDis- ARIFwd-
|
|
AtomicOpsCtl: ReqEn- EgressBlck-
|
|
IDOReq- IDOCompl- LTR- EmergencyPowerReductionReq-
|
|
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
|
|
LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
|
|
LnkCtl2: Target Link Speed: 8GT/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: D3 NoSoftRst+ PME-Enable+ DSel=0 DScale=0 PME-
|
|
Capabilities: [100 v1] Vendor Specific Information: ID=0002 Rev=0 Len=00c <?>
|
|
Capabilities: [110 v1] Access Control Services
|
|
ACSCap: SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
|
|
ACSCtl: SrcValid+ TransBlk- ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
|
|
Capabilities: [148 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: [1d0 v1] Vendor Specific Information: ID=0003 Rev=1 Len=00a <?>
|
|
Capabilities: [250 v1] Secondary PCI Express
|
|
LnkCtl3: LnkEquIntrruptEn- PerformEqu-
|
|
LaneErrStat: 0
|
|
Capabilities: [280 v1] Vendor Specific Information: ID=0005 Rev=3 Len=018 <?>
|
|
Kernel driver in use: pcieport
|
|
|
|
00:05.0 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 VTd/Memory Map/Misc [8086:0e28] (rev 04)
|
|
Subsystem: Dell Device [1028:04ce]
|
|
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-
|
|
NUMA node: 0
|
|
IOMMU group: 10
|
|
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:05.2 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 IIO RAS [8086:0e2a] (rev 04)
|
|
Subsystem: Dell Device [1028:04ce]
|
|
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-
|
|
NUMA node: 0
|
|
IOMMU group: 11
|
|
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:11.0 PCI bridge [0604]: Intel Corporation C600/X79 series chipset PCI Express Virtual Root Port [8086:1d3e] (rev 05) (prog-if 00 [Normal decode])
|
|
Subsystem: Dell Device [1028:04ce]
|
|
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
|
|
NUMA node: 0
|
|
IOMMU group: 12
|
|
Bus: primary=00, secondary=06, subordinate=06, 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] 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 512 bytes
|
|
DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
|
|
LnkCap: Port #17, Speed 2.5GT/s, Width x1, ASPM L0s L1, Exit Latency L0s <64ns, L1 <1us
|
|
ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp+
|
|
LnkCtl: ASPM Disabled; RCB 64 bytes, LnkDisable+ CommClk-
|
|
ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
|
|
LnkSta: Speed 2.5GT/s, Width x1
|
|
TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
|
|
RootCap: CRSVisible-
|
|
RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna+ CRSVisible-
|
|
RootSta: PME ReqID 0000, PMEStatus- PMEPending-
|
|
DevCap2: Completion Timeout: Not Supported, 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: 50us to 50ms, TimeoutDis- ARIFwd-
|
|
AtomicOpsCtl: ReqEn- EgressBlck-
|
|
IDOReq- IDOCompl- LTR- EmergencyPowerReductionReq-
|
|
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
|
|
LnkCap2: Supported Link Speeds: 2.5GT/s, Crosslink- Retimer- 2Retimers- DRS-
|
|
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: [80] Power Management version 3
|
|
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
|
|
Status: D3 NoSoftRst+ PME-Enable+ DSel=0 DScale=0 PME-
|
|
Capabilities: [88] Subsystem: Dell Device [1028:04ce]
|
|
Capabilities: [90] MSI: Enable+ Count=1/1 Maskable- 64bit-
|
|
Address: fee002d8 Data: 0000
|
|
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: [138 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:16.0 Communication controller [0780]: Intel Corporation C600/X79 series chipset MEI Controller #1 [8086:1d3a] (rev 05)
|
|
Subsystem: Dell Device [1028:04ce]
|
|
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
|
|
NUMA node: 0
|
|
IOMMU group: 13
|
|
Region 0: Memory at de8fb000 (64-bit, non-prefetchable) [size=16]
|
|
Capabilities: [50] 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: [8c] MSI: Enable- Count=1/1 Maskable- 64bit+
|
|
Address: 0000000000000000 Data: 0000
|
|
Kernel modules: mei_me
|
|
|
|
00:16.1 Communication controller [0780]: Intel Corporation C600/X79 series chipset MEI Controller #2 [8086:1d3b] (rev 05)
|
|
Subsystem: Dell Device [1028:04ce]
|
|
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
|
|
NUMA node: 0
|
|
IOMMU group: 13
|
|
Region 0: Memory at de8fc000 (64-bit, non-prefetchable) [size=16]
|
|
Capabilities: [50] 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: [8c] MSI: Enable- Count=1/1 Maskable- 64bit+
|
|
Address: 0000000000000000 Data: 0000
|
|
|
|
00:1a.0 USB controller [0c03]: Intel Corporation C600/X79 series chipset USB2 Enhanced Host Controller #2 [8086:1d2d] (rev 05) (prog-if 20 [EHCI])
|
|
Subsystem: Dell Device [1028:04ce]
|
|
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 23
|
|
NUMA node: 0
|
|
IOMMU group: 14
|
|
Region 0: Memory at de8fd000 (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 C600/X79 series chipset PCI Express Root Port 1 [8086:1d10] (rev b5) (prog-if 00 [Normal decode])
|
|
Subsystem: Dell Device [1028:04ce]
|
|
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 ? routed to IRQ 33
|
|
NUMA node: 0
|
|
IOMMU group: 15
|
|
Bus: primary=00, secondary=07, subordinate=07, 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] 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 #1, Speed 5GT/s, Width x4, ASPM L0s L1, Exit Latency L0s <1us, 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 x0
|
|
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 BC, 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: 65ms to 210ms, 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: -3.5dB, EqualizationComplete- EqualizationPhase1-
|
|
EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
|
|
Retimer- 2Retimers- CrosslinkRes: unsupported
|
|
Capabilities: [80] MSI: Enable+ Count=1/1 Maskable- 64bit-
|
|
Address: fee002f8 Data: 0000
|
|
Capabilities: [90] Subsystem: Dell Device [1028:04ce]
|
|
Capabilities: [a0] Power Management version 2
|
|
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
|
|
Status: D3 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
|
|
Kernel driver in use: pcieport
|
|
|
|
00:1c.7 PCI bridge [0604]: Intel Corporation C600/X79 series chipset PCI Express Root Port 8 [8086:1d1e] (rev b5) (prog-if 00 [Normal decode])
|
|
Subsystem: Dell Device [1028:04ce]
|
|
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 D routed to IRQ 34
|
|
NUMA node: 0
|
|
IOMMU group: 16
|
|
Bus: primary=00, secondary=08, subordinate=0c, sec-latency=0
|
|
I/O behind bridge: [disabled] [16-bit]
|
|
Memory behind bridge: dd000000-de7fffff [size=24M] [32-bit]
|
|
Prefetchable memory behind bridge: d8000000-d8ffffff [size=16M] [32-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 (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 #8, Speed 5GT/s, Width x1, ASPM L0s L1, Exit Latency L0s <512ns, 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 x1
|
|
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 BC, 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: 65ms to 210ms, 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: -3.5dB, EqualizationComplete- EqualizationPhase1-
|
|
EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
|
|
Retimer- 2Retimers- CrosslinkRes: unsupported
|
|
Capabilities: [80] MSI: Enable+ Count=1/1 Maskable- 64bit-
|
|
Address: fee00338 Data: 0000
|
|
Capabilities: [90] Subsystem: Dell Device [1028:04ce]
|
|
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] 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
|
|
Kernel driver in use: pcieport
|
|
|
|
00:1d.0 USB controller [0c03]: Intel Corporation C600/X79 series chipset USB2 Enhanced Host Controller #1 [8086:1d26] (rev 05) (prog-if 20 [EHCI])
|
|
Subsystem: Dell Device [1028:04ce]
|
|
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 22
|
|
NUMA node: 0
|
|
IOMMU group: 17
|
|
Region 0: Memory at de8fe000 (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 a5) (prog-if 01 [Subtractive decode])
|
|
Subsystem: Dell Device [1028:04ce]
|
|
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
|
|
NUMA node: 0
|
|
IOMMU group: 18
|
|
Bus: primary=00, secondary=0d, subordinate=0d, sec-latency=32
|
|
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=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:04ce]
|
|
|
|
00:1f.0 ISA bridge [0601]: Intel Corporation C600/X79 series chipset LPC Controller [8086:1d41] (rev 05)
|
|
Subsystem: Dell Device [1028:04ce]
|
|
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
|
|
NUMA node: 0
|
|
IOMMU group: 19
|
|
Capabilities: [e0] Vendor Specific Information: Len=0c <?>
|
|
Kernel driver in use: lpc_ich
|
|
Kernel modules: lpc_ich
|
|
|
|
00:1f.2 SATA controller [0106]: Intel Corporation C600/X79 series chipset 6-Port SATA AHCI Controller [8086:1d02] (rev 05) (prog-if 01 [AHCI 1.0])
|
|
Subsystem: Dell Device [1028:04ce]
|
|
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 39
|
|
NUMA node: 0
|
|
IOMMU group: 19
|
|
Region 0: I/O ports at fce8 [size=8]
|
|
Region 1: I/O ports at fcf8 [size=4]
|
|
Region 2: I/O ports at fcf0 [size=8]
|
|
Region 3: I/O ports at fcfc [size=4]
|
|
Region 4: I/O ports at fcc0 [size=32]
|
|
Region 5: Memory at de8ff000 (32-bit, non-prefetchable) [size=2K]
|
|
Capabilities: [80] MSI: Enable+ Count=1/1 Maskable- 64bit-
|
|
Address: fee003d8 Data: 0000
|
|
Capabilities: [70] 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: [a8] SATA HBA v1.0 BAR4 Offset=00000004
|
|
Capabilities: [b0] PCI Advanced Features
|
|
AFCap: TP+ FLR+
|
|
AFCtrl: FLR-
|
|
AFStatus: TP-
|
|
Kernel driver in use: ahci
|
|
Kernel modules: ahci
|
|
|
|
01:00.0 Ethernet controller [0200]: Broadcom Inc. and subsidiaries NetXtreme BCM5720 Gigabit Ethernet PCIe [14e4:165f]
|
|
DeviceName: NIC1
|
|
Subsystem: Dell Device [1028:1f5b]
|
|
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 38
|
|
NUMA node: 0
|
|
IOMMU group: 20
|
|
Region 0: Memory at d91a0000 (64-bit, prefetchable) [size=64K]
|
|
Region 2: Memory at d91b0000 (64-bit, prefetchable) [size=64K]
|
|
Region 4: Memory at d91c0000 (64-bit, prefetchable) [size=64K]
|
|
Expansion ROM at dc800000 [disabled] [size=256K]
|
|
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 Gigabit Ethernet
|
|
Read-only fields:
|
|
[PN] Part number: BCM95720
|
|
[MN] Manufacture ID: 1028
|
|
[V0] Vendor specific: FFV7.10.59
|
|
[V1] Vendor specific: DSV1028VPDR.VER1.0
|
|
[V2] Vendor specific: NPY2
|
|
[V3] Vendor specific: PMT1
|
|
[V4] Vendor specific: NMVBroadcom Corp
|
|
[V5] Vendor specific: DTINIC
|
|
[V6] Vendor specific: DCM1001008d452101008d45
|
|
[\x01] Unknown:
|
|
[RV] Reserved: checksum good, 230 byte(s) reserved
|
|
End
|
|
Capabilities: [58] MSI: Enable- Count=1/8 Maskable- 64bit+
|
|
Address: 0000000000000000 Data: 0000
|
|
Capabilities: [a0] MSI-X: Enable+ Count=17 Masked-
|
|
Vector table: BAR=4 offset=00000000
|
|
PBA: BAR=4 offset=00001000
|
|
Capabilities: [ac] Express (v2) Endpoint, IntMsgNum 0
|
|
DevCap: MaxPayload 256 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- FLReset-
|
|
MaxPayload 256 bytes, MaxReadReq 512 bytes
|
|
DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
|
|
LnkCap: Port #0, Speed 5GT/s, Width x2, ASPM L0s L1, Exit Latency L0s <1us, L1 <2us
|
|
ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp-
|
|
LnkCtl: ASPM Disabled; RCB 64 bytes, LnkDisable- CommClk+
|
|
ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
|
|
LnkSta: Speed 5GT/s, Width x1 (downgraded)
|
|
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] 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: [13c v1] Device Serial Number 00-00-f8-bc-12-34-e0-74
|
|
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: tg3
|
|
Kernel modules: tg3
|
|
|
|
01:00.1 Ethernet controller [0200]: Broadcom Inc. and subsidiaries NetXtreme BCM5720 Gigabit Ethernet PCIe [14e4:165f]
|
|
DeviceName: NIC2
|
|
Subsystem: Dell Device [1028:1f5b]
|
|
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 40
|
|
NUMA node: 0
|
|
IOMMU group: 20
|
|
Region 0: Memory at d91d0000 (64-bit, prefetchable) [size=64K]
|
|
Region 2: Memory at d91e0000 (64-bit, prefetchable) [size=64K]
|
|
Region 4: Memory at d91f0000 (64-bit, prefetchable) [size=64K]
|
|
Expansion ROM at dc840000 [disabled] [size=256K]
|
|
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 Gigabit Ethernet
|
|
Read-only fields:
|
|
[PN] Part number: BCM95720
|
|
[MN] Manufacture ID: 1028
|
|
[V0] Vendor specific: FFV7.10.59
|
|
[V1] Vendor specific: DSV1028VPDR.VER1.0
|
|
[V2] Vendor specific: NPY2
|
|
[V3] Vendor specific: PMT1
|
|
[V4] Vendor specific: NMVBroadcom Corp
|
|
[V5] Vendor specific: DTINIC
|
|
[V6] Vendor specific: DCM1001008d452101008d45
|
|
[\x01] Unknown:
|
|
[RV] Reserved: checksum good, 230 byte(s) reserved
|
|
End
|
|
Capabilities: [58] MSI: Enable- Count=1/8 Maskable- 64bit+
|
|
Address: 0000000000000000 Data: 0000
|
|
Capabilities: [a0] MSI-X: Enable+ Count=17 Masked-
|
|
Vector table: BAR=4 offset=00000000
|
|
PBA: BAR=4 offset=00001000
|
|
Capabilities: [ac] Express (v2) Endpoint, IntMsgNum 0
|
|
DevCap: MaxPayload 256 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- FLReset-
|
|
MaxPayload 256 bytes, MaxReadReq 512 bytes
|
|
DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
|
|
LnkCap: Port #0, Speed 5GT/s, Width x2, ASPM L0s L1, Exit Latency L0s <1us, L1 <2us
|
|
ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp-
|
|
LnkCtl: ASPM Disabled; RCB 64 bytes, LnkDisable- CommClk+
|
|
ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
|
|
LnkSta: Speed 5GT/s, Width x1 (downgraded)
|
|
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] 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: [13c v1] Device Serial Number 00-00-f8-bc-12-34-e0-75
|
|
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: tg3
|
|
Kernel modules: tg3
|
|
|
|
02:00.0 Ethernet controller [0200]: Broadcom Inc. and subsidiaries NetXtreme BCM5720 Gigabit Ethernet PCIe [14e4:165f]
|
|
DeviceName: NIC3
|
|
Subsystem: Dell Device [1028:1f5b]
|
|
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 41
|
|
NUMA node: 0
|
|
IOMMU group: 21
|
|
Region 0: Memory at d90a0000 (64-bit, prefetchable) [size=64K]
|
|
Region 2: Memory at d90b0000 (64-bit, prefetchable) [size=64K]
|
|
Region 4: Memory at d90c0000 (64-bit, prefetchable) [size=64K]
|
|
Expansion ROM at dc000000 [disabled] [size=256K]
|
|
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 Gigabit Ethernet
|
|
Read-only fields:
|
|
[PN] Part number: BCM95720
|
|
[MN] Manufacture ID: 1028
|
|
[V0] Vendor specific: FFV7.10.59
|
|
[V1] Vendor specific: DSV1028VPDR.VER1.0
|
|
[V2] Vendor specific: NPY2
|
|
[V3] Vendor specific: PMT1
|
|
[V4] Vendor specific: NMVBroadcom Corp
|
|
[V5] Vendor specific: DTINIC
|
|
[V6] Vendor specific: DCM1001008d452101008d45
|
|
[\x01] Unknown:
|
|
[RV] Reserved: checksum good, 230 byte(s) reserved
|
|
End
|
|
Capabilities: [58] MSI: Enable- Count=1/8 Maskable- 64bit+
|
|
Address: 0000000000000000 Data: 0000
|
|
Capabilities: [a0] MSI-X: Enable+ Count=17 Masked-
|
|
Vector table: BAR=4 offset=00000000
|
|
PBA: BAR=4 offset=00001000
|
|
Capabilities: [ac] Express (v2) Endpoint, IntMsgNum 0
|
|
DevCap: MaxPayload 256 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- FLReset-
|
|
MaxPayload 256 bytes, MaxReadReq 512 bytes
|
|
DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
|
|
LnkCap: Port #0, Speed 5GT/s, Width x2, ASPM L0s L1, Exit Latency L0s <1us, L1 <2us
|
|
ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp-
|
|
LnkCtl: ASPM Disabled; RCB 64 bytes, LnkDisable- CommClk+
|
|
ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
|
|
LnkSta: Speed 5GT/s, Width x1 (downgraded)
|
|
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] 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: [13c v1] Device Serial Number 00-00-f8-bc-12-34-e0-76
|
|
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: tg3
|
|
Kernel modules: tg3
|
|
|
|
02:00.1 Ethernet controller [0200]: Broadcom Inc. and subsidiaries NetXtreme BCM5720 Gigabit Ethernet PCIe [14e4:165f]
|
|
DeviceName: NIC4
|
|
Subsystem: Dell Device [1028:1f5b]
|
|
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 42
|
|
NUMA node: 0
|
|
IOMMU group: 21
|
|
Region 0: Memory at d90d0000 (64-bit, prefetchable) [size=64K]
|
|
Region 2: Memory at d90e0000 (64-bit, prefetchable) [size=64K]
|
|
Region 4: Memory at d90f0000 (64-bit, prefetchable) [size=64K]
|
|
Expansion ROM at dc040000 [disabled] [size=256K]
|
|
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 Gigabit Ethernet
|
|
Read-only fields:
|
|
[PN] Part number: BCM95720
|
|
[MN] Manufacture ID: 1028
|
|
[V0] Vendor specific: FFV7.10.59
|
|
[V1] Vendor specific: DSV1028VPDR.VER1.0
|
|
[V2] Vendor specific: NPY2
|
|
[V3] Vendor specific: PMT1
|
|
[V4] Vendor specific: NMVBroadcom Corp
|
|
[V5] Vendor specific: DTINIC
|
|
[V6] Vendor specific: DCM1001008d452101008d45
|
|
[\x01] Unknown:
|
|
[RV] Reserved: checksum good, 230 byte(s) reserved
|
|
End
|
|
Capabilities: [58] MSI: Enable- Count=1/8 Maskable- 64bit+
|
|
Address: 0000000000000000 Data: 0000
|
|
Capabilities: [a0] MSI-X: Enable+ Count=17 Masked-
|
|
Vector table: BAR=4 offset=00000000
|
|
PBA: BAR=4 offset=00001000
|
|
Capabilities: [ac] Express (v2) Endpoint, IntMsgNum 0
|
|
DevCap: MaxPayload 256 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- FLReset-
|
|
MaxPayload 256 bytes, MaxReadReq 512 bytes
|
|
DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
|
|
LnkCap: Port #0, Speed 5GT/s, Width x2, ASPM L0s L1, Exit Latency L0s <1us, L1 <2us
|
|
ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp-
|
|
LnkCtl: ASPM Disabled; RCB 64 bytes, LnkDisable- CommClk+
|
|
ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
|
|
LnkSta: Speed 5GT/s, Width x1 (downgraded)
|
|
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] 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: [13c v1] Device Serial Number 00-00-f8-bc-12-34-e0-77
|
|
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: tg3
|
|
Kernel modules: tg3
|
|
|
|
08:00.0 PCI bridge [0604]: Renesas Electronics Corp. SH7757 PCIe Switch [PS] [1912:0013] (prog-if 00 [Normal decode])
|
|
Subsystem: Renesas Electronics Corp. SH7757 PCIe Switch [PS] [1912:0013]
|
|
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
|
|
NUMA node: 0
|
|
IOMMU group: 22
|
|
BIST result: 00
|
|
Bus: primary=08, secondary=09, subordinate=0c, sec-latency=0
|
|
I/O behind bridge: [disabled] [32-bit]
|
|
Memory behind bridge: dd000000-de7fffff [size=24M] [32-bit]
|
|
Prefetchable memory behind bridge: d8000000-d8ffffff [size=16M] [32-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] 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: [50] MSI: Enable- Count=1/1 Maskable- 64bit+
|
|
Address: 0000000000000000 Data: 0000
|
|
Capabilities: [70] Express (v2) Upstream Port, IntMsgNum 0
|
|
DevCap: MaxPayload 128 bytes, PhantFunc 0
|
|
ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ SlotPowerLimit 0W 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 x1, ASPM L0s, Exit Latency L0s unlimited
|
|
ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp+
|
|
LnkCtl: ASPM Disabled; LnkDisable- CommClk+
|
|
ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
|
|
LnkSta: Speed 2.5GT/s, Width x1
|
|
TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
|
|
DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR-
|
|
10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
|
|
EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
|
|
FRS-
|
|
AtomicOpsCap: Routing-
|
|
DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
|
|
AtomicOpsCtl: 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: [b0] Subsystem: Renesas Electronics Corp. SH7757 PCIe Switch [PS] [1912:0013]
|
|
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
|
|
Kernel driver in use: pcieport
|
|
|
|
09:00.0 PCI bridge [0604]: Renesas Electronics Corp. SH7757 PCIe Switch [PS] [1912:0013] (prog-if 00 [Normal decode])
|
|
Subsystem: Renesas Electronics Corp. SH7757 PCIe Switch [PS] [1912:0013]
|
|
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
|
|
NUMA node: 0
|
|
IOMMU group: 23
|
|
BIST result: 00
|
|
Bus: primary=09, secondary=0a, subordinate=0b, sec-latency=0
|
|
I/O behind bridge: [disabled] [32-bit]
|
|
Memory behind bridge: dd000000-ddffffff [size=16M] [32-bit]
|
|
Prefetchable memory behind bridge: d8000000-d8ffffff [size=16M] [32-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] 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: [50] MSI: Enable- Count=1/1 Maskable- 64bit+
|
|
Address: 0000000000000000 Data: 0000
|
|
Capabilities: [70] Express (v2) Downstream 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 x1, ASPM not supported
|
|
ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp+
|
|
LnkCtl: ASPM Disabled; LnkDisable- CommClk+
|
|
ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
|
|
LnkSta: Speed 2.5GT/s, Width x1
|
|
TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
|
|
DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR-
|
|
10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
|
|
EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
|
|
FRS- ARIFwd-
|
|
AtomicOpsCap: Routing-
|
|
DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd-
|
|
AtomicOpsCtl: EgressBlck-
|
|
IDOReq- IDOCompl- LTR- EmergencyPowerReductionReq-
|
|
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
|
|
LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
|
|
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: [b0] Subsystem: Renesas Electronics Corp. SH7757 PCIe Switch [PS] [1912:0013]
|
|
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
|
|
Kernel driver in use: pcieport
|
|
|
|
09:01.0 PCI bridge [0604]: Renesas Electronics Corp. SH7757 PCIe Switch [PS] [1912:0013] (prog-if 00 [Normal decode])
|
|
Subsystem: Renesas Electronics Corp. SH7757 PCIe Switch [PS] [1912:0013]
|
|
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
|
|
NUMA node: 0
|
|
IOMMU group: 24
|
|
BIST result: 00
|
|
Bus: primary=09, secondary=0c, subordinate=0c, sec-latency=0
|
|
I/O behind bridge: [disabled] [32-bit]
|
|
Memory behind bridge: de700000-de7fffff [size=1M] [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] Power Management version 3
|
|
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
|
|
Status: D3 NoSoftRst+ PME-Enable+ DSel=0 DScale=0 PME-
|
|
Capabilities: [50] MSI: Enable- Count=1/1 Maskable- 64bit+
|
|
Address: 0000000000000000 Data: 0000
|
|
Capabilities: [70] Express (v2) Downstream 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 x1, ASPM not supported
|
|
ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp+
|
|
LnkCtl: ASPM Disabled; LnkDisable- CommClk-
|
|
ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
|
|
LnkSta: Speed 2.5GT/s, Width x1
|
|
TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
|
|
DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR-
|
|
10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
|
|
EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
|
|
FRS- ARIFwd-
|
|
AtomicOpsCap: Routing-
|
|
DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis- ARIFwd-
|
|
AtomicOpsCtl: EgressBlck-
|
|
IDOReq- IDOCompl- LTR- EmergencyPowerReductionReq-
|
|
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
|
|
LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-, Selectable De-emphasis: -6dB
|
|
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: [b0] Subsystem: Renesas Electronics Corp. SH7757 PCIe Switch [PS] [1912:0013]
|
|
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
|
|
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
|
|
|
|
0a:00.0 PCI bridge [0604]: Renesas Electronics Corp. SH7757 PCIe-PCI Bridge [PPB] [1912:0012] (prog-if 00 [Normal decode])
|
|
Subsystem: Renesas Electronics Corp. SH7757 PCIe-PCI Bridge [PPB] [1912:0012]
|
|
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
|
|
NUMA node: 0
|
|
IOMMU group: 23
|
|
BIST result: 00
|
|
Bus: primary=0a, secondary=0b, subordinate=0b, sec-latency=0
|
|
I/O behind bridge: [disabled] [32-bit]
|
|
Memory behind bridge: dd000000-ddffffff [size=16M] [32-bit]
|
|
Prefetchable memory behind bridge: d8000000-d8ffffff [size=16M] [32-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] 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: [50] MSI: Enable- Count=1/1 Maskable- 64bit+
|
|
Address: 0000000000000000 Data: 0000
|
|
Capabilities: [70] Express (v2) PCI-Express to PCI/PCI-X Bridge, IntMsgNum 0
|
|
DevCap: MaxPayload 128 bytes, PhantFunc 0
|
|
ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ SlotPowerLimit 0W TEE-IO-
|
|
DevCtl: CorrErr+ NonFatalErr+ FatalErr+ UnsupReq+
|
|
RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+ BrConfRtry-
|
|
MaxPayload 128 bytes, MaxReadReq 128 bytes
|
|
DevSta: CorrErr+ NonFatalErr+ FatalErr- UnsupReq+ AuxPwr- TransPend-
|
|
LnkCap: Port #0, Speed 2.5GT/s, Width x1, ASPM not supported
|
|
ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp+
|
|
LnkCtl: ASPM Disabled; RCB 64 bytes, LnkDisable- CommClk+
|
|
ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
|
|
LnkSta: Speed 2.5GT/s, Width x1
|
|
TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
|
|
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-
|
|
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: [b0] Subsystem: Renesas Electronics Corp. SH7757 PCIe-PCI Bridge [PPB] [1912:0012]
|
|
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
|
|
|
|
0b:00.0 VGA compatible controller [0300]: Matrox Electronics Systems Ltd. G200eR2 [102b:0534] (prog-if 00 [VGA controller])
|
|
DeviceName: Embedded Video
|
|
Subsystem: Dell Device [1028:04ce]
|
|
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: 64 (4000ns min, 8000ns max), Cache Line Size: 64 bytes
|
|
Interrupt: pin A routed to IRQ 19
|
|
NUMA node: 0
|
|
IOMMU group: 23
|
|
Region 0: Memory at d8000000 (32-bit, prefetchable) [size=16M]
|
|
Region 1: Memory at ddffc000 (32-bit, non-prefetchable) [size=16K]
|
|
Region 2: Memory at dd000000 (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: mgag200
|
|
|
|
3f:08.0 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 0 [8086:0e80] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 0
|
|
IOMMU group: 25
|
|
|
|
3f:09.0 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 1 [8086:0e90] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 0
|
|
IOMMU group: 26
|
|
|
|
3f:0a.0 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 0 [8086:0ec0] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 0
|
|
IOMMU group: 27
|
|
|
|
3f:0a.1 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 1 [8086:0ec1] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 0
|
|
IOMMU group: 27
|
|
|
|
3f:0a.2 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 2 [8086:0ec2] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 0
|
|
IOMMU group: 27
|
|
|
|
3f:0a.3 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 3 [8086:0ec3] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 0
|
|
IOMMU group: 27
|
|
|
|
3f:0b.0 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 UBOX Registers [8086:0e1e] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 0
|
|
IOMMU group: 28
|
|
|
|
3f:0b.3 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 UBOX Registers [8086:0e1f] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 0
|
|
IOMMU group: 28
|
|
|
|
3f:0c.0 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers [8086:0ee0] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 0
|
|
IOMMU group: 29
|
|
|
|
3f:0c.1 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers [8086:0ee2] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 0
|
|
IOMMU group: 29
|
|
|
|
3f:0c.2 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers [8086:0ee4] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 0
|
|
IOMMU group: 29
|
|
|
|
3f:0d.0 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers [8086:0ee1] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 0
|
|
IOMMU group: 30
|
|
|
|
3f:0d.1 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers [8086:0ee3] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 0
|
|
IOMMU group: 30
|
|
|
|
3f:0d.2 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers [8086:0ee5] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 0
|
|
IOMMU group: 30
|
|
|
|
3f:0e.0 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 0 [8086:0ea0] (rev 04)
|
|
Subsystem: Dell Device [1028:04ce]
|
|
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-
|
|
NUMA node: 0
|
|
IOMMU group: 31
|
|
|
|
3f:0e.1 Performance counters [1101]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 0 [8086:0e30] (rev 04)
|
|
Subsystem: Dell Device [1028:04ce]
|
|
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-
|
|
NUMA node: 0
|
|
IOMMU group: 31
|
|
Kernel driver in use: ivbep_uncore
|
|
|
|
3f:0f.0 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Target Address/Thermal Registers [8086:0ea8] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 0
|
|
IOMMU group: 32
|
|
Capabilities: [40] Express (v1) 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-
|
|
|
|
3f:0f.1 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 RAS Registers [8086:0e71] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 0
|
|
IOMMU group: 33
|
|
Capabilities: [40] Express (v1) 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-
|
|
|
|
3f:0f.2 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers [8086:0eaa] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 0
|
|
IOMMU group: 34
|
|
Capabilities: [40] Express (v1) 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-
|
|
|
|
3f:0f.3 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers [8086:0eab] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 0
|
|
IOMMU group: 35
|
|
Capabilities: [40] Express (v1) 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-
|
|
|
|
3f:0f.4 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers [8086:0eac] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 0
|
|
IOMMU group: 36
|
|
Capabilities: [40] Express (v1) 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-
|
|
|
|
3f:0f.5 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers [8086:0ead] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 0
|
|
IOMMU group: 37
|
|
Capabilities: [40] Express (v1) 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-
|
|
|
|
3f:10.0 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 0 [8086:0eb0] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 0
|
|
IOMMU group: 38
|
|
Capabilities: [40] Express (v1) 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-
|
|
Kernel driver in use: ivbep_uncore
|
|
|
|
3f:10.1 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 1 [8086:0eb1] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 0
|
|
IOMMU group: 39
|
|
Capabilities: [40] Express (v1) 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-
|
|
Kernel driver in use: ivbep_uncore
|
|
|
|
3f:10.2 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 0 [8086:0eb2] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 0
|
|
IOMMU group: 40
|
|
Capabilities: [40] Express (v1) 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-
|
|
|
|
3f:10.3 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 1 [8086:0eb3] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 0
|
|
IOMMU group: 41
|
|
Capabilities: [40] Express (v1) 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-
|
|
|
|
3f:10.4 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 2 [8086:0eb4] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 0
|
|
IOMMU group: 42
|
|
Capabilities: [40] Express (v1) 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-
|
|
Kernel driver in use: ivbep_uncore
|
|
|
|
3f:10.5 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 3 [8086:0eb5] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 0
|
|
IOMMU group: 43
|
|
Capabilities: [40] Express (v1) 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-
|
|
Kernel driver in use: ivbep_uncore
|
|
|
|
3f:10.7 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 3 [8086:0eb7] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 0
|
|
IOMMU group: 44
|
|
Capabilities: [40] Express (v1) 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-
|
|
|
|
3f:13.0 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 R2PCIe [8086:0e1d] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 0
|
|
IOMMU group: 45
|
|
|
|
3f:13.1 Performance counters [1101]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 R2PCIe [8086:0e34] (rev 04)
|
|
Subsystem: Dell Device [1028:04ce]
|
|
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-
|
|
NUMA node: 0
|
|
IOMMU group: 45
|
|
Kernel driver in use: ivbep_uncore
|
|
|
|
3f:13.4 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Registers [8086:0e81] (rev 04)
|
|
Subsystem: Dell Device [1028:04ce]
|
|
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-
|
|
NUMA node: 0
|
|
IOMMU group: 45
|
|
|
|
3f:13.5 Performance counters [1101]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Performance Ring Monitoring [8086:0e36] (rev 04)
|
|
Subsystem: Dell Device [1028:04ce]
|
|
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-
|
|
NUMA node: 0
|
|
IOMMU group: 45
|
|
Kernel driver in use: ivbep_uncore
|
|
|
|
3f:16.0 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 System Address Decoder [8086:0ec8] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 0
|
|
IOMMU group: 46
|
|
|
|
3f:16.1 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Broadcast Registers [8086:0ec9] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 0
|
|
IOMMU group: 46
|
|
|
|
3f:16.2 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Broadcast Registers [8086:0eca] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 0
|
|
IOMMU group: 46
|
|
|
|
40:01.0 PCI bridge [0604]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 1a [8086:0e02] (rev 04) (prog-if 00 [Normal decode])
|
|
DeviceName: SLOT 1
|
|
Subsystem: Dell Device [1028:04ce]
|
|
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 36
|
|
NUMA node: 1
|
|
IOMMU group: 0
|
|
Bus: primary=40, secondary=41, subordinate=41, 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:04ce]
|
|
Capabilities: [60] MSI: Enable+ Count=1/2 Maskable+ 64bit-
|
|
Address: fee00038 Data: 0000
|
|
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 #1, Speed 8GT/s, Width x8, ASPM L1, Exit Latency L1 <16us
|
|
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 #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: 65ms to 210ms, TimeoutDis- ARIFwd-
|
|
AtomicOpsCtl: ReqEn- EgressBlck-
|
|
IDOReq- IDOCompl- LTR- EmergencyPowerReductionReq-
|
|
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
|
|
LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
|
|
LnkCtl2: Target Link Speed: 8GT/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: D3 NoSoftRst+ PME-Enable+ DSel=0 DScale=0 PME-
|
|
Capabilities: [100 v1] Vendor Specific Information: ID=0002 Rev=0 Len=00c <?>
|
|
Capabilities: [110 v1] Access Control Services
|
|
ACSCap: SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
|
|
ACSCtl: SrcValid+ TransBlk- ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
|
|
Capabilities: [148 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: [1d0 v1] Vendor Specific Information: ID=0003 Rev=1 Len=00a <?>
|
|
Capabilities: [250 v1] Secondary PCI Express
|
|
LnkCtl3: LnkEquIntrruptEn- PerformEqu-
|
|
LaneErrStat: 0
|
|
Capabilities: [280 v1] Vendor Specific Information: ID=0005 Rev=3 Len=018 <?>
|
|
Kernel driver in use: pcieport
|
|
|
|
40:03.0 PCI bridge [0604]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 PCI Express Root Port 3a [8086:0e08] (rev 04) (prog-if 00 [Normal decode])
|
|
DeviceName: SLOT 2
|
|
Subsystem: Dell Device [1028:04ce]
|
|
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 37
|
|
NUMA node: 1
|
|
IOMMU group: 1
|
|
Bus: primary=40, secondary=42, subordinate=42, 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:04ce]
|
|
Capabilities: [60] MSI: Enable+ Count=1/2 Maskable+ 64bit-
|
|
Address: fee00058 Data: 0000
|
|
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 #7, Speed 8GT/s, Width x16, ASPM L1, Exit Latency L1 <16us
|
|
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: 65ms to 210ms, TimeoutDis- ARIFwd-
|
|
AtomicOpsCtl: ReqEn- EgressBlck-
|
|
IDOReq- IDOCompl- LTR- EmergencyPowerReductionReq-
|
|
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
|
|
LnkCap2: Supported Link Speeds: 2.5-8GT/s, Crosslink- Retimer- 2Retimers- DRS-
|
|
LnkCtl2: Target Link Speed: 8GT/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: D3 NoSoftRst+ PME-Enable+ DSel=0 DScale=0 PME-
|
|
Capabilities: [100 v1] Vendor Specific Information: ID=0002 Rev=0 Len=00c <?>
|
|
Capabilities: [110 v1] Access Control Services
|
|
ACSCap: SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
|
|
ACSCtl: SrcValid+ TransBlk- ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
|
|
Capabilities: [148 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: [1d0 v1] Vendor Specific Information: ID=0003 Rev=1 Len=00a <?>
|
|
Capabilities: [250 v1] Secondary PCI Express
|
|
LnkCtl3: LnkEquIntrruptEn- PerformEqu-
|
|
LaneErrStat: 0
|
|
Capabilities: [280 v1] Vendor Specific Information: ID=0005 Rev=3 Len=018 <?>
|
|
Kernel driver in use: pcieport
|
|
|
|
40:05.0 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 VTd/Memory Map/Misc [8086:0e28] (rev 04)
|
|
Subsystem: Dell Device [1028:04ce]
|
|
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-
|
|
NUMA node: 1
|
|
IOMMU group: 2
|
|
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-
|
|
|
|
40:05.2 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 IIO RAS [8086:0e2a] (rev 04)
|
|
Subsystem: Dell Device [1028:04ce]
|
|
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-
|
|
NUMA node: 1
|
|
IOMMU group: 3
|
|
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-
|
|
|
|
7f:08.0 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 0 [8086:0e80] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 1
|
|
IOMMU group: 47
|
|
|
|
7f:09.0 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 1 [8086:0e90] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 1
|
|
IOMMU group: 48
|
|
|
|
7f:0a.0 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 0 [8086:0ec0] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 1
|
|
IOMMU group: 49
|
|
|
|
7f:0a.1 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 1 [8086:0ec1] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 1
|
|
IOMMU group: 49
|
|
|
|
7f:0a.2 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 2 [8086:0ec2] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 1
|
|
IOMMU group: 49
|
|
|
|
7f:0a.3 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 3 [8086:0ec3] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 1
|
|
IOMMU group: 49
|
|
|
|
7f:0b.0 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 UBOX Registers [8086:0e1e] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 1
|
|
IOMMU group: 50
|
|
|
|
7f:0b.3 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 UBOX Registers [8086:0e1f] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 1
|
|
IOMMU group: 50
|
|
|
|
7f:0c.0 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers [8086:0ee0] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 1
|
|
IOMMU group: 51
|
|
|
|
7f:0c.1 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers [8086:0ee2] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 1
|
|
IOMMU group: 51
|
|
|
|
7f:0c.2 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers [8086:0ee4] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 1
|
|
IOMMU group: 51
|
|
|
|
7f:0d.0 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers [8086:0ee1] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 1
|
|
IOMMU group: 52
|
|
|
|
7f:0d.1 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers [8086:0ee3] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 1
|
|
IOMMU group: 52
|
|
|
|
7f:0d.2 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers [8086:0ee5] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 1
|
|
IOMMU group: 52
|
|
|
|
7f:0e.0 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 0 [8086:0ea0] (rev 04)
|
|
Subsystem: Dell Device [1028:04ce]
|
|
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-
|
|
NUMA node: 1
|
|
IOMMU group: 53
|
|
|
|
7f:0e.1 Performance counters [1101]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 0 [8086:0e30] (rev 04)
|
|
Subsystem: Dell Device [1028:04ce]
|
|
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-
|
|
NUMA node: 1
|
|
IOMMU group: 53
|
|
Kernel driver in use: ivbep_uncore
|
|
|
|
7f:0f.0 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Target Address/Thermal Registers [8086:0ea8] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 1
|
|
IOMMU group: 54
|
|
Capabilities: [40] Express (v1) 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-
|
|
|
|
7f:0f.1 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 RAS Registers [8086:0e71] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 1
|
|
IOMMU group: 55
|
|
Capabilities: [40] Express (v1) 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-
|
|
|
|
7f:0f.2 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers [8086:0eaa] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 1
|
|
IOMMU group: 56
|
|
Capabilities: [40] Express (v1) 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-
|
|
|
|
7f:0f.3 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers [8086:0eab] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 1
|
|
IOMMU group: 57
|
|
Capabilities: [40] Express (v1) 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-
|
|
|
|
7f:0f.4 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers [8086:0eac] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 1
|
|
IOMMU group: 58
|
|
Capabilities: [40] Express (v1) 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-
|
|
|
|
7f:0f.5 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers [8086:0ead] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 1
|
|
IOMMU group: 59
|
|
Capabilities: [40] Express (v1) 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-
|
|
|
|
7f:10.0 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 0 [8086:0eb0] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 1
|
|
IOMMU group: 60
|
|
Capabilities: [40] Express (v1) 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-
|
|
Kernel driver in use: ivbep_uncore
|
|
|
|
7f:10.1 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 1 [8086:0eb1] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 1
|
|
IOMMU group: 61
|
|
Capabilities: [40] Express (v1) 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-
|
|
Kernel driver in use: ivbep_uncore
|
|
|
|
7f:10.2 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 0 [8086:0eb2] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 1
|
|
IOMMU group: 62
|
|
Capabilities: [40] Express (v1) 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-
|
|
|
|
7f:10.3 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 1 [8086:0eb3] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 1
|
|
IOMMU group: 63
|
|
Capabilities: [40] Express (v1) 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-
|
|
|
|
7f:10.4 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 2 [8086:0eb4] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 1
|
|
IOMMU group: 64
|
|
Capabilities: [40] Express (v1) 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-
|
|
Kernel driver in use: ivbep_uncore
|
|
|
|
7f:10.5 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 3 [8086:0eb5] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 1
|
|
IOMMU group: 65
|
|
Capabilities: [40] Express (v1) 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-
|
|
Kernel driver in use: ivbep_uncore
|
|
|
|
7f:10.7 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 3 [8086:0eb7] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 1
|
|
IOMMU group: 66
|
|
Capabilities: [40] Express (v1) 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-
|
|
|
|
7f:13.0 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 R2PCIe [8086:0e1d] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 1
|
|
IOMMU group: 67
|
|
|
|
7f:13.1 Performance counters [1101]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 R2PCIe [8086:0e34] (rev 04)
|
|
Subsystem: Dell Device [1028:04ce]
|
|
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-
|
|
NUMA node: 1
|
|
IOMMU group: 67
|
|
Kernel driver in use: ivbep_uncore
|
|
|
|
7f:13.4 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Registers [8086:0e81] (rev 04)
|
|
Subsystem: Dell Device [1028:04ce]
|
|
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-
|
|
NUMA node: 1
|
|
IOMMU group: 67
|
|
|
|
7f:13.5 Performance counters [1101]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Performance Ring Monitoring [8086:0e36] (rev 04)
|
|
Subsystem: Dell Device [1028:04ce]
|
|
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-
|
|
NUMA node: 1
|
|
IOMMU group: 67
|
|
Kernel driver in use: ivbep_uncore
|
|
|
|
7f:16.0 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 System Address Decoder [8086:0ec8] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 1
|
|
IOMMU group: 68
|
|
|
|
7f:16.1 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Broadcast Registers [8086:0ec9] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 1
|
|
IOMMU group: 68
|
|
|
|
7f:16.2 System peripheral [0880]: Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Broadcast Registers [8086:0eca] (rev 04)
|
|
Subsystem: Intel Corporation Device [8086:0000]
|
|
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-
|
|
NUMA node: 1
|
|
IOMMU group: 68
|
|
|
|
|
|
--- lspci -tv (tree)
|
|
$ lspci -tv
|
|
-+-[0000:00]-+-00.0 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 DMI2
|
|
| +-01.0-[02]--+-00.0 Broadcom Inc. and subsidiaries NetXtreme BCM5720 Gigabit Ethernet PCIe
|
|
| | \-00.1 Broadcom Inc. and subsidiaries NetXtreme BCM5720 Gigabit Ethernet PCIe
|
|
| +-01.1-[01]--+-00.0 Broadcom Inc. and subsidiaries NetXtreme BCM5720 Gigabit Ethernet PCIe
|
|
| | \-00.1 Broadcom Inc. and subsidiaries NetXtreme BCM5720 Gigabit Ethernet PCIe
|
|
| +-02.0-[04]--
|
|
| +-02.2-[03]--
|
|
| +-03.0-[05]--
|
|
| +-05.0 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 VTd/Memory Map/Misc
|
|
| +-05.2 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 IIO RAS
|
|
| +-11.0-[06]--
|
|
| +-16.0 Intel Corporation C600/X79 series chipset MEI Controller #1
|
|
| +-16.1 Intel Corporation C600/X79 series chipset MEI Controller #2
|
|
| +-1a.0 Intel Corporation C600/X79 series chipset USB2 Enhanced Host Controller #2
|
|
| +-1c.0-[07]--
|
|
| +-1c.7-[08-0c]----00.0-[09-0c]--+-00.0-[0a-0b]----00.0-[0b]----00.0 Matrox Electronics Systems Ltd. G200eR2
|
|
| | \-01.0-[0c]--
|
|
| +-1d.0 Intel Corporation C600/X79 series chipset USB2 Enhanced Host Controller #1
|
|
| +-1e.0-[0d]--
|
|
| +-1f.0 Intel Corporation C600/X79 series chipset LPC Controller
|
|
| \-1f.2 Intel Corporation C600/X79 series chipset 6-Port SATA AHCI Controller
|
|
+-[0000:3f]-+-08.0 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 0
|
|
| +-09.0 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 1
|
|
| +-0a.0 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 0
|
|
| +-0a.1 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 1
|
|
| +-0a.2 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 2
|
|
| +-0a.3 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 3
|
|
| +-0b.0 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 UBOX Registers
|
|
| +-0b.3 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 UBOX Registers
|
|
| +-0c.0 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers
|
|
| +-0c.1 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers
|
|
| +-0c.2 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers
|
|
| +-0d.0 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers
|
|
| +-0d.1 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers
|
|
| +-0d.2 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers
|
|
| +-0e.0 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 0
|
|
| +-0e.1 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 0
|
|
| +-0f.0 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Target Address/Thermal Registers
|
|
| +-0f.1 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 RAS Registers
|
|
| +-0f.2 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers
|
|
| +-0f.3 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers
|
|
| +-0f.4 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers
|
|
| +-0f.5 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers
|
|
| +-10.0 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 0
|
|
| +-10.1 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 1
|
|
| +-10.2 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 0
|
|
| +-10.3 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 1
|
|
| +-10.4 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 2
|
|
| +-10.5 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 3
|
|
| +-10.7 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 3
|
|
| +-13.0 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 R2PCIe
|
|
| +-13.1 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 R2PCIe
|
|
| +-13.4 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Registers
|
|
| +-13.5 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Performance Ring Monitoring
|
|
| +-16.0 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 System Address Decoder
|
|
| +-16.1 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Broadcast Registers
|
|
| \-16.2 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Broadcast Registers
|
|
+-[0000:40]-+-01.0-[41]--
|
|
| +-03.0-[42]--
|
|
| +-05.0 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 VTd/Memory Map/Misc
|
|
| \-05.2 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 IIO RAS
|
|
\-[0000:7f]-+-08.0 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 0
|
|
+-09.0 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Link 1
|
|
+-0a.0 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 0
|
|
+-0a.1 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 1
|
|
+-0a.2 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 2
|
|
+-0a.3 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Power Control Unit 3
|
|
+-0b.0 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 UBOX Registers
|
|
+-0b.3 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 UBOX Registers
|
|
+-0c.0 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers
|
|
+-0c.1 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers
|
|
+-0c.2 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers
|
|
+-0d.0 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers
|
|
+-0d.1 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers
|
|
+-0d.2 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Unicast Registers
|
|
+-0e.0 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 0
|
|
+-0e.1 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Home Agent 0
|
|
+-0f.0 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Target Address/Thermal Registers
|
|
+-0f.1 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 RAS Registers
|
|
+-0f.2 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers
|
|
+-0f.3 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers
|
|
+-0f.4 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers
|
|
+-0f.5 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 0 Channel Target Address Decoder Registers
|
|
+-10.0 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 0
|
|
+-10.1 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 1
|
|
+-10.2 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 0
|
|
+-10.3 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 1
|
|
+-10.4 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 2
|
|
+-10.5 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 Thermal Control 3
|
|
+-10.7 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Integrated Memory Controller 1 Channel 0-3 ERROR Registers 3
|
|
+-13.0 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 R2PCIe
|
|
+-13.1 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 R2PCIe
|
|
+-13.4 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Registers
|
|
+-13.5 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 QPI Ring Performance Ring Monitoring
|
|
+-16.0 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 System Address Decoder
|
|
+-16.1 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Broadcast Registers
|
|
\-16.2 Intel Corporation Xeon E7 v2/Xeon E5 v2/Core i7 Broadcast 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:01.1/numa_node /sys/bus/pci/devices/0000:00:02.0/numa_node /sys/bus/pci/devices/0000:00:02.2/numa_node /sys/bus/pci/devices/0000:00:03.0/numa_node /sys/bus/pci/devices/0000:00:05.0/numa_node /sys/bus/pci/devices/0000:00:05.2/numa_node /sys/bus/pci/devices/0000:00:11.0/numa_node /sys/bus/pci/devices/0000:00:16.0/numa_node /sys/bus/pci/devices/0000:00:16.1/numa_node /sys/bus/pci/devices/0000:00:1a.0/numa_node /sys/bus/pci/devices/0000:00:1c.0/numa_node /sys/bus/pci/devices/0000:00:1c.7/numa_node /sys/bus/pci/devices/0000:00:1d.0/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:00:1f.2/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:08:00.0/numa_node /sys/bus/pci/devices/0000:09:00.0/numa_node /sys/bus/pci/devices/0000:09:01.0/numa_node /sys/bus/pci/devices/0000:0a:00.0/numa_node /sys/bus/pci/devices/0000:0b:00.0/numa_node /sys/bus/pci/devices/0000:3f:08.0/numa_node /sys/bus/pci/devices/0000:3f:09.0/numa_node /sys/bus/pci/devices/0000:3f:0a.0/numa_node /sys/bus/pci/devices/0000:3f:0a.1/numa_node /sys/bus/pci/devices/0000:3f:0a.2/numa_node /sys/bus/pci/devices/0000:3f:0a.3/numa_node /sys/bus/pci/devices/0000:3f:0b.0/numa_node /sys/bus/pci/devices/0000:3f:0b.3/numa_node /sys/bus/pci/devices/0000:3f:0c.0/numa_node /sys/bus/pci/devices/0000:3f:0c.1/numa_node /sys/bus/pci/devices/0000:3f:0c.2/numa_node /sys/bus/pci/devices/0000:3f:0d.0/numa_node /sys/bus/pci/devices/0000:3f:0d.1/numa_node /sys/bus/pci/devices/0000:3f:0d.2/numa_node /sys/bus/pci/devices/0000:3f:0e.0/numa_node /sys/bus/pci/devices/0000:3f:0e.1/numa_node /sys/bus/pci/devices/0000:3f:0f.0/numa_node /sys/bus/pci/devices/0000:3f:0f.1/numa_node /sys/bus/pci/devices/0000:3f:0f.2/numa_node /sys/bus/pci/devices/0000:3f:0f.3/numa_node /sys/bus/pci/devices/0000:3f:0f.4/numa_node /sys/bus/pci/devices/0000:3f:0f.5/numa_node /sys/bus/pci/devices/0000:3f:10.0/numa_node /sys/bus/pci/devices/0000:3f:10.1/numa_node /sys/bus/pci/devices/0000:3f:10.2/numa_node /sys/bus/pci/devices/0000:3f:10.3/numa_node /sys/bus/pci/devices/0000:3f:10.4/numa_node /sys/bus/pci/devices/0000:3f:10.5/numa_node /sys/bus/pci/devices/0000:3f:10.7/numa_node /sys/bus/pci/devices/0000:3f:13.0/numa_node /sys/bus/pci/devices/0000:3f:13.1/numa_node /sys/bus/pci/devices/0000:3f:13.4/numa_node /sys/bus/pci/devices/0000:3f:13.5/numa_node /sys/bus/pci/devices/0000:3f:16.0/numa_node /sys/bus/pci/devices/0000:3f:16.1/numa_node /sys/bus/pci/devices/0000:3f:16.2/numa_node /sys/bus/pci/devices/0000:40:01.0/numa_node /sys/bus/pci/devices/0000:40:03.0/numa_node /sys/bus/pci/devices/0000:40:05.0/numa_node /sys/bus/pci/devices/0000:40:05.2/numa_node /sys/bus/pci/devices/0000:7f:08.0/numa_node /sys/bus/pci/devices/0000:7f:09.0/numa_node /sys/bus/pci/devices/0000:7f:0a.0/numa_node /sys/bus/pci/devices/0000:7f:0a.1/numa_node /sys/bus/pci/devices/0000:7f:0a.2/numa_node /sys/bus/pci/devices/0000:7f:0a.3/numa_node /sys/bus/pci/devices/0000:7f:0b.0/numa_node /sys/bus/pci/devices/0000:7f:0b.3/numa_node /sys/bus/pci/devices/0000:7f:0c.0/numa_node /sys/bus/pci/devices/0000:7f:0c.1/numa_node /sys/bus/pci/devices/0000:7f:0c.2/numa_node /sys/bus/pci/devices/0000:7f:0d.0/numa_node /sys/bus/pci/devices/0000:7f:0d.1/numa_node /sys/bus/pci/devices/0000:7f:0d.2/numa_node /sys/bus/pci/devices/0000:7f:0e.0/numa_node /sys/bus/pci/devices/0000:7f:0e.1/numa_node /sys/bus/pci/devices/0000:7f:0f.0/numa_node /sys/bus/pci/devices/0000:7f:0f.1/numa_node /sys/bus/pci/devices/0000:7f:0f.2/numa_node /sys/bus/pci/devices/0000:7f:0f.3/numa_node /sys/bus/pci/devices/0000:7f:0f.4/numa_node /sys/bus/pci/devices/0000:7f:0f.5/numa_node /sys/bus/pci/devices/0000:7f:10.0/numa_node /sys/bus/pci/devices/0000:7f:10.1/numa_node /sys/bus/pci/devices/0000:7f:10.2/numa_node /sys/bus/pci/devices/0000:7f:10.3/numa_node /sys/bus/pci/devices/0000:7f:10.4/numa_node /sys/bus/pci/devices/0000:7f:10.5/numa_node /sys/bus/pci/devices/0000:7f:10.7/numa_node /sys/bus/pci/devices/0000:7f:13.0/numa_node /sys/bus/pci/devices/0000:7f:13.1/numa_node /sys/bus/pci/devices/0000:7f:13.4/numa_node /sys/bus/pci/devices/0000:7f:13.5/numa_node /sys/bus/pci/devices/0000:7f:16.0/numa_node /sys/bus/pci/devices/0000:7f:16.1/numa_node /sys/bus/pci/devices/0000:7f:16.2/numa_node
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
0
|
|
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 8087:0024 Intel Corp. Integrated Rate Matching Hub
|
|
Bus 001 Device 003: ID 413c:a101 Dell Computer Corp. Internal Dual SD Card module
|
|
Bus 001 Device 004: ID 10d5:5a08 Uni Class Technology Co., Ltd Dual Bay Docking Station
|
|
Bus 001 Device 005: ID 1058:2657 Western Digital Technologies, Inc. Drive 2657
|
|
Bus 001 Device 006: ID 413c:a001 Dell Computer Corp. Hub
|
|
Bus 001 Device 007: ID 0624:0249 Avocent Corp. Virtual Keyboard/Mouse
|
|
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
|
|
Bus 002 Device 002: ID 8087:0024 Intel Corp. Integrated Rate Matching 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:01.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
|
|
[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
|
|
24 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
|
|
cpuinfo_avg_freq = 2899175
|
|
cpuinfo_max_freq = 3100000
|
|
cpuinfo_min_freq = 1200000
|
|
cpuinfo_transition_latency = 20000
|
|
related_cpus = 0
|
|
scaling_available_governors = conservative ondemand userspace powersave performance schedutil
|
|
scaling_cur_freq = 2900155
|
|
scaling_driver = intel_cpufreq
|
|
scaling_governor = performance
|
|
scaling_max_freq = 3100000
|
|
scaling_min_freq = 3100000
|
|
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: passive
|
|
intel_pstate no_turbo: 0
|
|
intel_pstate turbo_pct: 25
|
|
intel_pstate max_perf_pct: 100
|
|
intel_pstate min_perf_pct: 100
|
|
EPB (energy_perf_bias) per cpu:
|
|
EPP (energy_performance_preference) per cpu:
|
|
available EPP:
|
|
[exit=1]
|
|
|
|
--- cpupower frequency-info
|
|
$ cpupower frequency-info
|
|
analyzing CPU 0:
|
|
driver: intel_cpufreq
|
|
CPUs which run at the same hardware frequency: 0
|
|
CPUs which need to have their frequency coordinated by software: 0
|
|
maximum transition latency: 20.0 us
|
|
hardware limits: 1.20 GHz - 3.10 GHz
|
|
available cpufreq governors: conservative ondemand userspace powersave performance schedutil
|
|
current policy: frequency should be within 3.10 GHz and 3.10 GHz.
|
|
The governor "performance" may decide which speed to use
|
|
within this range.
|
|
current CPU frequency: Unable to call hardware
|
|
current CPU frequency: 2.90 GHz (asserted by call to kernel)
|
|
boost state support:
|
|
Supported: yes
|
|
Active: yes
|
|
2900 MHz max turbo 4 active cores
|
|
2900 MHz max turbo 3 active cores
|
|
3000 MHz max turbo 2 active cores
|
|
3100 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.003819 sec
|
|
Core CPU Busy% Bzy_MHz TSC_MHz IRQ CoreTmp PkgTmp
|
|
- - 1.23 2850 2607 2200 45 45
|
|
0 0 0.44 2620 2600 42 41 45
|
|
0 12 0.47 2414 2600 46
|
|
1 2 0.10 2673 2600 46 39
|
|
1 14 3.14 2824 2600 307
|
|
2 4 0.26 2503 2600 50 41
|
|
2 16 0.43 2488 2600 64
|
|
3 6 0.74 2567 2600 116 42
|
|
3 18 3.56 2739 2600 495
|
|
4 8 0.46 2560 2600 84 40
|
|
4 20 0.32 2257 2600 62
|
|
5 10 11.39 3003 2600 254 45
|
|
5 22 0.22 2143 2600 84
|
|
0 1 0.07 1949 2600 15 35 38
|
|
0 13 0.58 2193 2600 67
|
|
1 3 0.14 2679 2600 25 38
|
|
1 15 6.83 2956 2600 269
|
|
2 5 0.05 1825 2600 14 33
|
|
2 17 0.12 2366 2600 25
|
|
3 7 0.04 2563 2600 9 32
|
|
3 19 0.03 2477 2600 11
|
|
4 9 0.04 2210 2600 16 38
|
|
4 21 0.03 2734 2600 7
|
|
5 11 0.03 2909 2600 6 32
|
|
5 23 0.20 2378 2600 86
|
|
|
|
--- 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=30615us
|
|
C1 : MWAIT 0x00 disabled=0 latency=1us residency=31342146us
|
|
C1E : MWAIT 0x01 disabled=0 latency=10us residency=17852443us
|
|
C3 : MWAIT 0x10 disabled=0 latency=59us residency=1718602017us
|
|
C6 : MWAIT 0x20 disabled=0 latency=82us residency=51482105us
|
|
|
|
--- 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 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-0x000000000009cfff] usable
|
|
[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000007d2effff] usable
|
|
[ 0.000000] BIOS-e820: [mem 0x000000007d2f0000-0x000000007d31bfff] reserved
|
|
[ 0.000000] BIOS-e820: [mem 0x000000007d31c000-0x000000007d35afff] ACPI data
|
|
[ 0.000000] BIOS-e820: [mem 0x000000007d35b000-0x000000007fffffff] reserved
|
|
[ 0.000000] BIOS-e820: [mem 0x00000000e0000000-0x00000000efffffff] reserved
|
|
[ 0.000000] BIOS-e820: [mem 0x00000000fe000000-0x00000000ffffffff] reserved
|
|
[ 0.000000] BIOS-e820: [mem 0x0000000100000000-0x000000307fffffff] usable
|
|
[ 0.000000] NX (Execute Disable) protection: active
|
|
[ 0.000000] APIC: Static calls initialized
|
|
[ 0.000000] SMBIOS 2.7 present.
|
|
[ 0.000000] DMI: Dell Inc. PowerEdge R620/01W23F, BIOS 2.5.2 01/28/2015
|
|
[ 0.000000] DMI: Memory slots populated: 12/24
|
|
[ 0.000000] tsc: Fast TSC calibration using PIT
|
|
[ 0.000000] tsc: Detected 2599.853 MHz processor
|
|
[ 0.001126] e820: update [mem 0x00000000-0x00000fff] usable ==> reserved
|
|
[ 0.001129] e820: remove [mem 0x000a0000-0x000fffff] usable
|
|
[ 0.001134] last_pfn = 0x3080000 max_arch_pfn = 0x400000000
|
|
[ 0.001144] MTRR map: 7 entries (5 fixed + 2 variable; max 25), built from 10 variable MTRRs
|
|
[ 0.001147] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT
|
|
[ 0.001622] e820: update [mem 0x80000000-0xffffffff] usable ==> reserved
|
|
[ 0.001627] last_pfn = 0x7d35b max_arch_pfn = 0x400000000
|
|
[ 0.011677] found SMP MP-table at [mem 0x000fe710-0x000fe71f]
|
|
[ 0.011701] Using GB pages for direct mapping
|
|
[ 0.011871] RAMDISK: [mem 0x2d72f000-0x32b8efff]
|
|
[ 0.011885] ACPI: Early table checksum verification disabled
|
|
[ 0.011891] ACPI: RSDP 0x00000000000F0C70 000024 (v02 DELL )
|
|
[ 0.011896] ACPI: XSDT 0x00000000000F0DB8 0000A4 (v01 DELL PE_SC3 00000001 DELL 00000001)
|
|
[ 0.011904] ACPI: FACP 0x000000007D33534C 0000F4 (v03 DELL PE_SC3 00000001 DELL 00000001)
|
|
[ 0.011911] ACPI: DSDT 0x000000007D31C000 008029 (v01 DELL PE_SC3 00000001 INTL 20110211)
|
|
[ 0.011916] ACPI: FACS 0x000000007D337000 000040
|
|
[ 0.011919] ACPI: FACS 0x000000007D337000 000040
|
|
[ 0.011922] ACPI: APIC 0x000000007D334478 0001EA (v01 DELL PE_SC3 00000001 DELL 00000001)
|
|
[ 0.011926] ACPI: SPCR 0x000000007D334664 000050 (v01 DELL PE_SC3 00000001 DELL 00000001)
|
|
[ 0.011930] ACPI: HPET 0x000000007D3346B8 000038 (v01 DELL PE_SC3 00000001 DELL 00000001)
|
|
[ 0.011933] ACPI: DMAR 0x000000007D3346F4 000138 (v01 DELL PE_SC3 00000001 DELL 00000001)
|
|
[ 0.011936] ACPI: MCFG 0x000000007D334A10 00003C (v01 DELL PE_SC3 00000001 DELL 00000001)
|
|
[ 0.011940] ACPI: WD__ 0x000000007D334A50 000134 (v01 DELL PE_SC3 00000001 DELL 00000001)
|
|
[ 0.011944] ACPI: SLIC 0x000000007D334B88 000024 (v01 DELL PE_SC3 00000001 DELL 00000001)
|
|
[ 0.011947] ACPI: ERST 0x000000007D3241EC 000270 (v01 DELL PE_SC3 00000001 DELL 00000001)
|
|
[ 0.011951] ACPI: HEST 0x000000007D32445C 0005B0 (v01 DELL PE_SC3 00000001 DELL 00000001)
|
|
[ 0.011954] ACPI: BERT 0x000000007D32402C 000030 (v01 DELL PE_SC3 00000001 DELL 00000001)
|
|
[ 0.011958] ACPI: EINJ 0x000000007D32405C 000190 (v01 DELL PE_SC3 00000001 DELL 00000001)
|
|
[ 0.011961] ACPI: TCPA 0x000000007D3352E4 000064 (v02 DELL PE_SC3 00000001 DELL 00000001)
|
|
[ 0.011965] ACPI: PC__ 0x000000007D335274 00006E (v01 DELL PE_SC3 00000001 DELL 00000001)
|
|
[ 0.011968] ACPI: SRAT 0x000000007D334DB0 0004C0 (v01 DELL PE_SC3 00000001 DELL 00000001)
|
|
[ 0.011971] ACPI: SSDT 0x000000007D338000 0073B4 (v01 INTEL PPM RCM 80000001 INTL 20061109)
|
|
[ 0.011974] ACPI: Reserving FACP table memory at [mem 0x7d33534c-0x7d33543f]
|
|
[ 0.011976] ACPI: Reserving DSDT table memory at [mem 0x7d31c000-0x7d324028]
|
|
[ 0.011977] ACPI: Reserving FACS table memory at [mem 0x7d337000-0x7d33703f]
|
|
[ 0.011978] ACPI: Reserving FACS table memory at [mem 0x7d337000-0x7d33703f]
|
|
[ 0.011979] ACPI: Reserving APIC table memory at [mem 0x7d334478-0x7d334661]
|
|
[ 0.011980] ACPI: Reserving SPCR table memory at [mem 0x7d334664-0x7d3346b3]
|
|
[ 0.011980] ACPI: Reserving HPET table memory at [mem 0x7d3346b8-0x7d3346ef]
|
|
[ 0.011981] ACPI: Reserving DMAR table memory at [mem 0x7d3346f4-0x7d33482b]
|
|
[ 0.011982] ACPI: Reserving MCFG table memory at [mem 0x7d334a10-0x7d334a4b]
|
|
[ 0.011983] ACPI: Reserving WD__ table memory at [mem 0x7d334a50-0x7d334b83]
|
|
[ 0.011984] ACPI: Reserving SLIC table memory at [mem 0x7d334b88-0x7d334bab]
|
|
[ 0.011985] ACPI: Reserving ERST table memory at [mem 0x7d3241ec-0x7d32445b]
|
|
[ 0.011986] ACPI: Reserving HEST table memory at [mem 0x7d32445c-0x7d324a0b]
|
|
[ 0.011987] ACPI: Reserving BERT table memory at [mem 0x7d32402c-0x7d32405b]
|
|
[ 0.011987] ACPI: Reserving EINJ table memory at [mem 0x7d32405c-0x7d3241eb]
|
|
[ 0.011988] ACPI: Reserving TCPA table memory at [mem 0x7d3352e4-0x7d335347]
|
|
[ 0.011989] ACPI: Reserving PC__ table memory at [mem 0x7d335274-0x7d3352e1]
|
|
[ 0.011990] ACPI: Reserving SRAT table memory at [mem 0x7d334db0-0x7d33526f]
|
|
[ 0.011991] ACPI: Reserving SSDT table memory at [mem 0x7d338000-0x7d33f3b3]
|
|
[ 0.012048] ACPI: SRAT: Node 0 PXM 1 [mem 0x00000000-0x187fffffff]
|
|
[ 0.012051] ACPI: SRAT: Node 1 PXM 2 [mem 0x1880000000-0x307fffffff]
|
|
[ 0.012065] NODE_DATA(0) allocated [mem 0x187ffd52c0-0x187fffffff]
|
|
[ 0.012094] NODE_DATA(1) allocated [mem 0x307ffd52c0-0x307fffffff]
|
|
[ 0.012653] Zone ranges:
|
|
[ 0.012654] DMA [mem 0x0000000000001000-0x0000000000ffffff]
|
|
[ 0.012656] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
|
|
[ 0.012658] Normal [mem 0x0000000100000000-0x000000307fffffff]
|
|
[ 0.012659] Device empty
|
|
[ 0.012660] Movable zone start for each node
|
|
[ 0.012663] Early memory node ranges
|
|
[ 0.012664] node 0: [mem 0x0000000000001000-0x000000000009cfff]
|
|
[ 0.012665] node 0: [mem 0x0000000000100000-0x000000007d2effff]
|
|
[ 0.012667] node 0: [mem 0x0000000100000000-0x000000187fffffff]
|
|
[ 0.012679] node 1: [mem 0x0000001880000000-0x000000307fffffff]
|
|
[ 0.012693] Initmem setup node 0 [mem 0x0000000000001000-0x000000187fffffff]
|
|
[ 0.012697] Initmem setup node 1 [mem 0x0000001880000000-0x000000307fffffff]
|
|
[ 0.012702] On node 0, zone DMA: 1 pages in unavailable ranges
|
|
[ 0.012734] On node 0, zone DMA: 99 pages in unavailable ranges
|
|
[ 0.207020] On node 0, zone Normal: 11536 pages in unavailable ranges
|
|
[ 0.452167] ACPI: PM-Timer IO Port: 0x808
|
|
[ 0.452197] ACPI: LAPIC_NMI (acpi_id[0xff] high edge lint[0x1])
|
|
[ 0.452211] IOAPIC[0]: apic_id 0, version 32, address 0xfec00000, GSI 0-23
|
|
[ 0.452217] IOAPIC[1]: apic_id 1, version 32, address 0xfec3f000, GSI 32-55
|
|
[ 0.452222] IOAPIC[2]: apic_id 2, version 32, address 0xfec7f000, GSI 64-87
|
|
[ 0.452225] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
|
|
[ 0.452228] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
|
|
[ 0.452234] ACPI: Using ACPI (MADT) for SMP configuration information
|
|
[ 0.452236] ACPI: HPET id: 0x8086a701 base: 0xfed00000
|
|
[ 0.452243] ACPI: SPCR: SPCR table version 1
|
|
[ 0.452246] ACPI: SPCR: console: uart,io,0x2f8,115200
|
|
[ 0.452249] TSC deadline timer available
|
|
[ 0.452255] CPU topo: Max. logical packages: 4
|
|
[ 0.452256] CPU topo: Max. logical dies: 4
|
|
[ 0.452256] CPU topo: Max. dies per package: 1
|
|
[ 0.452262] CPU topo: Max. threads per core: 2
|
|
[ 0.452263] CPU topo: Num. cores per package: 6
|
|
[ 0.452264] CPU topo: Num. threads per package: 12
|
|
[ 0.452265] CPU topo: Allowing 24 present CPUs plus 24 hotplug CPUs
|
|
[ 0.452281] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
|
|
[ 0.452283] PM: hibernation: Registered nosave memory: [mem 0x0009d000-0x000fffff]
|
|
[ 0.452284] PM: hibernation: Registered nosave memory: [mem 0x7d2f0000-0xffffffff]
|
|
[ 0.452287] [mem 0x80000000-0xdfffffff] available for PCI devices
|
|
[ 0.452289] Booting paravirtualized kernel on bare hardware
|
|
[ 0.452293] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
|
|
[ 0.452303] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:48 nr_cpu_ids:48 nr_node_ids:2
|
|
[ 0.457292] percpu: Embedded 84 pages/cpu s221184 r8192 d114688 u524288
|
|
[ 0.457309] pcpu-alloc: s221184 r8192 d114688 u524288 alloc=1*2097152
|
|
[ 0.457311] pcpu-alloc: [0] 00 02 04 06 [0] 08 10 12 14
|
|
[ 0.457318] pcpu-alloc: [0] 16 18 20 22 [0] 24 26 28 30
|
|
[ 0.457323] pcpu-alloc: [0] 32 34 36 38 [0] 40 42 44 46
|
|
[ 0.457329] pcpu-alloc: [1] 01 03 05 07 [1] 09 11 13 15
|
|
[ 0.457334] pcpu-alloc: [1] 17 19 21 23 [1] 25 27 29 31
|
|
[ 0.457339] pcpu-alloc: [1] 33 35 37 39 [1] 41 43 45 47
|
|
[ 0.457366] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-6.17.2-1-pve root=/dev/mapper/pve-root ro quiet
|
|
[ 0.457446] Unknown kernel command line parameters "BOOT_IMAGE=/boot/vmlinuz-6.17.2-1-pve", will be passed to user space.
|
|
[ 0.457459] random: crng init done
|
|
[ 0.457460] printk: log_buf_len individual max cpu contribution: 4096 bytes
|
|
[ 0.457461] printk: log_buf_len total cpu_extra contributions: 192512 bytes
|
|
[ 0.457462] printk: log_buf_len min size: 262144 bytes
|
|
[ 0.457990] printk: log buffer data + meta data: 524288 + 1835008 = 2359296 bytes
|
|
[ 0.457991] printk: early log buf free: 253040(96%)
|
|
[ 0.458840] software IO TLB: area num 64.
|
|
[ 0.473362] Fallback order for Node 0: 0 1
|
|
[ 0.473373] Fallback order for Node 1: 1 0
|
|
[ 0.473392] Built 2 zonelists, mobility grouping on. Total pages: 50320012
|
|
[ 0.473394] Policy zone: Normal
|
|
[ 0.473411] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
|
|
[ 1.091340] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=48, Nodes=2
|
|
[ 1.091471] Kernel/User page tables isolation: enabled
|
|
[ 1.105204] ftrace: allocating 58381 entries in 230 pages
|
|
[ 1.105206] ftrace: allocated 230 pages with 5 groups
|
|
[ 1.106733] Dynamic Preempt: voluntary
|
|
[ 1.107145] rcu: Preemptible hierarchical RCU implementation.
|
|
[ 1.107147] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=48.
|
|
[ 1.107149] Trampoline variant of Tasks RCU enabled.
|
|
[ 1.107150] Rude variant of Tasks RCU enabled.
|
|
[ 1.107151] Tracing variant of Tasks RCU enabled.
|
|
[ 1.107152] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
|
|
[ 1.107153] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=48
|
|
[ 1.107241] RCU Tasks: Setting shift to 6 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=48.
|
|
[ 1.107250] RCU Tasks Rude: Setting shift to 6 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=48.
|
|
[ 1.107264] RCU Tasks Trace: Setting shift to 6 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=48.
|
|
[ 1.113413] NR_IRQS: 524544, nr_irqs: 1896, preallocated irqs: 16
|
|
[ 1.113705] rcu: srcu_init: Setting srcu_struct sizes based on contention.
|
|
[ 1.122717] Console: colour VGA+ 80x25
|
|
[ 1.122721] printk: legacy console [tty0] enabled
|
|
[ 1.122877] mempolicy: Enabling automatic NUMA balancing. Configure with numa_balancing= or the kernel.numa_balancing sysctl
|
|
[ 1.122882] ACPI: Core revision 20250404
|
|
[ 1.123031] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 133484882848 ns
|
|
[ 1.123048] APIC: Switch to symmetric I/O mode setup
|
|
[ 1.123051] DMAR: Host address width 46
|
|
[ 1.123053] DMAR: DRHD base: 0x000000d3000000 flags: 0x0
|
|
[ 1.123062] DMAR: dmar0: reg_base_addr d3000000 ver 1:0 cap d2078c106f0466 ecap f020de
|
|
[ 1.123065] DMAR: DRHD base: 0x000000de900000 flags: 0x1
|
|
[ 1.123070] DMAR: dmar1: reg_base_addr de900000 ver 1:0 cap d2078c106f0466 ecap f020de
|
|
[ 1.123073] DMAR: RMRR base: 0x0000007f458000 end: 0x0000007f46ffff
|
|
[ 1.123078] DMAR: RMRR base: 0x0000007f450000 end: 0x0000007f450fff
|
|
[ 1.123082] DMAR: RMRR base: 0x0000007f452000 end: 0x0000007f452fff
|
|
[ 1.123084] DMAR: ATSR flags: 0x0
|
|
[ 1.123088] DMAR-IR: IOAPIC id 2 under DRHD base 0xd3000000 IOMMU 0
|
|
[ 1.123090] DMAR-IR: IOAPIC id 0 under DRHD base 0xde900000 IOMMU 1
|
|
[ 1.123092] DMAR-IR: IOAPIC id 1 under DRHD base 0xde900000 IOMMU 1
|
|
[ 1.123093] DMAR-IR: HPET id 0 under DRHD base 0xde900000
|
|
[ 1.123095] DMAR-IR: x2apic is disabled because BIOS sets x2apic opt out bit.
|
|
[ 1.123096] DMAR-IR: Use 'intremap=no_x2apic_optout' to override the BIOS setting.
|
|
[ 1.123872] DMAR-IR: Enabled IRQ remapping in xapic mode
|
|
[ 1.123875] x2apic: IRQ remapping doesn't support X2APIC mode
|
|
[ 1.124500] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
|
|
[ 1.129053] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x2579b1533e5, max_idle_ns: 440795257441 ns
|
|
[ 1.129060] Calibrating delay loop (skipped), value calculated using timer frequency.. 5199.70 BogoMIPS (lpj=2599853)
|
|
[ 1.129094] CPU0: Thermal monitoring enabled (TM1)
|
|
[ 1.129176] Last level iTLB entries: 4KB 512, 2MB 8, 4MB 8
|
|
[ 1.129178] Last level dTLB entries: 4KB 512, 2MB 32, 4MB 32, 1GB 4
|
|
[ 1.129184] process: using mwait in idle threads
|
|
[ 1.129188] mitigations: Enabled attack vectors: user_kernel, user_user, guest_host, guest_guest, SMT mitigations: auto
|
|
[ 1.129196] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
|
|
[ 1.129198] Spectre V2 : Mitigation: Retpolines
|
|
[ 1.129199] Spectre V2 : User space: Mitigation: STIBP via prctl
|
|
[ 1.129201] MDS: Mitigation: Clear CPU buffers
|
|
[ 1.129203] VMSCAPE: Mitigation: IBPB before exit to userspace
|
|
[ 1.129204] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
|
|
[ 1.129206] Spectre V2 : Spectre v2 / SpectreRSB: Filling RSB on context switch and VMEXIT
|
|
[ 1.129207] Spectre V2 : Enabling Restricted Speculation for firmware calls
|
|
[ 1.129209] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
|
|
[ 1.129218] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
|
|
[ 1.129220] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
|
|
[ 1.129221] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
|
|
[ 1.129223] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
|
|
[ 1.129225] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using 'standard' format.
|
|
[ 1.158980] Freeing SMP alternatives memory: 52K
|
|
[ 1.158987] pid_max: default: 49152 minimum: 384
|
|
[ 1.159117] LSM: initializing lsm=lockdown,capability,yama,apparmor,ima,evm
|
|
[ 1.159152] Yama: becoming mindful.
|
|
[ 1.159218] AppArmor: AppArmor initialized
|
|
[ 1.191031] Dentry cache hash table entries: 16777216 (order: 15, 134217728 bytes, vmalloc hugepage)
|
|
[ 1.206983] Inode-cache hash table entries: 8388608 (order: 14, 67108864 bytes, vmalloc hugepage)
|
|
[ 1.207655] Mount-cache hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
|
|
[ 1.208066] Mountpoint-cache hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
|
|
[ 1.209291] smpboot: CPU0: Intel(R) Xeon(R) CPU E5-2630 v2 @ 2.60GHz (family: 0x6, model: 0x3e, stepping: 0x4)
|
|
[ 1.209713] Performance Events: PEBS fmt1+, IvyBridge events, 16-deep LBR, full-width counters, Intel PMU driver.
|
|
[ 1.209740] ... version: 3
|
|
[ 1.209742] ... bit width: 48
|
|
[ 1.209743] ... generic registers: 4
|
|
[ 1.209744] ... value mask: 0000ffffffffffff
|
|
[ 1.209746] ... max period: 00007fffffffffff
|
|
[ 1.209747] ... fixed-purpose events: 3
|
|
[ 1.209748] ... event mask: 000000070000000f
|
|
[ 1.210057] signal: max sigframe size: 1776
|
|
[ 1.210057] Estimated ratio of average max frequency by base frequency (times 1024): 1142
|
|
[ 1.212574] rcu: Hierarchical SRCU implementation.
|
|
[ 1.212577] rcu: Max phase no-delay instances is 400.
|
|
[ 1.212672] Timer migration: 3 hierarchy levels; 8 children per group; 2 crossnode level
|
|
[ 1.214780] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
|
|
[ 1.215646] smp: Bringing up secondary CPUs ...
|
|
[ 1.215929] smpboot: x86: Booting SMP configuration:
|
|
[ 1.215931] .... node #1, CPUs: #1
|
|
[ 1.216167] .... node #0, CPUs: #2
|
|
[ 1.216561] .... node #1, CPUs: #3
|
|
[ 1.216983] .... node #0, CPUs: #4
|
|
[ 1.217724] .... node #1, CPUs: #5
|
|
[ 1.217996] .... node #0, CPUs: #6
|
|
[ 1.218344] .... node #1, CPUs: #7
|
|
[ 1.218841] .... node #0, CPUs: #8
|
|
[ 1.219127] .... node #1, CPUs: #9
|
|
[ 1.219613] .... node #0, CPUs: #10
|
|
[ 1.219975] .... node #1, CPUs: #11
|
|
[ 1.231406] .... node #0, CPUs: #12
|
|
[ 1.232424] .... node #1, CPUs: #13
|
|
[ 1.232723] .... node #0, CPUs: #14
|
|
[ 1.233096] .... node #1, CPUs: #15
|
|
[ 1.233675] .... node #0, CPUs: #16
|
|
[ 1.234005] .... node #1, CPUs: #17
|
|
[ 1.234548] .... node #0, CPUs: #18
|
|
[ 1.234975] .... node #1, CPUs: #19
|
|
[ 1.235501] .... node #0, CPUs: #20
|
|
[ 1.235905] .... node #1, CPUs: #21
|
|
[ 1.236460] .... node #0, CPUs: #22
|
|
[ 1.236752] .... node #1, CPUs: #23
|
|
[ 1.237348] 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.
|
|
[ 1.237348] VMSCAPE: SMT on, STIBP is required for full protection. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/vmscape.html for more details.
|
|
[ 1.248163] smp: Brought up 2 nodes, 24 CPUs
|
|
[ 1.248163] smpboot: Total of 24 processors activated (124792.94 BogoMIPS)
|
|
[ 1.250093] Memory: 197661028K/201280048K available (21386K kernel code, 3800K rwdata, 14940K rodata, 4948K init, 5380K bss, 3371720K reserved, 0K cma-reserved)
|
|
[ 1.261705] devtmpfs: initialized
|
|
[ 1.261705] x86/mm: Memory block size: 2048MB
|
|
[ 1.264139] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
|
|
[ 1.264214] posixtimers hash table entries: 32768 (order: 7, 524288 bytes, vmalloc)
|
|
[ 1.264537] futex hash table entries: 8192 (524288 bytes on 2 NUMA nodes, total 1024 KiB, linear).
|
|
[ 1.264794] pinctrl core: initialized pinctrl subsystem
|
|
[ 1.265116] PM: RTC time: 20:54:52, date: 2026-07-26
|
|
[ 1.266928] NET: Registered PF_NETLINK/PF_ROUTE protocol family
|
|
[ 1.268244] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
|
|
[ 1.269053] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
|
|
[ 1.269855] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
|
|
[ 1.269883] audit: initializing netlink subsys (disabled)
|
|
[ 1.269905] audit: type=2000 audit(1785099292.145:1): state=initialized audit_enabled=0 res=1
|
|
[ 1.270225] thermal_sys: Registered thermal governor 'fair_share'
|
|
[ 1.270228] thermal_sys: Registered thermal governor 'bang_bang'
|
|
[ 1.270229] thermal_sys: Registered thermal governor 'step_wise'
|
|
[ 1.270231] thermal_sys: Registered thermal governor 'user_space'
|
|
[ 1.270233] thermal_sys: Registered thermal governor 'power_allocator'
|
|
[ 1.270246] cpuidle: using governor ladder
|
|
[ 1.270246] cpuidle: using governor menu
|
|
[ 1.270246] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
|
|
[ 1.270246] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
|
|
[ 1.270309] PCI: ECAM [mem 0xe0000000-0xefffffff] (base 0xe0000000) for domain 0000 [bus 00-ff]
|
|
[ 1.270316] PCI: ECAM [mem 0xe0000000-0xefffffff] reserved as E820 entry
|
|
[ 1.270333] PCI: Using configuration type 1 for base access
|
|
[ 1.270346] PCI: Dell System detected, enabling pci=bfsort.
|
|
[ 1.270402] core: PMU erratum BJ122, BV98, HSD29 worked around, HT is on
|
|
[ 1.270404] mtrr: your CPUs had inconsistent variable MTRR settings
|
|
[ 1.270406] mtrr: probably your BIOS does not setup all CPUs.
|
|
[ 1.270407] mtrr: corrected configuration.
|
|
[ 1.270449] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
|
|
[ 1.271127] HugeTLB: allocation took 0ms with hugepage_allocation_threads=6
|
|
[ 1.271127] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
|
|
[ 1.271127] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
|
|
[ 1.271127] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
|
|
[ 1.271127] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
|
|
[ 1.273287] ACPI: Added _OSI(Module Device)
|
|
[ 1.273290] ACPI: Added _OSI(Processor Device)
|
|
[ 1.273293] ACPI: Added _OSI(Processor Aggregator Device)
|
|
[ 1.280449] ACPI: 2 ACPI AML tables successfully acquired and loaded
|
|
[ 1.281096] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
|
|
[ 1.287132] ACPI: Interpreter enabled
|
|
[ 1.287154] ACPI: PM: (supports S0 S4 S5)
|
|
[ 1.287157] ACPI: Using IOAPIC for interrupt routing
|
|
[ 1.288016] HEST: Table parsing has been initialized.
|
|
[ 1.288415] GHES: APEI firmware first mode is enabled by APEI bit and WHEA _OSC.
|
|
[ 1.288421] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
|
|
[ 1.288424] PCI: Using E820 reservations for host bridge windows
|
|
[ 1.288759] ACPI: Enabled 4 GPEs in block 00 to 3F
|
|
[ 1.305913] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-3d])
|
|
[ 1.305922] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
|
|
[ 1.306171] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
|
|
[ 1.306174] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
|
|
[ 1.307145] PCI host bridge to bus 0000:00
|
|
[ 1.307177] pci_bus 0000:00: root bus resource [io 0x0000-0x03af window]
|
|
[ 1.307180] pci_bus 0000:00: root bus resource [io 0x03e0-0x0cf7 window]
|
|
[ 1.307182] pci_bus 0000:00: root bus resource [io 0x03b0-0x03df window]
|
|
[ 1.307184] pci_bus 0000:00: root bus resource [io 0x0d00-0x1fff window]
|
|
[ 1.307186] pci_bus 0000:00: root bus resource [io 0xe000-0xffff window]
|
|
[ 1.307188] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
|
|
[ 1.307190] pci_bus 0000:00: root bus resource [mem 0xd8000000-0xdfffffff window]
|
|
[ 1.307192] pci_bus 0000:00: root bus resource [mem 0xfed40000-0xfed44fff window]
|
|
[ 1.307195] pci_bus 0000:00: root bus resource [bus 00-3d]
|
|
[ 1.307226] pci 0000:00:00.0: [8086:0e00] type 00 class 0x060000 PCIe Root Port
|
|
[ 1.307309] pci 0000:00:00.0: PME# supported from D0 D3hot D3cold
|
|
[ 1.307423] pci 0000:00:01.0: [8086:0e02] type 01 class 0x060400 PCIe Root Port
|
|
[ 1.307445] pci 0000:00:01.0: PCI bridge to [bus 02]
|
|
[ 1.307452] pci 0000:00:01.0: bridge window [mem 0xdc000000-0xdc7fffff]
|
|
[ 1.307461] pci 0000:00:01.0: bridge window [mem 0xd9000000-0xd90fffff 64bit pref]
|
|
[ 1.307525] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
|
|
[ 1.307814] pci 0000:00:01.1: [8086:0e03] type 01 class 0x060400 PCIe Root Port
|
|
[ 1.307836] pci 0000:00:01.1: PCI bridge to [bus 01]
|
|
[ 1.307842] pci 0000:00:01.1: bridge window [mem 0xdc800000-0xdcffffff]
|
|
[ 1.307851] pci 0000:00:01.1: bridge window [mem 0xd9100000-0xd91fffff 64bit pref]
|
|
[ 1.307915] pci 0000:00:01.1: PME# supported from D0 D3hot D3cold
|
|
[ 1.308407] pci 0000:00:02.0: [8086:0e04] type 01 class 0x060400 PCIe Root Port
|
|
[ 1.308430] pci 0000:00:02.0: PCI bridge to [bus 04]
|
|
[ 1.308505] pci 0000:00:02.0: PME# supported from D0 D3hot D3cold
|
|
[ 1.309107] pci 0000:00:02.2: [8086:0e06] type 01 class 0x060400 PCIe Root Port
|
|
[ 1.309130] pci 0000:00:02.2: PCI bridge to [bus 03]
|
|
[ 1.309205] pci 0000:00:02.2: PME# supported from D0 D3hot D3cold
|
|
[ 1.309364] pci 0000:00:03.0: [8086:0e08] type 01 class 0x060400 PCIe Root Port
|
|
[ 1.309387] pci 0000:00:03.0: PCI bridge to [bus 05]
|
|
[ 1.309406] pci 0000:00:03.0: enabling Extended Tags
|
|
[ 1.309467] pci 0000:00:03.0: PME# supported from D0 D3hot D3cold
|
|
[ 1.309639] pci 0000:00:05.0: [8086:0e28] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
|
|
[ 1.309720] pci 0000:00:05.2: [8086:0e2a] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
|
|
[ 1.309850] pci 0000:00:11.0: [8086:1d3e] type 01 class 0x060400 PCIe Root Port
|
|
[ 1.309881] pci 0000:00:11.0: PCI bridge to [bus 06]
|
|
[ 1.309967] pci 0000:00:11.0: PME# supported from D0 D3hot D3cold
|
|
[ 1.310089] pci 0000:00:16.0: [8086:1d3a] type 00 class 0x078000 conventional PCI endpoint
|
|
[ 1.310127] pci 0000:00:16.0: BAR 0 [mem 0xde8fb000-0xde8fb00f 64bit]
|
|
[ 1.310163] pci 0000:00:16.0: PME# supported from D0 D3hot D3cold
|
|
[ 1.310249] pci 0000:00:16.1: [8086:1d3b] type 00 class 0x078000 conventional PCI endpoint
|
|
[ 1.310286] pci 0000:00:16.1: BAR 0 [mem 0xde8fc000-0xde8fc00f 64bit]
|
|
[ 1.310321] pci 0000:00:16.1: PME# supported from D0 D3hot D3cold
|
|
[ 1.310417] pci 0000:00:1a.0: [8086:1d2d] type 00 class 0x0c0320 conventional PCI endpoint
|
|
[ 1.310460] pci 0000:00:1a.0: BAR 0 [mem 0xde8fd000-0xde8fd3ff]
|
|
[ 1.310505] pci 0000:00:1a.0: PME# supported from D0 D3hot D3cold
|
|
[ 1.310575] pci 0000:00:1c.0: [8086:1d10] type 01 class 0x060400 PCIe Root Port
|
|
[ 1.310601] pci 0000:00:1c.0: PCI bridge to [bus 07]
|
|
[ 1.310672] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
|
|
[ 1.310700] pci 0000:00:1c.0: Enabling MPC IRBNCE
|
|
[ 1.310703] pci 0000:00:1c.0: Intel PCH root port ACS workaround enabled
|
|
[ 1.310921] pci 0000:00:1c.7: [8086:1d1e] type 01 class 0x060400 PCIe Root Port
|
|
[ 1.310948] pci 0000:00:1c.7: PCI bridge to [bus 08-0c]
|
|
[ 1.310956] pci 0000:00:1c.7: bridge window [mem 0xdd000000-0xde7fffff]
|
|
[ 1.310967] pci 0000:00:1c.7: bridge window [mem 0xd8000000-0xd8ffffff 64bit pref]
|
|
[ 1.311025] pci 0000:00:1c.7: PME# supported from D0 D3hot D3cold
|
|
[ 1.311050] pci 0000:00:1c.7: Enabling MPC IRBNCE
|
|
[ 1.311053] pci 0000:00:1c.7: Intel PCH root port ACS workaround enabled
|
|
[ 1.311165] pci 0000:00:1d.0: [8086:1d26] type 00 class 0x0c0320 conventional PCI endpoint
|
|
[ 1.311208] pci 0000:00:1d.0: BAR 0 [mem 0xde8fe000-0xde8fe3ff]
|
|
[ 1.311254] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
|
|
[ 1.311315] pci 0000:00:1e.0: [8086:244e] type 01 class 0x060401 conventional PCI bridge
|
|
[ 1.311338] pci 0000:00:1e.0: PCI bridge to [bus 0d] (subtractive decode)
|
|
[ 1.311423] pci 0000:00:1f.0: [8086:1d41] type 00 class 0x060100 conventional PCI endpoint
|
|
[ 1.311600] pci 0000:00:1f.2: [8086:1d02] type 00 class 0x010601 conventional PCI endpoint
|
|
[ 1.311633] pci 0000:00:1f.2: BAR 0 [io 0xfce8-0xfcef]
|
|
[ 1.311636] pci 0000:00:1f.2: BAR 1 [io 0xfcf8-0xfcfb]
|
|
[ 1.311639] pci 0000:00:1f.2: BAR 2 [io 0xfcf0-0xfcf7]
|
|
[ 1.311641] pci 0000:00:1f.2: BAR 3 [io 0xfcfc-0xfcff]
|
|
[ 1.311644] pci 0000:00:1f.2: BAR 4 [io 0xfcc0-0xfcdf]
|
|
[ 1.311647] pci 0000:00:1f.2: BAR 5 [mem 0xde8ff000-0xde8ff7ff]
|
|
[ 1.311682] pci 0000:00:1f.2: PME# supported from D3hot
|
|
[ 1.311845] pci 0000:02:00.0: [14e4:165f] type 00 class 0x020000 PCIe Endpoint
|
|
[ 1.311880] pci 0000:02:00.0: BAR 0 [mem 0xd90a0000-0xd90affff 64bit pref]
|
|
[ 1.311884] pci 0000:02:00.0: BAR 2 [mem 0xd90b0000-0xd90bffff 64bit pref]
|
|
[ 1.311887] pci 0000:02:00.0: BAR 4 [mem 0xd90c0000-0xd90cffff 64bit pref]
|
|
[ 1.311890] pci 0000:02:00.0: ROM [mem 0xdc000000-0xdc03ffff pref]
|
|
[ 1.311958] pci 0000:02:00.0: PME# supported from D0 D3hot D3cold
|
|
[ 1.312006] pci 0000:02:00.0: 4.000 Gb/s available PCIe bandwidth, limited by 5.0 GT/s PCIe x1 link at 0000:00:01.0 (capable of 8.000 Gb/s with 5.0 GT/s PCIe x2 link)
|
|
[ 1.312327] pci 0000:02:00.1: [14e4:165f] type 00 class 0x020000 PCIe Endpoint
|
|
[ 1.312362] pci 0000:02:00.1: BAR 0 [mem 0xd90d0000-0xd90dffff 64bit pref]
|
|
[ 1.312366] pci 0000:02:00.1: BAR 2 [mem 0xd90e0000-0xd90effff 64bit pref]
|
|
[ 1.312370] pci 0000:02:00.1: BAR 4 [mem 0xd90f0000-0xd90fffff 64bit pref]
|
|
[ 1.312373] pci 0000:02:00.1: ROM [mem 0xdc000000-0xdc03ffff pref]
|
|
[ 1.312437] pci 0000:02:00.1: PME# supported from D0 D3hot D3cold
|
|
[ 1.312788] pci 0000:00:01.0: PCI bridge to [bus 02]
|
|
[ 1.312866] pci 0000:01:00.0: [14e4:165f] type 00 class 0x020000 PCIe Endpoint
|
|
[ 1.312901] pci 0000:01:00.0: BAR 0 [mem 0xd91a0000-0xd91affff 64bit pref]
|
|
[ 1.312905] pci 0000:01:00.0: BAR 2 [mem 0xd91b0000-0xd91bffff 64bit pref]
|
|
[ 1.312909] pci 0000:01:00.0: BAR 4 [mem 0xd91c0000-0xd91cffff 64bit pref]
|
|
[ 1.312911] pci 0000:01:00.0: ROM [mem 0xdc800000-0xdc83ffff pref]
|
|
[ 1.312975] pci 0000:01:00.0: PME# supported from D0 D3hot D3cold
|
|
[ 1.313023] pci 0000:01:00.0: 4.000 Gb/s available PCIe bandwidth, limited by 5.0 GT/s PCIe x1 link at 0000:00:01.1 (capable of 8.000 Gb/s with 5.0 GT/s PCIe x2 link)
|
|
[ 1.313334] pci 0000:01:00.1: [14e4:165f] type 00 class 0x020000 PCIe Endpoint
|
|
[ 1.313369] pci 0000:01:00.1: BAR 0 [mem 0xd91d0000-0xd91dffff 64bit pref]
|
|
[ 1.313373] pci 0000:01:00.1: BAR 2 [mem 0xd91e0000-0xd91effff 64bit pref]
|
|
[ 1.313377] pci 0000:01:00.1: BAR 4 [mem 0xd91f0000-0xd91fffff 64bit pref]
|
|
[ 1.313380] pci 0000:01:00.1: ROM [mem 0xdc800000-0xdc83ffff pref]
|
|
[ 1.313444] pci 0000:01:00.1: PME# supported from D0 D3hot D3cold
|
|
[ 1.313798] pci 0000:00:01.1: PCI bridge to [bus 01]
|
|
[ 1.313842] pci 0000:00:02.0: PCI bridge to [bus 04]
|
|
[ 1.313885] pci 0000:00:02.2: PCI bridge to [bus 03]
|
|
[ 1.313926] pci 0000:00:03.0: PCI bridge to [bus 05]
|
|
[ 1.313974] pci 0000:00:11.0: PCI bridge to [bus 06]
|
|
[ 1.314024] pci 0000:00:1c.0: PCI bridge to [bus 07]
|
|
[ 1.314575] pci 0000:08:00.0: [1912:0013] type 01 class 0x060400 PCIe Switch Upstream Port
|
|
[ 1.315445] pci 0000:08:00.0: PCI bridge to [bus 09-0c]
|
|
[ 1.315664] pci 0000:08:00.0: bridge window [mem 0xdd000000-0xde7fffff]
|
|
[ 1.315969] pci 0000:08:00.0: bridge window [mem 0xd8000000-0xd8ffffff 64bit pref]
|
|
[ 1.317621] pci 0000:08:00.0: PME# supported from D0 D3hot D3cold
|
|
[ 1.319056] pci 0000:00:1c.7: PCI bridge to [bus 08-0c]
|
|
[ 1.320455] pci 0000:09:00.0: [1912:0013] type 01 class 0x060400 PCIe Switch Downstream Port
|
|
[ 1.322420] pci 0000:09:00.0: PCI bridge to [bus 0a-0b]
|
|
[ 1.322673] pci 0000:09:00.0: bridge window [mem 0xdd000000-0xddffffff]
|
|
[ 1.323022] pci 0000:09:00.0: bridge window [mem 0xd8000000-0xd8ffffff 64bit pref]
|
|
[ 1.324962] pci 0000:09:00.0: PME# supported from D0 D3hot D3cold
|
|
[ 1.326950] pci 0000:09:01.0: [1912:0013] type 01 class 0x060400 PCIe Switch Downstream Port
|
|
[ 1.327933] pci 0000:09:01.0: PCI bridge to [bus 0c]
|
|
[ 1.328165] pci 0000:09:01.0: bridge window [mem 0xde700000-0xde7fffff]
|
|
[ 1.330679] pci 0000:09:01.0: PME# supported from D0 D3hot D3cold
|
|
[ 1.334168] pci 0000:08:00.0: PCI bridge to [bus 09-0c]
|
|
[ 1.335935] pci 0000:0a:00.0: [1912:0012] type 01 class 0x060400 PCIe to PCI/PCI-X bridge
|
|
[ 1.336932] pci 0000:0a:00.0: PCI bridge to [bus 0b]
|
|
[ 1.337165] pci 0000:0a:00.0: bridge window [mem 0xdd000000-0xddffffff]
|
|
[ 1.337516] pci 0000:0a:00.0: bridge window [mem 0xd8000000-0xd8ffffff 64bit pref]
|
|
[ 1.340982] pci 0000:09:00.0: PCI bridge to [bus 0a-0b]
|
|
[ 1.342528] pci_bus 0000:0b: extended config space not accessible
|
|
[ 1.342767] pci 0000:0b:00.0: [102b:0534] type 00 class 0x030000 conventional PCI endpoint
|
|
[ 1.344169] pci 0000:0b:00.0: BAR 0 [mem 0xd8000000-0xd8ffffff pref]
|
|
[ 1.344206] pci 0000:0b:00.0: BAR 1 [mem 0xddffc000-0xddffffff]
|
|
[ 1.344243] pci 0000:0b:00.0: BAR 2 [mem 0xdd000000-0xdd7fffff]
|
|
[ 1.344681] pci 0000:0b:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
|
|
[ 1.347791] pci 0000:0a:00.0: PCI bridge to [bus 0b]
|
|
[ 1.349516] pci 0000:09:01.0: PCI bridge to [bus 0c]
|
|
[ 1.351075] pci_bus 0000:0d: extended config space not accessible
|
|
[ 1.351125] pci 0000:00:1e.0: PCI bridge to [bus 0d] (subtractive decode)
|
|
[ 1.351134] pci 0000:00:1e.0: bridge window [io 0x0000-0x03af window] (subtractive decode)
|
|
[ 1.351137] pci 0000:00:1e.0: bridge window [io 0x03e0-0x0cf7 window] (subtractive decode)
|
|
[ 1.351139] pci 0000:00:1e.0: bridge window [io 0x03b0-0x03df window] (subtractive decode)
|
|
[ 1.351142] pci 0000:00:1e.0: bridge window [io 0x0d00-0x1fff window] (subtractive decode)
|
|
[ 1.351144] pci 0000:00:1e.0: bridge window [io 0xe000-0xffff window] (subtractive decode)
|
|
[ 1.351146] pci 0000:00:1e.0: bridge window [mem 0x000a0000-0x000bffff window] (subtractive decode)
|
|
[ 1.351148] pci 0000:00:1e.0: bridge window [mem 0xd8000000-0xdfffffff window] (subtractive decode)
|
|
[ 1.351149] pci 0000:00:1e.0: bridge window [mem 0xfed40000-0xfed44fff window] (subtractive decode)
|
|
[ 1.351192] pci_bus 0000:00: on NUMA node 0
|
|
[ 1.352797] ACPI: PCI Root Bridge [PCI1] (domain 0000 [bus 40-7e])
|
|
[ 1.352804] acpi PNP0A08:01: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
|
|
[ 1.353055] acpi PNP0A08:01: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
|
|
[ 1.353057] acpi PNP0A08:01: FADT indicates ASPM is unsupported, using BIOS configuration
|
|
[ 1.353995] PCI host bridge to bus 0000:40
|
|
[ 1.354030] pci_bus 0000:40: root bus resource [io 0x2000-0xdfff window]
|
|
[ 1.354033] pci_bus 0000:40: root bus resource [mem 0xd0000000-0xd7ffffff window]
|
|
[ 1.354036] pci_bus 0000:40: root bus resource [bus 40-7e]
|
|
[ 1.354068] pci 0000:40:01.0: [8086:0e02] type 01 class 0x060400 PCIe Root Port
|
|
[ 1.354092] pci 0000:40:01.0: PCI bridge to [bus 41]
|
|
[ 1.354174] pci 0000:40:01.0: PME# supported from D0 D3hot D3cold
|
|
[ 1.354855] pci 0000:40:03.0: [8086:0e08] type 01 class 0x060400 PCIe Root Port
|
|
[ 1.354879] pci 0000:40:03.0: PCI bridge to [bus 42]
|
|
[ 1.354900] pci 0000:40:03.0: enabling Extended Tags
|
|
[ 1.354966] pci 0000:40:03.0: PME# supported from D0 D3hot D3cold
|
|
[ 1.355628] pci 0000:40:05.0: [8086:0e28] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
|
|
[ 1.355784] pci 0000:40:05.2: [8086:0e2a] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
|
|
[ 1.355936] pci 0000:40:01.0: PCI bridge to [bus 41]
|
|
[ 1.355981] pci 0000:40:03.0: PCI bridge to [bus 42]
|
|
[ 1.356000] pci_bus 0000:40: on NUMA node 1
|
|
[ 1.356101] ACPI: PCI Root Bridge [P0B1] (domain 0000 [bus 3f])
|
|
[ 1.356107] acpi PNP0A08:02: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
|
|
[ 1.356355] acpi PNP0A08:02: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
|
|
[ 1.356357] acpi PNP0A08:02: FADT indicates ASPM is unsupported, using BIOS configuration
|
|
[ 1.356435] PCI host bridge to bus 0000:3f
|
|
[ 1.356440] pci_bus 0000:3f: root bus resource [bus 3f]
|
|
[ 1.356450] pci 0000:3f:08.0: [8086:0e80] type 00 class 0x088000 conventional PCI endpoint
|
|
[ 1.356512] pci 0000:3f:09.0: [8086:0e90] type 00 class 0x088000 conventional PCI endpoint
|
|
[ 1.356569] pci 0000:3f:0a.0: [8086:0ec0] type 00 class 0x088000 conventional PCI endpoint
|
|
[ 1.356621] pci 0000:3f:0a.1: [8086:0ec1] type 00 class 0x088000 conventional PCI endpoint
|
|
[ 1.356671] pci 0000:3f:0a.2: [8086:0ec2] type 00 class 0x088000 conventional PCI endpoint
|
|
[ 1.356722] pci 0000:3f:0a.3: [8086:0ec3] type 00 class 0x088000 conventional PCI endpoint
|
|
[ 1.356774] pci 0000:3f:0b.0: [8086:0e1e] type 00 class 0x088000 conventional PCI endpoint
|
|
[ 1.356832] pci 0000:3f:0b.3: [8086:0e1f] type 00 class 0x088000 conventional PCI endpoint
|
|
[ 1.356911] pci 0000:3f:0c.0: [8086:0ee0] type 00 class 0x088000 conventional PCI endpoint
|
|
[ 1.356959] pci 0000:3f:0c.1: [8086:0ee2] type 00 class 0x088000 conventional PCI endpoint
|
|
[ 1.357009] pci 0000:3f:0c.2: [8086:0ee4] type 00 class 0x088000 conventional PCI endpoint
|
|
[ 1.357057] pci 0000:3f:0d.0: [8086:0ee1] type 00 class 0x088000 conventional PCI endpoint
|
|
[ 1.357109] pci 0000:3f:0d.1: [8086:0ee3] type 00 class 0x088000 conventional PCI endpoint
|
|
[ 1.357158] pci 0000:3f:0d.2: [8086:0ee5] type 00 class 0x088000 conventional PCI endpoint
|
|
[ 1.357208] pci 0000:3f:0e.0: [8086:0ea0] type 00 class 0x088000 conventional PCI endpoint
|
|
[ 1.357268] pci 0000:3f:0e.1: [8086:0e30] type 00 class 0x110100 conventional PCI endpoint
|
|
[ 1.357327] pci 0000:3f:0f.0: [8086:0ea8] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
|
|
[ 1.357401] pci 0000:3f:0f.1: [8086:0e71] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
|
|
[ 1.357470] pci 0000:3f:0f.2: [8086:0eaa] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
|
|
[ 1.357537] pci 0000:3f:0f.3: [8086:0eab] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
|
|
[ 1.357606] pci 0000:3f:0f.4: [8086:0eac] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
|
|
[ 1.357672] pci 0000:3f:0f.5: [8086:0ead] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
|
|
[ 1.357740] pci 0000:3f:10.0: [8086:0eb0] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
|
|
[ 1.357817] pci 0000:3f:10.1: [8086:0eb1] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
|
|
[ 1.357883] pci 0000:3f:10.2: [8086:0eb2] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
|
|
[ 1.357951] pci 0000:3f:10.3: [8086:0eb3] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
|
|
[ 1.358017] pci 0000:3f:10.4: [8086:0eb4] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
|
|
[ 1.358088] pci 0000:3f:10.5: [8086:0eb5] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
|
|
[ 1.358155] pci 0000:3f:10.7: [8086:0eb7] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
|
|
[ 1.358222] pci 0000:3f:13.0: [8086:0e1d] type 00 class 0x088000 conventional PCI endpoint
|
|
[ 1.358270] pci 0000:3f:13.1: [8086:0e34] type 00 class 0x110100 conventional PCI endpoint
|
|
[ 1.358330] pci 0000:3f:13.4: [8086:0e81] type 00 class 0x088000 conventional PCI endpoint
|
|
[ 1.358381] pci 0000:3f:13.5: [8086:0e36] type 00 class 0x110100 conventional PCI endpoint
|
|
[ 1.358433] pci 0000:3f:16.0: [8086:0ec8] type 00 class 0x088000 conventional PCI endpoint
|
|
[ 1.358481] pci 0000:3f:16.1: [8086:0ec9] type 00 class 0x088000 conventional PCI endpoint
|
|
[ 1.358533] pci 0000:3f:16.2: [8086:0eca] type 00 class 0x088000 conventional PCI endpoint
|
|
[ 1.358587] pci_bus 0000:3f: on NUMA node 0
|
|
[ 1.358674] ACPI: PCI Root Bridge [P1B1] (domain 0000 [bus 7f])
|
|
[ 1.358680] acpi PNP0A08:03: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
|
|
[ 1.358928] acpi PNP0A08:03: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
|
|
[ 1.358930] acpi PNP0A08:03: FADT indicates ASPM is unsupported, using BIOS configuration
|
|
[ 1.358978] PCI host bridge to bus 0000:7f
|
|
[ 1.358982] pci_bus 0000:7f: root bus resource [bus 7f]
|
|
[ 1.358993] pci 0000:7f:08.0: [8086:0e80] type 00 class 0x088000 conventional PCI endpoint
|
|
[ 1.359055] pci 0000:7f:09.0: [8086:0e90] type 00 class 0x088000 conventional PCI endpoint
|
|
[ 1.359119] pci 0000:7f:0a.0: [8086:0ec0] type 00 class 0x088000 conventional PCI endpoint
|
|
[ 1.359183] pci 0000:7f:0a.1: [8086:0ec1] type 00 class 0x088000 conventional PCI endpoint
|
|
[ 1.359236] pci 0000:7f:0a.2: [8086:0ec2] type 00 class 0x088000 conventional PCI endpoint
|
|
[ 1.359291] pci 0000:7f:0a.3: [8086:0ec3] type 00 class 0x088000 conventional PCI endpoint
|
|
[ 1.359346] pci 0000:7f:0b.0: [8086:0e1e] type 00 class 0x088000 conventional PCI endpoint
|
|
[ 1.359396] pci 0000:7f:0b.3: [8086:0e1f] type 00 class 0x088000 conventional PCI endpoint
|
|
[ 1.359450] pci 0000:7f:0c.0: [8086:0ee0] type 00 class 0x088000 conventional PCI endpoint
|
|
[ 1.359501] pci 0000:7f:0c.1: [8086:0ee2] type 00 class 0x088000 conventional PCI endpoint
|
|
[ 1.359552] pci 0000:7f:0c.2: [8086:0ee4] type 00 class 0x088000 conventional PCI endpoint
|
|
[ 1.359614] pci 0000:7f:0d.0: [8086:0ee1] type 00 class 0x088000 conventional PCI endpoint
|
|
[ 1.359666] pci 0000:7f:0d.1: [8086:0ee3] type 00 class 0x088000 conventional PCI endpoint
|
|
[ 1.359718] pci 0000:7f:0d.2: [8086:0ee5] type 00 class 0x088000 conventional PCI endpoint
|
|
[ 1.359773] pci 0000:7f:0e.0: [8086:0ea0] type 00 class 0x088000 conventional PCI endpoint
|
|
[ 1.359828] pci 0000:7f:0e.1: [8086:0e30] type 00 class 0x110100 conventional PCI endpoint
|
|
[ 1.359889] pci 0000:7f:0f.0: [8086:0ea8] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
|
|
[ 1.359963] pci 0000:7f:0f.1: [8086:0e71] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
|
|
[ 1.360035] pci 0000:7f:0f.2: [8086:0eaa] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
|
|
[ 1.360120] pci 0000:7f:0f.3: [8086:0eab] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
|
|
[ 1.360193] pci 0000:7f:0f.4: [8086:0eac] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
|
|
[ 1.360267] pci 0000:7f:0f.5: [8086:0ead] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
|
|
[ 1.360340] pci 0000:7f:10.0: [8086:0eb0] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
|
|
[ 1.360419] pci 0000:7f:10.1: [8086:0eb1] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
|
|
[ 1.360494] pci 0000:7f:10.2: [8086:0eb2] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
|
|
[ 1.360566] pci 0000:7f:10.3: [8086:0eb3] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
|
|
[ 1.360641] pci 0000:7f:10.4: [8086:0eb4] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
|
|
[ 1.360723] pci 0000:7f:10.5: [8086:0eb5] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
|
|
[ 1.360804] pci 0000:7f:10.7: [8086:0eb7] type 00 class 0x088000 PCIe Root Complex Integrated Endpoint
|
|
[ 1.360876] pci 0000:7f:13.0: [8086:0e1d] type 00 class 0x088000 conventional PCI endpoint
|
|
[ 1.360929] pci 0000:7f:13.1: [8086:0e34] type 00 class 0x110100 conventional PCI endpoint
|
|
[ 1.360983] pci 0000:7f:13.4: [8086:0e81] type 00 class 0x088000 conventional PCI endpoint
|
|
[ 1.361035] pci 0000:7f:13.5: [8086:0e36] type 00 class 0x110100 conventional PCI endpoint
|
|
[ 1.361095] pci 0000:7f:16.0: [8086:0ec8] type 00 class 0x088000 conventional PCI endpoint
|
|
[ 1.361150] pci 0000:7f:16.1: [8086:0ec9] type 00 class 0x088000 conventional PCI endpoint
|
|
[ 1.361215] pci 0000:7f:16.2: [8086:0eca] type 00 class 0x088000 conventional PCI endpoint
|
|
[ 1.361275] pci_bus 0000:7f: on NUMA node 1
|
|
[ 1.361479] ACPI: PCI: Interrupt link LK00 configured for IRQ 15
|
|
[ 1.361559] ACPI: PCI: Interrupt link LK01 configured for IRQ 14
|
|
[ 1.361639] ACPI: PCI: Interrupt link LK02 configured for IRQ 0
|
|
[ 1.361642] ACPI: PCI: Interrupt link LK02 disabled
|
|
[ 1.361718] ACPI: PCI: Interrupt link LK03 configured for IRQ 11
|
|
[ 1.361794] ACPI: PCI: Interrupt link LK04 configured for IRQ 5
|
|
[ 1.361873] ACPI: PCI: Interrupt link LK05 configured for IRQ 0
|
|
[ 1.361875] ACPI: PCI: Interrupt link LK05 disabled
|
|
[ 1.361951] ACPI: PCI: Interrupt link LK06 configured for IRQ 6
|
|
[ 1.362027] ACPI: PCI: Interrupt link LK07 configured for IRQ 14
|
|
[ 1.362346] iommu: Default domain type: Translated
|
|
[ 1.362346] iommu: DMA domain TLB invalidation policy: lazy mode
|
|
[ 1.363089] SCSI subsystem initialized
|
|
[ 1.363123] libata version 3.00 loaded.
|
|
[ 1.363123] ACPI: bus type USB registered
|
|
[ 1.363132] usbcore: registered new interface driver usbfs
|
|
[ 1.363147] usbcore: registered new interface driver hub
|
|
[ 1.363170] usbcore: registered new device driver usb
|
|
[ 1.363201] pps_core: LinuxPPS API ver. 1 registered
|
|
[ 1.363203] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
|
|
[ 1.363211] PTP clock support registered
|
|
[ 1.363264] EDAC MC: Ver: 3.0.0
|
|
[ 1.364525] NetLabel: Initializing
|
|
[ 1.364527] NetLabel: domain hash size = 128
|
|
[ 1.364528] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
|
|
[ 1.364551] NetLabel: unlabeled traffic allowed by default
|
|
[ 1.365106] mctp: management component transport protocol core
|
|
[ 1.365106] NET: Registered PF_MCTP protocol family
|
|
[ 1.365117] PCI: Using ACPI for IRQ routing
|
|
[ 1.369943] PCI: pci_cache_line_size set to 64 bytes
|
|
[ 1.370391] e820: reserve RAM buffer [mem 0x0009d000-0x0009ffff]
|
|
[ 1.370394] e820: reserve RAM buffer [mem 0x7d2f0000-0x7fffffff]
|
|
[ 1.371209] pci 0000:0b:00.0: vgaarb: setting as boot VGA device
|
|
[ 1.371212] pci 0000:0b:00.0: vgaarb: bridge control possible
|
|
[ 1.371214] pci 0000:0b:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
|
|
[ 1.371228] vgaarb: loaded
|
|
[ 1.372258] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
|
|
[ 1.372258] hpet0: 8 comparators, 64-bit 14.318180 MHz counter
|
|
[ 1.374173] clocksource: Switched to clocksource tsc-early
|
|
[ 1.374530] VFS: Disk quotas dquot_6.6.0
|
|
[ 1.374549] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
|
|
[ 1.374707] AppArmor: AppArmor Filesystem Enabled
|
|
[ 1.374731] pnp: PnP ACPI init
|
|
[ 1.375898] system 00:04: [io 0x0800-0x087f] has been reserved
|
|
[ 1.375903] system 00:04: [io 0x0880-0x08ff] has been reserved
|
|
[ 1.375905] system 00:04: [io 0x0900-0x091f] has been reserved
|
|
[ 1.375907] system 00:04: [io 0x0920-0x0923] has been reserved
|
|
[ 1.375909] system 00:04: [io 0x0924] has been reserved
|
|
[ 1.375912] system 00:04: [io 0x0370-0x0377] has been reserved
|
|
[ 1.375914] system 00:04: [io 0x0ca0-0x0ca7] has been reserved
|
|
[ 1.375916] system 00:04: [io 0x0ca9-0x0cab] has been reserved
|
|
[ 1.375918] system 00:04: [io 0x0cad-0x0caf] has been reserved
|
|
[ 1.375920] system 00:04: [io 0x0cb0-0x0cbf] has been reserved
|
|
[ 1.375953] system 00:05: [io 0x0ca8] has been reserved
|
|
[ 1.375953] system 00:05: [io 0x0cac] has been reserved
|
|
[ 1.376464] system 00:06: [mem 0xe0000000-0xe3efffff] has been reserved
|
|
[ 1.376681] system 00:07: [mem 0xe4000000-0xe7ffffff] has been reserved
|
|
[ 1.376767] system 00:08: [mem 0xe3f00000-0xe3ffffff] has been reserved
|
|
[ 1.376877] system 00:09: [mem 0xde900000-0xde901fff] could not be reserved
|
|
[ 1.376996] system 00:0a: [mem 0xd3000000-0xd3001fff] could not be reserved
|
|
[ 1.377209] pnp: PnP ACPI: found 11 devices
|
|
[ 1.383670] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
|
|
[ 1.383762] NET: Registered PF_INET protocol family
|
|
[ 1.384284] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, vmalloc hugepage)
|
|
[ 1.405267] tcp_listen_portaddr_hash hash table entries: 65536 (order: 8, 1048576 bytes, vmalloc)
|
|
[ 1.405420] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, vmalloc)
|
|
[ 1.406033] TCP established hash table entries: 524288 (order: 10, 4194304 bytes, vmalloc hugepage)
|
|
[ 1.407287] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, vmalloc hugepage)
|
|
[ 1.407546] TCP: Hash tables configured (established 524288 bind 65536)
|
|
[ 1.408131] MPTCP token hash table entries: 65536 (order: 8, 1572864 bytes, vmalloc)
|
|
[ 1.409515] UDP hash table entries: 65536 (order: 10, 4194304 bytes, vmalloc hugepage)
|
|
[ 1.411224] UDP-Lite hash table entries: 65536 (order: 10, 4194304 bytes, vmalloc hugepage)
|
|
[ 1.411939] NET: Registered PF_UNIX/PF_LOCAL protocol family
|
|
[ 1.411953] NET: Registered PF_XDP protocol family
|
|
[ 1.411971] pci 0000:02:00.1: ROM [mem 0xdc000000-0xdc03ffff pref]: can't claim; address conflict with 0000:02:00.0 [mem 0xdc000000-0xdc03ffff pref]
|
|
[ 1.411978] pci 0000:01:00.1: ROM [mem 0xdc800000-0xdc83ffff pref]: can't claim; address conflict with 0000:01:00.0 [mem 0xdc800000-0xdc83ffff pref]
|
|
[ 1.412015] pci 0000:02:00.1: ROM [mem 0xdc040000-0xdc07ffff pref]: assigned
|
|
[ 1.412018] pci 0000:00:01.0: PCI bridge to [bus 02]
|
|
[ 1.412025] pci 0000:00:01.0: bridge window [mem 0xdc000000-0xdc7fffff]
|
|
[ 1.412029] pci 0000:00:01.0: bridge window [mem 0xd9000000-0xd90fffff 64bit pref]
|
|
[ 1.412035] pci 0000:01:00.1: ROM [mem 0xdc840000-0xdc87ffff pref]: assigned
|
|
[ 1.412048] pci 0000:00:01.1: PCI bridge to [bus 01]
|
|
[ 1.412052] pci 0000:00:01.1: bridge window [mem 0xdc800000-0xdcffffff]
|
|
[ 1.412056] pci 0000:00:01.1: bridge window [mem 0xd9100000-0xd91fffff 64bit pref]
|
|
[ 1.412068] pci 0000:00:02.0: PCI bridge to [bus 04]
|
|
[ 1.412077] pci 0000:00:02.2: PCI bridge to [bus 03]
|
|
[ 1.412086] pci 0000:00:03.0: PCI bridge to [bus 05]
|
|
[ 1.412094] pci 0000:00:11.0: PCI bridge to [bus 06]
|
|
[ 1.412107] pci 0000:00:1c.0: PCI bridge to [bus 07]
|
|
[ 1.412123] pci 0000:0a:00.0: PCI bridge to [bus 0b]
|
|
[ 1.412265] pci 0000:0a:00.0: bridge window [mem 0xdd000000-0xddffffff]
|
|
[ 1.412372] pci 0000:0a:00.0: bridge window [mem 0xd8000000-0xd8ffffff 64bit pref]
|
|
[ 1.412562] pci 0000:09:00.0: PCI bridge to [bus 0a-0b]
|
|
[ 1.412706] pci 0000:09:00.0: bridge window [mem 0xdd000000-0xddffffff]
|
|
[ 1.412800] pci 0000:09:00.0: bridge window [mem 0xd8000000-0xd8ffffff 64bit pref]
|
|
[ 1.412994] pci 0000:09:01.0: PCI bridge to [bus 0c]
|
|
[ 1.413147] pci 0000:09:01.0: bridge window [mem 0xde700000-0xde7fffff]
|
|
[ 1.413504] pci 0000:08:00.0: PCI bridge to [bus 09-0c]
|
|
[ 1.413634] pci 0000:08:00.0: bridge window [mem 0xdd000000-0xde7fffff]
|
|
[ 1.413718] pci 0000:08:00.0: bridge window [mem 0xd8000000-0xd8ffffff 64bit pref]
|
|
[ 1.413958] pci 0000:00:1c.7: PCI bridge to [bus 08-0c]
|
|
[ 1.413962] pci 0000:00:1c.7: bridge window [mem 0xdd000000-0xde7fffff]
|
|
[ 1.413966] pci 0000:00:1c.7: bridge window [mem 0xd8000000-0xd8ffffff 64bit pref]
|
|
[ 1.413972] pci 0000:00:1e.0: PCI bridge to [bus 0d]
|
|
[ 1.413982] pci_bus 0000:00: resource 4 [io 0x0000-0x03af window]
|
|
[ 1.413985] pci_bus 0000:00: resource 5 [io 0x03e0-0x0cf7 window]
|
|
[ 1.413986] pci_bus 0000:00: resource 6 [io 0x03b0-0x03df window]
|
|
[ 1.413988] pci_bus 0000:00: resource 7 [io 0x0d00-0x1fff window]
|
|
[ 1.413990] pci_bus 0000:00: resource 8 [io 0xe000-0xffff window]
|
|
[ 1.413992] pci_bus 0000:00: resource 9 [mem 0x000a0000-0x000bffff window]
|
|
[ 1.413993] pci_bus 0000:00: resource 10 [mem 0xd8000000-0xdfffffff window]
|
|
[ 1.413995] pci_bus 0000:00: resource 11 [mem 0xfed40000-0xfed44fff window]
|
|
[ 1.413997] pci_bus 0000:02: resource 1 [mem 0xdc000000-0xdc7fffff]
|
|
[ 1.413999] pci_bus 0000:02: resource 2 [mem 0xd9000000-0xd90fffff 64bit pref]
|
|
[ 1.414001] pci_bus 0000:01: resource 1 [mem 0xdc800000-0xdcffffff]
|
|
[ 1.414002] pci_bus 0000:01: resource 2 [mem 0xd9100000-0xd91fffff 64bit pref]
|
|
[ 1.414005] pci_bus 0000:08: resource 1 [mem 0xdd000000-0xde7fffff]
|
|
[ 1.414006] pci_bus 0000:08: resource 2 [mem 0xd8000000-0xd8ffffff 64bit pref]
|
|
[ 1.414008] pci_bus 0000:09: resource 1 [mem 0xdd000000-0xde7fffff]
|
|
[ 1.414009] pci_bus 0000:09: resource 2 [mem 0xd8000000-0xd8ffffff 64bit pref]
|
|
[ 1.414011] pci_bus 0000:0a: resource 1 [mem 0xdd000000-0xddffffff]
|
|
[ 1.414013] pci_bus 0000:0a: resource 2 [mem 0xd8000000-0xd8ffffff 64bit pref]
|
|
[ 1.414014] pci_bus 0000:0b: resource 1 [mem 0xdd000000-0xddffffff]
|
|
[ 1.414016] pci_bus 0000:0b: resource 2 [mem 0xd8000000-0xd8ffffff 64bit pref]
|
|
[ 1.414018] pci_bus 0000:0c: resource 1 [mem 0xde700000-0xde7fffff]
|
|
[ 1.414019] pci_bus 0000:0d: resource 4 [io 0x0000-0x03af window]
|
|
[ 1.414021] pci_bus 0000:0d: resource 5 [io 0x03e0-0x0cf7 window]
|
|
[ 1.414023] pci_bus 0000:0d: resource 6 [io 0x03b0-0x03df window]
|
|
[ 1.414025] pci_bus 0000:0d: resource 7 [io 0x0d00-0x1fff window]
|
|
[ 1.414026] pci_bus 0000:0d: resource 8 [io 0xe000-0xffff window]
|
|
[ 1.414028] pci_bus 0000:0d: resource 9 [mem 0x000a0000-0x000bffff window]
|
|
[ 1.414029] pci_bus 0000:0d: resource 10 [mem 0xd8000000-0xdfffffff window]
|
|
[ 1.414031] pci_bus 0000:0d: resource 11 [mem 0xfed40000-0xfed44fff window]
|
|
[ 1.414088] pci 0000:40:01.0: PCI bridge to [bus 41]
|
|
[ 1.414098] pci 0000:40:03.0: PCI bridge to [bus 42]
|
|
[ 1.414116] pci_bus 0000:40: resource 4 [io 0x2000-0xdfff window]
|
|
[ 1.414118] pci_bus 0000:40: resource 5 [mem 0xd0000000-0xd7ffffff window]
|
|
[ 1.414177] pci 0000:00:05.0: disabled boot interrupts on device [8086:0e28]
|
|
[ 1.425314] pci 0000:00:1a.0: quirk_usb_early_handoff+0x0/0x740 took 10860 usecs
|
|
[ 1.425957] pci 0000:40:05.0: disabled boot interrupts on device [8086:0e28]
|
|
[ 1.426026] PCI: CLS 64 bytes, default 64
|
|
[ 1.426120] DMAR: No SATC found
|
|
[ 1.426122] DMAR: dmar0: Using Queued invalidation
|
|
[ 1.426131] DMAR: dmar1: Using Queued invalidation
|
|
[ 1.426172] Trying to unpack rootfs image as initramfs...
|
|
[ 1.426313] pci 0000:40:01.0: Adding to iommu group 0
|
|
[ 1.426343] pci 0000:40:03.0: Adding to iommu group 1
|
|
[ 1.426384] pci 0000:40:05.0: Adding to iommu group 2
|
|
[ 1.426407] pci 0000:40:05.2: Adding to iommu group 3
|
|
[ 1.428067] pci 0000:00:00.0: Adding to iommu group 4
|
|
[ 1.428101] pci 0000:00:01.0: Adding to iommu group 5
|
|
[ 1.428131] pci 0000:00:01.1: Adding to iommu group 6
|
|
[ 1.428159] pci 0000:00:02.0: Adding to iommu group 7
|
|
[ 1.428187] pci 0000:00:02.2: Adding to iommu group 8
|
|
[ 1.428215] pci 0000:00:03.0: Adding to iommu group 9
|
|
[ 1.428242] pci 0000:00:05.0: Adding to iommu group 10
|
|
[ 1.428266] pci 0000:00:05.2: Adding to iommu group 11
|
|
[ 1.428290] pci 0000:00:11.0: Adding to iommu group 12
|
|
[ 1.428362] pci 0000:00:16.0: Adding to iommu group 13
|
|
[ 1.428386] pci 0000:00:16.1: Adding to iommu group 13
|
|
[ 1.428409] pci 0000:00:1a.0: Adding to iommu group 14
|
|
[ 1.428440] pci 0000:00:1c.0: Adding to iommu group 15
|
|
[ 1.428464] pci 0000:00:1c.7: Adding to iommu group 16
|
|
[ 1.428490] pci 0000:00:1d.0: Adding to iommu group 17
|
|
[ 1.428513] pci 0000:00:1e.0: Adding to iommu group 18
|
|
[ 1.428568] pci 0000:00:1f.0: Adding to iommu group 19
|
|
[ 1.428592] pci 0000:00:1f.2: Adding to iommu group 19
|
|
[ 1.428657] pci 0000:01:00.0: Adding to iommu group 20
|
|
[ 1.428689] pci 0000:01:00.1: Adding to iommu group 20
|
|
[ 1.428751] pci 0000:02:00.0: Adding to iommu group 21
|
|
[ 1.428784] pci 0000:02:00.1: Adding to iommu group 21
|
|
[ 1.428807] pci 0000:08:00.0: Adding to iommu group 22
|
|
[ 1.428862] pci 0000:09:00.0: Adding to iommu group 23
|
|
[ 1.428912] pci 0000:09:01.0: Adding to iommu group 24
|
|
[ 1.428950] pci 0000:0a:00.0: Adding to iommu group 23
|
|
[ 1.428958] pci 0000:0b:00.0: Adding to iommu group 23
|
|
[ 1.428999] pci 0000:3f:08.0: Adding to iommu group 25
|
|
[ 1.429041] pci 0000:3f:09.0: Adding to iommu group 26
|
|
[ 1.429149] pci 0000:3f:0a.0: Adding to iommu group 27
|
|
[ 1.429177] pci 0000:3f:0a.1: Adding to iommu group 27
|
|
[ 1.429204] pci 0000:3f:0a.2: Adding to iommu group 27
|
|
[ 1.429231] pci 0000:3f:0a.3: Adding to iommu group 27
|
|
[ 1.429289] pci 0000:3f:0b.0: Adding to iommu group 28
|
|
[ 1.429318] pci 0000:3f:0b.3: Adding to iommu group 28
|
|
[ 1.429401] pci 0000:3f:0c.0: Adding to iommu group 29
|
|
[ 1.429428] pci 0000:3f:0c.1: Adding to iommu group 29
|
|
[ 1.429455] pci 0000:3f:0c.2: Adding to iommu group 29
|
|
[ 1.429527] pci 0000:3f:0d.0: Adding to iommu group 30
|
|
[ 1.429555] pci 0000:3f:0d.1: Adding to iommu group 30
|
|
[ 1.429582] pci 0000:3f:0d.2: Adding to iommu group 30
|
|
[ 1.429636] pci 0000:3f:0e.0: Adding to iommu group 31
|
|
[ 1.429664] pci 0000:3f:0e.1: Adding to iommu group 31
|
|
[ 1.429693] pci 0000:3f:0f.0: Adding to iommu group 32
|
|
[ 1.429717] pci 0000:3f:0f.1: Adding to iommu group 33
|
|
[ 1.429748] pci 0000:3f:0f.2: Adding to iommu group 34
|
|
[ 1.429773] pci 0000:3f:0f.3: Adding to iommu group 35
|
|
[ 1.429799] pci 0000:3f:0f.4: Adding to iommu group 36
|
|
[ 1.429823] pci 0000:3f:0f.5: Adding to iommu group 37
|
|
[ 1.429848] pci 0000:3f:10.0: Adding to iommu group 38
|
|
[ 1.429873] pci 0000:3f:10.1: Adding to iommu group 39
|
|
[ 1.429899] pci 0000:3f:10.2: Adding to iommu group 40
|
|
[ 1.429923] pci 0000:3f:10.3: Adding to iommu group 41
|
|
[ 1.429949] pci 0000:3f:10.4: Adding to iommu group 42
|
|
[ 1.429975] pci 0000:3f:10.5: Adding to iommu group 43
|
|
[ 1.429999] pci 0000:3f:10.7: Adding to iommu group 44
|
|
[ 1.430104] pci 0000:3f:13.0: Adding to iommu group 45
|
|
[ 1.430145] pci 0000:3f:13.1: Adding to iommu group 45
|
|
[ 1.430177] pci 0000:3f:13.4: Adding to iommu group 45
|
|
[ 1.430209] pci 0000:3f:13.5: Adding to iommu group 45
|
|
[ 1.430284] pci 0000:3f:16.0: Adding to iommu group 46
|
|
[ 1.430317] pci 0000:3f:16.1: Adding to iommu group 46
|
|
[ 1.430350] pci 0000:3f:16.2: Adding to iommu group 46
|
|
[ 1.430411] pci 0000:7f:08.0: Adding to iommu group 47
|
|
[ 1.430461] pci 0000:7f:09.0: Adding to iommu group 48
|
|
[ 1.430549] pci 0000:7f:0a.0: Adding to iommu group 49
|
|
[ 1.430582] pci 0000:7f:0a.1: Adding to iommu group 49
|
|
[ 1.430615] pci 0000:7f:0a.2: Adding to iommu group 49
|
|
[ 1.430649] pci 0000:7f:0a.3: Adding to iommu group 49
|
|
[ 1.430703] pci 0000:7f:0b.0: Adding to iommu group 50
|
|
[ 1.430741] pci 0000:7f:0b.3: Adding to iommu group 50
|
|
[ 1.430812] pci 0000:7f:0c.0: Adding to iommu group 51
|
|
[ 1.430845] pci 0000:7f:0c.1: Adding to iommu group 51
|
|
[ 1.430878] pci 0000:7f:0c.2: Adding to iommu group 51
|
|
[ 1.430948] pci 0000:7f:0d.0: Adding to iommu group 52
|
|
[ 1.430985] pci 0000:7f:0d.1: Adding to iommu group 52
|
|
[ 1.431019] pci 0000:7f:0d.2: Adding to iommu group 52
|
|
[ 1.431092] pci 0000:7f:0e.0: Adding to iommu group 53
|
|
[ 1.431129] pci 0000:7f:0e.1: Adding to iommu group 53
|
|
[ 1.431153] pci 0000:7f:0f.0: Adding to iommu group 54
|
|
[ 1.431182] pci 0000:7f:0f.1: Adding to iommu group 55
|
|
[ 1.431207] pci 0000:7f:0f.2: Adding to iommu group 56
|
|
[ 1.431232] pci 0000:7f:0f.3: Adding to iommu group 57
|
|
[ 1.431257] pci 0000:7f:0f.4: Adding to iommu group 58
|
|
[ 1.431284] pci 0000:7f:0f.5: Adding to iommu group 59
|
|
[ 1.431309] pci 0000:7f:10.0: Adding to iommu group 60
|
|
[ 1.431334] pci 0000:7f:10.1: Adding to iommu group 61
|
|
[ 1.431379] pci 0000:7f:10.2: Adding to iommu group 62
|
|
[ 1.431405] pci 0000:7f:10.3: Adding to iommu group 63
|
|
[ 1.431442] pci 0000:7f:10.4: Adding to iommu group 64
|
|
[ 1.431466] pci 0000:7f:10.5: Adding to iommu group 65
|
|
[ 1.431493] pci 0000:7f:10.7: Adding to iommu group 66
|
|
[ 1.431582] pci 0000:7f:13.0: Adding to iommu group 67
|
|
[ 1.431619] pci 0000:7f:13.1: Adding to iommu group 67
|
|
[ 1.431657] pci 0000:7f:13.4: Adding to iommu group 67
|
|
[ 1.431695] pci 0000:7f:13.5: Adding to iommu group 67
|
|
[ 1.431767] pci 0000:7f:16.0: Adding to iommu group 68
|
|
[ 1.431807] pci 0000:7f:16.1: Adding to iommu group 68
|
|
[ 1.431846] pci 0000:7f:16.2: Adding to iommu group 68
|
|
[ 1.463849] DMAR: Intel(R) Virtualization Technology for Directed I/O
|
|
[ 1.463857] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
|
|
[ 1.463858] software IO TLB: mapped [mem 0x00000000792f0000-0x000000007d2f0000] (64MB)
|
|
[ 1.493470] Initialise system trusted keyrings
|
|
[ 1.493505] Key type blacklist registered
|
|
[ 1.493770] workingset: timestamp_bits=36 max_order=26 bucket_order=0
|
|
[ 1.494309] squashfs: version 4.0 (2009/01/31) Phillip Lougher
|
|
[ 1.494604] fuse: init (API version 7.44)
|
|
[ 1.494928] integrity: Platform Keyring initialized
|
|
[ 1.494934] integrity: Machine keyring initialized
|
|
[ 1.508078] Key type asymmetric registered
|
|
[ 1.508083] Asymmetric key parser 'x509' registered
|
|
[ 1.508156] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 242)
|
|
[ 1.508289] io scheduler mq-deadline registered
|
|
[ 1.512157] ledtrig-cpu: registered to indicate activity on CPUs
|
|
[ 1.512918] pcieport 0000:00:01.0: PME: Signaling with IRQ 27
|
|
[ 1.513148] pcieport 0000:00:01.0: AER: enabled with IRQ 27
|
|
[ 1.513824] pcieport 0000:00:01.1: PME: Signaling with IRQ 28
|
|
[ 1.514023] pcieport 0000:00:01.1: AER: enabled with IRQ 28
|
|
[ 1.514650] pcieport 0000:00:02.0: PME: Signaling with IRQ 29
|
|
[ 1.514869] pcieport 0000:00:02.0: AER: enabled with IRQ 29
|
|
[ 1.515533] pcieport 0000:00:02.2: PME: Signaling with IRQ 30
|
|
[ 1.515739] pcieport 0000:00:02.2: AER: enabled with IRQ 30
|
|
[ 1.516427] pcieport 0000:00:03.0: PME: Signaling with IRQ 31
|
|
[ 1.516638] pcieport 0000:00:03.0: AER: enabled with IRQ 31
|
|
[ 1.517263] pcieport 0000:00:11.0: PME: Signaling with IRQ 32
|
|
[ 1.517415] pcieport 0000:00:11.0: AER: enabled with IRQ 32
|
|
[ 1.517653] pcieport 0000:00:1c.0: PME: Signaling with IRQ 33
|
|
[ 1.517829] pcieport 0000:00:1c.0: AER: enabled with IRQ 33
|
|
[ 1.518368] pcieport 0000:00:1c.7: PME: Signaling with IRQ 34
|
|
[ 1.518581] pcieport 0000:00:1c.7: AER: enabled with IRQ 34
|
|
[ 1.523718] pcieport 0000:40:01.0: PME: Signaling with IRQ 36
|
|
[ 1.523849] pcieport 0000:40:01.0: AER: enabled with IRQ 36
|
|
[ 1.524275] pcieport 0000:40:03.0: PME: Signaling with IRQ 37
|
|
[ 1.524365] pcieport 0000:40:03.0: AER: enabled with IRQ 37
|
|
[ 1.525166] input: Power Button as /devices/LNXSYSTM:00/LNXPWRBN:00/input/input0
|
|
[ 1.525256] ACPI: button: Power Button [PWRF]
|
|
[ 1.528229] ERST: Error Record Serialization Table (ERST) support is initialized.
|
|
[ 1.528332] pstore: Using crash dump compression: deflate
|
|
[ 1.528344] pstore: Registered erst as persistent store backend
|
|
[ 1.528601] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
|
|
[ 1.549317] 00:02: ttyS0 at I/O 0x3f8 (irq = 4, base_baud = 115200) is a 16550A
|
|
[ 1.570732] 00:03: ttyS1 at I/O 0x2f8 (irq = 3, base_baud = 115200) is a 16550A
|
|
[ 1.574784] Linux agpgart interface v0.103
|
|
[ 1.581850] loop: module loaded
|
|
[ 1.582295] ACPI: bus type drm_connector registered
|
|
[ 1.582656] tun: Universal TUN/TAP device driver, 1.6
|
|
[ 1.582773] PPP generic driver version 2.4.2
|
|
[ 1.582908] i8042: PNP: No PS/2 controller found.
|
|
[ 1.582982] mousedev: PS/2 mouse device common for all mice
|
|
[ 1.583112] rtc_cmos 00:01: RTC can wake from S4
|
|
[ 1.583437] rtc_cmos 00:01: registered as rtc0
|
|
[ 1.583470] rtc_cmos 00:01: setting system clock to 2026-07-26T20:54:52 UTC (1785099292)
|
|
[ 1.583516] rtc_cmos 00:01: alarms up to one day, y3k, 242 bytes nvram
|
|
[ 1.583529] i2c_dev: i2c /dev entries driver
|
|
[ 1.585405] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
|
|
[ 1.585435] device-mapper: uevent: version 1.0.3
|
|
[ 1.585535] device-mapper: ioctl: 4.50.0-ioctl (2025-04-28) initialised: dm-devel@lists.linux.dev
|
|
[ 1.585567] intel_pstate: Intel P-state driver initializing
|
|
[ 1.586750] drop_monitor: Initializing network drop monitor service
|
|
[ 1.586957] NET: Registered PF_INET6 protocol family
|
|
[ 1.587665] Segment Routing with IPv6
|
|
[ 1.587676] In-situ OAM (IOAM) with IPv6
|
|
[ 1.587698] NET: Registered PF_PACKET protocol family
|
|
[ 1.587743] Bridge firewalling registered
|
|
[ 1.587820] Key type dns_resolver registered
|
|
[ 1.590616] microcode: Current revision: 0x0000042e
|
|
[ 1.590619] microcode: Updated early from: 0x00000428
|
|
[ 1.591264] IPI shorthand broadcast: enabled
|
|
[ 1.593427] sched_clock: Marking stable (1582745662, 10313772)->(1658638393, -65578959)
|
|
[ 1.593828] registered taskstats version 1
|
|
[ 1.595327] Loading compiled-in X.509 certificates
|
|
[ 1.596130] Loaded X.509 cert 'Build time autogenerated kernel key: 1972ce5ed58caf3670591749a618c1148b955a05'
|
|
[ 1.601154] Demotion targets for Node 0: null
|
|
[ 1.601157] Demotion targets for Node 1: null
|
|
[ 1.601396] Key type .fscrypt registered
|
|
[ 1.601398] Key type fscrypt-provisioning registered
|
|
[ 1.601520] Key type big_key registered
|
|
[ 2.175811] Freeing initrd memory: 86400K
|
|
[ 2.193364] Key type encrypted registered
|
|
[ 2.193370] AppArmor: AppArmor sha256 policy hashing enabled
|
|
[ 2.193385] ima: No TPM chip found, activating TPM-bypass!
|
|
[ 2.193392] Loading compiled-in module X.509 certificates
|
|
[ 2.194041] Loaded X.509 cert 'Build time autogenerated kernel key: 1972ce5ed58caf3670591749a618c1148b955a05'
|
|
[ 2.194044] ima: Allocated hash algorithm: sha256
|
|
[ 2.194074] ima: No architecture policies found
|
|
[ 2.194100] evm: Initialising EVM extended attributes:
|
|
[ 2.194102] evm: security.selinux
|
|
[ 2.194104] evm: security.SMACK64
|
|
[ 2.194105] evm: security.SMACK64EXEC
|
|
[ 2.194106] evm: security.SMACK64TRANSMUTE
|
|
[ 2.194107] evm: security.SMACK64MMAP
|
|
[ 2.194109] evm: security.apparmor
|
|
[ 2.194110] evm: security.ima
|
|
[ 2.194111] evm: security.capability
|
|
[ 2.194112] evm: HMAC attrs: 0x1
|
|
[ 2.194509] PM: Magic number: 2:973:953
|
|
[ 2.194567] clockevents clockevent38: hash matches
|
|
[ 2.194654] processor cpu8: hash matches
|
|
[ 2.194680] memory memory6: hash matches
|
|
[ 2.196393] RAS: Correctable Errors collector initialized.
|
|
[ 2.202688] clk: Disabling unused clocks
|
|
[ 2.202691] PM: genpd: Disabling unused power domains
|
|
[ 2.204992] Freeing unused decrypted memory: 2028K
|
|
[ 2.207313] Freeing unused kernel image (initmem) memory: 4948K
|
|
[ 2.207470] Write protecting the kernel read-only data: 38912k
|
|
[ 2.208310] Freeing unused kernel image (text/rodata gap) memory: 1140K
|
|
[ 2.209152] Freeing unused kernel image (rodata/data gap) memory: 1444K
|
|
[ 2.261226] x86/mm: Checked W+X mappings: passed, no W+X pages found.
|
|
[ 2.261230] x86/mm: Checking user space page tables
|
|
[ 2.308903] x86/mm: Checked W+X mappings: passed, no W+X pages found.
|
|
[ 2.308914] Run /init as init process
|
|
[ 2.308916] with arguments:
|
|
[ 2.308918] /init
|
|
[ 2.308919] with environment:
|
|
[ 2.308921] HOME=/
|
|
[ 2.308922] TERM=linux
|
|
[ 2.308923] BOOT_IMAGE=/boot/vmlinuz-6.17.2-1-pve
|
|
[ 2.500371] tsc: Refined TSC clocksource calibration: 2599.999 MHz
|
|
[ 2.500390] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x257a3b2ad7e, max_idle_ns: 440795282337 ns
|
|
[ 2.500462] clocksource: Switched to clocksource tsc
|
|
[ 2.576427] ehci-pci 0000:00:1a.0: EHCI Host Controller
|
|
[ 2.576439] ehci-pci 0000:00:1a.0: new USB bus registered, assigned bus number 1
|
|
[ 2.576454] ehci-pci 0000:00:1a.0: debug port 2
|
|
[ 2.580537] ehci-pci 0000:00:1a.0: irq 23, io mem 0xde8fd000
|
|
[ 2.587353] ehci-pci 0000:00:1a.0: USB 2.0 started, EHCI 1.00
|
|
[ 2.587489] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.17
|
|
[ 2.587495] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
|
|
[ 2.587499] usb usb1: Product: EHCI Host Controller
|
|
[ 2.587503] usb usb1: Manufacturer: Linux 6.17.2-1-pve ehci_hcd
|
|
[ 2.587506] usb usb1: SerialNumber: 0000:00:1a.0
|
|
[ 2.587772] hub 1-0:1.0: USB hub found
|
|
[ 2.587808] hub 1-0:1.0: 2 ports detected
|
|
[ 2.588333] ehci-pci 0000:00:1d.0: EHCI Host Controller
|
|
[ 2.588339] ehci-pci 0000:00:1d.0: new USB bus registered, assigned bus number 2
|
|
[ 2.588360] ehci-pci 0000:00:1d.0: debug port 2
|
|
[ 2.592417] ahci 0000:00:1f.2: AHCI vers 0001.0300, 32 command slots, 3 Gbps, SATA mode
|
|
[ 2.592422] ahci 0000:00:1f.2: 6/6 ports implemented (port mask 0x3f)
|
|
[ 2.592424] ahci 0000:00:1f.2: flags: 64bit ncq sntf pm led clo pio slum part ems apst
|
|
[ 2.592557] tg3 0000:01:00.0 eth0: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address f8:bc:12:34:e0:74
|
|
[ 2.592565] tg3 0000:01:00.0 eth0: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
|
|
[ 2.592570] tg3 0000:01:00.0 eth0: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
|
|
[ 2.592574] tg3 0000:01:00.0 eth0: dma_rwctrl[00000001] dma_mask[64-bit]
|
|
[ 2.592651] ehci-pci 0000:00:1d.0: irq 22, io mem 0xde8fe000
|
|
[ 2.599409] ehci-pci 0000:00:1d.0: USB 2.0 started, EHCI 1.00
|
|
[ 2.599484] usb usb2: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 6.17
|
|
[ 2.599488] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
|
|
[ 2.599491] usb usb2: Product: EHCI Host Controller
|
|
[ 2.599492] usb usb2: Manufacturer: Linux 6.17.2-1-pve ehci_hcd
|
|
[ 2.599494] usb usb2: SerialNumber: 0000:00:1d.0
|
|
[ 2.599658] hub 2-0:1.0: USB hub found
|
|
[ 2.599687] hub 2-0:1.0: 2 ports detected
|
|
[ 2.602276] tg3 0000:01:00.1 eth1: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address f8:bc:12:34:e0:75
|
|
[ 2.602281] tg3 0000:01:00.1 eth1: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
|
|
[ 2.602283] tg3 0000:01:00.1 eth1: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
|
|
[ 2.602286] tg3 0000:01:00.1 eth1: dma_rwctrl[00000001] dma_mask[64-bit]
|
|
[ 2.606012] scsi host0: ahci
|
|
[ 2.606247] scsi host1: ahci
|
|
[ 2.606483] scsi host2: ahci
|
|
[ 2.606729] scsi host3: ahci
|
|
[ 2.606913] scsi host4: ahci
|
|
[ 2.607125] scsi host5: ahci
|
|
[ 2.607201] ata1: SATA max UDMA/133 abar m2048@0xde8ff000 port 0xde8ff100 irq 39 lpm-pol 1 ext
|
|
[ 2.607207] ata2: SATA max UDMA/133 abar m2048@0xde8ff000 port 0xde8ff180 irq 39 lpm-pol 1 ext
|
|
[ 2.607210] ata3: SATA max UDMA/133 abar m2048@0xde8ff000 port 0xde8ff200 irq 39 lpm-pol 1 ext
|
|
[ 2.607212] ata4: SATA max UDMA/133 abar m2048@0xde8ff000 port 0xde8ff280 irq 39 lpm-pol 1 ext
|
|
[ 2.607214] ata5: SATA max UDMA/133 abar m2048@0xde8ff000 port 0xde8ff300 irq 39 lpm-pol 4
|
|
[ 2.607216] ata6: SATA max UDMA/133 abar m2048@0xde8ff000 port 0xde8ff380 irq 39 lpm-pol 4
|
|
[ 2.613519] tg3 0000:02:00.0 eth2: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address f8:bc:12:34:e0:76
|
|
[ 2.613524] tg3 0000:02:00.0 eth2: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
|
|
[ 2.613526] tg3 0000:02:00.0 eth2: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
|
|
[ 2.613529] tg3 0000:02:00.0 eth2: dma_rwctrl[00000001] dma_mask[64-bit]
|
|
[ 2.624910] tg3 0000:02:00.1 eth3: Tigon3 [partno(BCM95720) rev 5720000] (PCI Express) MAC address f8:bc:12:34:e0:77
|
|
[ 2.624915] tg3 0000:02:00.1 eth3: attached PHY is 5720C (10/100/1000Base-T Ethernet) (WireSpeed[1], EEE[1])
|
|
[ 2.624918] tg3 0000:02:00.1 eth3: RXcsums[1] LinkChgREG[0] MIirq[0] ASF[1] TSOcap[1]
|
|
[ 2.624920] tg3 0000:02:00.1 eth3: dma_rwctrl[00000001] dma_mask[64-bit]
|
|
[ 2.828373] usb 1-1: new high-speed USB device number 2 using ehci-pci
|
|
[ 2.836411] usb 2-1: new high-speed USB device number 2 using ehci-pci
|
|
[ 2.914186] ata1: SATA link down (SStatus 0 SControl 300)
|
|
[ 2.914207] ata2: SATA link down (SStatus 0 SControl 300)
|
|
[ 2.914260] ata5: SATA link up 1.5 Gbps (SStatus 113 SControl 300)
|
|
[ 2.914287] ata3: SATA link down (SStatus 0 SControl 300)
|
|
[ 2.914341] ata4: SATA link down (SStatus 0 SControl 300)
|
|
[ 2.914360] ata6: SATA link down (SStatus 0 SControl 300)
|
|
[ 2.918330] ata5.00: ATAPI: TSSTcorp DVD-ROM SU-108CB, D250, max UDMA/100
|
|
[ 2.923225] ata5.00: configured for UDMA/100
|
|
[ 2.942665] scsi 4:0:0:0: CD-ROM TSSTcorp DVD-ROM SU-108CB D250 PQ: 0 ANSI: 5
|
|
[ 2.955711] usb 1-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00
|
|
[ 2.955716] usb 1-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
|
|
[ 2.956005] hub 1-1:1.0: USB hub found
|
|
[ 2.956092] hub 1-1:1.0: 6 ports detected
|
|
[ 2.963834] usb 2-1: New USB device found, idVendor=8087, idProduct=0024, bcdDevice= 0.00
|
|
[ 2.963839] usb 2-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
|
|
[ 2.964115] hub 2-1:1.0: USB hub found
|
|
[ 2.964214] hub 2-1:1.0: 8 ports detected
|
|
[ 3.012161] sr 4:0:0:0: [sr0] scsi3-mmc drive: 24x/24x cd/rw xa/form2 cdda tray
|
|
[ 3.012167] cdrom: Uniform CD-ROM driver Revision: 3.20
|
|
[ 3.048492] sr 4:0:0:0: Attached scsi CD-ROM sr0
|
|
[ 3.048604] sr 4:0:0:0: Attached scsi generic sg0 type 5
|
|
[ 3.051107] tg3 0000:01:00.0 eno1: renamed from eth0
|
|
[ 3.051280] tg3 0000:01:00.1 eno2: renamed from eth1
|
|
[ 3.052202] tg3 0000:02:00.0 eno3: renamed from eth2
|
|
[ 3.052760] tg3 0000:02:00.1 eno4: renamed from eth3
|
|
[ 3.237369] usb 1-1.3: new high-speed USB device number 3 using ehci-pci
|
|
[ 3.325208] usb 1-1.3: New USB device found, idVendor=413c, idProduct=a101, bcdDevice= 1.10
|
|
[ 3.325213] usb 1-1.3: New USB device strings: Mfr=1, Product=2, SerialNumber=3
|
|
[ 3.325215] usb 1-1.3: Product: Internal Dual SD
|
|
[ 3.325217] usb 1-1.3: Manufacturer: Dell Computer Corp.
|
|
[ 3.325219] usb 1-1.3: SerialNumber: 0123456789AB
|
|
[ 3.330479] usb-storage 1-1.3:1.0: USB Mass Storage device detected
|
|
[ 3.330702] scsi host6: usb-storage 1-1.3:1.0
|
|
[ 3.330856] usbcore: registered new interface driver usb-storage
|
|
[ 3.332916] usbcore: registered new interface driver uas
|
|
[ 3.398384] usb 1-1.4: new low-speed USB device number 4 using ehci-pci
|
|
[ 3.478317] raid6: sse2x4 gen() 13374 MB/s
|
|
[ 3.480169] usb 1-1.4: New USB device found, idVendor=10d5, idProduct=5a08, bcdDevice= 0.00
|
|
[ 3.480175] usb 1-1.4: New USB device strings: Mfr=1, Product=2, SerialNumber=0
|
|
[ 3.480177] usb 1-1.4: Product: KVM
|
|
[ 3.480179] usb 1-1.4: Manufacturer: No brand
|
|
[ 3.487775] hid: raw HID events driver (C) Jiri Kosina
|
|
[ 3.495319] raid6: sse2x2 gen() 9437 MB/s
|
|
[ 3.497953] usbcore: registered new interface driver usbhid
|
|
[ 3.497957] usbhid: USB HID core driver
|
|
[ 3.500016] usbcore: registered new interface driver usbkbd
|
|
[ 3.500227] usbcore: registered new interface driver usbmouse
|
|
[ 3.503576] input: No brand KVM as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.0/0003:10D5:5A08.0001/input/input1
|
|
[ 3.512319] raid6: sse2x1 gen() 9826 MB/s
|
|
[ 3.512322] raid6: using algorithm sse2x4 gen() 13374 MB/s
|
|
[ 3.529317] raid6: .... xor() 7776 MB/s, rmw enabled
|
|
[ 3.529319] raid6: using ssse3x2 recovery algorithm
|
|
[ 3.531049] xor: automatically using best checksumming function avx
|
|
[ 3.554526] hid-generic 0003:10D5:5A08.0001: input,hidraw0: USB HID v1.10 Keyboard [No brand KVM] on usb-0000:00:1a.0-1.4/input0
|
|
[ 3.554747] input: No brand KVM Mouse as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.1/0003:10D5:5A08.0002/input/input2
|
|
[ 3.554942] input: No brand KVM System Control as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.1/0003:10D5:5A08.0002/input/input3
|
|
[ 3.556364] usb 1-1.5: new high-speed USB device number 5 using ehci-pci
|
|
[ 3.605492] input: No brand KVM Consumer Control as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.4/1-1.4:1.1/0003:10D5:5A08.0002/input/input4
|
|
[ 3.605570] hid-generic 0003:10D5:5A08.0002: input,hidraw1: USB HID v1.10 Mouse [No brand KVM] on usb-0000:00:1a.0-1.4/input1
|
|
[ 3.635460] usb 1-1.5: New USB device found, idVendor=1058, idProduct=2657, bcdDevice=10.34
|
|
[ 3.635467] usb 1-1.5: New USB device strings: Mfr=1, Product=2, SerialNumber=3
|
|
[ 3.635471] usb 1-1.5: Product: Drive 2657
|
|
[ 3.635474] usb 1-1.5: Manufacturer: Western Digital
|
|
[ 3.635477] usb 1-1.5: SerialNumber: 575853324142323254384844
|
|
[ 3.635753] usb-storage 1-1.5:1.0: USB Mass Storage device detected
|
|
[ 3.636069] scsi host7: usb-storage 1-1.5:1.0
|
|
[ 3.651357] Btrfs loaded, zoned=yes, fsverity=yes
|
|
[ 3.710364] usb 1-1.6: new high-speed USB device number 6 using ehci-pci
|
|
[ 3.797457] usb 1-1.6: New USB device found, idVendor=413c, idProduct=a001, bcdDevice= 0.00
|
|
[ 3.797462] usb 1-1.6: New USB device strings: Mfr=1, Product=2, SerialNumber=3
|
|
[ 3.797465] usb 1-1.6: Product: Gadget USB HUB
|
|
[ 3.797467] usb 1-1.6: Manufacturer: no manufacturer
|
|
[ 3.797468] usb 1-1.6: SerialNumber: 0123456789
|
|
[ 3.797758] hub 1-1.6:1.0: USB hub found
|
|
[ 3.797956] hub 1-1.6:1.0: 6 ports detected
|
|
[ 4.220371] usb 1-1.6.1: new high-speed USB device number 7 using ehci-pci
|
|
[ 4.321461] usb 1-1.6.1: New USB device found, idVendor=0624, idProduct=0249, bcdDevice= 0.00
|
|
[ 4.321466] usb 1-1.6.1: New USB device strings: Mfr=4, Product=5, SerialNumber=6
|
|
[ 4.321468] usb 1-1.6.1: Product: Keyboard/Mouse Function
|
|
[ 4.321470] usb 1-1.6.1: Manufacturer: Avocent
|
|
[ 4.321471] usb 1-1.6.1: SerialNumber: 20121018
|
|
[ 4.322623] input: Avocent Keyboard/Mouse Function as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6/1-1.6.1/1-1.6.1:1.0/0003:0624:0249.0003/input/input5
|
|
[ 4.357143] scsi 6:0:0:0: Direct-Access Dell Internal Dual SD 1.: PQ: 0 ANSI: 5
|
|
[ 4.357423] sd 6:0:0:0: Attached scsi generic sg1 type 0
|
|
[ 4.358985] sd 6:0:0:0: [sda] 3807232 512-byte logical blocks: (1.95 GB/1.82 GiB)
|
|
[ 4.359962] sd 6:0:0:0: [sda] Write Protect is off
|
|
[ 4.359966] sd 6:0:0:0: [sda] Mode Sense: 0b 00 00 08
|
|
[ 4.360967] sd 6:0:0:0: [sda] No Caching mode page found
|
|
[ 4.360972] sd 6:0:0:0: [sda] Assuming drive cache: write through
|
|
[ 4.373506] hid-generic 0003:0624:0249.0003: input,hidraw2: USB HID v1.00 Keyboard [Avocent Keyboard/Mouse Function] on usb-0000:00:1a.0-1.6.1/input0
|
|
[ 4.374309] input: Avocent Keyboard/Mouse Function as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6/1-1.6.1/1-1.6.1:1.1/0003:0624:0249.0004/input/input6
|
|
[ 4.374495] hid-generic 0003:0624:0249.0004: input,hidraw3: USB HID v1.00 Mouse [Avocent Keyboard/Mouse Function] on usb-0000:00:1a.0-1.6.1/input1
|
|
[ 4.375243] input: Avocent Keyboard/Mouse Function as /devices/pci0000:00/0000:00:1a.0/usb1/1-1/1-1.6/1-1.6.1/1-1.6.1:1.2/0003:0624:0249.0005/input/input7
|
|
[ 4.375390] hid-generic 0003:0624:0249.0005: input,hidraw4: USB HID v1.00 Mouse [Avocent Keyboard/Mouse Function] on usb-0000:00:1a.0-1.6.1/input2
|
|
[ 4.398742] sd 6:0:0:0: [sda] Attached SCSI disk
|
|
[ 4.677410] scsi 7:0:0:0: Direct-Access WD Drive 2657 1034 PQ: 0 ANSI: 6
|
|
[ 4.677662] sd 7:0:0:0: Attached scsi generic sg2 type 0
|
|
[ 7.009502] sd 7:0:0:0: [sdb] 3906963456 512-byte logical blocks: (2.00 TB/1.82 TiB)
|
|
[ 7.010499] sd 7:0:0:0: [sdb] Write Protect is off
|
|
[ 7.010504] sd 7:0:0:0: [sdb] Mode Sense: 47 00 10 08
|
|
[ 7.011495] sd 7:0:0:0: [sdb] No Caching mode page found
|
|
[ 7.011499] sd 7:0:0:0: [sdb] Assuming drive cache: write through
|
|
[ 7.078899] sdb: sdb1 sdb2 sdb3
|
|
[ 7.079062] sd 7:0:0:0: [sdb] Attached SCSI disk
|
|
[ 8.914423] device-mapper: thin: Data device (dm-3) discard unsupported: Disabling discard passdown.
|
|
[ 9.308263] EXT4-fs (dm-1): orphan cleanup on readonly fs
|
|
[ 9.308711] EXT4-fs (dm-1): mounted filesystem f84f4c3f-0766-4721-9855-055bfc03759e ro with ordered data mode. Quota mode: none.
|
|
[ 11.430139] systemd[1]: Inserted module 'autofs4'
|
|
[ 11.604245] ERST: NVRAM ERST Log Address Range not implemented yet.
|
|
[ 11.747024] 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)
|
|
[ 11.747034] systemd[1]: Detected architecture x86-64.
|
|
[ 11.789609] systemd[1]: Hostname set to <pfv-tsys7>.
|
|
[ 11.939505] systemd[1]: bpf-restrict-fs: BPF LSM hook not enabled in the kernel, BPF LSM not supported.
|
|
[ 14.152435] systemd[1]: Queued start job for default target graphical.target.
|
|
[ 14.237223] systemd[1]: Created slice system-getty.slice - Slice /system/getty.
|
|
[ 14.238050] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
|
|
[ 14.239019] systemd[1]: Created slice system-xfs_scrub.slice - xfs_scrub background service slice.
|
|
[ 14.239977] systemd[1]: Created slice user.slice - User and Session Slice.
|
|
[ 14.240069] systemd[1]: Started systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch.
|
|
[ 14.240134] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
|
|
[ 14.240403] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
|
|
[ 14.240436] systemd[1]: Expecting device dev-pve-swap.device - /dev/pve/swap...
|
|
[ 14.240463] systemd[1]: Reached target ceph-fuse.target - ceph target allowing to start/stop all ceph-fuse@.service instances at once.
|
|
[ 14.240482] systemd[1]: Reached target ceph.target - ceph target allowing to start/stop all ceph*@.service instances at once.
|
|
[ 14.240518] systemd[1]: Reached target network-pre.target - Preparation for Network.
|
|
[ 14.240541] systemd[1]: Reached target paths.target - Path Units.
|
|
[ 14.240603] systemd[1]: Reached target slices.target - Slice Units.
|
|
[ 14.241279] systemd[1]: Listening on dm-event.socket - Device-mapper event daemon FIFOs.
|
|
[ 14.241402] systemd[1]: Listening on lvm2-lvmpolld.socket - LVM2 poll daemon socket.
|
|
[ 14.246951] systemd[1]: Listening on rpcbind.socket - RPCbind Server Activation Socket.
|
|
[ 14.248416] systemd[1]: Listening on systemd-creds.socket - Credential Encryption/Decryption.
|
|
[ 14.248542] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
|
|
[ 14.248716] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
|
|
[ 14.248842] systemd[1]: Listening on systemd-journald.socket - Journal Sockets.
|
|
[ 14.248885] systemd[1]: systemd-pcrextend.socket - TPM PCR Measurements skipped, unmet condition check ConditionSecurity=measured-uki
|
|
[ 14.248906] systemd[1]: systemd-pcrlock.socket - Make TPM PCR Policy skipped, unmet condition check ConditionSecurity=measured-uki
|
|
[ 14.249008] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
|
|
[ 14.249094] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
|
|
[ 14.264600] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
|
|
[ 14.265839] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
|
|
[ 14.265908] systemd[1]: run-lock.mount: Directory /run/lock to mount over is not empty, mounting anyway.
|
|
[ 14.267285] systemd[1]: Mounting run-lock.mount - Legacy Locks Directory /run/lock...
|
|
[ 14.268562] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
|
|
[ 14.269724] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
|
|
[ 14.269780] systemd[1]: auth-rpcgss-module.service - Kernel Module supporting RPCSEC_GSS skipped, unmet condition check ConditionPathExists=/etc/krb5.keytab
|
|
[ 14.297344] systemd[1]: Starting keyboard-setup.service - Set the console keyboard layout...
|
|
[ 14.315666] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
|
|
[ 14.317237] systemd[1]: Starting lvm2-monitor.service - Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
|
|
[ 14.318482] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
|
|
[ 14.319636] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...
|
|
[ 14.320740] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
|
|
[ 14.321827] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
|
|
[ 14.322079] systemd[1]: systemd-fsck-root.service - File System Check on Root Device skipped, unmet condition check ConditionPathExists=!/run/initramfs/fsck-root
|
|
[ 14.322119] 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
|
|
[ 14.324662] systemd[1]: Starting systemd-journald.service - Journal Service...
|
|
[ 14.451488] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
|
|
[ 14.451516] systemd[1]: systemd-pcrmachine.service - TPM PCR Machine ID Measurement skipped, unmet condition check ConditionSecurity=measured-uki
|
|
[ 14.452971] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
|
|
[ 14.453055] systemd[1]: systemd-tpm2-setup-early.service - Early TPM SRK Setup skipped, unmet condition check ConditionSecurity=measured-uki
|
|
[ 14.454560] systemd[1]: Starting systemd-udev-load-credentials.service - Load udev Rules from Credentials...
|
|
[ 14.455993] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
|
|
[ 14.470549] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
|
|
[ 14.471007] systemd[1]: modprobe@configfs.service: Deactivated successfully.
|
|
[ 14.471275] systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs.
|
|
[ 14.471717] systemd[1]: modprobe@drm.service: Deactivated successfully.
|
|
[ 14.471974] systemd[1]: Finished modprobe@drm.service - Load Kernel Module drm.
|
|
[ 14.472729] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
|
|
[ 14.472948] systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore.
|
|
[ 14.473303] systemd[1]: modprobe@fuse.service: Deactivated successfully.
|
|
[ 14.473535] systemd[1]: Finished modprobe@fuse.service - Load Kernel Module fuse.
|
|
[ 14.475116] systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System...
|
|
[ 14.476286] systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System...
|
|
[ 14.477539] systemd[1]: Starting systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully...
|
|
[ 14.911380] systemd-journald[539]: Collecting audit messages is disabled.
|
|
[ 14.993413] systemd[1]: Finished systemd-udev-load-credentials.service - Load udev Rules from Credentials.
|
|
[ 15.151952] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
|
|
[ 15.152530] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
|
|
[ 15.152680] systemd[1]: Mounted run-lock.mount - Legacy Locks Directory /run/lock.
|
|
[ 15.152800] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
|
|
[ 15.152916] systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
|
|
[ 15.153265] systemd[1]: Finished keyboard-setup.service - Set the console keyboard layout.
|
|
[ 15.153441] systemd[1]: Mounted sys-fs-fuse-connections.mount - FUSE Control File System.
|
|
[ 15.153566] systemd[1]: Mounted sys-kernel-config.mount - Kernel Configuration File System.
|
|
[ 15.187554] systemd[1]: Finished systemd-udev-trigger.service - Coldplug All udev Devices.
|
|
[ 15.200764] EXT4-fs (dm-1): re-mounted f84f4c3f-0766-4721-9855-055bfc03759e r/w.
|
|
[ 15.262387] systemd[1]: Starting ifupdown2-pre.service - Helper to synchronize boot up for ifupdown...
|
|
[ 15.263650] systemd[1]: Starting systemd-udev-settle.service - Wait for udev To Complete Device Initialization...
|
|
[ 15.264056] systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems.
|
|
[ 15.281363] systemd[1]: systemd-hwdb-update.service - Rebuild Hardware Database skipped, unmet condition check ConditionNeedsUpdate=/etc
|
|
[ 15.281425] systemd[1]: systemd-pstore.service - Platform Persistent Storage Archival skipped, unmet condition check ConditionDirectoryNotEmpty=/sys/fs/pstore
|
|
[ 15.282737] systemd[1]: Starting systemd-random-seed.service - Load/Save OS Random Seed...
|
|
[ 15.282762] systemd[1]: systemd-tpm2-setup.service - TPM SRK Setup skipped, unmet condition check ConditionSecurity=measured-uki
|
|
[ 15.429767] systemd[1]: Started systemd-journald.service - Journal Service.
|
|
[ 15.505572] systemd-journald[539]: Received client request to flush runtime journal.
|
|
[ 16.214449] spl: loading out-of-tree module taints kernel.
|
|
[ 17.935947] zfs: module license 'CDDL' taints kernel.
|
|
[ 17.935957] Disabling lock debugging due to kernel taint
|
|
[ 17.935984] zfs: module license taints kernel.
|
|
[ 18.782360] ZFS: Loaded module v2.3.4-pve1, ZFS pool version 5000, ZFS filesystem version 5
|
|
[ 20.559435] IPMI message handler: version 39.2
|
|
[ 20.868580] ipmi device interface
|
|
[ 21.131795] tg3 0000:02:00.1 nic3: renamed from eno4
|
|
[ 21.132087] tg3 0000:01:00.1 nic1: renamed from eno2
|
|
[ 21.132247] tg3 0000:01:00.0 nic0: renamed from eno1
|
|
[ 21.132416] tg3 0000:02:00.0 nic2: renamed from eno3
|
|
[ 21.239143] ipmi_si: IPMI System Interface driver
|
|
[ 21.239167] ipmi_si dmi-ipmi-si.0: ipmi_platform: probing via SMBIOS
|
|
[ 21.239170] ipmi_platform: ipmi_si: SMBIOS: io 0xca8 regsize 1 spacing 4 irq 10
|
|
[ 21.239173] ipmi_si: Adding SMBIOS-specified kcs state machine
|
|
[ 21.239241] ipmi_si: Trying SMBIOS-specified kcs state machine at i/o address 0xca8, slave address 0x20, irq 10
|
|
[ 21.336369] ipmi_si dmi-ipmi-si.0: The BMC does not support setting the recv irq bit, compensating, but the BMC needs to be fixed.
|
|
[ 21.354423] ipmi_si dmi-ipmi-si.0: Using irq 10
|
|
[ 21.371240] ipmi_si dmi-ipmi-si.0: IPMI message handler: Found new BMC (man_id: 0x0002a2, prod_id: 0x0100, dev_id: 0x20)
|
|
[ 21.390883] ipmi_si dmi-ipmi-si.0: IPMI kcs interface initialized
|
|
[ 21.395181] RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 163840 ms ovfl timer
|
|
[ 21.395185] RAPL PMU: hw unit of domain pp0-core 2^-16 Joules
|
|
[ 21.395186] RAPL PMU: hw unit of domain package 2^-16 Joules
|
|
[ 21.395188] RAPL PMU: hw unit of domain dram 2^-16 Joules
|
|
[ 21.473066] ipmi_ssif: IPMI SSIF Interface driver
|
|
[ 21.541449] input: PC Speaker as /devices/platform/pcspkr/input/input8
|
|
[ 21.693096] mei_me 0000:00:16.0: Device doesn't have valid ME Interface
|
|
[ 21.986573] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.4)
|
|
[ 22.218777] mgag200 0000:0b:00.0: vgaarb: deactivate vga console
|
|
[ 22.220766] Console: switching to colour dummy device 80x25
|
|
[ 22.232833] mgag200 0000:0b:00.0: [drm] Registered 1 planes with drm panic
|
|
[ 22.232836] [drm] Initialized mgag200 1.0.0 for 0000:0b:00.0 on minor 0
|
|
[ 22.237415] fbcon: mgag200drmfb (fb0) is primary device
|
|
[ 22.291131] Console: switching to colour frame buffer device 128x48
|
|
[ 22.326637] mgag200 0000:0b:00.0: [drm] fb0: mgag200drmfb frame buffer device
|
|
[ 23.015957] Adding 8388604k swap on /dev/mapper/pve-swap. Priority:-2 extents:1 across:8388604k
|
|
[ 23.462366] EDAC sbridge: Seeking for: PCI ID 8086:0ea0
|
|
[ 23.462396] EDAC sbridge: Seeking for: PCI ID 8086:0ea0
|
|
[ 23.462406] EDAC sbridge: Seeking for: PCI ID 8086:0ea0
|
|
[ 23.462412] EDAC sbridge: Seeking for: PCI ID 8086:0e60
|
|
[ 23.462418] EDAC sbridge: Seeking for: PCI ID 8086:0ea8
|
|
[ 23.462422] EDAC sbridge: Seeking for: PCI ID 8086:0ea8
|
|
[ 23.462427] EDAC sbridge: Seeking for: PCI ID 8086:0ea8
|
|
[ 23.462429] EDAC sbridge: Seeking for: PCI ID 8086:0e71
|
|
[ 23.462434] EDAC sbridge: Seeking for: PCI ID 8086:0e71
|
|
[ 23.462438] EDAC sbridge: Seeking for: PCI ID 8086:0e71
|
|
[ 23.462440] EDAC sbridge: Seeking for: PCI ID 8086:0eaa
|
|
[ 23.462451] EDAC sbridge: Seeking for: PCI ID 8086:0eaa
|
|
[ 23.462455] EDAC sbridge: Seeking for: PCI ID 8086:0eaa
|
|
[ 23.462458] EDAC sbridge: Seeking for: PCI ID 8086:0eab
|
|
[ 23.462462] EDAC sbridge: Seeking for: PCI ID 8086:0eab
|
|
[ 23.462467] EDAC sbridge: Seeking for: PCI ID 8086:0eab
|
|
[ 23.462470] EDAC sbridge: Seeking for: PCI ID 8086:0eac
|
|
[ 23.462474] EDAC sbridge: Seeking for: PCI ID 8086:0eac
|
|
[ 23.462479] EDAC sbridge: Seeking for: PCI ID 8086:0eac
|
|
[ 23.462482] EDAC sbridge: Seeking for: PCI ID 8086:0ead
|
|
[ 23.462486] EDAC sbridge: Seeking for: PCI ID 8086:0ead
|
|
[ 23.462492] EDAC sbridge: Seeking for: PCI ID 8086:0ead
|
|
[ 23.462494] EDAC sbridge: Seeking for: PCI ID 8086:0e68
|
|
[ 23.462500] EDAC sbridge: Seeking for: PCI ID 8086:0e79
|
|
[ 23.462506] EDAC sbridge: Seeking for: PCI ID 8086:0e6a
|
|
[ 23.462511] EDAC sbridge: Seeking for: PCI ID 8086:0e6b
|
|
[ 23.462517] EDAC sbridge: Seeking for: PCI ID 8086:0e6c
|
|
[ 23.462522] EDAC sbridge: Seeking for: PCI ID 8086:0e6d
|
|
[ 23.462528] EDAC sbridge: Seeking for: PCI ID 8086:0eb8
|
|
[ 23.462534] EDAC sbridge: Seeking for: PCI ID 8086:0ebc
|
|
[ 23.462539] EDAC sbridge: Seeking for: PCI ID 8086:0ec8
|
|
[ 23.462544] EDAC sbridge: Seeking for: PCI ID 8086:0ec8
|
|
[ 23.462549] EDAC sbridge: Seeking for: PCI ID 8086:0ec8
|
|
[ 23.462551] EDAC sbridge: Seeking for: PCI ID 8086:0ec9
|
|
[ 23.462556] EDAC sbridge: Seeking for: PCI ID 8086:0ec9
|
|
[ 23.462561] EDAC sbridge: Seeking for: PCI ID 8086:0ec9
|
|
[ 23.462563] EDAC sbridge: Seeking for: PCI ID 8086:0eca
|
|
[ 23.462569] EDAC sbridge: Seeking for: PCI ID 8086:0eca
|
|
[ 23.462573] EDAC sbridge: Seeking for: PCI ID 8086:0eca
|
|
[ 23.462699] EDAC MC0: Giving out device to module sb_edac controller Ivy Bridge SrcID#0_Ha#0: DEV 0000:3f:0e.0 (INTERRUPT)
|
|
[ 23.462817] EDAC MC1: Giving out device to module sb_edac controller Ivy Bridge SrcID#1_Ha#0: DEV 0000:7f:0e.0 (INTERRUPT)
|
|
[ 23.462819] EDAC sbridge: Ver: 1.1.2
|
|
[ 23.562537] intel_rapl_common: Found RAPL domain package
|
|
[ 23.562542] intel_rapl_common: Found RAPL domain core
|
|
[ 23.562546] intel_rapl_common: Found RAPL domain dram
|
|
[ 23.562747] intel_rapl_common: Found RAPL domain package
|
|
[ 23.562752] intel_rapl_common: Found RAPL domain core
|
|
[ 23.562755] intel_rapl_common: Found RAPL domain dram
|
|
[ 23.684421] power_meter ACPI000D:00: Waiting for ACPI IPMI timeout
|
|
[ 23.684631] ACPI Error: AE_NOT_EXIST, Returned by Handler for [IPMI] (20250404/evregion-301)
|
|
[ 23.684646] ACPI Error: Region IPMI (ID=7) has no handler (20250404/exfldio-261)
|
|
|
|
[ 23.684654] No Local Variables are initialized for Method [_GHL]
|
|
|
|
[ 23.684657] No Arguments are initialized for method [_GHL]
|
|
|
|
[ 23.684660] ACPI Error: Aborting method \_SB.PMI0._GHL due to previous error (AE_NOT_EXIST) (20250404/psparse-529)
|
|
[ 23.684671] ACPI Error: Aborting method \_SB.PMI0._PMC due to previous error (AE_NOT_EXIST) (20250404/psparse-529)
|
|
[ 23.684680] ACPI: \_SB_.PMI0: _PMC evaluation failed: AE_NOT_EXIST
|
|
[ 26.153282] audit: type=1400 audit(1785099317.068:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="cam" pid=845 comm="apparmor_parser"
|
|
[ 26.153327] audit: type=1400 audit(1785099317.068:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name="1password" pid=836 comm="apparmor_parser"
|
|
[ 26.153396] audit: type=1400 audit(1785099317.068:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="flatpak" pid=857 comm="apparmor_parser"
|
|
[ 26.153468] audit: type=1400 audit(1785099317.068:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="evolution" pid=855 comm="apparmor_parser"
|
|
[ 26.153536] audit: type=1400 audit(1785099317.068:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="QtWebEngineProcess" pid=839 comm="apparmor_parser"
|
|
[ 26.153590] audit: type=1400 audit(1785099317.068:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="epiphany" pid=854 comm="apparmor_parser"
|
|
[ 26.153655] audit: type=1400 audit(1785099317.068:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="foliate" pid=858 comm="apparmor_parser"
|
|
[ 26.153716] audit: type=1400 audit(1785099317.068:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="brave" pid=842 comm="apparmor_parser"
|
|
[ 26.153772] audit: type=1400 audit(1785099317.068:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="vscode" pid=850 comm="apparmor_parser"
|
|
[ 26.153827] audit: type=1400 audit(1785099317.068:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="busybox" pid=844 comm="apparmor_parser"
|
|
[ 31.072837] RPC: Registered named UNIX socket transport module.
|
|
[ 31.072844] RPC: Registered udp transport module.
|
|
[ 31.072845] RPC: Registered tcp transport module.
|
|
[ 31.072847] RPC: Registered tcp-with-tls transport module.
|
|
[ 31.072848] RPC: Registered tcp NFSv4.1 backchannel transport module.
|
|
[ 31.495380] softdog: initialized. soft_noboot=0 soft_margin=60 sec soft_panic=0 (nowayout=0)
|
|
[ 31.495387] softdog: soft_reboot_cmd=<not set> soft_active_on_boot=0
|
|
[ 42.236009] vmbr0: port 1(nic0) entered blocking state
|
|
[ 42.236017] vmbr0: port 1(nic0) entered disabled state
|
|
[ 42.236043] tg3 0000:01:00.0 nic0: entered allmulticast mode
|
|
[ 42.236113] tg3 0000:01:00.0 nic0: entered promiscuous mode
|
|
[ 43.745987] tg3 0000:02:00.1 nic3: Link is up at 100 Mbps, full duplex
|
|
[ 43.746009] tg3 0000:02:00.1 nic3: Flow control is on for TX and on for RX
|
|
[ 43.746013] tg3 0000:02:00.1 nic3: EEE is disabled
|
|
[ 45.931956] tg3 0000:01:00.0 nic0: Link is up at 1000 Mbps, full duplex
|
|
[ 45.931980] tg3 0000:01:00.0 nic0: Flow control is off for TX and off for RX
|
|
[ 45.931983] tg3 0000:01:00.0 nic0: EEE is disabled
|
|
[ 45.932000] vmbr0: port 1(nic0) entered blocking state
|
|
[ 45.932007] vmbr0: port 1(nic0) entered forwarding state
|
|
[ 47.458116] kauditd_printk_skb: 109 callbacks suppressed
|
|
[ 47.458120] audit: type=1400 audit(1785099338.374:121): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1195 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 47.479634] audit: type=1400 audit(1785099338.395:122): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1196 comm="dhclient" family="unix" sock_type="stream" protocol=0 requested="create" denied="create" addr=none
|
|
[ 47.479660] audit: type=1400 audit(1785099338.395:123): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1196 comm="dhclient" family="unix" sock_type="stream" protocol=0 requested="create" denied="create" addr=none
|
|
[ 47.595196] audit: type=1400 audit(1785099338.511:124): apparmor="DENIED" operation="capable" class="cap" profile="/{,usr/}sbin/dhclient" pid=1196 comm="dhclient" capability=21 capname="sys_admin"
|
|
[ 47.595348] audit: type=1400 audit(1785099338.511:125): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1196 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 47.598175] audit: type=1400 audit(1785099338.514:126): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1196 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 47.598190] audit: type=1400 audit(1785099338.514:127): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1196 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 47.600373] audit: type=1400 audit(1785099338.516:128): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1196 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 47.675080] audit: type=1400 audit(1785099338.591:129): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1196 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 47.816480] bond0: (slave nic1): Enslaving as a backup interface with a down link
|
|
[ 47.939997] bond0: (slave nic2): Enslaving as a backup interface with a down link
|
|
[ 47.955039] datanet: port 1(bond0) entered blocking state
|
|
[ 47.955045] datanet: port 1(bond0) entered disabled state
|
|
[ 47.955068] bond0: entered allmulticast mode
|
|
[ 47.955072] tg3 0000:01:00.1 nic1: entered allmulticast mode
|
|
[ 47.955075] tg3 0000:02:00.0 nic2: entered allmulticast mode
|
|
[ 47.955143] bond0: entered promiscuous mode
|
|
[ 47.955146] tg3 0000:01:00.1 nic1: entered promiscuous mode
|
|
[ 47.955204] tg3 0000:02:00.0 nic2: entered promiscuous mode
|
|
[ 50.052654] audit: type=1400 audit(1785099340.968:130): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/usr/bin/lxc-copy" pid=1328 comm="apparmor_parser"
|
|
[ 50.907313] tg3 0000:01:00.1 nic1: Link is up at 1000 Mbps, full duplex
|
|
[ 50.907327] tg3 0000:01:00.1 nic1: Flow control is off for TX and off for RX
|
|
[ 50.907329] tg3 0000:01:00.1 nic1: EEE is disabled
|
|
[ 50.980067] bond0: (slave nic1): link status definitely up, 1000 Mbps full duplex
|
|
[ 50.980075] bond0: Warning: No 802.3ad response from the link partner for any adapters in the bond
|
|
[ 50.980095] bond0: active interface up!
|
|
[ 50.980114] datanet: port 1(bond0) entered blocking state
|
|
[ 50.980119] datanet: port 1(bond0) entered forwarding state
|
|
[ 51.500974] tg3 0000:02:00.0 nic2: Link is up at 1000 Mbps, full duplex
|
|
[ 51.500977] bond0: (slave nic2): failed to get link speed/duplex
|
|
[ 51.500985] tg3 0000:02:00.0 nic2: Flow control is off for TX and off for RX
|
|
[ 51.500987] tg3 0000:02:00.0 nic2: EEE is disabled
|
|
[ 51.604064] bond0: (slave nic2): link status definitely up, 1000 Mbps full duplex
|
|
[ 70.805566] 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.
|
|
[ 85.407175] netfs: FS-Cache loaded
|
|
[ 85.568954] nfs: Unknown parameter 'version'
|
|
[ 85.588745] nfs: Unknown parameter 'version'
|
|
[ 85.609962] nfs: Unknown parameter 'version'
|
|
[ 85.630744] nfs: Unknown parameter 'version'
|
|
[ 85.722508] nfs: Unknown parameter 'version'
|
|
[ 86.027527] nfs: Unknown parameter 'version'
|
|
[ 86.046418] nfs: Unknown parameter 'version'
|
|
[ 86.067429] nfs: Unknown parameter 'version'
|
|
[ 86.085991] nfs: Unknown parameter 'version'
|
|
[ 86.106529] nfs: Unknown parameter 'version'
|
|
[ 86.125822] nfs: Unknown parameter 'version'
|
|
[ 86.129460] nfs: Unknown parameter 'version'
|
|
[ 86.278393] nfs: Unknown parameter 'version'
|
|
[ 96.329948] nfs: Unknown parameter 'version'
|
|
[ 96.348787] nfs: Unknown parameter 'version'
|
|
[ 96.370178] nfs: Unknown parameter 'version'
|
|
[ 96.388479] nfs: Unknown parameter 'version'
|
|
[ 96.407150] nfs: Unknown parameter 'version'
|
|
[ 96.525134] nfs: Unknown parameter 'version'
|
|
[ 96.556086] nfs: Unknown parameter 'version'
|
|
[ 106.607481] nfs: Unknown parameter 'version'
|
|
[ 106.629039] nfs: Unknown parameter 'version'
|
|
[ 106.648222] nfs: Unknown parameter 'version'
|
|
[ 106.666982] nfs: Unknown parameter 'version'
|
|
[ 106.685135] nfs: Unknown parameter 'version'
|
|
[ 106.703321] nfs: Unknown parameter 'version'
|
|
[ 106.849926] nfs: Unknown parameter 'version'
|
|
[ 115.902300] nfs: Unknown parameter 'version'
|
|
[ 115.921808] nfs: Unknown parameter 'version'
|
|
[ 116.185435] nfs: Unknown parameter 'version'
|
|
[ 116.204094] nfs: Unknown parameter 'version'
|
|
[ 116.225215] nfs: Unknown parameter 'version'
|
|
[ 116.243938] nfs: Unknown parameter 'version'
|
|
[ 116.265123] nfs: Unknown parameter 'version'
|
|
[ 126.355922] nfs: Unknown parameter 'version'
|
|
[ 126.375007] nfs: Unknown parameter 'version'
|
|
[ 126.396250] nfs: Unknown parameter 'version'
|
|
[ 126.414652] nfs: Unknown parameter 'version'
|
|
[ 126.435715] nfs: Unknown parameter 'version'
|
|
[ 126.456557] nfs: Unknown parameter 'version'
|
|
[ 126.607099] nfs: Unknown parameter 'version'
|
|
[ 135.667502] nfs: Unknown parameter 'version'
|
|
[ 135.814392] nfs: Unknown parameter 'version'
|
|
[ 135.835735] nfs: Unknown parameter 'version'
|
|
[ 135.856845] nfs: Unknown parameter 'version'
|
|
[ 135.875600] nfs: Unknown parameter 'version'
|
|
[ 135.894113] nfs: Unknown parameter 'version'
|
|
[ 135.912584] nfs: Unknown parameter 'version'
|
|
[ 145.965014] nfs: Unknown parameter 'version'
|
|
[ 145.984430] nfs: Unknown parameter 'version'
|
|
[ 146.005592] nfs: Unknown parameter 'version'
|
|
[ 146.024190] nfs: Unknown parameter 'version'
|
|
[ 146.042612] nfs: Unknown parameter 'version'
|
|
[ 146.187750] nfs: Unknown parameter 'version'
|
|
[ 146.209082] nfs: Unknown parameter 'version'
|
|
[ 156.268402] nfs: Unknown parameter 'version'
|
|
[ 156.404381] nfs: Unknown parameter 'version'
|
|
[ 156.423331] nfs: Unknown parameter 'version'
|
|
[ 156.444302] nfs: Unknown parameter 'version'
|
|
[ 156.464774] nfs: Unknown parameter 'version'
|
|
[ 156.483373] nfs: Unknown parameter 'version'
|
|
[ 156.501731] nfs: Unknown parameter 'version'
|
|
[ 166.550938] nfs: Unknown parameter 'version'
|
|
[ 166.570017] nfs: Unknown parameter 'version'
|
|
[ 166.591239] nfs: Unknown parameter 'version'
|
|
[ 166.609670] nfs: Unknown parameter 'version'
|
|
[ 166.630804] nfs: Unknown parameter 'version'
|
|
[ 166.651777] nfs: Unknown parameter 'version'
|
|
[ 166.670302] nfs: Unknown parameter 'version'
|
|
[ 175.961905] nfs: Unknown parameter 'version'
|
|
[ 175.982969] nfs: Unknown parameter 'version'
|
|
[ 176.004140] nfs: Unknown parameter 'version'
|
|
[ 176.022791] nfs: Unknown parameter 'version'
|
|
[ 176.043596] nfs: Unknown parameter 'version'
|
|
[ 176.062200] nfs: Unknown parameter 'version'
|
|
[ 176.080787] nfs: Unknown parameter 'version'
|
|
[ 186.238773] nfs: Unknown parameter 'version'
|
|
[ 186.260191] nfs: Unknown parameter 'version'
|
|
[ 186.278988] nfs: Unknown parameter 'version'
|
|
[ 186.300126] nfs: Unknown parameter 'version'
|
|
[ 186.321641] nfs: Unknown parameter 'version'
|
|
[ 186.340128] nfs: Unknown parameter 'version'
|
|
[ 186.358544] nfs: Unknown parameter 'version'
|
|
[ 196.409178] nfs: Unknown parameter 'version'
|
|
[ 196.430728] nfs: Unknown parameter 'version'
|
|
[ 196.450003] nfs: Unknown parameter 'version'
|
|
[ 196.468664] nfs: Unknown parameter 'version'
|
|
[ 196.487673] nfs: Unknown parameter 'version'
|
|
[ 196.506321] nfs: Unknown parameter 'version'
|
|
[ 196.649754] nfs: Unknown parameter 'version'
|
|
[ 205.701499] nfs: Unknown parameter 'version'
|
|
[ 205.720135] nfs: Unknown parameter 'version'
|
|
[ 205.741481] nfs: Unknown parameter 'version'
|
|
[ 205.760141] nfs: Unknown parameter 'version'
|
|
[ 205.778476] nfs: Unknown parameter 'version'
|
|
[ 205.940890] nfs: Unknown parameter 'version'
|
|
[ 205.961930] nfs: Unknown parameter 'version'
|
|
[ 216.132743] nfs: Unknown parameter 'version'
|
|
[ 216.154224] nfs: Unknown parameter 'version'
|
|
[ 216.173466] nfs: Unknown parameter 'version'
|
|
[ 216.194598] nfs: Unknown parameter 'version'
|
|
[ 216.215857] nfs: Unknown parameter 'version'
|
|
[ 216.234495] nfs: Unknown parameter 'version'
|
|
[ 216.253324] nfs: Unknown parameter 'version'
|
|
[ 226.305177] nfs: Unknown parameter 'version'
|
|
[ 226.324324] nfs: Unknown parameter 'version'
|
|
[ 226.345856] nfs: Unknown parameter 'version'
|
|
[ 226.364052] nfs: Unknown parameter 'version'
|
|
[ 226.382276] nfs: Unknown parameter 'version'
|
|
[ 226.401014] nfs: Unknown parameter 'version'
|
|
[ 226.561584] nfs: Unknown parameter 'version'
|
|
[ 236.613999] nfs: Unknown parameter 'version'
|
|
[ 236.764201] nfs: Unknown parameter 'version'
|
|
[ 236.782848] nfs: Unknown parameter 'version'
|
|
[ 236.801547] nfs: Unknown parameter 'version'
|
|
[ 236.820316] nfs: Unknown parameter 'version'
|
|
[ 236.841587] nfs: Unknown parameter 'version'
|
|
[ 236.862810] nfs: Unknown parameter 'version'
|
|
[ 245.912224] nfs: Unknown parameter 'version'
|
|
[ 245.931132] nfs: Unknown parameter 'version'
|
|
[ 245.952632] nfs: Unknown parameter 'version'
|
|
[ 245.971322] nfs: Unknown parameter 'version'
|
|
[ 245.991914] nfs: Unknown parameter 'version'
|
|
[ 246.012721] nfs: Unknown parameter 'version'
|
|
[ 246.135628] nfs: Unknown parameter 'version'
|
|
[ 256.302959] nfs: Unknown parameter 'version'
|
|
[ 256.324277] nfs: Unknown parameter 'version'
|
|
[ 256.345287] nfs: Unknown parameter 'version'
|
|
[ 256.367387] nfs: Unknown parameter 'version'
|
|
[ 256.388726] nfs: Unknown parameter 'version'
|
|
[ 256.407170] nfs: Unknown parameter 'version'
|
|
[ 256.425557] nfs: Unknown parameter 'version'
|
|
[ 266.484502] nfs: Unknown parameter 'version'
|
|
[ 266.503640] nfs: Unknown parameter 'version'
|
|
[ 266.525001] nfs: Unknown parameter 'version'
|
|
[ 266.543363] nfs: Unknown parameter 'version'
|
|
[ 266.564320] nfs: Unknown parameter 'version'
|
|
[ 266.585745] nfs: Unknown parameter 'version'
|
|
[ 266.709549] nfs: Unknown parameter 'version'
|
|
[ 275.779508] nfs: Unknown parameter 'version'
|
|
[ 275.900454] nfs: Unknown parameter 'version'
|
|
[ 275.921730] nfs: Unknown parameter 'version'
|
|
[ 275.940633] nfs: Unknown parameter 'version'
|
|
[ 275.961920] nfs: Unknown parameter 'version'
|
|
[ 275.981173] nfs: Unknown parameter 'version'
|
|
[ 276.000438] nfs: Unknown parameter 'version'
|
|
[ 277.859638] kauditd_printk_skb: 5 callbacks suppressed
|
|
[ 277.859646] audit: type=1400 audit(1785099569.276:136): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1196 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 277.861668] audit: type=1400 audit(1785099569.278:137): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1196 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 277.893531] audit: type=1400 audit(1785099569.309:138): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1196 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 286.052212] nfs: Unknown parameter 'version'
|
|
[ 286.070908] nfs: Unknown parameter 'version'
|
|
[ 286.092034] nfs: Unknown parameter 'version'
|
|
[ 286.110639] nfs: Unknown parameter 'version'
|
|
[ 286.129087] nfs: Unknown parameter 'version'
|
|
[ 286.157444] nfs: Unknown parameter 'version'
|
|
[ 286.299145] nfs: Unknown parameter 'version'
|
|
[ 296.351452] nfs: Unknown parameter 'version'
|
|
[ 296.368337] nfs: Unknown parameter 'version'
|
|
[ 296.514810] nfs: Unknown parameter 'version'
|
|
[ 296.531220] nfs: Unknown parameter 'version'
|
|
[ 296.550150] nfs: Unknown parameter 'version'
|
|
[ 296.569078] nfs: Unknown parameter 'version'
|
|
[ 296.585610] nfs: Unknown parameter 'version'
|
|
[ 298.959189] nfs: Unknown parameter 'version'
|
|
[ 301.678977] nfs: Unknown parameter 'version'
|
|
[ 304.466582] nfs: Unknown parameter 'version'
|
|
[ 305.634245] nfs: Unknown parameter 'version'
|
|
[ 305.653551] nfs: Unknown parameter 'version'
|
|
[ 305.672636] nfs: Unknown parameter 'version'
|
|
[ 305.689518] nfs: Unknown parameter 'version'
|
|
[ 305.705822] nfs: Unknown parameter 'version'
|
|
[ 305.730587] nfs: Unknown parameter 'version'
|
|
[ 305.873649] nfs: Unknown parameter 'version'
|
|
[ 307.166973] nfs: Unknown parameter 'version'
|
|
[ 315.922869] nfs: Unknown parameter 'version'
|
|
[ 315.941594] nfs: Unknown parameter 'version'
|
|
[ 315.962961] nfs: Unknown parameter 'version'
|
|
[ 315.984094] nfs: Unknown parameter 'version'
|
|
[ 316.002993] nfs: Unknown parameter 'version'
|
|
[ 316.024158] nfs: Unknown parameter 'version'
|
|
[ 316.173695] nfs: Unknown parameter 'version'
|
|
[ 325.146289] vmbr0: the hash_elasticity option has been deprecated and is always 16
|
|
[ 325.179252] datanet: the hash_elasticity option has been deprecated and is always 16
|
|
[ 326.235679] nfs: Unknown parameter 'version'
|
|
[ 326.254278] nfs: Unknown parameter 'version'
|
|
[ 326.411406] nfs: Unknown parameter 'version'
|
|
[ 326.429941] nfs: Unknown parameter 'version'
|
|
[ 326.451281] nfs: Unknown parameter 'version'
|
|
[ 326.472440] nfs: Unknown parameter 'version'
|
|
[ 326.491100] nfs: Unknown parameter 'version'
|
|
[ 336.540841] nfs: Unknown parameter 'version'
|
|
[ 336.562265] nfs: Unknown parameter 'version'
|
|
[ 336.583709] nfs: Unknown parameter 'version'
|
|
[ 336.602138] nfs: Unknown parameter 'version'
|
|
[ 336.621011] nfs: Unknown parameter 'version'
|
|
[ 336.648893] nfs: Unknown parameter 'version'
|
|
[ 336.788246] nfs: Unknown parameter 'version'
|
|
[ 345.838640] nfs: Unknown parameter 'version'
|
|
[ 345.857726] nfs: Unknown parameter 'version'
|
|
[ 345.878896] nfs: Unknown parameter 'version'
|
|
[ 345.897663] nfs: Unknown parameter 'version'
|
|
[ 345.916523] nfs: Unknown parameter 'version'
|
|
[ 346.050785] nfs: Unknown parameter 'version'
|
|
[ 346.081979] nfs: Unknown parameter 'version'
|
|
[ 348.089240] NFS: Registering the id_resolver key type
|
|
[ 348.089252] Key type id_resolver registered
|
|
[ 348.089254] Key type id_legacy registered
|
|
[ 356.133935] nfs: Unknown parameter 'version'
|
|
[ 356.153248] nfs: Unknown parameter 'version'
|
|
[ 356.198548] nfs: Unknown parameter 'version'
|
|
[ 356.217418] nfs: Unknown parameter 'version'
|
|
[ 356.327935] nfs: Unknown parameter 'version'
|
|
[ 356.359104] nfs: Unknown parameter 'version'
|
|
[ 366.510636] nfs: Unknown parameter 'version'
|
|
[ 366.530071] nfs: Unknown parameter 'version'
|
|
[ 366.571993] nfs: Unknown parameter 'version'
|
|
[ 366.590336] nfs: Unknown parameter 'version'
|
|
[ 366.804851] nfs: Unknown parameter 'version'
|
|
[ 366.836242] nfs: Unknown parameter 'version'
|
|
[ 375.888497] nfs: Unknown parameter 'version'
|
|
[ 375.907671] nfs: Unknown parameter 'version'
|
|
[ 376.206481] nfs: Unknown parameter 'version'
|
|
[ 376.225642] nfs: Unknown parameter 'version'
|
|
[ 376.245986] nfs: Unknown parameter 'version'
|
|
[ 376.288464] nfs: Unknown parameter 'version'
|
|
[ 386.363283] nfs: Unknown parameter 'version'
|
|
[ 386.385022] nfs: Unknown parameter 'version'
|
|
[ 386.404312] nfs: Unknown parameter 'version'
|
|
[ 386.423242] nfs: Unknown parameter 'version'
|
|
[ 386.582304] nfs: Unknown parameter 'version'
|
|
[ 386.603913] nfs: Unknown parameter 'version'
|
|
[ 395.656077] nfs: Unknown parameter 'version'
|
|
[ 395.684863] nfs: Unknown parameter 'version'
|
|
[ 395.829076] nfs: Unknown parameter 'version'
|
|
[ 395.848109] nfs: Unknown parameter 'version'
|
|
[ 395.890026] nfs: Unknown parameter 'version'
|
|
[ 395.911069] nfs: Unknown parameter 'version'
|
|
[ 405.959538] nfs: Unknown parameter 'version'
|
|
[ 406.004820] nfs: Unknown parameter 'version'
|
|
[ 406.023650] nfs: Unknown parameter 'version'
|
|
[ 406.042440] nfs: Unknown parameter 'version'
|
|
[ 406.070649] nfs: Unknown parameter 'version'
|
|
[ 406.193966] nfs: Unknown parameter 'version'
|
|
[ 416.245706] nfs: Unknown parameter 'version'
|
|
[ 416.344781] nfs: Unknown parameter 'version'
|
|
[ 416.373360] nfs: Unknown parameter 'version'
|
|
[ 416.392521] nfs: Unknown parameter 'version'
|
|
[ 416.413867] nfs: Unknown parameter 'version'
|
|
[ 416.456575] nfs: Unknown parameter 'version'
|
|
[ 426.505686] nfs: Unknown parameter 'version'
|
|
[ 426.633216] nfs: Unknown parameter 'version'
|
|
[ 426.654561] nfs: Unknown parameter 'version'
|
|
[ 426.673447] nfs: Unknown parameter 'version'
|
|
[ 426.715377] nfs: Unknown parameter 'version'
|
|
[ 426.734293] nfs: Unknown parameter 'version'
|
|
[ 435.890324] nfs: Unknown parameter 'version'
|
|
[ 435.921399] nfs: Unknown parameter 'version'
|
|
[ 435.943014] nfs: Unknown parameter 'version'
|
|
[ 435.961755] nfs: Unknown parameter 'version'
|
|
[ 436.004471] nfs: Unknown parameter 'version'
|
|
[ 436.023226] nfs: Unknown parameter 'version'
|
|
[ 445.885570] tap701i0: entered promiscuous mode
|
|
[ 446.081591] vmbr0: port 2(fwpr701p0) entered blocking state
|
|
[ 446.081599] vmbr0: port 2(fwpr701p0) entered disabled state
|
|
[ 446.081624] fwpr701p0: entered allmulticast mode
|
|
[ 446.081696] fwpr701p0: entered promiscuous mode
|
|
[ 446.081803] vmbr0: port 2(fwpr701p0) entered blocking state
|
|
[ 446.081808] vmbr0: port 2(fwpr701p0) entered forwarding state
|
|
[ 446.096360] fwbr701i0: port 1(fwln701i0) entered blocking state
|
|
[ 446.096365] fwbr701i0: port 1(fwln701i0) entered disabled state
|
|
[ 446.096390] fwln701i0: entered allmulticast mode
|
|
[ 446.096453] fwln701i0: entered promiscuous mode
|
|
[ 446.096525] fwbr701i0: port 1(fwln701i0) entered blocking state
|
|
[ 446.096537] fwbr701i0: port 1(fwln701i0) entered forwarding state
|
|
[ 446.110461] fwbr701i0: port 2(tap701i0) entered blocking state
|
|
[ 446.110466] fwbr701i0: port 2(tap701i0) entered disabled state
|
|
[ 446.110485] tap701i0: entered allmulticast mode
|
|
[ 446.110568] fwbr701i0: port 2(tap701i0) entered blocking state
|
|
[ 446.110571] fwbr701i0: port 2(tap701i0) entered forwarding state
|
|
[ 447.198280] tap701i1: entered promiscuous mode
|
|
[ 447.279623] datanet: port 2(fwpr701p1) entered blocking state
|
|
[ 447.279631] datanet: port 2(fwpr701p1) entered disabled state
|
|
[ 447.279663] fwpr701p1: entered allmulticast mode
|
|
[ 447.279788] fwpr701p1: entered promiscuous mode
|
|
[ 447.279871] datanet: port 2(fwpr701p1) entered blocking state
|
|
[ 447.279876] datanet: port 2(fwpr701p1) entered forwarding state
|
|
[ 447.293622] fwbr701i1: port 1(fwln701i1) entered blocking state
|
|
[ 447.293627] fwbr701i1: port 1(fwln701i1) entered disabled state
|
|
[ 447.293642] fwln701i1: entered allmulticast mode
|
|
[ 447.293723] fwln701i1: entered promiscuous mode
|
|
[ 447.293782] fwbr701i1: port 1(fwln701i1) entered blocking state
|
|
[ 447.293786] fwbr701i1: port 1(fwln701i1) entered forwarding state
|
|
[ 447.307541] fwbr701i1: port 2(tap701i1) entered blocking state
|
|
[ 447.307545] fwbr701i1: port 2(tap701i1) entered disabled state
|
|
[ 447.307566] tap701i1: entered allmulticast mode
|
|
[ 447.307652] fwbr701i1: port 2(tap701i1) entered blocking state
|
|
[ 447.307655] fwbr701i1: port 2(tap701i1) entered forwarding state
|
|
[ 451.651805] tap702i0: entered promiscuous mode
|
|
[ 451.725849] vmbr0: port 3(fwpr702p0) entered blocking state
|
|
[ 451.725858] vmbr0: port 3(fwpr702p0) entered disabled state
|
|
[ 451.725887] fwpr702p0: entered allmulticast mode
|
|
[ 451.725959] fwpr702p0: entered promiscuous mode
|
|
[ 451.726013] vmbr0: port 3(fwpr702p0) entered blocking state
|
|
[ 451.726017] vmbr0: port 3(fwpr702p0) entered forwarding state
|
|
[ 451.737141] fwbr702i0: port 1(fwln702i0) entered blocking state
|
|
[ 451.737148] fwbr702i0: port 1(fwln702i0) entered disabled state
|
|
[ 451.737180] fwln702i0: entered allmulticast mode
|
|
[ 451.737259] fwln702i0: entered promiscuous mode
|
|
[ 451.737336] fwbr702i0: port 1(fwln702i0) entered blocking state
|
|
[ 451.737339] fwbr702i0: port 1(fwln702i0) entered forwarding state
|
|
[ 451.747339] fwbr702i0: port 2(tap702i0) entered blocking state
|
|
[ 451.747344] fwbr702i0: port 2(tap702i0) entered disabled state
|
|
[ 451.747366] tap702i0: entered allmulticast mode
|
|
[ 451.747461] fwbr702i0: port 2(tap702i0) entered blocking state
|
|
[ 451.747464] fwbr702i0: port 2(tap702i0) entered forwarding state
|
|
[ 455.851085] tap703i0: entered promiscuous mode
|
|
[ 455.922264] vmbr0: port 4(fwpr703p0) entered blocking state
|
|
[ 455.922272] vmbr0: port 4(fwpr703p0) entered disabled state
|
|
[ 455.922307] fwpr703p0: entered allmulticast mode
|
|
[ 455.922380] fwpr703p0: entered promiscuous mode
|
|
[ 455.922454] vmbr0: port 4(fwpr703p0) entered blocking state
|
|
[ 455.922460] vmbr0: port 4(fwpr703p0) entered forwarding state
|
|
[ 455.933582] fwbr703i0: port 1(fwln703i0) entered blocking state
|
|
[ 455.933592] fwbr703i0: port 1(fwln703i0) entered disabled state
|
|
[ 455.933634] fwln703i0: entered allmulticast mode
|
|
[ 455.933912] fwln703i0: entered promiscuous mode
|
|
[ 455.934103] fwbr703i0: port 1(fwln703i0) entered blocking state
|
|
[ 455.934109] fwbr703i0: port 1(fwln703i0) entered forwarding state
|
|
[ 455.947775] fwbr703i0: port 2(tap703i0) entered blocking state
|
|
[ 455.947781] fwbr703i0: port 2(tap703i0) entered disabled state
|
|
[ 455.947803] tap703i0: entered allmulticast mode
|
|
[ 455.947932] fwbr703i0: port 2(tap703i0) entered blocking state
|
|
[ 455.947936] fwbr703i0: port 2(tap703i0) entered forwarding state
|
|
[ 460.082483] tap704i0: entered promiscuous mode
|
|
[ 460.157935] vmbr0: port 5(fwpr704p0) entered blocking state
|
|
[ 460.157943] vmbr0: port 5(fwpr704p0) entered disabled state
|
|
[ 460.157969] fwpr704p0: entered allmulticast mode
|
|
[ 460.158057] fwpr704p0: entered promiscuous mode
|
|
[ 460.158102] vmbr0: port 5(fwpr704p0) entered blocking state
|
|
[ 460.158106] vmbr0: port 5(fwpr704p0) entered forwarding state
|
|
[ 460.172692] fwbr704i0: port 1(fwln704i0) entered blocking state
|
|
[ 460.172705] fwbr704i0: port 1(fwln704i0) entered disabled state
|
|
[ 460.172750] fwln704i0: entered allmulticast mode
|
|
[ 460.173030] fwln704i0: entered promiscuous mode
|
|
[ 460.173140] fwbr704i0: port 1(fwln704i0) entered blocking state
|
|
[ 460.173146] fwbr704i0: port 1(fwln704i0) entered forwarding state
|
|
[ 460.185660] fwbr704i0: port 2(tap704i0) entered blocking state
|
|
[ 460.185667] fwbr704i0: port 2(tap704i0) entered disabled state
|
|
[ 460.185692] tap704i0: entered allmulticast mode
|
|
[ 460.185800] fwbr704i0: port 2(tap704i0) entered blocking state
|
|
[ 460.185804] fwbr704i0: port 2(tap704i0) entered forwarding state
|
|
[ 461.251172] tap704i1: entered promiscuous mode
|
|
[ 461.331589] datanet: port 3(fwpr704p1) entered blocking state
|
|
[ 461.331599] datanet: port 3(fwpr704p1) entered disabled state
|
|
[ 461.331635] fwpr704p1: entered allmulticast mode
|
|
[ 461.331734] fwpr704p1: entered promiscuous mode
|
|
[ 461.331787] datanet: port 3(fwpr704p1) entered blocking state
|
|
[ 461.331791] datanet: port 3(fwpr704p1) entered forwarding state
|
|
[ 461.342524] fwbr704i1: port 1(fwln704i1) entered blocking state
|
|
[ 461.342531] fwbr704i1: port 1(fwln704i1) entered disabled state
|
|
[ 461.342562] fwln704i1: entered allmulticast mode
|
|
[ 461.342653] fwln704i1: entered promiscuous mode
|
|
[ 461.342716] fwbr704i1: port 1(fwln704i1) entered blocking state
|
|
[ 461.342720] fwbr704i1: port 1(fwln704i1) entered forwarding state
|
|
[ 461.352699] fwbr704i1: port 2(tap704i1) entered blocking state
|
|
[ 461.352704] fwbr704i1: port 2(tap704i1) entered disabled state
|
|
[ 461.352724] tap704i1: entered allmulticast mode
|
|
[ 461.352809] fwbr704i1: port 2(tap704i1) entered blocking state
|
|
[ 461.352812] fwbr704i1: port 2(tap704i1) entered forwarding state
|
|
[ 578.801682] audit: type=1400 audit(1785099870.226:139): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1196 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 578.803727] audit: type=1400 audit(1785099870.228:140): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1196 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 578.836935] audit: type=1400 audit(1785099870.261:141): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1196 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 832.227023] audit: type=1400 audit(1785100123.657:142): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/chronyd" pid=10119 comm="apparmor_parser"
|
|
[ 834.489780] audit: type=1400 audit(1785100125.920:143): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1196 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 834.491567] audit: type=1400 audit(1785100125.922:144): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1196 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 834.527700] audit: type=1400 audit(1785100125.958:145): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1196 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 884.120561] audit: type=1400 audit(1785100175.554:146): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/usr/bin/lxc-start" pid=23361 comm="apparmor_parser"
|
|
[ 884.364910] audit: type=1400 audit(1785100175.798:147): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="lxc-container-default" pid=23364 comm="apparmor_parser"
|
|
[ 884.369140] audit: type=1400 audit(1785100175.802:148): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="lxc-container-default-cgns" pid=23364 comm="apparmor_parser"
|
|
[ 884.373009] audit: type=1400 audit(1785100175.806:149): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="lxc-container-default-with-mounting" pid=23364 comm="apparmor_parser"
|
|
[ 884.380008] audit: type=1400 audit(1785100175.813:150): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="lxc-container-default-with-nesting" pid=23364 comm="apparmor_parser"
|
|
[ 885.939185] audit: type=1400 audit(1785100177.372:151): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/usr/bin/lxc-copy" pid=23485 comm="apparmor_parser"
|
|
[ 885.950178] audit: type=1400 audit(1785100177.383:152): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/usr/bin/lxc-start" pid=23489 comm="apparmor_parser"
|
|
[ 885.974369] audit: type=1400 audit(1785100177.407:153): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="lxc-container-default" pid=23493 comm="apparmor_parser"
|
|
[ 885.974383] audit: type=1400 audit(1785100177.407:154): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="lxc-container-default-cgns" pid=23493 comm="apparmor_parser"
|
|
[ 885.974399] audit: type=1400 audit(1785100177.407:155): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="lxc-container-default-with-mounting" pid=23493 comm="apparmor_parser"
|
|
[ 898.516641] kauditd_printk_skb: 1 callbacks suppressed
|
|
[ 898.516646] audit: type=1400 audit(1785100189.950:157): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="pve-container-mounthotplug" pid=24120 comm="apparmor_parser"
|
|
[ 1121.807991] audit: type=1400 audit(1785100413.248:158): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1196 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 1121.810223] audit: type=1400 audit(1785100413.251:159): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1196 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 1121.845543] audit: type=1400 audit(1785100413.286:160): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1196 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 1364.585870] audit: type=1400 audit(1785100656.031:161): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1196 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 1364.587796] audit: type=1400 audit(1785100656.033:162): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1196 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 1364.621574] audit: type=1400 audit(1785100656.067:163): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1196 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 1652.856178] audit: type=1400 audit(1785100944.309:164): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1196 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 1652.858212] audit: type=1400 audit(1785100944.310:165): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1196 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 1653.088342] audit: type=1400 audit(1785100944.540:166): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1196 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
|
|
--- cpu MHz (live snapshot)
|
|
$ grep -c ^processor /proc/cpuinfo
|
|
24
|
|
|
|
###############################################################################
|
|
# 5. MEMORY / NUMA / SWAP
|
|
###############################################################################
|
|
|
|
--- free -h
|
|
$ free -h
|
|
total used free shared buff/cache available
|
|
Mem: 188Gi 9.3Gi 175Gi 46Mi 5.0Gi 179Gi
|
|
Swap: 8.0Gi 0B 8.0Gi
|
|
|
|
--- free -b
|
|
$ free -b
|
|
total used free shared buff/cache available
|
|
Mem: 202756390912 9958576128 188837216256 48787456 5321940992 192797814784
|
|
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: 198004288 kB
|
|
MemFree: 184411344 kB
|
|
MemAvailable: 188279176 kB
|
|
Buffers: 81024 kB
|
|
Cached: 4905228 kB
|
|
SwapTotal: 8388604 kB
|
|
SwapFree: 8388604 kB
|
|
Dirty: 98024 kB
|
|
Writeback: 0 kB
|
|
AnonPages: 7111264 kB
|
|
Mapped: 187540 kB
|
|
Shmem: 47644 kB
|
|
Slab: 493176 kB
|
|
SReclaimable: 210956 kB
|
|
SUnreclaim: 282220 kB
|
|
KernelStack: 9200 kB
|
|
PageTables: 26184 kB
|
|
SecPageTables: 11136 kB
|
|
NFS_Unstable: 0 kB
|
|
WritebackTmp: 0 kB
|
|
AnonHugePages: 5826560 kB
|
|
ShmemHugePages: 0 kB
|
|
ShmemPmdMapped: 0 kB
|
|
FilePmdMapped: 0 kB
|
|
HugePages_Total: 0
|
|
HugePages_Free: 0
|
|
Hugepagesize: 2048 kB
|
|
DirectMap4k: 265152 kB
|
|
DirectMap2M: 7028736 kB
|
|
DirectMap1G: 196083712 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) : 2356433 / 2380398 (99.0%)
|
|
Active / Total Slabs (% used) : 52386 / 52386 (100.0%)
|
|
Active / Total Caches (% used) : 361 / 466 (77.5%)
|
|
Active / Total Size (% used) : 430494.47K / 435678.34K (98.8%)
|
|
Minimum / Average / Maximum Object : 0.01K / 0.18K / 16.00K
|
|
|
|
OBJS ACTIVE USE OBJ SIZE SLABS OBJ/SLAB CACHE SIZE NAME
|
|
1046097 1046097 100% 0.10K 26823 39 107292K buffer_head
|
|
36917 36851 99% 1.10K 1273 29 40736K ext4_inode_cache
|
|
40736 40699 99% 1.00K 1273 32 40736K iommu_iova_magazine
|
|
39312 38261 97% 0.57K 1404 28 22464K radix_tree_node
|
|
91098 91096 99% 0.19K 2169 42 17352K dentry
|
|
33664 32120 95% 0.50K 1052 32 16832K kmalloc-rnd-08-512
|
|
68580 68580 100% 0.13K 2286 30 9144K kernfs_node_cache
|
|
14050 14014 99% 0.62K 562 25 8992K inode_cache
|
|
756 728 96% 10.44K 252 3 8064K task_struct
|
|
12256 12129 98% 0.50K 383 32 6128K kmalloc-rnd-11-512
|
|
62100 62065 99% 0.09K 1350 46 5400K lsm_inode_cache
|
|
64640 64573 99% 0.06K 1010 64 4040K dmaengine-unmap-2
|
|
19488 18882 96% 0.19K 464 42 3712K vm_area_struct
|
|
4784 4568 95% 0.69K 104 46 3328K proc_inode_cache
|
|
1504 1428 94% 2.00K 94 16 3008K kmalloc-cg-2k
|
|
5568 5336 95% 0.50K 174 32 2784K pool_workqueue
|
|
4025 4025 100% 0.63K 161 25 2576K debugfs_inode_cache
|
|
1200 1197 99% 2.06K 80 15 2560K sighand_cache
|
|
3198 3128 97% 0.77K 78 41 2496K shmem_inode_cache
|
|
1184 1184 100% 2.00K 74 16 2368K kmalloc-rnd-11-2k
|
|
3312 3067 92% 0.69K 72 46 2304K skbuff_small_head
|
|
58650 57230 97% 0.04K 575 102 2300K extent_status
|
|
1792 1726 96% 1.12K 64 28 2048K signal_cache
|
|
504 487 96% 4.00K 63 8 2016K kmalloc-cg-4k
|
|
928 739 79% 2.00K 58 16 1856K kmalloc-rnd-02-2k
|
|
1938 1734 89% 0.94K 57 34 1824K nfs_read_data
|
|
2223 2223 100% 0.81K 57 39 1824K sock_inode_cache
|
|
1792 1610 89% 1.00K 56 32 1792K kmalloc-cg-1k
|
|
23744 23744 100% 0.07K 424 56 1696K vmap_area
|
|
416 368 88% 4.00K 52 8 1664K biovec-max
|
|
408 394 96% 4.00K 51 8 1632K kmalloc-rnd-04-4k
|
|
1568 1551 98% 1.00K 49 32 1568K kmalloc-rnd-07-1k
|
|
5568 5568 100% 0.25K 174 32 1392K kmalloc-rnd-08-256
|
|
688 688 100% 2.00K 43 16 1376K kmalloc-rnd-06-2k
|
|
312 312 100% 4.00K 39 8 1248K kmalloc-rnd-10-4k
|
|
798 798 100% 1.50K 38 21 1216K mm_struct
|
|
629 624 99% 1.88K 37 17 1184K mem_cgroup_per_node
|
|
288 288 100% 4.00K 36 8 1152K kmalloc-rnd-12-4k
|
|
4384 4150 94% 0.25K 137 32 1096K skbuff_head_cache
|
|
10686 10254 95% 0.10K 274 39 1096K anon_vma
|
|
4224 3584 84% 0.25K 132 32 1056K maple_node
|
|
5418 5260 97% 0.19K 129 42 1032K filp
|
|
1024 961 93% 1.00K 32 32 1024K kmalloc-1k
|
|
15936 15142 95% 0.06K 249 64 996K anon_vma_chain
|
|
992 992 100% 1.00K 31 32 992K kmalloc-rnd-10-1k
|
|
232 232 100% 4.00K 29 8 928K names_cache
|
|
1334 1334 100% 0.69K 29 46 928K files_cache
|
|
696 624 89% 1.31K 29 24 928K perf_event
|
|
116 116 100% 8.00K 29 4 928K kmalloc-rnd-10-8k
|
|
464 450 96% 2.00K 29 16 928K kmalloc-rnd-08-2k
|
|
116 116 100% 8.00K 29 4 928K kmalloc-rnd-01-8k
|
|
728 728 100% 1.19K 28 26 896K RAWv6
|
|
896 896 100% 1.00K 28 32 896K RAW
|
|
392 392 100% 2.19K 28 14 896K mem_cgroup
|
|
896 843 94% 1.00K 28 32 896K kmalloc-rnd-08-1k
|
|
224 224 100% 4.00K 28 8 896K kmalloc-rnd-07-4k
|
|
832 832 100% 1.00K 26 32 832K kmalloc-rnd-15-1k
|
|
208 208 100% 4.00K 26 8 832K kmalloc-rnd-13-4k
|
|
104 104 100% 8.00K 26 4 832K kmalloc-rnd-08-8k
|
|
832 832 100% 1.00K 26 32 832K kmalloc-rnd-06-1k
|
|
832 832 100% 1.00K 26 32 832K kmalloc-rnd-01-1k
|
|
400 400 100% 2.00K 25 16 800K biovec-128
|
|
100 100 100% 8.00K 25 4 800K kmalloc-cg-8k
|
|
800 800 100% 1.00K 25 32 800K kmalloc-rnd-09-1k
|
|
552 552 100% 1.38K 24 23 768K UDPv6
|
|
624 624 100% 1.19K 24 26 768K UDP
|
|
312 312 100% 2.38K 24 13 768K TCP
|
|
192 192 100% 4.00K 24 8 768K kmalloc-rnd-15-4k
|
|
384 384 100% 2.00K 24 16 768K kmalloc-rnd-15-2k
|
|
768 768 100% 1.00K 24 32 768K kmalloc-rnd-14-1k
|
|
96 96 100% 8.00K 24 4 768K kmalloc-rnd-12-8k
|
|
768 768 100% 1.00K 24 32 768K kmalloc-rnd-12-1k
|
|
192 192 100% 4.00K 24 8 768K kmalloc-rnd-11-4k
|
|
384 384 100% 2.00K 24 16 768K kmalloc-rnd-10-2k
|
|
384 384 100% 2.00K 24 16 768K kmalloc-rnd-09-2k
|
|
192 192 100% 4.00K 24 8 768K kmalloc-rnd-08-4k
|
|
384 384 100% 2.00K 24 16 768K kmalloc-rnd-07-2k
|
|
192 192 100% 4.00K 24 8 768K kmalloc-rnd-05-4k
|
|
768 768 100% 1.00K 24 32 768K kmalloc-rnd-04-1k
|
|
192 192 100% 4.00K 24 8 768K kmalloc-rnd-03-4k
|
|
384 384 100% 2.00K 24 16 768K kmalloc-rnd-03-2k
|
|
768 768 100% 1.00K 24 32 768K kmalloc-rnd-03-1k
|
|
96 96 100% 8.00K 24 4 768K kmalloc-rnd-02-8k
|
|
192 192 100% 4.00K 24 8 768K kmalloc-rnd-02-4k
|
|
768 768 100% 1.00K 24 32 768K kmalloc-rnd-02-1k
|
|
192 192 100% 4.00K 24 8 768K kmalloc-4k
|
|
384 384 100% 2.00K 24 16 768K kmalloc-2k
|
|
966 966 100% 0.75K 23 42 736K nfs_commit_data
|
|
736 736 100% 1.00K 23 32 736K kmalloc-rnd-13-1k
|
|
184 184 100% 4.00K 23 8 736K kmalloc-rnd-09-4k
|
|
184 184 100% 4.00K 23 8 736K kmalloc-rnd-06-4k
|
|
368 368 100% 2.00K 23 16 736K kmalloc-rnd-01-2k
|
|
3738 3688 98% 0.19K 89 42 712K pid
|
|
264 264 100% 2.56K 22 12 704K TCPv6
|
|
792 792 100% 0.88K 22 36 704K fuse_inode
|
|
2175 2050 94% 0.31K 87 25 696K bio-256
|
|
168 168 100% 4.00K 21 8 672K memdup_user-4k
|
|
336 336 100% 2.00K 21 16 672K kmalloc-rnd-14-2k
|
|
336 336 100% 2.00K 21 16 672K kmalloc-rnd-12-2k
|
|
1344 1344 100% 0.50K 42 32 672K kmalloc-rnd-10-512
|
|
20736 20736 100% 0.03K 162 128 648K kmalloc-rnd-05-32
|
|
320 320 100% 2.00K 20 16 640K memdup_user-2k
|
|
3276 2918 89% 0.19K 78 42 624K kmalloc-cg-192
|
|
1248 1134 90% 0.50K 39 32 624K kmalloc-rnd-14-512
|
|
608 608 100% 1.00K 19 32 608K memdup_user-1k
|
|
76 76 100% 8.00K 19 4 608K kmalloc-rnd-06-8k
|
|
1512 1512 100% 0.38K 36 42 576K mnt_cache
|
|
1088 1088 100% 0.50K 34 32 544K kmalloc-rnd-03-512
|
|
136 136 100% 4.00K 17 8 544K kmalloc-rnd-01-4k
|
|
2368 2368 100% 0.21K 64 37 512K nfs_direct_cache
|
|
2816 2816 100% 0.18K 64 44 512K kvm_mmu_page_header
|
|
256 256 100% 2.00K 16 16 512K kmalloc-rnd-04-2k
|
|
64 64 100% 8.00K 16 4 512K kmalloc-rnd-03-8k
|
|
1984 1840 92% 0.25K 62 32 496K bio-200
|
|
696 696 100% 0.65K 29 24 464K tracefs_inode_cache
|
|
928 781 84% 0.50K 29 32 464K kmalloc-rnd-05-512
|
|
2394 2394 100% 0.19K 57 42 456K kmalloc-rnd-15-192
|
|
8176 8176 100% 0.05K 112 73 448K ftrace_event_field
|
|
896 896 100% 0.50K 28 32 448K kmalloc-cg-512
|
|
4578 4055 88% 0.09K 109 42 436K kmalloc-rnd-08-96
|
|
3392 3062 90% 0.12K 106 32 424K bio_integrity_data
|
|
832 832 100% 0.50K 26 32 416K kmalloc-rnd-07-512
|
|
52 52 100% 8.00K 13 4 416K kmalloc-8k
|
|
3296 3219 97% 0.12K 103 32 412K eventpoll_epi
|
|
800 800 100% 0.50K 25 32 400K kmalloc-rnd-12-512
|
|
4074 3696 90% 0.09K 97 42 388K kmalloc-cg-96
|
|
36 36 100% 8.94K 12 3 384K kvm_vcpu
|
|
144 144 100% 2.61K 12 12 384K x86_emulator
|
|
672 672 100% 0.56K 24 28 384K kioctx
|
|
696 696 100% 0.55K 24 29 384K taskstats
|
|
600 600 100% 0.62K 24 25 384K task_group
|
|
768 768 100% 0.50K 24 32 384K kmalloc-rnd-15-512
|
|
768 768 100% 0.50K 24 32 384K kmalloc-rnd-13-512
|
|
384 384 100% 1.00K 12 32 384K kmalloc-rnd-11-1k
|
|
768 768 100% 0.50K 24 32 384K kmalloc-rnd-09-512
|
|
48 48 100% 8.00K 12 4 384K kmalloc-rnd-07-8k
|
|
768 768 100% 0.50K 24 32 384K kmalloc-rnd-04-512
|
|
768 768 100% 0.50K 24 32 384K kmalloc-rnd-02-512
|
|
768 768 100% 0.50K 24 32 384K kmalloc-rnd-01-512
|
|
768 768 100% 0.50K 24 32 384K kmalloc-512
|
|
1472 1440 97% 0.25K 46 32 368K nf_conntrack
|
|
5696 5185 91% 0.06K 89 64 356K kmalloc-cg-64
|
|
308 308 100% 1.14K 11 28 352K nfs_inode_cache
|
|
176 176 100% 2.00K 11 16 352K kmalloc-rnd-13-2k
|
|
3696 3696 100% 0.09K 88 42 352K kmalloc-rnd-10-96
|
|
3654 3654 100% 0.09K 87 42 348K trace_event_file
|
|
1376 1376 100% 0.25K 43 32 344K kmalloc-rnd-15-256
|
|
672 672 100% 0.50K 21 32 336K kmalloc-rnd-06-512
|
|
5120 4865 95% 0.06K 80 64 320K kmalloc-rnd-10-64
|
|
2496 2496 100% 0.12K 78 32 312K kmalloc-rnd-08-128
|
|
1248 1248 100% 0.25K 39 32 312K kmalloc-rnd-06-256
|
|
3276 3276 100% 0.09K 78 42 312K kmalloc-rnd-02-96
|
|
1184 1184 100% 0.25K 37 32 296K kmalloc-rnd-07-256
|
|
1512 1512 100% 0.19K 36 42 288K kmalloc-rnd-13-192
|
|
1470 1470 100% 0.19K 35 42 280K proc_dir_entry
|
|
2240 1985 88% 0.12K 70 32 280K kmalloc-cg-128
|
|
2940 2868 97% 0.09K 70 42 280K kmalloc-rnd-15-96
|
|
3264 2925 89% 0.08K 64 51 256K sigqueue
|
|
64 64 100% 4.00K 8 8 256K kmalloc-rnd-14-4k
|
|
2074 2074 100% 0.12K 61 34 244K jbd2_journal_head
|
|
480 480 100% 0.50K 15 32 240K memdup_user-512
|
|
960 960 100% 0.25K 30 32 240K kmalloc-cg-256
|
|
2478 2478 100% 0.09K 59 42 236K kmalloc-rnd-06-96
|
|
928 928 100% 0.25K 29 32 232K kmalloc-rnd-14-256
|
|
1218 1218 100% 0.19K 29 42 232K kmalloc-rnd-14-192
|
|
928 928 100% 0.25K 29 32 232K kmalloc-rnd-09-256
|
|
1218 1177 96% 0.19K 29 42 232K kmalloc-rnd-06-192
|
|
322 322 100% 0.69K 7 46 224K rpc_inode_cache
|
|
868 868 100% 0.26K 28 31 224K tw_sock_TCP
|
|
224 224 100% 1.00K 7 32 224K kmalloc-rnd-05-1k
|
|
28 28 100% 8.00K 7 4 224K kmalloc-rnd-04-8k
|
|
7040 6774 96% 0.03K 55 128 220K kmalloc-rnd-04-32
|
|
9180 9139 99% 0.02K 54 170 216K lsm_file_cache
|
|
864 864 100% 0.25K 27 32 216K kmalloc-rnd-01-256
|
|
1134 1134 100% 0.19K 27 42 216K kmalloc-192
|
|
1092 1092 100% 0.19K 26 42 208K jbd2_transaction_s
|
|
832 832 100% 0.25K 26 32 208K kmalloc-rnd-10-256
|
|
1092 1059 96% 0.19K 26 42 208K kmalloc-rnd-08-192
|
|
1050 1050 100% 0.19K 25 42 200K file_lock_cache
|
|
1050 1050 100% 0.19K 25 42 200K kmalloc-rnd-10-192
|
|
800 797 99% 0.25K 25 32 200K kmalloc-rnd-04-256
|
|
800 800 100% 0.25K 25 32 200K kmalloc-rnd-02-256
|
|
1050 1050 100% 0.19K 25 42 200K kmalloc-rnd-01-192
|
|
800 800 100% 0.25K 25 32 200K kmalloc-256
|
|
6272 5795 92% 0.03K 49 128 196K kmalloc-cg-32
|
|
12544 12544 100% 0.02K 49 256 196K kmalloc-rnd-04-16
|
|
1008 1008 100% 0.19K 24 42 192K bio-136
|
|
600 600 100% 0.31K 24 25 192K bio-264
|
|
1104 1104 100% 0.17K 24 46 192K fuse_request
|
|
600 600 100% 0.31K 24 25 192K request_sock_TCP
|
|
300 300 100% 0.62K 12 25 192K hugetlbfs_inode_cache
|
|
768 768 100% 0.25K 24 32 192K task_delay_info
|
|
24 24 100% 8.00K 6 4 192K kmalloc-rnd-14-8k
|
|
768 768 100% 0.25K 24 32 192K kmalloc-rnd-12-256
|
|
1008 1008 100% 0.19K 24 42 192K kmalloc-rnd-12-192
|
|
1008 1008 100% 0.19K 24 42 192K kmalloc-rnd-11-192
|
|
1008 1008 100% 0.19K 24 42 192K kmalloc-rnd-09-192
|
|
96 96 100% 2.00K 6 16 192K kmalloc-rnd-05-2k
|
|
1008 1008 100% 0.19K 24 42 192K kmalloc-rnd-04-192
|
|
1008 1008 100% 0.19K 24 42 192K kmalloc-rnd-02-192
|
|
3008 3008 100% 0.06K 47 64 188K kmalloc-rnd-09-64
|
|
24064 19038 79% 0.01K 47 512 188K kmalloc-rnd-07-8
|
|
704 704 100% 0.25K 22 32 176K io_kiocb
|
|
704 704 100% 0.25K 22 32 176K kmem_cache
|
|
1806 1806 100% 0.09K 43 42 172K kmalloc-rcl-96
|
|
672 672 100% 0.25K 21 32 168K kmalloc-rnd-13-256
|
|
672 672 100% 0.25K 21 32 168K kmalloc-rnd-03-256
|
|
95 95 100% 1.62K 5 19 160K bdev_cache
|
|
20 20 100% 8.00K 5 4 160K kmalloc-rnd-15-8k
|
|
640 640 100% 0.25K 20 32 160K kmalloc-rnd-11-256
|
|
2496 2496 100% 0.06K 39 64 156K kmalloc-rnd-13-64
|
|
2432 2149 88% 0.06K 38 64 152K kmalloc-64
|
|
2701 2701 100% 0.05K 37 73 148K mb_cache_entry
|
|
4480 3584 80% 0.03K 35 128 140K kmalloc-rnd-07-32
|
|
714 714 100% 0.19K 17 42 136K kmalloc-rnd-07-192
|
|
544 544 100% 0.25K 17 32 136K kmalloc-rnd-05-256
|
|
2112 2072 98% 0.06K 33 64 132K kmalloc-rnd-07-64
|
|
128 128 100% 0.98K 4 32 128K request_queue
|
|
208 208 100% 0.60K 8 26 128K user_namespace
|
|
2048 2048 100% 0.06K 32 64 128K kmalloc-rnd-14-64
|
|
16 16 100% 8.00K 4 4 128K kmalloc-rnd-11-8k
|
|
2048 2048 100% 0.06K 32 64 128K kmalloc-rnd-11-64
|
|
2048 1696 82% 0.06K 32 64 128K kmalloc-rnd-04-64
|
|
15872 15840 99% 0.01K 31 512 124K kmalloc-rnd-04-8
|
|
780 780 100% 0.15K 30 26 120K ext4_groupinfo_4k
|
|
630 630 100% 0.19K 15 42 120K memdup_user-192
|
|
960 960 100% 0.12K 30 32 120K kmalloc-rnd-10-128
|
|
15360 14262 92% 0.01K 30 512 120K kmalloc-rnd-02-8
|
|
3840 3543 92% 0.03K 30 128 120K kmalloc-32
|
|
3712 3456 93% 0.03K 29 128 116K pending_reservation
|
|
1218 1218 100% 0.09K 29 42 116K kmalloc-rnd-05-96
|
|
1856 1793 96% 0.06K 29 64 116K kmalloc-rnd-03-64
|
|
1218 1218 100% 0.09K 29 42 116K kmalloc-rnd-01-96
|
|
7424 6346 85% 0.02K 29 256 116K kmalloc-16
|
|
2380 2380 100% 0.05K 28 85 112K shared_policy_node
|
|
3584 3584 100% 0.03K 28 128 112K kmalloc-rnd-13-32
|
|
3584 3584 100% 0.03K 28 128 112K kmalloc-rnd-12-32
|
|
3584 3474 96% 0.03K 28 128 112K kmalloc-rnd-09-32
|
|
3584 3463 96% 0.03K 28 128 112K kmalloc-rnd-08-32
|
|
1792 1667 93% 0.06K 28 64 112K kmalloc-rnd-01-64
|
|
864 864 100% 0.12K 27 32 108K kmalloc-rnd-14-128
|
|
1134 1134 100% 0.09K 27 42 108K kmalloc-rnd-04-96
|
|
1326 1326 100% 0.08K 26 51 104K Acpi-State
|
|
832 832 100% 0.12K 26 32 104K kmalloc-rcl-128
|
|
1092 1092 100% 0.09K 26 42 104K kmalloc-rnd-14-96
|
|
1664 1664 100% 0.06K 26 64 104K kmalloc-rnd-12-64
|
|
832 832 100% 0.12K 26 32 104K kmalloc-rnd-11-128
|
|
3328 3328 100% 0.03K 26 128 104K kmalloc-rnd-11-32
|
|
1092 1092 100% 0.09K 26 42 104K kmalloc-rnd-09-96
|
|
1664 1664 100% 0.06K 26 64 104K kmalloc-rnd-06-64
|
|
546 546 100% 0.19K 13 42 104K kmalloc-rnd-03-192
|
|
1092 1092 100% 0.09K 26 42 104K kmalloc-rnd-03-96
|
|
832 832 100% 0.12K 26 32 104K kmalloc-rnd-01-128
|
|
1050 1050 100% 0.09K 25 42 100K kmalloc-rnd-12-96
|
|
6400 6400 100% 0.02K 25 256 100K kmalloc-rnd-07-16
|
|
800 800 100% 0.12K 25 32 100K kmalloc-rnd-06-128
|
|
6400 6400 100% 0.02K 25 256 100K kmalloc-rnd-06-16
|
|
3200 3200 100% 0.03K 25 128 100K kmalloc-rnd-03-32
|
|
800 800 100% 0.12K 25 32 100K kmalloc-128
|
|
1050 1050 100% 0.09K 25 42 100K kmalloc-96
|
|
6 6 100% 16.00K 3 2 96K zio_buf_comb_16384
|
|
576 576 100% 0.16K 24 24 96K ext4_allocation_context
|
|
864 864 100% 0.11K 24 36 96K ext4_prealloc_space
|
|
1536 1536 100% 0.06K 24 64 96K ext4_io_end
|
|
3072 3072 100% 0.03K 24 128 96K xsk_generic_xmit_cache
|
|
6144 6144 100% 0.02K 24 256 96K ep_head
|
|
117 117 100% 0.81K 3 39 96K dax_cache
|
|
12 12 100% 8.00K 3 4 96K memdup_user-8k
|
|
1536 1536 100% 0.06K 24 64 96K memdup_user-64
|
|
3072 3072 100% 0.03K 24 128 96K memdup_user-32
|
|
6144 6144 100% 0.02K 24 256 96K memdup_user-16
|
|
12288 12288 100% 0.01K 24 512 96K memdup_user-8
|
|
3072 3072 100% 0.03K 24 128 96K pidfs_attr_cache
|
|
2448 2448 100% 0.04K 24 102 96K pde_opener
|
|
816 816 100% 0.12K 24 34 96K seq_file
|
|
222 222 100% 0.42K 6 37 96K uts_namespace
|
|
6144 6144 100% 0.02K 24 256 96K kmalloc-cg-16
|
|
12288 12288 100% 0.01K 24 512 96K kmalloc-cg-8
|
|
768 768 100% 0.12K 24 32 96K kmalloc-rnd-15-128
|
|
1536 1536 100% 0.06K 24 64 96K kmalloc-rnd-15-64
|
|
3072 3072 100% 0.03K 24 128 96K kmalloc-rnd-15-32
|
|
6144 6144 100% 0.02K 24 256 96K kmalloc-rnd-15-16
|
|
12288 12288 100% 0.01K 24 512 96K kmalloc-rnd-15-8
|
|
6144 6144 100% 0.02K 24 256 96K kmalloc-rnd-14-16
|
|
768 768 100% 0.12K 24 32 96K kmalloc-rnd-13-128
|
|
6144 6144 100% 0.02K 24 256 96K kmalloc-rnd-13-16
|
|
1008 1008 100% 0.09K 24 42 96K kmalloc-rnd-13-96
|
|
6144 6144 100% 0.02K 24 256 96K kmalloc-rnd-11-16
|
|
3072 3072 100% 0.03K 24 128 96K kmalloc-rnd-10-32
|
|
6144 6144 100% 0.02K 24 256 96K kmalloc-rnd-10-16
|
|
768 768 100% 0.12K 24 32 96K kmalloc-rnd-09-128
|
|
6144 6144 100% 0.02K 24 256 96K kmalloc-rnd-09-16
|
|
12288 12288 100% 0.01K 24 512 96K kmalloc-rnd-09-8
|
|
1536 1536 100% 0.06K 24 64 96K kmalloc-rnd-08-64
|
|
6144 6144 100% 0.02K 24 256 96K kmalloc-rnd-08-16
|
|
3072 3072 100% 0.03K 24 128 96K kmalloc-rnd-06-32
|
|
12288 12288 100% 0.01K 24 512 96K kmalloc-rnd-06-8
|
|
12 12 100% 8.00K 3 4 96K kmalloc-rnd-05-8k
|
|
1536 1536 100% 0.06K 24 64 96K kmalloc-rnd-05-64
|
|
6144 6144 100% 0.02K 24 256 96K kmalloc-rnd-05-16
|
|
12288 12288 100% 0.01K 24 512 96K kmalloc-rnd-05-8
|
|
768 768 100% 0.12K 24 32 96K kmalloc-rnd-04-128
|
|
6144 6144 100% 0.02K 24 256 96K kmalloc-rnd-03-16
|
|
1536 1536 100% 0.06K 24 64 96K kmalloc-rnd-02-64
|
|
3072 3072 100% 0.03K 24 128 96K kmalloc-rnd-02-32
|
|
6144 6144 100% 0.02K 24 256 96K kmalloc-rnd-02-16
|
|
3072 3072 100% 0.03K 24 128 96K kmalloc-rnd-01-32
|
|
6144 6144 100% 0.02K 24 256 96K kmalloc-rnd-01-16
|
|
12288 12288 100% 0.01K 24 512 96K kmalloc-rnd-01-8
|
|
12288 12288 100% 0.01K 24 512 96K kmalloc-8
|
|
1536 1490 97% 0.06K 24 64 96K kmem_cache_node
|
|
1288 1288 100% 0.07K 23 56 92K nsproxy
|
|
2944 2944 100% 0.03K 23 128 92K kmalloc-rnd-14-32
|
|
11776 11776 100% 0.01K 23 512 92K kmalloc-rnd-11-8
|
|
736 736 100% 0.12K 23 32 92K kmalloc-rnd-07-128
|
|
736 736 100% 0.12K 23 32 92K kmalloc-rnd-05-128
|
|
11776 11776 100% 0.01K 23 512 92K kmalloc-rnd-03-8
|
|
736 736 100% 0.12K 23 32 92K kmalloc-rnd-02-128
|
|
924 924 100% 0.09K 22 42 88K kmalloc-rnd-07-96
|
|
10752 10752 100% 0.01K 21 512 84K kmalloc-rnd-14-8
|
|
320 320 100% 0.25K 10 32 80K memdup_user-256
|
|
420 420 100% 0.19K 10 42 80K kmalloc-rnd-05-192
|
|
756 756 100% 0.09K 18 42 72K kmalloc-rnd-11-96
|
|
100 100 100% 0.62K 4 25 64K netfs_request
|
|
30 30 100% 2.06K 2 15 64K MPTCPv6
|
|
32 32 100% 1.94K 2 16 64K MPTCP
|
|
10 10 100% 5.81K 2 5 64K net_namespace
|
|
8 8 100% 8.00K 2 4 64K kmalloc-rnd-13-8k
|
|
8 8 100% 8.00K 2 4 64K kmalloc-rnd-09-8k
|
|
3840 3840 100% 0.02K 15 256 60K kmalloc-rnd-12-16
|
|
7680 7680 100% 0.01K 15 512 60K kmalloc-rnd-10-8
|
|
480 480 100% 0.12K 15 32 60K kmalloc-rnd-03-128
|
|
294 294 100% 0.19K 7 42 56K kmalloc-rcl-192
|
|
416 416 100% 0.12K 13 32 52K scsi_sense_cache
|
|
6144 6144 100% 0.01K 12 512 48K kmalloc-rnd-13-8
|
|
1122 1122 100% 0.04K 11 102 44K khugepaged_mm_slot
|
|
429 429 100% 0.10K 11 39 44K Acpi-ParseExt
|
|
5120 5120 100% 0.01K 10 512 40K kmalloc-rnd-12-8
|
|
288 288 100% 0.12K 9 32 36K kmalloc-rnd-12-128
|
|
124 124 100% 0.26K 4 31 32K tw_sock_TCPv6
|
|
10 10 100% 3.16K 1 10 32K kcopyd_job
|
|
34 34 100% 0.94K 1 34 32K mqueue_inode_cache
|
|
680 680 100% 0.05K 8 85 32K ip_fib_trie
|
|
584 584 100% 0.05K 8 73 32K ip_fib_alias
|
|
15 15 100% 2.06K 1 15 32K dmaengine-unmap-256
|
|
30 30 100% 1.06K 1 30 32K dmaengine-unmap-128
|
|
294 294 100% 0.09K 7 42 28K memdup_user-96
|
|
3584 3076 85% 0.01K 7 512 28K kmalloc-rnd-08-8
|
|
126 126 100% 0.19K 3 42 24K 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
|
|
50 50 100% 0.31K 2 25 16K bio-280
|
|
60 60 100% 0.27K 2 30 16K numa_policy
|
|
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.20K 0 40 0K ip4-frags
|
|
0 0 0% 0.38K 0 41 0K request_sock_subflow_v6
|
|
0 0 0% 0.38K 0 41 0K request_sock_subflow_v4
|
|
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
|
|
|
|
--- 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 1332121
|
|
pgmigrate_fail 2560
|
|
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 = 90112
|
|
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 = 3142 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 = 1546154
|
|
kernel.watchdog = 1
|
|
kernel.watchdog_cpumask = 0-47
|
|
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 105 root root 4096 Jul 26 16:22 ..
|
|
-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 16:09 .
|
|
drwxr-xr-x 105 root root 4096 Jul 26 16:22 ..
|
|
-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 16:53 zfs.conf
|
|
|
|
--- udev rules.d
|
|
total 8
|
|
drwxr-xr-x 2 root root 4096 Apr 4 16:52 .
|
|
drwxr-xr-x 4 root root 4096 Jul 26 11:28 ..
|
|
lrwxrwxrwx 1 root root 9 Apr 4 16:52 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=17179869184
|
|
|
|
--- 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 = Y
|
|
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 = 128
|
|
ple_window = 4096
|
|
ple_window_grow = 2
|
|
ple_window_max = 4294967295
|
|
ple_window_shrink = 0
|
|
pml = N
|
|
preemption_timer = Y
|
|
sgx = N
|
|
tdx = N
|
|
unrestricted_guest = Y
|
|
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.2.5/20242970da7fbcef (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.2.5 (running version: 9.2.5/20242970da7fbcef)
|
|
proxmox-kernel-helper: 9.2.0
|
|
proxmox-kernel-7.0.14-6-pve-signed: 7.0.14-6
|
|
proxmox-kernel-7.0: 7.0.14-6
|
|
proxmox-kernel-6.17.13-19-pve-signed: 6.17.13-19
|
|
proxmox-kernel-6.17: 6.17.13-19
|
|
proxmox-kernel-6.17.2-1-pve-signed: 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.1.1
|
|
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.6.7
|
|
libpve-notify-perl: 9.1.6
|
|
libpve-rs-perl: 0.15.3
|
|
libpve-storage-perl: 9.1.6
|
|
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.1.12
|
|
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.2.4
|
|
pve-i18n: 3.9.0
|
|
pve-qemu-kvm: 11.0.2-2
|
|
pve-xtermjs: 6.0.0-2
|
|
qemu-server: 9.2.1
|
|
smartmontools: 7.5-pve2
|
|
spiceterm: 3.4.2
|
|
swtpm: 0.8.0+pve3
|
|
vncterm: 1.9.2
|
|
zfsutils-linux: 2.4.3-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: 124792.80
|
|
REGEX/SECOND: 2103544
|
|
HD SIZE: 93.93 GB (/dev/mapper/pve-root)
|
|
BUFFERED READS: 27.95 MB/sec
|
|
AVERAGE SEEK TIME: 34.01 ms
|
|
FSYNCS/SECOND: 78.64
|
|
[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%3A35%3A23 -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 │ host-arch │ level │ lock │ maxcpu │ maxdisk │ maxmem │ mem │ memhost │ name │ netin │ netout │ network │ network-type │ node │ plugintype │ pool │ protocol │ sdn │ shared │ status │ storage │ tags │ template │ uptime │ vmid │ zone-type │
|
|
╞════════════════╪══════╪═════════════╪═════════╪═══════╪══════════╪══════════╪═══════════╪═════════╪═══════════╪═══════╪══════╪════════╪═══════════╪════════════╪══════════╪═════════╪══════╪═══════╪════════╪═════════╪══════════════╪═══════════╪════════════╪══════╪══════════╪═════╪════════╪════════╪═════════╪══════╪══════════╪═════════╪══════╪═══════════╡
|
|
│ node/pfv-tsys7 │ node │ 2 │ │ 2.79% │ 7.86 GiB │ │ │ │ │ │ │ 24 │ 93.93 GiB │ 188.83 GiB │ 9.02 GiB │ │ │ │ │ │ │ pfv-tsys7 │ │ │ │ │ │ online │ │ │ │ 31m 38s │ │ │
|
|
└────────────────┴──────┴─────────────┴─────────┴───────┴──────────┴──────────┴───────────┴─────────┴───────────┴───────┴──────┴────────┴───────────┴────────────┴──────────┴─────────┴──────┴───────┴────────┴─────────┴──────────────┴───────────┴────────────┴──────┴──────────┴─────┴────────┴────────┴─────────┴──────┴──────────┴─────────┴──────┴───────────┘
|
|
|
|
###############################################################################
|
|
# 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 f8:bc:12:34:e0:74 brd ff:ff:ff:ff:ff:ff promiscuity 1 allmulti 1 minmtu 60 maxmtu 9000
|
|
bridge_slave state forwarding priority 32 cost 100 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.f8:bc:12:34:e0:74 designated_root 8000.f8:bc:12:34:e0:74 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 5 numrxqueues 5 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 enxf8bc1234e074
|
|
3: nic1: <BROADCAST,MULTICAST,SLAVE,UP,LOWER_UP> mtu 1500 qdisc mq master bond0 state UP mode DEFAULT group default qlen 1000
|
|
link/ether f8:bc:12:34:e0:75 brd ff:ff:ff:ff:ff:ff promiscuity 1 allmulti 1 minmtu 60 maxmtu 9000
|
|
bond_slave state ACTIVE mii_status UP link_failure_count 0 perm_hwaddr f8:bc:12:34:e0:75 queue_id 0 prio 0 ad_aggregator_id 1 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 5 numrxqueues 5 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 enxf8bc1234e075
|
|
4: nic2: <BROADCAST,MULTICAST,SLAVE,UP,LOWER_UP> mtu 1500 qdisc mq master bond0 state UP mode DEFAULT group default qlen 1000
|
|
link/ether f8:bc:12:34:e0:75 brd ff:ff:ff:ff:ff:ff permaddr f8:bc:12:34:e0:76 promiscuity 1 allmulti 1 minmtu 60 maxmtu 9000
|
|
bond_slave state ACTIVE mii_status UP link_failure_count 0 perm_hwaddr f8:bc:12:34:e0:76 queue_id 0 prio 0 ad_aggregator_id 1 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 5 numrxqueues 5 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 enxf8bc1234e076
|
|
5: nic3: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP mode DEFAULT group default qlen 1000
|
|
link/ether f8:bc:12:34:e0:77 brd ff:ff:ff:ff:ff:ff promiscuity 0 allmulti 0 minmtu 60 maxmtu 9000 addrgenmode eui64 numtxqueues 5 numrxqueues 5 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 enxf8bc1234e077
|
|
6: 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
|
|
7: vmbr0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000
|
|
link/ether f8:bc:12:34:e0:74 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.f8:bc:12:34:e0:74 designated_root 8000.f8:bc:12:34:e0:74 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 95.20 fdb_n_learned 97 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 18.1us mcast_hash_elasticity 16 mcast_hash_max 512 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
|
|
8: bond0: <BROADCAST,MULTICAST,MASTER,UP,LOWER_UP> mtu 1500 qdisc noqueue master datanet state UP mode DEFAULT group default qlen 1000
|
|
link/ether f8:bc:12:34:e0:75 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 1 ad_num_ports 2 ad_actor_key 9 ad_partner_key 27 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 100 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.f8:bc:12:34:e0:75 designated_root 8000.f8:bc:12:34:e0:75 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
|
|
9: datanet: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000
|
|
link/ether f8:bc:12:34:e0:75 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.f8:bc:12:34:e0:75 designated_root 8000.f8:bc:12:34:e0:75 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 208.45 fdb_n_learned 10 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 512 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: tap701i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq master fwbr701i0 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether ea:02:63:ef:c5:c7 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.6a:54:33:31:90:a1 designated_root 8000.6a:54:33:31:90:a1 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: fwbr701i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000
|
|
link/ether 6a:54:33:31:90:a1 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.6a:54:33:31:90:a1 designated_root 8000.6a:54:33:31:90:a1 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 100.25 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 13 mcast_querier_ipv4_other_timer 18.1us 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: fwpr701p0@fwln701i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master vmbr0 state UP mode DEFAULT group default qlen 1000
|
|
link/ether 06:69:93:dc:85:25 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.f8:bc:12:34:e0:74 designated_root 8000.f8:bc:12:34:e0:74 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 48 numrxqueues 48 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
|
|
13: fwln701i0@fwpr701p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master fwbr701i0 state UP mode DEFAULT group default qlen 1000
|
|
link/ether 6a:54:33:31:90:a1 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.6a:54:33:31:90:a1 designated_root 8000.6a:54:33:31:90:a1 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 48 numrxqueues 48 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
|
|
14: tap701i1: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq master fwbr701i1 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether c2:27:e6:09:8d:17 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.42:fc:86:6e:2f:20 designated_root 8000.42:fc:86:6e:2f:20 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: fwbr701i1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000
|
|
link/ether 42:fc:86:6e:2f:20 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.42:fc:86:6e:2f:20 designated_root 8000.42:fc:86:6e:2f:20 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 85.59 fdb_n_learned 6 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
|
|
16: fwpr701p1@fwln701i1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master datanet state UP mode DEFAULT group default qlen 1000
|
|
link/ether 56:49:27:08:d8:d9 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.f8:bc:12:34:e0:75 designated_root 8000.f8:bc:12:34:e0:75 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 48 numrxqueues 48 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: fwln701i1@fwpr701p1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master fwbr701i1 state UP mode DEFAULT group default qlen 1000
|
|
link/ether 42:fc:86:6e:2f:20 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.42:fc:86:6e:2f:20 designated_root 8000.42:fc:86:6e:2f:20 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 48 numrxqueues 48 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: tap702i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq master fwbr702i0 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether 1e:c0:60:6c:f3:d2 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.5a:c0:32:82:6a:11 designated_root 8000.5a:c0:32:82:6a:11 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: fwbr702i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000
|
|
link/ether 5a:c0:32:82:6a:11 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.5a:c0:32:82:6a:11 designated_root 8000.5a:c0:32:82:6a:11 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 100.25 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 18.1us 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: fwpr702p0@fwln702i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master vmbr0 state UP mode DEFAULT group default qlen 1000
|
|
link/ether 1e:3a:b8:c7:fb:a1 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.f8:bc:12:34:e0:74 designated_root 8000.f8:bc:12:34:e0:74 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 48 numrxqueues 48 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: fwln702i0@fwpr702p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master fwbr702i0 state UP mode DEFAULT group default qlen 1000
|
|
link/ether 5a:c0:32:82:6a:11 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.5a:c0:32:82:6a:11 designated_root 8000.5a:c0:32:82:6a:11 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 48 numrxqueues 48 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: tap703i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq master fwbr703i0 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether d2:ac:e1:a0:8d:67 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.8e:5f:d3:dd:6a:4a designated_root 8000.8e:5f:d3:dd:6a:4a 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: fwbr703i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000
|
|
link/ether 8e:5f:d3:dd:6a:4a 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.8e:5f:d3:dd:6a:4a designated_root 8000.8e:5f:d3:dd:6a:4a 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 100.25 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 18.1us 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: fwpr703p0@fwln703i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master vmbr0 state UP mode DEFAULT group default qlen 1000
|
|
link/ether ae:fe:84:d1:c2:37 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.f8:bc:12:34:e0:74 designated_root 8000.f8:bc:12:34:e0:74 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 48 numrxqueues 48 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: fwln703i0@fwpr703p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master fwbr703i0 state UP mode DEFAULT group default qlen 1000
|
|
link/ether 8e:5f:d3:dd:6a:4a 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.8e:5f:d3:dd:6a:4a designated_root 8000.8e:5f:d3:dd:6a:4a 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 48 numrxqueues 48 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
|
|
26: tap704i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq master fwbr704i0 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether a6:3d:64:05:1a:6d 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.ba:e1:96:f0:38:e1 designated_root 8000.ba:e1:96:f0:38:e1 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
|
|
27: fwbr704i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000
|
|
link/ether ba:e1:96:f0:38:e1 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.ba:e1:96:f0:38:e1 designated_root 8000.ba:e1:96:f0:38:e1 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 100.25 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 29 mcast_querier_ipv4_other_timer 18.1us 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
|
|
28: fwpr704p0@fwln704i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master vmbr0 state UP mode DEFAULT group default qlen 1000
|
|
link/ether 3e:13:81:61:ad:02 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 0x8005 port_no 0x5 designated_port 32773 designated_cost 0 designated_bridge 8000.f8:bc:12:34:e0:74 designated_root 8000.f8:bc:12:34:e0:74 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 48 numrxqueues 48 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
|
|
29: fwln704i0@fwpr704p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master fwbr704i0 state UP mode DEFAULT group default qlen 1000
|
|
link/ether ba:e1:96:f0:38:e1 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.ba:e1:96:f0:38:e1 designated_root 8000.ba:e1:96:f0:38:e1 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 48 numrxqueues 48 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
|
|
30: tap704i1: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq master fwbr704i1 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether ea:0f:74:65:9f:9c 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.a2:a9:ed:53:3e:75 designated_root 8000.a2:a9:ed:53:3e:75 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
|
|
31: fwbr704i1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000
|
|
link/ether a2:a9:ed:53:3e:75 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.a2:a9:ed:53:3e:75 designated_root 8000.a2:a9:ed:53:3e:75 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 85.59 fdb_n_learned 6 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
|
|
32: fwpr704p1@fwln704i1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master datanet state UP mode DEFAULT group default qlen 1000
|
|
link/ether 5e:aa:07:86:49:27 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.f8:bc:12:34:e0:75 designated_root 8000.f8:bc:12:34:e0:75 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 48 numrxqueues 48 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
|
|
33: fwln704i1@fwpr704p1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master fwbr704i1 state UP mode DEFAULT group default qlen 1000
|
|
link/ether a2:a9:ed:53:3e:75 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.a2:a9:ed:53:3e:75 designated_root 8000.a2:a9:ed:53:3e:75 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 48 numrxqueues 48 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 f8:bc:12:34:e0:74 brd ff:ff:ff:ff:ff:ff\ altname enp1s0f0\ altname enxf8bc1234e074
|
|
3: nic1: <BROADCAST,MULTICAST,SLAVE,UP,LOWER_UP> mtu 1500 qdisc mq master bond0 state UP mode DEFAULT group default qlen 1000\ link/ether f8:bc:12:34:e0:75 brd ff:ff:ff:ff:ff:ff\ altname enp1s0f1\ altname enxf8bc1234e075
|
|
4: nic2: <BROADCAST,MULTICAST,SLAVE,UP,LOWER_UP> mtu 1500 qdisc mq master bond0 state UP mode DEFAULT group default qlen 1000\ link/ether f8:bc:12:34:e0:75 brd ff:ff:ff:ff:ff:ff permaddr f8:bc:12:34:e0:76\ altname enp2s0f0\ altname enxf8bc1234e076
|
|
5: nic3: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP mode DEFAULT group default qlen 1000\ link/ether f8:bc:12:34:e0:77 brd ff:ff:ff:ff:ff:ff\ altname enp2s0f1\ altname enxf8bc1234e077
|
|
6: tailscale0: <POINTOPOINT,MULTICAST,NOARP,UP,LOWER_UP> mtu 1280 qdisc fq state UNKNOWN mode DEFAULT group default qlen 500\ link/none
|
|
7: vmbr0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000\ link/ether f8:bc:12:34:e0:74 brd ff:ff:ff:ff:ff:ff
|
|
8: bond0: <BROADCAST,MULTICAST,MASTER,UP,LOWER_UP> mtu 1500 qdisc noqueue master datanet state UP mode DEFAULT group default qlen 1000\ link/ether f8:bc:12:34:e0:75 brd ff:ff:ff:ff:ff:ff
|
|
9: datanet: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000\ link/ether f8:bc:12:34:e0:75 brd ff:ff:ff:ff:ff:ff
|
|
10: tap701i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq master fwbr701i0 state UNKNOWN mode DEFAULT group default qlen 1000\ link/ether ea:02:63:ef:c5:c7 brd ff:ff:ff:ff:ff:ff
|
|
11: fwbr701i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000\ link/ether 6a:54:33:31:90:a1 brd ff:ff:ff:ff:ff:ff
|
|
12: fwpr701p0@fwln701i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master vmbr0 state UP mode DEFAULT group default qlen 1000\ link/ether 06:69:93:dc:85:25 brd ff:ff:ff:ff:ff:ff
|
|
13: fwln701i0@fwpr701p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master fwbr701i0 state UP mode DEFAULT group default qlen 1000\ link/ether 6a:54:33:31:90:a1 brd ff:ff:ff:ff:ff:ff
|
|
14: tap701i1: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq master fwbr701i1 state UNKNOWN mode DEFAULT group default qlen 1000\ link/ether c2:27:e6:09:8d:17 brd ff:ff:ff:ff:ff:ff
|
|
15: fwbr701i1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000\ link/ether 42:fc:86:6e:2f:20 brd ff:ff:ff:ff:ff:ff
|
|
16: fwpr701p1@fwln701i1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master datanet state UP mode DEFAULT group default qlen 1000\ link/ether 56:49:27:08:d8:d9 brd ff:ff:ff:ff:ff:ff
|
|
17: fwln701i1@fwpr701p1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master fwbr701i1 state UP mode DEFAULT group default qlen 1000\ link/ether 42:fc:86:6e:2f:20 brd ff:ff:ff:ff:ff:ff
|
|
18: tap702i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq master fwbr702i0 state UNKNOWN mode DEFAULT group default qlen 1000\ link/ether 1e:c0:60:6c:f3:d2 brd ff:ff:ff:ff:ff:ff
|
|
19: fwbr702i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000\ link/ether 5a:c0:32:82:6a:11 brd ff:ff:ff:ff:ff:ff
|
|
20: fwpr702p0@fwln702i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master vmbr0 state UP mode DEFAULT group default qlen 1000\ link/ether 1e:3a:b8:c7:fb:a1 brd ff:ff:ff:ff:ff:ff
|
|
21: fwln702i0@fwpr702p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master fwbr702i0 state UP mode DEFAULT group default qlen 1000\ link/ether 5a:c0:32:82:6a:11 brd ff:ff:ff:ff:ff:ff
|
|
22: tap703i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq master fwbr703i0 state UNKNOWN mode DEFAULT group default qlen 1000\ link/ether d2:ac:e1:a0:8d:67 brd ff:ff:ff:ff:ff:ff
|
|
23: fwbr703i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000\ link/ether 8e:5f:d3:dd:6a:4a brd ff:ff:ff:ff:ff:ff
|
|
24: fwpr703p0@fwln703i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master vmbr0 state UP mode DEFAULT group default qlen 1000\ link/ether ae:fe:84:d1:c2:37 brd ff:ff:ff:ff:ff:ff
|
|
25: fwln703i0@fwpr703p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master fwbr703i0 state UP mode DEFAULT group default qlen 1000\ link/ether 8e:5f:d3:dd:6a:4a brd ff:ff:ff:ff:ff:ff
|
|
26: tap704i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq master fwbr704i0 state UNKNOWN mode DEFAULT group default qlen 1000\ link/ether a6:3d:64:05:1a:6d brd ff:ff:ff:ff:ff:ff
|
|
27: fwbr704i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000\ link/ether ba:e1:96:f0:38:e1 brd ff:ff:ff:ff:ff:ff
|
|
28: fwpr704p0@fwln704i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master vmbr0 state UP mode DEFAULT group default qlen 1000\ link/ether 3e:13:81:61:ad:02 brd ff:ff:ff:ff:ff:ff
|
|
29: fwln704i0@fwpr704p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master fwbr704i0 state UP mode DEFAULT group default qlen 1000\ link/ether ba:e1:96:f0:38:e1 brd ff:ff:ff:ff:ff:ff
|
|
30: tap704i1: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq master fwbr704i1 state UNKNOWN mode DEFAULT group default qlen 1000\ link/ether ea:0f:74:65:9f:9c brd ff:ff:ff:ff:ff:ff
|
|
31: fwbr704i1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000\ link/ether a2:a9:ed:53:3e:75 brd ff:ff:ff:ff:ff:ff
|
|
32: fwpr704p1@fwln704i1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master datanet state UP mode DEFAULT group default qlen 1000\ link/ether 5e:aa:07:86:49:27 brd ff:ff:ff:ff:ff:ff
|
|
33: fwln704i1@fwpr704p1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master fwbr704i1 state UP mode DEFAULT group default qlen 1000\ link/ether a2:a9:ed:53:3e:75 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
|
|
6: tailscale0 inet 100.110.146.27/32 scope global tailscale0\ valid_lft forever preferred_lft forever
|
|
7: vmbr0 inet 192.168.0.250/22 brd 192.168.3.255 scope global dynamic vmbr0\ valid_lft 349sec preferred_lft 349sec
|
|
9: datanet inet 10.100.100.7/24 scope global datanet\ 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::fabc:12ff:fe34:e077/64 scope link proto kernel_ll \ valid_lft forever preferred_lft forever
|
|
6: tailscale0 inet6 fd7a:115c:a1e0::333b:921b/128 scope global \ valid_lft forever preferred_lft forever
|
|
6: tailscale0 inet6 fe80::89bf:3115:94fc:9b90/64 scope link stable-privacy proto kernel_ll \ valid_lft forever preferred_lft forever
|
|
7: vmbr0 inet6 fe80::fabc:12ff:fe34:e074/64 scope link proto kernel_ll \ valid_lft forever preferred_lft forever
|
|
9: datanet inet6 fe80::fabc:12ff:fe34:e075/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 f8:bc:12:34:e0:74 brd ff:ff:ff:ff:ff:ff
|
|
altname enp1s0f0
|
|
altname enxf8bc1234e074
|
|
3: nic1: <BROADCAST,MULTICAST,SLAVE,UP,LOWER_UP> mtu 1500 qdisc mq master bond0 state UP group default qlen 1000
|
|
link/ether f8:bc:12:34:e0:75 brd ff:ff:ff:ff:ff:ff
|
|
altname enp1s0f1
|
|
altname enxf8bc1234e075
|
|
4: nic2: <BROADCAST,MULTICAST,SLAVE,UP,LOWER_UP> mtu 1500 qdisc mq master bond0 state UP group default qlen 1000
|
|
link/ether f8:bc:12:34:e0:75 brd ff:ff:ff:ff:ff:ff permaddr f8:bc:12:34:e0:76
|
|
altname enp2s0f0
|
|
altname enxf8bc1234e076
|
|
5: nic3: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP group default qlen 1000
|
|
link/ether f8:bc:12:34:e0:77 brd ff:ff:ff:ff:ff:ff
|
|
altname enp2s0f1
|
|
altname enxf8bc1234e077
|
|
inet6 fe80::fabc:12ff:fe34:e077/64 scope link proto kernel_ll
|
|
valid_lft forever preferred_lft forever
|
|
6: tailscale0: <POINTOPOINT,MULTICAST,NOARP,UP,LOWER_UP> mtu 1280 qdisc fq state UNKNOWN group default qlen 500
|
|
link/none
|
|
inet 100.110.146.27/32 scope global tailscale0
|
|
valid_lft forever preferred_lft forever
|
|
inet6 fd7a:115c:a1e0::333b:921b/128 scope global
|
|
valid_lft forever preferred_lft forever
|
|
inet6 fe80::89bf:3115:94fc:9b90/64 scope link stable-privacy proto kernel_ll
|
|
valid_lft forever preferred_lft forever
|
|
7: vmbr0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
|
|
link/ether f8:bc:12:34:e0:74 brd ff:ff:ff:ff:ff:ff
|
|
inet 192.168.0.250/22 brd 192.168.3.255 scope global dynamic vmbr0
|
|
valid_lft 349sec preferred_lft 349sec
|
|
inet6 fe80::fabc:12ff:fe34:e074/64 scope link proto kernel_ll
|
|
valid_lft forever preferred_lft forever
|
|
8: bond0: <BROADCAST,MULTICAST,MASTER,UP,LOWER_UP> mtu 1500 qdisc noqueue master datanet state UP group default qlen 1000
|
|
link/ether f8:bc:12:34:e0:75 brd ff:ff:ff:ff:ff:ff
|
|
9: datanet: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
|
|
link/ether f8:bc:12:34:e0:75 brd ff:ff:ff:ff:ff:ff
|
|
inet 10.100.100.7/24 scope global datanet
|
|
valid_lft forever preferred_lft forever
|
|
inet6 fe80::fabc:12ff:fe34:e075/64 scope link proto kernel_ll
|
|
valid_lft forever preferred_lft forever
|
|
10: tap701i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq master fwbr701i0 state UNKNOWN group default qlen 1000
|
|
link/ether ea:02:63:ef:c5:c7 brd ff:ff:ff:ff:ff:ff
|
|
11: fwbr701i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
|
|
link/ether 6a:54:33:31:90:a1 brd ff:ff:ff:ff:ff:ff
|
|
12: fwpr701p0@fwln701i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master vmbr0 state UP group default qlen 1000
|
|
link/ether 06:69:93:dc:85:25 brd ff:ff:ff:ff:ff:ff
|
|
13: fwln701i0@fwpr701p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master fwbr701i0 state UP group default qlen 1000
|
|
link/ether 6a:54:33:31:90:a1 brd ff:ff:ff:ff:ff:ff
|
|
14: tap701i1: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq master fwbr701i1 state UNKNOWN group default qlen 1000
|
|
link/ether c2:27:e6:09:8d:17 brd ff:ff:ff:ff:ff:ff
|
|
15: fwbr701i1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
|
|
link/ether 42:fc:86:6e:2f:20 brd ff:ff:ff:ff:ff:ff
|
|
16: fwpr701p1@fwln701i1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master datanet state UP group default qlen 1000
|
|
link/ether 56:49:27:08:d8:d9 brd ff:ff:ff:ff:ff:ff
|
|
17: fwln701i1@fwpr701p1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master fwbr701i1 state UP group default qlen 1000
|
|
link/ether 42:fc:86:6e:2f:20 brd ff:ff:ff:ff:ff:ff
|
|
18: tap702i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq master fwbr702i0 state UNKNOWN group default qlen 1000
|
|
link/ether 1e:c0:60:6c:f3:d2 brd ff:ff:ff:ff:ff:ff
|
|
19: fwbr702i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
|
|
link/ether 5a:c0:32:82:6a:11 brd ff:ff:ff:ff:ff:ff
|
|
20: fwpr702p0@fwln702i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master vmbr0 state UP group default qlen 1000
|
|
link/ether 1e:3a:b8:c7:fb:a1 brd ff:ff:ff:ff:ff:ff
|
|
21: fwln702i0@fwpr702p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master fwbr702i0 state UP group default qlen 1000
|
|
link/ether 5a:c0:32:82:6a:11 brd ff:ff:ff:ff:ff:ff
|
|
22: tap703i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq master fwbr703i0 state UNKNOWN group default qlen 1000
|
|
link/ether d2:ac:e1:a0:8d:67 brd ff:ff:ff:ff:ff:ff
|
|
23: fwbr703i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
|
|
link/ether 8e:5f:d3:dd:6a:4a brd ff:ff:ff:ff:ff:ff
|
|
24: fwpr703p0@fwln703i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master vmbr0 state UP group default qlen 1000
|
|
link/ether ae:fe:84:d1:c2:37 brd ff:ff:ff:ff:ff:ff
|
|
25: fwln703i0@fwpr703p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master fwbr703i0 state UP group default qlen 1000
|
|
link/ether 8e:5f:d3:dd:6a:4a brd ff:ff:ff:ff:ff:ff
|
|
26: tap704i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq master fwbr704i0 state UNKNOWN group default qlen 1000
|
|
link/ether a6:3d:64:05:1a:6d brd ff:ff:ff:ff:ff:ff
|
|
27: fwbr704i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
|
|
link/ether ba:e1:96:f0:38:e1 brd ff:ff:ff:ff:ff:ff
|
|
28: fwpr704p0@fwln704i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master vmbr0 state UP group default qlen 1000
|
|
link/ether 3e:13:81:61:ad:02 brd ff:ff:ff:ff:ff:ff
|
|
29: fwln704i0@fwpr704p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master fwbr704i0 state UP group default qlen 1000
|
|
link/ether ba:e1:96:f0:38:e1 brd ff:ff:ff:ff:ff:ff
|
|
30: tap704i1: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq master fwbr704i1 state UNKNOWN group default qlen 1000
|
|
link/ether ea:0f:74:65:9f:9c brd ff:ff:ff:ff:ff:ff
|
|
31: fwbr704i1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
|
|
link/ether a2:a9:ed:53:3e:75 brd ff:ff:ff:ff:ff:ff
|
|
32: fwpr704p1@fwln704i1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master datanet state UP group default qlen 1000
|
|
link/ether 5e:aa:07:86:49:27 brd ff:ff:ff:ff:ff:ff
|
|
33: fwln704i1@fwpr704p1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master fwbr704i1 state UP group default qlen 1000
|
|
link/ether a2:a9:ed:53:3e:75 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 datanet proto kernel scope link src 10.100.100.7
|
|
192.168.0.0/22 dev vmbr0 proto kernel scope link src 192.168.0.250
|
|
|
|
--- 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
|
|
58001 395 0 0 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
58001 395 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 f8:bc:12:34:e0:74 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
625089782 522553 0 62 0 52169
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
10761140 66048 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 1
|
|
altname enp1s0f0
|
|
altname enxf8bc1234e074
|
|
3: nic1: <BROADCAST,MULTICAST,SLAVE,UP,LOWER_UP> mtu 1500 qdisc mq master bond0 state UP mode DEFAULT group default qlen 1000
|
|
link/ether f8:bc:12:34:e0:75 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
5842795620 4994345 0 0 0 268
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
11990831818 8955498 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 1
|
|
altname enp1s0f1
|
|
altname enxf8bc1234e075
|
|
4: nic2: <BROADCAST,MULTICAST,SLAVE,UP,LOWER_UP> mtu 1500 qdisc mq master bond0 state UP mode DEFAULT group default qlen 1000
|
|
link/ether f8:bc:12:34:e0:75 brd ff:ff:ff:ff:ff:ff permaddr f8:bc:12:34:e0:76
|
|
RX: bytes packets errors dropped missed mcast
|
|
7957591007 6169227 0 0 0 1540
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
13985719873 11219884 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 1
|
|
altname enp2s0f0
|
|
altname enxf8bc1234e076
|
|
5: nic3: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq state UP mode DEFAULT group default qlen 1000
|
|
link/ether f8:bc:12:34:e0:77 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
192580 2032 0 0 0 1864
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
33021 125 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 1
|
|
altname enp2s0f1
|
|
altname enxf8bc1234e077
|
|
6: 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
|
|
912446 4337 0 0 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
2329899 4404 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 0
|
|
7: vmbr0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000
|
|
link/ether f8:bc:12:34:e0:74 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
589662694 181400 0 0 0 45858
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
6642913 46114 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 2
|
|
8: bond0: <BROADCAST,MULTICAST,MASTER,UP,LOWER_UP> mtu 1500 qdisc noqueue master datanet state UP mode DEFAULT group default qlen 1000
|
|
link/ether f8:bc:12:34:e0:75 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
13800386627 11163572 0 122 0 1808
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
25976551691 20175382 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 2
|
|
9: datanet: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000
|
|
link/ether f8:bc:12:34:e0:75 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
13344052955 6376586 0 0 0 1558
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
30277056579 10191024 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 2
|
|
10: tap701i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq master fwbr701i0 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether ea:02:63:ef:c5:c7 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
824893 4188 0 0 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
7192884 59666 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 0
|
|
11: fwbr701i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000
|
|
link/ether 6a:54:33:31:90:a1 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
4440575 52665 0 58 0 34528
|
|
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
|
|
12: fwpr701p0@fwln701i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master vmbr0 state UP mode DEFAULT group default qlen 1000
|
|
link/ether 06:69:93:dc:85:25 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
837094 4237 0 49 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
7192933 59666 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 2
|
|
13: fwln701i0@fwpr701p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master fwbr701i0 state UP mode DEFAULT group default qlen 1000
|
|
link/ether 6a:54:33:31:90:a1 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
7192933 59666 0 49 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
837094 4237 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 2
|
|
14: tap701i1: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq master fwbr701i1 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether c2:27:e6:09:8d:17 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
|
|
60 1 0 509 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 0
|
|
15: fwbr701i1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000
|
|
link/ether 42:fc:86:6e:2f:20 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
109121 1344 0 0 0 1262
|
|
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: fwpr701p1@fwln701i1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master datanet state UP mode DEFAULT group default qlen 1000
|
|
link/ether 56:49:27:08:d8:d9 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
12201 49 0 49 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
152538 1525 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 2
|
|
17: fwln701i1@fwpr701p1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master fwbr701i1 state UP mode DEFAULT group default qlen 1000
|
|
link/ether 42:fc:86:6e:2f:20 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
152538 1525 0 49 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
12201 49 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 2
|
|
18: tap702i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq master fwbr702i0 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether 1e:c0:60:6c:f3:d2 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
1136940 6005 0 0 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
8420157 62025 0 279 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 0
|
|
19: fwbr702i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000
|
|
link/ether 5a:c0:32:82:6a:11 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
4429360 52501 0 58 0 34453
|
|
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: fwpr702p0@fwln702i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master vmbr0 state UP mode DEFAULT group default qlen 1000
|
|
link/ether 1e:3a:b8:c7:fb:a1 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
1149141 6054 0 49 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
8449823 62304 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 2
|
|
21: fwln702i0@fwpr702p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master fwbr702i0 state UP mode DEFAULT group default qlen 1000
|
|
link/ether 5a:c0:32:82:6a:11 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
8449823 62304 0 49 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
1149141 6054 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 2
|
|
22: tap703i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq master fwbr703i0 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether d2:ac:e1:a0:8d:67 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
998014 4742 0 0 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
7412887 59753 0 628 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 0
|
|
23: fwbr703i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000
|
|
link/ether 8e:5f:d3:dd:6a:4a brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
4414547 52334 0 58 0 34342
|
|
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: fwpr703p0@fwln703i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master vmbr0 state UP mode DEFAULT group default qlen 1000
|
|
link/ether ae:fe:84:d1:c2:37 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
1010215 4791 0 49 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
7474620 60388 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 2
|
|
25: fwln703i0@fwpr703p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master fwbr703i0 state UP mode DEFAULT group default qlen 1000
|
|
link/ether 8e:5f:d3:dd:6a:4a brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
7474620 60388 0 49 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
1010215 4791 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 2
|
|
26: tap704i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq master fwbr704i0 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether a6:3d:64:05:1a:6d brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
782296 3830 0 0 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
6790400 56751 0 1864 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 0
|
|
27: fwbr704i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000
|
|
link/ether ba:e1:96:f0:38:e1 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
4400446 52174 0 58 0 34236
|
|
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
|
|
28: fwpr704p0@fwln704i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master vmbr0 state UP mode DEFAULT group default qlen 1000
|
|
link/ether 3e:13:81:61:ad:02 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
794497 3879 0 49 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
6967660 58615 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 2
|
|
29: fwln704i0@fwpr704p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master fwbr704i0 state UP mode DEFAULT group default qlen 1000
|
|
link/ether ba:e1:96:f0:38:e1 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
6967660 58615 0 49 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
794497 3879 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 2
|
|
30: tap704i1: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq master fwbr704i1 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether ea:0f:74:65:9f:9c 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
|
|
60 1 0 491 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 0
|
|
31: fwbr704i1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000
|
|
link/ether a2:a9:ed:53:3e:75 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
107229 1326 0 0 0 1247
|
|
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
|
|
32: fwpr704p1@fwln704i1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master datanet state UP mode DEFAULT group default qlen 1000
|
|
link/ether 5e:aa:07:86:49:27 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
12201 49 0 49 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
150394 1507 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 2
|
|
33: fwln704i1@fwpr704p1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master fwbr704i1 state UP mode DEFAULT group default qlen 1000
|
|
link/ether a2:a9:ed:53:3e:75 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
150394 1507 0 49 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
12201 49 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
|
|
192.168.3.55 dev vmbr0 lladdr 54:e4:bd:d3:da:78 STALE
|
|
10.100.100.6 dev datanet lladdr 00:21:9b:a2:7c:55 STALE
|
|
192.168.0.21 dev vmbr0 lladdr ca:fe:0f:0e:b0:75 STALE
|
|
192.168.1.164 dev vmbr0 FAILED
|
|
10.100.100.1 dev datanet lladdr 8c:ae:4c:cd:a6:2d STALE
|
|
192.168.2.44 dev vmbr0 lladdr bc:24:11:e6:03:2d REACHABLE
|
|
192.168.3.254 dev vmbr0 lladdr 6c:4b:b4:10:40:61 REACHABLE
|
|
10.100.100.5 dev datanet lladdr 00:1b:78:5c:e9:ce 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 STALE
|
|
192.168.3.250 dev vmbr0 lladdr 00:15:5d:64:e8:1e REACHABLE
|
|
192.168.3.78 dev vmbr0 lladdr bc:24:11:1a:8f:6f REACHABLE
|
|
192.168.3.11 dev vmbr0 lladdr 34:17:eb:b3:b1:2d STALE
|
|
10.100.100.4 dev datanet lladdr 8c:ae:4c:cd:a9:26 REACHABLE
|
|
192.168.1.166 dev vmbr0 lladdr 00:00:c0:34:0c:dc STALE
|
|
fe80::966:b4b8:282d:dff8 dev vmbr0 lladdr bc:24:11:27:4f:1c STALE
|
|
fe80::ec58:8902:551a:c823 dev vmbr0 lladdr bc:24:11:1e:61:cf STALE
|
|
fe80::eae9:e541:ea1f:9987 dev vmbr0 lladdr 9c:c8:e9:63:4b:95 STALE
|
|
fe80::65f9:f271:9449:32fc dev vmbr0 lladdr bc:24:11:2e:5a:d6 STALE
|
|
fe80::436f:cf31:df06:ba90 dev vmbr0 lladdr bc:24:11:5e:dc:44 STALE
|
|
fe80::7f67:9446:ea86:eb01 dev vmbr0 lladdr 68:ec:8a:0e:36:69 router STALE
|
|
fe80::6e4b:b4ff:fe10:4061 dev vmbr0 lladdr 6c:4b:b4:10:40:61 router REACHABLE
|
|
fe80::36bd:c8ff:fe2d:18c5 dev vmbr0 lladdr 34:bd:c8:2d:18:c5 STALE
|
|
fe80::be24:11ff:fea3:8761 dev vmbr0 lladdr bc:24:11:a3:87:61 STALE
|
|
fe80::bb7f:ace0:50d5:690b dev vmbr0 lladdr bc:24:11:40:25:f8 STALE
|
|
fe80::907a:3764:9b08:16f3 dev vmbr0 lladdr bc:24:11:94:71:07 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: 58001 395 0 0 0 0 0 0 58001 395 0 0 0 0 0 0
|
|
nic0: 625089782 522553 0 62 0 0 0 52169 10761140 66048 0 0 0 0 0 0
|
|
nic1: 5842795620 4994345 0 0 0 0 0 268 11990831818 8955498 0 0 0 0 0 0
|
|
nic2: 7957591007 6169227 0 0 0 0 0 1540 13985719873 11219884 0 0 0 0 0 0
|
|
nic3: 192580 2032 0 0 0 0 0 1864 33021 125 0 0 0 0 0 0
|
|
tailscale0: 912446 4337 0 0 0 0 0 0 2329899 4404 0 0 0 0 0 0
|
|
vmbr0: 589662694 181400 0 0 0 0 0 45858 6642913 46114 0 0 0 0 0 0
|
|
bond0: 13800386627 11163572 0 122 0 0 0 1808 25976551691 20175382 0 0 0 0 0 0
|
|
datanet: 13344052955 6376586 0 0 0 0 0 1558 30277056579 10191024 0 0 0 0 0 0
|
|
tap701i0: 824893 4188 0 0 0 0 0 0 7192884 59666 0 0 0 0 0 0
|
|
fwbr701i0: 4440575 52665 0 58 0 0 0 34528 0 0 0 0 0 0 0 0
|
|
fwpr701p0: 837094 4237 0 49 0 0 0 0 7192933 59666 0 0 0 0 0 0
|
|
fwln701i0: 7192933 59666 0 49 0 0 0 0 837094 4237 0 0 0 0 0 0
|
|
tap701i1: 0 0 0 0 0 0 0 0 60 1 0 509 0 0 0 0
|
|
fwbr701i1: 109121 1344 0 0 0 0 0 1262 0 0 0 0 0 0 0 0
|
|
fwpr701p1: 12201 49 0 49 0 0 0 0 152538 1525 0 0 0 0 0 0
|
|
fwln701i1: 152538 1525 0 49 0 0 0 0 12201 49 0 0 0 0 0 0
|
|
tap702i0: 1136940 6005 0 0 0 0 0 0 8420157 62025 0 279 0 0 0 0
|
|
fwbr702i0: 4429360 52501 0 58 0 0 0 34453 0 0 0 0 0 0 0 0
|
|
fwpr702p0: 1149141 6054 0 49 0 0 0 0 8449823 62304 0 0 0 0 0 0
|
|
fwln702i0: 8449823 62304 0 49 0 0 0 0 1149141 6054 0 0 0 0 0 0
|
|
tap703i0: 998014 4742 0 0 0 0 0 0 7412887 59753 0 628 0 0 0 0
|
|
fwbr703i0: 4414547 52334 0 58 0 0 0 34342 0 0 0 0 0 0 0 0
|
|
fwpr703p0: 1010215 4791 0 49 0 0 0 0 7474620 60388 0 0 0 0 0 0
|
|
fwln703i0: 7474620 60388 0 49 0 0 0 0 1010215 4791 0 0 0 0 0 0
|
|
tap704i0: 782296 3830 0 0 0 0 0 0 6790400 56751 0 1864 0 0 0 0
|
|
fwbr704i0: 4400446 52174 0 58 0 0 0 34236 0 0 0 0 0 0 0 0
|
|
fwpr704p0: 794497 3879 0 49 0 0 0 0 6967660 58615 0 0 0 0 0 0
|
|
fwln704i0: 6967660 58615 0 49 0 0 0 0 794497 3879 0 0 0 0 0 0
|
|
tap704i1: 0 0 0 0 0 0 0 0 60 1 0 491 0 0 0 0
|
|
fwbr704i1: 107229 1326 0 0 0 0 0 1247 0 0 0 0 0 0 0 0
|
|
fwpr704p1: 12201 49 0 49 0 0 0 0 150394 1507 0 0 0 0 0 0
|
|
fwln704i1: 150394 1507 0 49 0 0 0 0 12201 49 0 0 0 0 0 0
|
|
|
|
--- ip -6 route (brief)
|
|
$ ip -6 route
|
|
fd7a:115c:a1e0::333b:921b dev tailscale0 proto kernel metric 256 pref medium
|
|
fe80::/64 dev tailscale0 proto kernel metric 256 pref medium
|
|
fe80::/64 dev nic3 proto kernel metric 256 pref medium
|
|
fe80::/64 dev vmbr0 proto kernel metric 256 pref medium
|
|
fe80::/64 dev datanet 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
|
|
datanet speed=10000 duplex=unknown mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
fwbr701i0 speed=10000 duplex=unknown mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
fwbr701i1 speed=10000 duplex=unknown mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
fwbr702i0 speed=10000 duplex=unknown mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
fwbr703i0 speed=10000 duplex=unknown mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
fwbr704i0 speed=10000 duplex=unknown mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
fwbr704i1 speed=10000 duplex=unknown mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
fwln701i0 speed=10000 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
fwln701i1 speed=10000 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
fwln702i0 speed=10000 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
fwln703i0 speed=10000 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
fwln704i0 speed=10000 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
fwln704i1 speed=10000 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
fwpr701p0 speed=10000 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
fwpr701p1 speed=10000 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
fwpr702p0 speed=10000 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
fwpr703p0 speed=10000 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
fwpr704p0 speed=10000 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
fwpr704p1 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
|
|
tap701i0 speed=10000 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
tap701i1 speed=10000 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
tap702i0 speed=10000 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
tap703i0 speed=10000 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
tap704i0 speed=10000 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
tap704i1 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: datanet -----
|
|
[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 datanet:
|
|
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 datanet:
|
|
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: fwbr701i0 -----
|
|
[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 fwbr701i0:
|
|
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 fwbr701i0:
|
|
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: fwbr701i1 -----
|
|
[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 fwbr701i1:
|
|
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 fwbr701i1:
|
|
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: fwbr702i0 -----
|
|
[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 fwbr702i0:
|
|
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 fwbr702i0:
|
|
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: fwbr703i0 -----
|
|
[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 fwbr703i0:
|
|
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 fwbr703i0:
|
|
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: fwbr704i0 -----
|
|
[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 fwbr704i0:
|
|
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 fwbr704i0:
|
|
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: fwbr704i1 -----
|
|
[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 fwbr704i1:
|
|
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 fwbr704i1:
|
|
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: fwln701i0 -----
|
|
[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 fwln701i0:
|
|
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 fwln701i0:
|
|
Pre-set maximums:
|
|
RX: 48
|
|
TX: 48
|
|
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 fwln701i0:
|
|
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: fwln701i1 -----
|
|
[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 fwln701i1:
|
|
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 fwln701i1:
|
|
Pre-set maximums:
|
|
RX: 48
|
|
TX: 48
|
|
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 fwln701i1:
|
|
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: fwln702i0 -----
|
|
[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 fwln702i0:
|
|
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 fwln702i0:
|
|
Pre-set maximums:
|
|
RX: 48
|
|
TX: 48
|
|
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 fwln702i0:
|
|
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: fwln703i0 -----
|
|
[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 fwln703i0:
|
|
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 fwln703i0:
|
|
Pre-set maximums:
|
|
RX: 48
|
|
TX: 48
|
|
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 fwln703i0:
|
|
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: fwln704i0 -----
|
|
[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 fwln704i0:
|
|
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 fwln704i0:
|
|
Pre-set maximums:
|
|
RX: 48
|
|
TX: 48
|
|
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 fwln704i0:
|
|
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: fwln704i1 -----
|
|
[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 fwln704i1:
|
|
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 fwln704i1:
|
|
Pre-set maximums:
|
|
RX: 48
|
|
TX: 48
|
|
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 fwln704i1:
|
|
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: fwpr701p0 -----
|
|
[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 fwpr701p0:
|
|
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 fwpr701p0:
|
|
Pre-set maximums:
|
|
RX: 48
|
|
TX: 48
|
|
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 fwpr701p0:
|
|
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: fwpr701p1 -----
|
|
[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 fwpr701p1:
|
|
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 fwpr701p1:
|
|
Pre-set maximums:
|
|
RX: 48
|
|
TX: 48
|
|
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 fwpr701p1:
|
|
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: fwpr702p0 -----
|
|
[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 fwpr702p0:
|
|
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 fwpr702p0:
|
|
Pre-set maximums:
|
|
RX: 48
|
|
TX: 48
|
|
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 fwpr702p0:
|
|
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: fwpr703p0 -----
|
|
[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 fwpr703p0:
|
|
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 fwpr703p0:
|
|
Pre-set maximums:
|
|
RX: 48
|
|
TX: 48
|
|
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 fwpr703p0:
|
|
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: fwpr704p0 -----
|
|
[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 fwpr704p0:
|
|
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 fwpr704p0:
|
|
Pre-set maximums:
|
|
RX: 48
|
|
TX: 48
|
|
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 fwpr704p0:
|
|
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: fwpr704p1 -----
|
|
[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 fwpr704p1:
|
|
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 fwpr704p1:
|
|
Pre-set maximums:
|
|
RX: 48
|
|
TX: 48
|
|
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 fwpr704p1:
|
|
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: tg3
|
|
version: 6.17.2-1-pve
|
|
firmware-version: FFV7.10.59 bc 5720-v1.36
|
|
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/Half 1000baseT/Full
|
|
Supported pause frame use: No
|
|
Supports auto-negotiation: Yes
|
|
Supported FEC modes: Not reported
|
|
Advertised link modes: 10baseT/Half 10baseT/Full
|
|
100baseT/Half 100baseT/Full
|
|
1000baseT/Half 1000baseT/Full
|
|
Advertised pause frame use: No
|
|
Advertised auto-negotiation: Yes
|
|
Advertised FEC modes: Not reported
|
|
Link partner advertised link modes: 10baseT/Half 10baseT/Full
|
|
100baseT/Half 100baseT/Full
|
|
1000baseT/Half 1000baseT/Full
|
|
Link partner advertised pause frame use: No
|
|
Link partner advertised auto-negotiation: Yes
|
|
Link partner 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
|
|
Current message level: 0x000000ff (255)
|
|
drv probe link timer ifdown ifup rx_err tx_err
|
|
Link detected: yes
|
|
[channels -l (RX/TX/combined queue counts)]
|
|
Channel parameters for nic0:
|
|
Pre-set maximums:
|
|
RX: 4
|
|
TX: 4
|
|
Other: n/a
|
|
Combined: n/a
|
|
Current hardware settings:
|
|
RX: 4
|
|
TX: 1
|
|
Other: n/a
|
|
Combined: n/a
|
|
[coalesce -c (interrupt moderation)]
|
|
Coalesce parameters for nic0:
|
|
Adaptive RX: n/a TX: n/a
|
|
stats-block-usecs: 0
|
|
sample-interval: n/a
|
|
pkt-rate-low: n/a
|
|
pkt-rate-high: n/a
|
|
|
|
rx-usecs: 20
|
|
rx-frames: 5
|
|
rx-usecs-irq: 0
|
|
rx-frames-irq: 5
|
|
|
|
tx-usecs: 72
|
|
tx-frames: 53
|
|
tx-usecs-irq: 0
|
|
tx-frames-irq: 5
|
|
|
|
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: 2047
|
|
RX Mini: n/a
|
|
RX Jumbo: n/a
|
|
TX: 511
|
|
TX push buff len: n/a
|
|
Current hardware settings:
|
|
RX: 200
|
|
RX Mini: n/a
|
|
RX Jumbo: n/a
|
|
TX: 511
|
|
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: on
|
|
TX: on
|
|
RX negotiated: off
|
|
TX negotiated: 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 [fixed]
|
|
tx-vlan-offload: on [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 [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]
|
|
rxclass: Cannot get RX class rule count: Operation not supported
|
|
RX classification rule retrieval failed
|
|
4 RX rings available
|
|
[SFP/DOM transceiver -m]
|
|
netlink error: Operation not supported
|
|
[statistics -S (key error/drop counters only)]
|
|
rx_fragments: 0
|
|
rx_fcs_errors: 0
|
|
rx_align_errors: 0
|
|
rx_xon_pause_rcvd: 0
|
|
rx_xoff_pause_rcvd: 0
|
|
rx_frame_too_long_errors: 0
|
|
rx_jabbers: 0
|
|
rx_undersize_packets: 0
|
|
rx_in_length_errors: 0
|
|
rx_out_length_errors: 0
|
|
tx_mac_errors: 0
|
|
tx_carrier_sense_errors: 0
|
|
tx_discards: 0
|
|
tx_errors: 0
|
|
rx_discards: 0
|
|
rx_errors: 0
|
|
[statistics -S (throughput counters)]
|
|
rx_octets: 625101884
|
|
tx_octets: 10767218
|
|
|
|
----- ethtool: nic1 -----
|
|
[driver/version/firmware/bus-info -i]
|
|
driver: tg3
|
|
version: 6.17.2-1-pve
|
|
firmware-version: FFV7.10.59 bc 5720-v1.36
|
|
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/Half 1000baseT/Full
|
|
Supported pause frame use: No
|
|
Supports auto-negotiation: Yes
|
|
Supported FEC modes: Not reported
|
|
Advertised link modes: 10baseT/Half 10baseT/Full
|
|
100baseT/Half 100baseT/Full
|
|
1000baseT/Half 1000baseT/Full
|
|
Advertised pause frame use: No
|
|
Advertised auto-negotiation: Yes
|
|
Advertised FEC modes: Not reported
|
|
Link partner advertised link modes: 10baseT/Half 10baseT/Full
|
|
100baseT/Half 100baseT/Full
|
|
1000baseT/Half 1000baseT/Full
|
|
Link partner advertised pause frame use: No
|
|
Link partner advertised auto-negotiation: Yes
|
|
Link partner advertised FEC modes: Not reported
|
|
Speed: 1000Mb/s
|
|
Duplex: Full
|
|
Auto-negotiation: on
|
|
Port: Twisted Pair
|
|
PHYAD: 2
|
|
Transceiver: internal
|
|
MDI-X: off
|
|
Supports Wake-on: g
|
|
Wake-on: d
|
|
Current message level: 0x000000ff (255)
|
|
drv probe link timer ifdown ifup rx_err tx_err
|
|
Link detected: yes
|
|
[channels -l (RX/TX/combined queue counts)]
|
|
Channel parameters for nic1:
|
|
Pre-set maximums:
|
|
RX: 4
|
|
TX: 4
|
|
Other: n/a
|
|
Combined: n/a
|
|
Current hardware settings:
|
|
RX: 4
|
|
TX: 1
|
|
Other: n/a
|
|
Combined: n/a
|
|
[coalesce -c (interrupt moderation)]
|
|
Coalesce parameters for nic1:
|
|
Adaptive RX: n/a TX: n/a
|
|
stats-block-usecs: 0
|
|
sample-interval: n/a
|
|
pkt-rate-low: n/a
|
|
pkt-rate-high: n/a
|
|
|
|
rx-usecs: 20
|
|
rx-frames: 5
|
|
rx-usecs-irq: 0
|
|
rx-frames-irq: 5
|
|
|
|
tx-usecs: 72
|
|
tx-frames: 53
|
|
tx-usecs-irq: 0
|
|
tx-frames-irq: 5
|
|
|
|
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: 2047
|
|
RX Mini: n/a
|
|
RX Jumbo: n/a
|
|
TX: 511
|
|
TX push buff len: n/a
|
|
Current hardware settings:
|
|
RX: 200
|
|
RX Mini: n/a
|
|
RX Jumbo: n/a
|
|
TX: 511
|
|
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: on
|
|
TX: on
|
|
RX negotiated: off
|
|
TX negotiated: 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 [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 [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]
|
|
rxclass: Cannot get RX class rule count: Operation not supported
|
|
RX classification rule retrieval failed
|
|
4 RX rings available
|
|
[SFP/DOM transceiver -m]
|
|
netlink error: Operation not supported
|
|
[statistics -S (key error/drop counters only)]
|
|
rx_fragments: 0
|
|
rx_fcs_errors: 0
|
|
rx_align_errors: 0
|
|
rx_xon_pause_rcvd: 0
|
|
rx_xoff_pause_rcvd: 0
|
|
rx_frame_too_long_errors: 0
|
|
rx_jabbers: 0
|
|
rx_undersize_packets: 0
|
|
rx_in_length_errors: 0
|
|
rx_out_length_errors: 0
|
|
tx_mac_errors: 0
|
|
tx_carrier_sense_errors: 0
|
|
tx_discards: 0
|
|
tx_errors: 0
|
|
rx_discards: 0
|
|
rx_errors: 0
|
|
[statistics -S (throughput counters)]
|
|
rx_octets: 5842795961
|
|
tx_octets: 11990831818
|
|
|
|
----- ethtool: nic2 -----
|
|
[driver/version/firmware/bus-info -i]
|
|
driver: tg3
|
|
version: 6.17.2-1-pve
|
|
firmware-version: FFV7.10.59 bc 5720-v1.36
|
|
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/Half 1000baseT/Full
|
|
Supported pause frame use: No
|
|
Supports auto-negotiation: Yes
|
|
Supported FEC modes: Not reported
|
|
Advertised link modes: 10baseT/Half 10baseT/Full
|
|
100baseT/Half 100baseT/Full
|
|
1000baseT/Half 1000baseT/Full
|
|
Advertised pause frame use: No
|
|
Advertised auto-negotiation: Yes
|
|
Advertised FEC modes: Not reported
|
|
Link partner advertised link modes: 10baseT/Half 10baseT/Full
|
|
100baseT/Half 100baseT/Full
|
|
1000baseT/Half 1000baseT/Full
|
|
Link partner advertised pause frame use: No
|
|
Link partner advertised auto-negotiation: Yes
|
|
Link partner 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
|
|
Current message level: 0x000000ff (255)
|
|
drv probe link timer ifdown ifup rx_err tx_err
|
|
Link detected: yes
|
|
[channels -l (RX/TX/combined queue counts)]
|
|
Channel parameters for nic2:
|
|
Pre-set maximums:
|
|
RX: 4
|
|
TX: 4
|
|
Other: n/a
|
|
Combined: n/a
|
|
Current hardware settings:
|
|
RX: 4
|
|
TX: 1
|
|
Other: n/a
|
|
Combined: n/a
|
|
[coalesce -c (interrupt moderation)]
|
|
Coalesce parameters for nic2:
|
|
Adaptive RX: n/a TX: n/a
|
|
stats-block-usecs: 0
|
|
sample-interval: n/a
|
|
pkt-rate-low: n/a
|
|
pkt-rate-high: n/a
|
|
|
|
rx-usecs: 20
|
|
rx-frames: 5
|
|
rx-usecs-irq: 0
|
|
rx-frames-irq: 5
|
|
|
|
tx-usecs: 72
|
|
tx-frames: 53
|
|
tx-usecs-irq: 0
|
|
tx-frames-irq: 5
|
|
|
|
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: 2047
|
|
RX Mini: n/a
|
|
RX Jumbo: n/a
|
|
TX: 511
|
|
TX push buff len: n/a
|
|
Current hardware settings:
|
|
RX: 200
|
|
RX Mini: n/a
|
|
RX Jumbo: n/a
|
|
TX: 511
|
|
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: on
|
|
TX: on
|
|
RX negotiated: off
|
|
TX negotiated: 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 [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 [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]
|
|
rxclass: Cannot get RX class rule count: Operation not supported
|
|
RX classification rule retrieval failed
|
|
4 RX rings available
|
|
[SFP/DOM transceiver -m]
|
|
netlink error: Operation not supported
|
|
[statistics -S (key error/drop counters only)]
|
|
rx_fragments: 0
|
|
rx_fcs_errors: 0
|
|
rx_align_errors: 0
|
|
rx_xon_pause_rcvd: 0
|
|
rx_xoff_pause_rcvd: 0
|
|
rx_frame_too_long_errors: 0
|
|
rx_jabbers: 0
|
|
rx_undersize_packets: 0
|
|
rx_in_length_errors: 0
|
|
rx_out_length_errors: 0
|
|
tx_mac_errors: 0
|
|
tx_carrier_sense_errors: 0
|
|
tx_discards: 0
|
|
tx_errors: 0
|
|
rx_discards: 0
|
|
rx_errors: 0
|
|
[statistics -S (throughput counters)]
|
|
rx_octets: 7957591007
|
|
tx_octets: 13985719873
|
|
|
|
----- ethtool: nic3 -----
|
|
[driver/version/firmware/bus-info -i]
|
|
driver: tg3
|
|
version: 6.17.2-1-pve
|
|
firmware-version: FFV7.10.59 bc 5720-v1.36
|
|
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/Half 1000baseT/Full
|
|
Supported pause frame use: No
|
|
Supports auto-negotiation: Yes
|
|
Supported FEC modes: Not reported
|
|
Advertised link modes: 10baseT/Half 10baseT/Full
|
|
100baseT/Half 100baseT/Full
|
|
1000baseT/Half 1000baseT/Full
|
|
Advertised pause frame use: No
|
|
Advertised auto-negotiation: Yes
|
|
Advertised FEC modes: Not reported
|
|
Link partner advertised link modes: 10baseT/Half 10baseT/Full
|
|
100baseT/Half 100baseT/Full
|
|
Link partner advertised pause frame use: Symmetric
|
|
Link partner advertised auto-negotiation: Yes
|
|
Link partner advertised FEC modes: Not reported
|
|
Speed: 100Mb/s
|
|
Duplex: Full
|
|
Auto-negotiation: on
|
|
Port: Twisted Pair
|
|
PHYAD: 2
|
|
Transceiver: internal
|
|
MDI-X: off
|
|
Supports Wake-on: g
|
|
Wake-on: d
|
|
Current message level: 0x000000ff (255)
|
|
drv probe link timer ifdown ifup rx_err tx_err
|
|
Link detected: yes
|
|
[channels -l (RX/TX/combined queue counts)]
|
|
Channel parameters for nic3:
|
|
Pre-set maximums:
|
|
RX: 4
|
|
TX: 4
|
|
Other: n/a
|
|
Combined: n/a
|
|
Current hardware settings:
|
|
RX: 4
|
|
TX: 1
|
|
Other: n/a
|
|
Combined: n/a
|
|
[coalesce -c (interrupt moderation)]
|
|
Coalesce parameters for nic3:
|
|
Adaptive RX: n/a TX: n/a
|
|
stats-block-usecs: 0
|
|
sample-interval: n/a
|
|
pkt-rate-low: n/a
|
|
pkt-rate-high: n/a
|
|
|
|
rx-usecs: 20
|
|
rx-frames: 5
|
|
rx-usecs-irq: 0
|
|
rx-frames-irq: 5
|
|
|
|
tx-usecs: 72
|
|
tx-frames: 53
|
|
tx-usecs-irq: 0
|
|
tx-frames-irq: 5
|
|
|
|
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: 2047
|
|
RX Mini: n/a
|
|
RX Jumbo: n/a
|
|
TX: 511
|
|
TX push buff len: n/a
|
|
Current hardware settings:
|
|
RX: 200
|
|
RX Mini: n/a
|
|
RX Jumbo: n/a
|
|
TX: 511
|
|
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
|
|
RX negotiated: off
|
|
TX negotiated: off
|
|
|
|
[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 [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 [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]
|
|
rxclass: Cannot get RX class rule count: Operation not supported
|
|
RX classification rule retrieval failed
|
|
4 RX rings available
|
|
[SFP/DOM transceiver -m]
|
|
netlink error: Operation not supported
|
|
[statistics -S (key error/drop counters only)]
|
|
rx_fragments: 0
|
|
rx_fcs_errors: 0
|
|
rx_align_errors: 0
|
|
rx_xon_pause_rcvd: 0
|
|
rx_xoff_pause_rcvd: 0
|
|
rx_frame_too_long_errors: 0
|
|
rx_jabbers: 0
|
|
rx_undersize_packets: 0
|
|
rx_in_length_errors: 0
|
|
rx_out_length_errors: 0
|
|
tx_mac_errors: 0
|
|
tx_carrier_sense_errors: 0
|
|
tx_discards: 0
|
|
tx_errors: 0
|
|
rx_discards: 0
|
|
rx_errors: 0
|
|
[statistics -S (throughput counters)]
|
|
rx_octets: 192580
|
|
tx_octets: 33021
|
|
|
|
----- ethtool: tap701i0 -----
|
|
[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 tap701i0:
|
|
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 tap701i0:
|
|
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 tap701i0:
|
|
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 tap701i0:
|
|
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: tap701i1 -----
|
|
[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 tap701i1:
|
|
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 tap701i1:
|
|
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 tap701i1:
|
|
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 tap701i1:
|
|
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: tap702i0 -----
|
|
[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 tap702i0:
|
|
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 tap702i0:
|
|
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 tap702i0:
|
|
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 tap702i0:
|
|
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: tap703i0 -----
|
|
[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 tap703i0:
|
|
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 tap703i0:
|
|
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 tap703i0:
|
|
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 tap703i0:
|
|
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: tap704i0 -----
|
|
[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 tap704i0:
|
|
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 tap704i0:
|
|
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 tap704i0:
|
|
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 tap704i0:
|
|
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: tap704i1 -----
|
|
[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 tap704i1:
|
|
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 tap704i1:
|
|
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 tap704i1:
|
|
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 tap704i1:
|
|
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 100
|
|
8: bond0: <BROADCAST,MULTICAST,MASTER,UP,LOWER_UP> mtu 1500 master datanet state forwarding priority 32 cost 100
|
|
10: tap701i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 master fwbr701i0 state forwarding priority 32 cost 2
|
|
12: fwpr701p0@fwln701i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master vmbr0 state forwarding priority 32 cost 2
|
|
13: fwln701i0@fwpr701p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master fwbr701i0 state forwarding priority 32 cost 2
|
|
14: tap701i1: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 master fwbr701i1 state forwarding priority 32 cost 2
|
|
16: fwpr701p1@fwln701i1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master datanet state forwarding priority 32 cost 2
|
|
17: fwln701i1@fwpr701p1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master fwbr701i1 state forwarding priority 32 cost 2
|
|
18: tap702i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 master fwbr702i0 state forwarding priority 32 cost 2
|
|
20: fwpr702p0@fwln702i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master vmbr0 state forwarding priority 32 cost 2
|
|
21: fwln702i0@fwpr702p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master fwbr702i0 state forwarding priority 32 cost 2
|
|
22: tap703i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 master fwbr703i0 state forwarding priority 32 cost 2
|
|
24: fwpr703p0@fwln703i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master vmbr0 state forwarding priority 32 cost 2
|
|
25: fwln703i0@fwpr703p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master fwbr703i0 state forwarding priority 32 cost 2
|
|
26: tap704i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 master fwbr704i0 state forwarding priority 32 cost 2
|
|
28: fwpr704p0@fwln704i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master vmbr0 state forwarding priority 32 cost 2
|
|
29: fwln704i0@fwpr704p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master fwbr704i0 state forwarding priority 32 cost 2
|
|
30: tap704i1: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 master fwbr704i1 state forwarding priority 32 cost 2
|
|
32: fwpr704p1@fwln704i1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master datanet state forwarding priority 32 cost 2
|
|
33: fwln704i1@fwpr704p1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master fwbr704i1 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 100
|
|
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 123 mcast_max_groups 0
|
|
8: bond0: <BROADCAST,MULTICAST,MASTER,UP,LOWER_UP> mtu 1500 master datanet state forwarding priority 32 cost 100
|
|
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
|
|
10: tap701i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 master fwbr701i0 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
|
|
12: fwpr701p0@fwln701i0: <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
|
|
13: fwln701i0@fwpr701p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master fwbr701i0 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
|
|
14: tap701i1: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 master fwbr701i1 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 0 mcast_max_groups 0
|
|
16: fwpr701p1@fwln701i1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master datanet 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 0 mcast_max_groups 0
|
|
17: fwln701i1@fwpr701p1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master fwbr701i1 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 2 mcast_max_groups 0
|
|
18: tap702i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 master fwbr702i0 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 2 mcast_max_groups 0
|
|
20: fwpr702p0@fwln702i0: <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 2 mcast_max_groups 0
|
|
21: fwln702i0@fwpr702p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master fwbr702i0 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 127 mcast_max_groups 0
|
|
22: tap703i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 master fwbr703i0 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: fwpr703p0@fwln703i0: <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: fwln703i0@fwpr703p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master fwbr703i0 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
|
|
26: tap704i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 master fwbr704i0 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
|
|
28: fwpr704p0@fwln704i0: <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
|
|
29: fwln704i0@fwpr704p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master fwbr704i0 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
|
|
30: tap704i1: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 master fwbr704i1 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 0 mcast_max_groups 0
|
|
32: fwpr704p1@fwln704i1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master datanet 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 0 mcast_max_groups 0
|
|
33: fwln704i1@fwpr704p1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master fwbr704i1 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 2 mcast_max_groups 0
|
|
|
|
--- bridge vlan
|
|
$ bridge vlan
|
|
port vlan-id
|
|
nic0 1 PVID Egress Untagged
|
|
vmbr0 1 PVID Egress Untagged
|
|
bond0 1 PVID Egress Untagged
|
|
datanet 1 PVID Egress Untagged
|
|
tap701i0 1 PVID Egress Untagged
|
|
fwbr701i0 1 PVID Egress Untagged
|
|
fwpr701p0 1 PVID Egress Untagged
|
|
fwln701i0 1 PVID Egress Untagged
|
|
tap701i1 1 PVID Egress Untagged
|
|
fwbr701i1 1 PVID Egress Untagged
|
|
fwpr701p1 1 PVID Egress Untagged
|
|
fwln701i1 1 PVID Egress Untagged
|
|
tap702i0 1 PVID Egress Untagged
|
|
fwbr702i0 1 PVID Egress Untagged
|
|
fwpr702p0 1 PVID Egress Untagged
|
|
fwln702i0 1 PVID Egress Untagged
|
|
tap703i0 1 PVID Egress Untagged
|
|
fwbr703i0 1 PVID Egress Untagged
|
|
fwpr703p0 1 PVID Egress Untagged
|
|
fwln703i0 1 PVID Egress Untagged
|
|
tap704i0 1 PVID Egress Untagged
|
|
fwbr704i0 1 PVID Egress Untagged
|
|
fwpr704p0 1 PVID Egress Untagged
|
|
fwln704i0 1 PVID Egress Untagged
|
|
tap704i1 1 PVID Egress Untagged
|
|
fwbr704i1 1 PVID Egress Untagged
|
|
fwpr704p1 1 PVID Egress Untagged
|
|
fwln704i1 1 PVID Egress Untagged
|
|
|
|
--- bridge vlan show
|
|
$ bridge vlan show
|
|
port vlan-id
|
|
nic0 1 PVID Egress Untagged
|
|
vmbr0 1 PVID Egress Untagged
|
|
bond0 1 PVID Egress Untagged
|
|
datanet 1 PVID Egress Untagged
|
|
tap701i0 1 PVID Egress Untagged
|
|
fwbr701i0 1 PVID Egress Untagged
|
|
fwpr701p0 1 PVID Egress Untagged
|
|
fwln701i0 1 PVID Egress Untagged
|
|
tap701i1 1 PVID Egress Untagged
|
|
fwbr701i1 1 PVID Egress Untagged
|
|
fwpr701p1 1 PVID Egress Untagged
|
|
fwln701i1 1 PVID Egress Untagged
|
|
tap702i0 1 PVID Egress Untagged
|
|
fwbr702i0 1 PVID Egress Untagged
|
|
fwpr702p0 1 PVID Egress Untagged
|
|
fwln702i0 1 PVID Egress Untagged
|
|
tap703i0 1 PVID Egress Untagged
|
|
fwbr703i0 1 PVID Egress Untagged
|
|
fwpr703p0 1 PVID Egress Untagged
|
|
fwln703i0 1 PVID Egress Untagged
|
|
tap704i0 1 PVID Egress Untagged
|
|
fwbr704i0 1 PVID Egress Untagged
|
|
fwpr704p0 1 PVID Egress Untagged
|
|
fwln704i0 1 PVID Egress Untagged
|
|
tap704i1 1 PVID Egress Untagged
|
|
fwbr704i1 1 PVID Egress Untagged
|
|
fwpr704p1 1 PVID Egress Untagged
|
|
fwln704i1 1 PVID Egress Untagged
|
|
|
|
--- brctl show
|
|
$ brctl show
|
|
bridge name bridge id STP enabled interfaces
|
|
datanet 8000.f8bc1234e075 no bond0
|
|
fwpr701p1
|
|
fwpr704p1
|
|
fwbr701i0 8000.6a54333190a1 no fwln701i0
|
|
tap701i0
|
|
fwbr701i1 8000.42fc866e2f20 no fwln701i1
|
|
tap701i1
|
|
fwbr702i0 8000.5ac032826a11 no fwln702i0
|
|
tap702i0
|
|
fwbr703i0 8000.8e5fd3dd6a4a no fwln703i0
|
|
tap703i0
|
|
fwbr704i0 8000.bae196f038e1 no fwln704i0
|
|
tap704i0
|
|
fwbr704i1 8000.a2a9ed533e75 no fwln704i1
|
|
tap704i1
|
|
vmbr0 8000.f8bc1234e074 no fwpr701p0
|
|
fwpr702p0
|
|
fwpr703p0
|
|
fwpr704p0
|
|
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: f8:bc:12:34:e0:75
|
|
Active Aggregator Info:
|
|
Aggregator ID: 1
|
|
Number of ports: 2
|
|
Actor Key: 9
|
|
Partner Key: 27
|
|
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: f8:bc:12:34:e0:75
|
|
Slave queue ID: 0
|
|
Aggregator ID: 1
|
|
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: f8:bc:12:34:e0:75
|
|
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: 27
|
|
port priority: 1
|
|
port number: 11
|
|
port state: 61
|
|
|
|
Slave Interface: nic2
|
|
MII Status: up
|
|
Speed: 1000 Mbps
|
|
Duplex: full
|
|
Link Failure Count: 0
|
|
Permanent HW addr: f8:bc:12:34:e0:76
|
|
Slave queue ID: 0
|
|
Aggregator ID: 1
|
|
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: f8:bc:12:34:e0:75
|
|
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: 27
|
|
port priority: 1
|
|
port number: 10
|
|
port state: 61
|
|
|
|
--- vlan config
|
|
$ cat /proc/net/vlan/config
|
|
cat: /proc/net/vlan/config: No such file or directory
|
|
[exit=1 / not installed or not permitted]
|
|
|
|
--- /proc/net/vlan
|
|
[missing: /proc/net/vlan]
|
|
|
|
--- /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 g11
|
|
|
|
auto nic2
|
|
iface nic2 inet manual
|
|
#PortID: ifname g10
|
|
|
|
auto nic3
|
|
iface nic3 inet manual
|
|
# connected to r2,sw-tor,port 3
|
|
|
|
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 datanet
|
|
iface datanet inet static
|
|
address 10.100.100.7/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 CPU16 CPU17 CPU18 CPU19 CPU20 CPU21 CPU22 CPU23
|
|
0: 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-IO-APIC 2-edge timer
|
|
8: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-IO-APIC 8-edge rtc0
|
|
9: 0 0 6 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-IO-APIC 9-fasteoi acpi
|
|
10: 0 0 0 0 285 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-IO-APIC 10-edge ipmi_si
|
|
22: 0 0 33 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-IO-APIC 22-fasteoi ehci_hcd:usb2
|
|
23: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 300759 0 IR-IO-APIC 23-fasteoi ehci_hcd:usb1
|
|
24: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 DMAR-MSI 0-edge dmar0
|
|
25: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 DMAR-MSI 1-edge dmar1
|
|
27: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI-0000:00:01.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 0 0 0 0 0 0 0 0 IR-PCI-MSI-0000:00:01.1 0-edge PCIe PME, aerdrv, PCIe bwctrl
|
|
29: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI-0000:00:02.0 0-edge PCIe PME, aerdrv, PCIe bwctrl
|
|
30: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI-0000:00:02.2 0-edge PCIe PME, aerdrv, PCIe bwctrl
|
|
31: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI-0000:00:03.0 0-edge PCIe PME, aerdrv, PCIe bwctrl
|
|
32: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI-0000:00:11.0 0-edge PCIe PME, aerdrv
|
|
33: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI-0000:00:1c.0 0-edge PCIe PME, aerdrv
|
|
34: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI-0000:00:1c.7 0-edge PCIe PME, aerdrv
|
|
36: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI-0000:40:01.0 0-edge PCIe PME, aerdrv, PCIe bwctrl
|
|
37: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI-0000:40:03.0 0-edge PCIe PME, aerdrv, PCIe bwctrl
|
|
39: 1028 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSI-0000:00:1f.2 0-edge ahci[0000:00:1f.2]
|
|
43: 0 0 0 0 0 0 77 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSIX-0000:02:00.1 0-edge nic3-tx-0
|
|
44: 0 0 0 0 0 0 0 0 1986 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSIX-0000:02:00.1 1-edge nic3-rx-1
|
|
45: 0 0 0 0 0 0 0 0 0 0 2 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSIX-0000:02:00.1 2-edge nic3-rx-2
|
|
46: 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSIX-0000:02:00.1 3-edge nic3-rx-3
|
|
47: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 IR-PCI-MSIX-0000:02:00.1 4-edge nic3-rx-4
|
|
48: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 44052 0 0 0 0 0 0 0 IR-PCI-MSIX-0000:01:00.0 0-edge nic0-tx-0
|
|
49: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 54147 0 0 0 0 0 IR-PCI-MSIX-0000:01:00.0 1-edge nic0-rx-1
|
|
50: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 30093 0 0 0 IR-PCI-MSIX-0000:01:00.0 2-edge nic0-rx-2
|
|
51: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 94365 0 IR-PCI-MSIX-0000:01:00.0 3-edge nic0-rx-3
|
|
52: 22288 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSIX-0000:01:00.0 4-edge nic0-rx-4
|
|
53: 0 0 647186 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSIX-0000:01:00.1 0-edge nic1-tx-0
|
|
54: 0 0 0 0 866976 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSIX-0000:01:00.1 1-edge nic1-rx-1
|
|
55: 0 0 0 0 0 0 238888 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSIX-0000:01:00.1 2-edge nic1-rx-2
|
|
56: 0 0 0 0 0 0 0 0 706579 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSIX-0000:01:00.1 3-edge nic1-rx-3
|
|
57: 0 0 0 0 0 0 0 0 0 0 571466 0 0 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSIX-0000:01:00.1 4-edge nic1-rx-4
|
|
58: 0 0 0 0 0 0 0 0 0 0 0 0 518339 0 0 0 0 0 0 0 0 0 0 0 IR-PCI-MSIX-0000:02:00.0 0-edge nic2-tx-0
|
|
59: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1036579 0 0 0 0 0 0 0 0 0 IR-PCI-MSIX-0000:02:00.0 1-edge nic2-rx-1
|
|
60: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 694563 0 0 0 0 0 0 0 IR-PCI-MSIX-0000:02:00.0 2-edge nic2-rx-2
|
|
61: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 173062 0 0 0 0 0 IR-PCI-MSIX-0000:02:00.0 3-edge nic2-rx-3
|
|
62: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 188962 0 0 0 IR-PCI-MSIX-0000:02:00.0 4-edge nic2-rx-4
|
|
NMI: 6 6 8 7 8 4 8 4 9 3 7 4 7 4 9 3 9 4 6 3 6 3 7 3 Non-maskable interrupts
|
|
LOC: 395066 275103 462707 305330 378347 234039 471179 217569 423923 265208 435314 221360 469042 188282 495233 194513 483142 195951 534425 195076 366743 168333 414610 160076 Local timer interrupts
|
|
SPU: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 Spurious interrupts
|
|
PMI: 6 6 8 7 8 4 8 4 9 3 7 4 7 4 9 3 9 4 6 3 6 3 7 3 Performance monitoring interrupts
|
|
IWI: 0 0 3 0 0 0 3 0 0 0 0 0 0 0 0 0 3 0 0 0 0 0 0 0 IRQ work interrupts
|
|
RTR: 17 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 APIC ICR read retries
|
|
RES: 1312 602 877 528 1516 847 1091 1118 1174 1439 1102 832 874 1104 1051 1259 992 989 1017 2137 1288 658 1870 427 Rescheduling interrupts
|
|
CAL: 79972 30815 35676 27117 61565 19623 29500 20725 46291 17945 50720 37338 31109 20048 48930 19438 27478 106372 25188 19833 23281 104086 55373 42801 Function call interrupts
|
|
TLB: 2561 2439 2619 2288 3195 2583 2068 3280 2512 2171 2599 1888 2419 3394 2742 2429 2789 2311 2544 2183 2875 2736 2871 2150 TLB shootdowns
|
|
TRM: 0 0 0 0 0 0 0 0 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 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 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 0 0 0 0 0 0 0 0 Machine check exceptions
|
|
MCP: 6 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 Machine check polls
|
|
ERR: 0
|
|
MIS: 0
|
|
PIN: 164 242 294 325 280 136 353 260 246 110 286 251 326 124 274 118 249 102 195 96 146 93 269 56 Posted-interrupt notification event
|
|
NPI: 0 0 0 0 0 0 0 0 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 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) ===
|
|
48
|
|
49
|
|
50
|
|
51
|
|
52
|
|
=== nic1 IRQ list (first 40) ===
|
|
53
|
|
54
|
|
55
|
|
56
|
|
57
|
|
=== nic2 IRQ list (first 40) ===
|
|
58
|
|
59
|
|
60
|
|
61
|
|
62
|
|
=== nic3 IRQ list (first 40) ===
|
|
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 = 0000,00000000
|
|
/sys/class/net/bond0/queues/rx-10/rps_cpus = 0000,00000000
|
|
/sys/class/net/bond0/queues/rx-11/rps_cpus = 0000,00000000
|
|
/sys/class/net/bond0/queues/rx-12/rps_cpus = 0000,00000000
|
|
/sys/class/net/bond0/queues/rx-13/rps_cpus = 0000,00000000
|
|
/sys/class/net/bond0/queues/rx-14/rps_cpus = 0000,00000000
|
|
/sys/class/net/bond0/queues/rx-15/rps_cpus = 0000,00000000
|
|
/sys/class/net/bond0/queues/rx-1/rps_cpus = 0000,00000000
|
|
/sys/class/net/bond0/queues/rx-2/rps_cpus = 0000,00000000
|
|
/sys/class/net/bond0/queues/rx-3/rps_cpus = 0000,00000000
|
|
/sys/class/net/bond0/queues/rx-4/rps_cpus = 0000,00000000
|
|
/sys/class/net/bond0/queues/rx-5/rps_cpus = 0000,00000000
|
|
/sys/class/net/bond0/queues/rx-6/rps_cpus = 0000,00000000
|
|
/sys/class/net/bond0/queues/rx-7/rps_cpus = 0000,00000000
|
|
/sys/class/net/bond0/queues/rx-8/rps_cpus = 0000,00000000
|
|
/sys/class/net/bond0/queues/rx-9/rps_cpus = 0000,00000000
|
|
/sys/class/net/datanet/queues/rx-0/rps_cpus = 0000,00000000
|
|
/sys/class/net/fwbr701i0/queues/rx-0/rps_cpus = 0000,00000000
|
|
/sys/class/net/fwbr701i1/queues/rx-0/rps_cpus = 0000,00000000
|
|
/sys/class/net/fwbr702i0/queues/rx-0/rps_cpus = 0000,00000000
|
|
/sys/class/net/fwbr703i0/queues/rx-0/rps_cpus = 0000,00000000
|
|
/sys/class/net/fwbr704i0/queues/rx-0/rps_cpus = 0000,00000000
|
|
/sys/class/net/fwbr704i1/queues/rx-0/rps_cpus = 0000,00000000
|
|
/sys/class/net/fwln701i0/queues/rx-0/rps_cpus = 0000,00000000
|
|
/sys/class/net/fwln701i1/queues/rx-0/rps_cpus = 0000,00000000
|
|
/sys/class/net/fwln702i0/queues/rx-0/rps_cpus = 0000,00000000
|
|
/sys/class/net/fwln703i0/queues/rx-0/rps_cpus = 0000,00000000
|
|
/sys/class/net/fwln704i0/queues/rx-0/rps_cpus = 0000,00000000
|
|
/sys/class/net/fwln704i1/queues/rx-0/rps_cpus = 0000,00000000
|
|
/sys/class/net/fwpr701p0/queues/rx-0/rps_cpus = 0000,00000000
|
|
/sys/class/net/fwpr701p1/queues/rx-0/rps_cpus = 0000,00000000
|
|
/sys/class/net/fwpr702p0/queues/rx-0/rps_cpus = 0000,00000000
|
|
/sys/class/net/fwpr703p0/queues/rx-0/rps_cpus = 0000,00000000
|
|
/sys/class/net/fwpr704p0/queues/rx-0/rps_cpus = 0000,00000000
|
|
/sys/class/net/fwpr704p1/queues/rx-0/rps_cpus = 0000,00000000
|
|
/sys/class/net/lo/queues/rx-0/rps_cpus = 0000,00000000
|
|
/sys/class/net/nic0/queues/rx-0/rps_cpus = 0000,00000000
|
|
/sys/class/net/nic0/queues/rx-1/rps_cpus = 0000,00000000
|
|
/sys/class/net/nic0/queues/rx-2/rps_cpus = 0000,00000000
|
|
/sys/class/net/nic0/queues/rx-3/rps_cpus = 0000,00000000
|
|
/sys/class/net/nic1/queues/rx-0/rps_cpus = 0000,00000000
|
|
/sys/class/net/nic1/queues/rx-1/rps_cpus = 0000,00000000
|
|
/sys/class/net/nic1/queues/rx-2/rps_cpus = 0000,00000000
|
|
/sys/class/net/nic1/queues/rx-3/rps_cpus = 0000,00000000
|
|
/sys/class/net/nic2/queues/rx-0/rps_cpus = 0000,00000000
|
|
/sys/class/net/nic2/queues/rx-1/rps_cpus = 0000,00000000
|
|
/sys/class/net/nic2/queues/rx-2/rps_cpus = 0000,00000000
|
|
/sys/class/net/nic2/queues/rx-3/rps_cpus = 0000,00000000
|
|
/sys/class/net/nic3/queues/rx-0/rps_cpus = 0000,00000000
|
|
/sys/class/net/nic3/queues/rx-1/rps_cpus = 0000,00000000
|
|
/sys/class/net/nic3/queues/rx-2/rps_cpus = 0000,00000000
|
|
/sys/class/net/nic3/queues/rx-3/rps_cpus = 0000,00000000
|
|
/sys/class/net/tailscale0/queues/rx-0/rps_cpus = 0000,00000000
|
|
/sys/class/net/tap701i0/queues/rx-0/rps_cpus = 0000,00000000
|
|
/sys/class/net/tap701i1/queues/rx-0/rps_cpus = 0000,00000000
|
|
/sys/class/net/tap702i0/queues/rx-0/rps_cpus = 0000,00000000
|
|
/sys/class/net/tap703i0/queues/rx-0/rps_cpus = 0000,00000000
|
|
/sys/class/net/tap704i0/queues/rx-0/rps_cpus = 0000,00000000
|
|
/sys/class/net/tap704i1/queues/rx-0/rps_cpus = 0000,00000000
|
|
/sys/class/net/vmbr0/queues/rx-0/rps_cpus = 0000,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/datanet/queues/tx-0/xps_cpus: No such file or directory
|
|
cat: /sys/class/net/fwbr701i0/queues/tx-0/xps_cpus: No such file or directory
|
|
cat: /sys/class/net/fwbr701i1/queues/tx-0/xps_cpus: No such file or directory
|
|
cat: /sys/class/net/fwbr702i0/queues/tx-0/xps_cpus: No such file or directory
|
|
cat: /sys/class/net/fwbr703i0/queues/tx-0/xps_cpus: No such file or directory
|
|
cat: /sys/class/net/fwbr704i0/queues/tx-0/xps_cpus: No such file or directory
|
|
cat: /sys/class/net/fwbr704i1/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/tailscale0/queues/tx-0/xps_cpus: No such file or directory
|
|
cat: /sys/class/net/tap701i0/queues/tx-0/xps_cpus: No such file or directory
|
|
cat: /sys/class/net/tap701i1/queues/tx-0/xps_cpus: No such file or directory
|
|
cat: /sys/class/net/tap702i0/queues/tx-0/xps_cpus: No such file or directory
|
|
cat: /sys/class/net/tap703i0/queues/tx-0/xps_cpus: No such file or directory
|
|
cat: /sys/class/net/tap704i0/queues/tx-0/xps_cpus: No such file or directory
|
|
cat: /sys/class/net/tap704i1/queues/tx-0/xps_cpus: No such file or directory
|
|
cat: /sys/class/net/vmbr0/queues/tx-0/xps_cpus: No such file or directory
|
|
/sys/class/net/bond0/queues/tx-0/xps_cpus = 0000,00000000
|
|
/sys/class/net/bond0/queues/tx-10/xps_cpus = 0000,00000000
|
|
/sys/class/net/bond0/queues/tx-11/xps_cpus = 0000,00000000
|
|
/sys/class/net/bond0/queues/tx-12/xps_cpus = 0000,00000000
|
|
/sys/class/net/bond0/queues/tx-13/xps_cpus = 0000,00000000
|
|
/sys/class/net/bond0/queues/tx-14/xps_cpus = 0000,00000000
|
|
/sys/class/net/bond0/queues/tx-15/xps_cpus = 0000,00000000
|
|
/sys/class/net/bond0/queues/tx-1/xps_cpus = 0000,00000000
|
|
/sys/class/net/bond0/queues/tx-2/xps_cpus = 0000,00000000
|
|
/sys/class/net/bond0/queues/tx-3/xps_cpus = 0000,00000000
|
|
/sys/class/net/bond0/queues/tx-4/xps_cpus = 0000,00000000
|
|
/sys/class/net/bond0/queues/tx-5/xps_cpus = 0000,00000000
|
|
/sys/class/net/bond0/queues/tx-6/xps_cpus = 0000,00000000
|
|
/sys/class/net/bond0/queues/tx-7/xps_cpus = 0000,00000000
|
|
/sys/class/net/bond0/queues/tx-8/xps_cpus = 0000,00000000
|
|
/sys/class/net/bond0/queues/tx-9/xps_cpus = 0000,00000000
|
|
/sys/class/net/datanet/queues/tx-0/xps_cpus =
|
|
/sys/class/net/fwbr701i0/queues/tx-0/xps_cpus =
|
|
/sys/class/net/fwbr701i1/queues/tx-0/xps_cpus =
|
|
/sys/class/net/fwbr702i0/queues/tx-0/xps_cpus =
|
|
/sys/class/net/fwbr703i0/queues/tx-0/xps_cpus =
|
|
/sys/class/net/fwbr704i0/queues/tx-0/xps_cpus =
|
|
/sys/class/net/fwbr704i1/queues/tx-0/xps_cpus =
|
|
/sys/class/net/fwln701i0/queues/tx-0/xps_cpus = 0000,00000000
|
|
/sys/class/net/fwln701i1/queues/tx-0/xps_cpus = 0000,00000000
|
|
/sys/class/net/fwln702i0/queues/tx-0/xps_cpus = 0000,00000000
|
|
/sys/class/net/fwln703i0/queues/tx-0/xps_cpus = 0000,00000000
|
|
/sys/class/net/fwln704i0/queues/tx-0/xps_cpus = 0000,00000000
|
|
/sys/class/net/fwln704i1/queues/tx-0/xps_cpus = 0000,00000000
|
|
/sys/class/net/fwpr701p0/queues/tx-0/xps_cpus = 0000,00000000
|
|
/sys/class/net/fwpr701p1/queues/tx-0/xps_cpus = 0000,00000000
|
|
/sys/class/net/fwpr702p0/queues/tx-0/xps_cpus = 0000,00000000
|
|
/sys/class/net/fwpr703p0/queues/tx-0/xps_cpus = 0000,00000000
|
|
/sys/class/net/fwpr704p0/queues/tx-0/xps_cpus = 0000,00000000
|
|
/sys/class/net/fwpr704p1/queues/tx-0/xps_cpus = 0000,00000000
|
|
/sys/class/net/lo/queues/tx-0/xps_cpus =
|
|
/sys/class/net/nic0/queues/tx-0/xps_cpus = 0000,00000000
|
|
/sys/class/net/nic1/queues/tx-0/xps_cpus = 0000,00000000
|
|
/sys/class/net/nic2/queues/tx-0/xps_cpus = 0000,00000000
|
|
/sys/class/net/nic3/queues/tx-0/xps_cpus = 0000,00000000
|
|
/sys/class/net/tailscale0/queues/tx-0/xps_cpus =
|
|
/sys/class/net/tap701i0/queues/tx-0/xps_cpus =
|
|
/sys/class/net/tap701i1/queues/tx-0/xps_cpus =
|
|
/sys/class/net/tap702i0/queues/tx-0/xps_cpus =
|
|
/sys/class/net/tap703i0/queues/tx-0/xps_cpus =
|
|
/sys/class/net/tap704i0/queues/tx-0/xps_cpus =
|
|
/sys/class/net/tap704i1/queues/tx-0/xps_cpus =
|
|
/sys/class/net/vmbr0/queues/tx-0/xps_cpus =
|
|
|
|
--- 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/datanet/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/fwbr701i0/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/fwbr701i1/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/fwbr702i0/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/fwbr703i0/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/fwbr704i0/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/fwbr704i1/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/fwln701i0/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/fwln701i1/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/fwln702i0/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/fwln703i0/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/fwln704i0/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/fwln704i1/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/fwpr701p0/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/fwpr701p1/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/fwpr702p0/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/fwpr703p0/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/fwpr704p0/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/fwpr704p1/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/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/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/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/tailscale0/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/tap701i0/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/tap701i1/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/tap702i0/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/tap703i0/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/tap704i0/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/tap704i1/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/vmbr0/queues/rx-0/rps_flow_cnt = 0
|
|
|
|
--- /proc/net/softnet_stat (drops/backlog)
|
|
$ cat /proc/net/softnet_stat
|
|
00029b0d 00000000 00000007 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
|
|
00000123 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000001 00000000 00000000
|
|
00001059 00000000 00000001 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000002 00000000 00000000
|
|
00000132 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000003 00000000 00000000
|
|
002fbe5d 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000004 00000000 00000000
|
|
00000123 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000005 00000000 00000000
|
|
00185c89 00000000 00000001 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000006 00000000 00000000
|
|
0000015e 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000007 00000000 00000000
|
|
003780e9 00000000 0000001d 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000008 00000000 00000000
|
|
000000f6 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000009 00000000 00000000
|
|
003dabd3 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 0000000a 00000000 00000000
|
|
00000104 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 0000000b 00000000 00000000
|
|
000004b8 00000000 00000001 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 0000000c 00000000 00000000
|
|
000001bc 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 0000000d 00000000 00000000
|
|
0032438d 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 0000000e 00000000 00000000
|
|
000001e1 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 0000000f 00000000 00000000
|
|
002325f6 00000000 00000001 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000010 00000000 00000000
|
|
000000c3 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000011 00000000 00000000
|
|
000cee52 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000012 00000000 00000000
|
|
000001c8 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000013 00000000 00000000
|
|
000b2a1c 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000014 00000000 00000000
|
|
000001ed 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000015 00000000 00000000
|
|
00042b67 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000016 00000000 00000000
|
|
000000b6 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000017 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=00029b0d dropped=00000000 time_squeezed=00000000 cpu_collision=00000000 rps_received=00000000 flow_limit=00000000
|
|
cpu1 total=00000123 dropped=00000000 time_squeezed=00000000 cpu_collision=00000000 rps_received=00000000 flow_limit=00000000
|
|
cpu2 total=00001059 dropped=00000000 time_squeezed=00000000 cpu_collision=00000000 rps_received=00000000 flow_limit=00000000
|
|
cpu3 total=00000132 dropped=00000000 time_squeezed=00000000 cpu_collision=00000000 rps_received=00000000 flow_limit=00000000
|
|
cpu4 total=002fbe5d dropped=00000000 time_squeezed=00000000 cpu_collision=00000000 rps_received=00000000 flow_limit=00000000
|
|
cpu5 total=00000123 dropped=00000000 time_squeezed=00000000 cpu_collision=00000000 rps_received=00000000 flow_limit=00000000
|
|
cpu6 total=00185c89 dropped=00000000 time_squeezed=00000000 cpu_collision=00000000 rps_received=00000000 flow_limit=00000000
|
|
cpu7 total=0000015e dropped=00000000 time_squeezed=00000000 cpu_collision=00000000 rps_received=00000000 flow_limit=00000000
|
|
cpu8 total=003780e9 dropped=00000000 time_squeezed=00000000 cpu_collision=00000000 rps_received=00000000 flow_limit=00000000
|
|
cpu9 total=000000f6 dropped=00000000 time_squeezed=00000000 cpu_collision=00000000 rps_received=00000000 flow_limit=00000000
|
|
cpu10 total=003dabd3 dropped=00000000 time_squeezed=00000000 cpu_collision=00000000 rps_received=00000000 flow_limit=00000000
|
|
cpu11 total=00000104 dropped=00000000 time_squeezed=00000000 cpu_collision=00000000 rps_received=00000000 flow_limit=00000000
|
|
cpu12 total=000004b8 dropped=00000000 time_squeezed=00000000 cpu_collision=00000000 rps_received=00000000 flow_limit=00000000
|
|
cpu13 total=000001bc dropped=00000000 time_squeezed=00000000 cpu_collision=00000000 rps_received=00000000 flow_limit=00000000
|
|
cpu14 total=0032438d dropped=00000000 time_squeezed=00000000 cpu_collision=00000000 rps_received=00000000 flow_limit=00000000
|
|
cpu15 total=000001e1 dropped=00000000 time_squeezed=00000000 cpu_collision=00000000 rps_received=00000000 flow_limit=00000000
|
|
cpu16 total=002325f6 dropped=00000000 time_squeezed=00000000 cpu_collision=00000000 rps_received=00000000 flow_limit=00000000
|
|
cpu17 total=000000c3 dropped=00000000 time_squeezed=00000000 cpu_collision=00000000 rps_received=00000000 flow_limit=00000000
|
|
cpu18 total=000cee54 dropped=00000000 time_squeezed=00000000 cpu_collision=00000000 rps_received=00000000 flow_limit=00000000
|
|
cpu19 total=000001c8 dropped=00000000 time_squeezed=00000000 cpu_collision=00000000 rps_received=00000000 flow_limit=00000000
|
|
cpu20 total=000b2a1e dropped=00000000 time_squeezed=00000000 cpu_collision=00000000 rps_received=00000000 flow_limit=00000000
|
|
cpu21 total=000001ed dropped=00000000 time_squeezed=00000000 cpu_collision=00000000 rps_received=00000000 flow_limit=00000000
|
|
cpu22 total=00042b67 dropped=00000000 time_squeezed=00000000 cpu_collision=00000000 rps_received=00000000 flow_limit=00000000
|
|
cpu23 total=000000b6 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 0 0.0
|
|
IpFragFails 0 0.0
|
|
TcpAttemptFails 6 0.0
|
|
TcpRetransSegs 402734 0.0
|
|
TcpInErrs 0 0.0
|
|
Ip6ReasmFails 0 0.0
|
|
Ip6FragFails 0 0.0
|
|
TcpExtSyncookiesFailed 3 0.0
|
|
TcpExtEmbryonicRsts 0 0.0
|
|
TcpExtLockDroppedIcmps 0 0.0
|
|
TcpExtListenOverflows 0 0.0
|
|
TcpExtListenDrops 0 0.0
|
|
TcpExtTCPLossUndo 1 0.0
|
|
TcpExtTCPLostRetransmit 94694 0.0
|
|
TcpExtTCPRenoFailures 0 0.0
|
|
TcpExtTCPSackFailures 0 0.0
|
|
TcpExtTCPLossFailures 307 0.0
|
|
TcpExtTCPFastRetrans 377574 0.0
|
|
TcpExtTCPSlowStartRetrans 22028 0.0
|
|
TcpExtTCPLossProbes 1918 0.0
|
|
TcpExtTCPLossProbeRecovery 36 0.0
|
|
TcpExtTCPRenoRecoveryFail 0 0.0
|
|
TcpExtTCPSackRecoveryFail 560 0.0
|
|
TcpExtTCPAbortOnData 33 0.0
|
|
TcpExtTCPAbortOnClose 18 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 53 0.0
|
|
TcpExtTCPMTUPFail 0 0.0
|
|
TcpExtTCPZeroWindowDrop 0 0.0
|
|
TcpExtTCPRcvQDrop 1 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: 377
|
|
TCP: 114 (estab 14, closed 90, orphaned 0, timewait 89)
|
|
|
|
Transport Total IP IPv6
|
|
RAW 0 0 0
|
|
UDP 9 6 3
|
|
TCP 24 19 5
|
|
INET 33 25 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 192.168.0.250:39590 192.200.0.104:80 timer:(keepalive,,0)
|
|
skmem:(r0,rb87380,t0,tb130560,f0,w0,o0,bl0,d0)
|
|
0 0 10.100.100.7:713 10.100.100.4:2049 timer:(keepalive,1min12sec,0)
|
|
skmem:(r0,rb983366,t0,tb1919232,f0,w0,o0,bl0,d61)
|
|
0 0 10.100.100.7:728 10.100.100.4:2049 timer:(keepalive,1min12sec,0)
|
|
skmem:(r0,rb1004827,t0,tb1462272,f0,w0,o0,bl0,d71)
|
|
0 0 10.100.100.7:743 10.100.100.4:2049 timer:(keepalive,1min12sec,0)
|
|
skmem:(r0,rb1091472,t0,tb1958400,f0,w0,o0,bl0,d45)
|
|
0 0 10.100.100.7:757 10.100.100.4:2049 timer:(keepalive,1min13sec,0)
|
|
skmem:(r0,rb764933,t0,tb1331712,f0,w0,o0,bl0,d37)
|
|
0 0 192.168.0.250:42658 209.177.156.94:443 timer:(keepalive,10sec,0)
|
|
skmem:(r0,rb87380,t0,tb130560,f0,w0,o0,bl0,d0)
|
|
0 0 192.168.0.250:50612 152.53.37.179:443 timer:(keepalive,5.376sec,0)
|
|
skmem:(r0,rb87380,t0,tb130560,f0,w0,o0,bl0,d0)
|
|
0 0 10.100.100.7:734 10.100.100.5:2049 timer:(keepalive,22sec,0)
|
|
skmem:(r0,rb87380,t0,tb130560,f0,w0,o0,bl0,d0)
|
|
0 0 10.100.100.7:749 10.100.100.5:2049 timer:(keepalive,42sec,0)
|
|
skmem:(r0,rb87380,t0,tb130560,f0,w0,o0,bl0,d1)
|
|
0 0 10.100.100.7:853 10.100.100.5:2049 timer:(keepalive,1min2sec,0)
|
|
skmem:(r0,rb87380,t0,tb130560,f0,w0,o0,bl0,d0)
|
|
0 0 10.100.100.7:1007 10.100.100.5:2049 timer:(keepalive,22sec,0)
|
|
skmem:(r0,rb87380,t0,tb130560,f0,w0,o0,bl0,d0)
|
|
0 0 192.168.0.250:55968 199.165.136.100:443 timer:(keepalive,28sec,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 192.168.0.250:39590 192.200.0.104:http
|
|
bbr wscale:10,12 rto:354 rtt:145.675/13.989 ato:40 mss:1448 pmtu:1500 rcvmss:1448 advmss:1448 cwnd:18 bytes_sent:6705 bytes_acked:6706 bytes_received:30791 segs_out:125 segs_in:127 data_segs_out:19 data_segs_in:83 bbr:(bw:327kbps,mrtt:138.244,pacing_gain:2.88672,cwnd_gain:2.88672) send 1.43Mbps lastsnd:140854 lastrcv:30336 lastack:30336 pacing_rate 2.36Mbps delivery_rate 327kbps delivered:20 app_limited busy:1443ms rcv_rtt:139 rcv_space:14480 rcv_ssthresh:59076 minrtt:138.244 snd_wnd:68608 rcv_wnd:61440
|
|
ESTAB 0 0 10.100.100.7:713 10.100.100.4:nfs
|
|
bbr wscale:9,12 rto:205 rtt:4.527/5.847 ato:40 mss:1448 pmtu:1500 rcvmss:1448 advmss:1448 cwnd:206 ssthresh:165 bytes_sent:61696244 bytes_retrans:1015668 bytes_acked:60680577 bytes_received:416716572 segs_out:133214 segs_in:312024 data_segs_out:57766 data_segs_in:299273 bbr:(bw:281Mbps,mrtt:0.439,pacing_gain:1,cwnd_gain:2) send 527Mbps lastsnd:2245 lastrcv:2226 lastack:2227 pacing_rate 278Mbps delivery_rate 281Mbps delivered:57205 app_limited busy:218295ms rwnd_limited:1ms(0.0%) retrans:0/934 dsack_dups:374 rcv_rtt:10 rcv_space:349556 rcv_ssthresh:664540 minrtt:0.254 snd_wnd:967168 rcv_wnd:667648 rehash:68
|
|
ESTAB 0 0 10.100.100.7:728 10.100.100.4:nfs
|
|
bbr wscale:9,12 rto:205 rtt:4.167/5.162 ato:40 mss:1448 pmtu:1500 rcvmss:1448 advmss:1448 cwnd:33 ssthresh:225 bytes_sent:73127244 bytes_retrans:1231940 bytes_acked:71895305 bytes_received:440528444 segs_out:146155 segs_in:330287 data_segs_out:66423 data_segs_in:316251 bbr:(bw:125Mbps,mrtt:0.262,pacing_gain:1,cwnd_gain:2) send 91.7Mbps lastsnd:3116 lastrcv:3099 lastack:3099 pacing_rate 123Mbps delivery_rate 125Mbps delivered:65745 app_limited busy:197055ms rwnd_limited:60ms(0.0%) retrans:0/1073 dsack_dups:402 rcv_rtt:5 rcv_space:272092 rcv_ssthresh:678394 minrtt:0.25 snd_wnd:1541120 rcv_wnd:679936 rehash:57
|
|
ESTAB 0 0 10.100.100.7:743 10.100.100.4:nfs
|
|
bbr wscale:9,12 rto:207 rtt:6.238/6.697 ato:40 mss:1448 pmtu:1500 rcvmss:1448 advmss:1448 cwnd:153 ssthresh:228 bytes_sent:66807948 bytes_retrans:1082156 bytes_acked:65725793 bytes_received:446639840 segs_out:143028 segs_in:334024 data_segs_out:61868 data_segs_in:320446 bbr:(bw:324Mbps,mrtt:0.284,pacing_gain:1.25,cwnd_gain:2) send 284Mbps lastsnd:3056 lastrcv:3043 lastack:3043 pacing_rate 401Mbps delivery_rate 324Mbps delivered:61302 app_limited busy:183439ms rwnd_limited:1ms(0.0%) retrans:0/940 dsack_dups:375 rcv_rtt:32.921 rcv_space:313372 rcv_ssthresh:626192 minrtt:0.284 snd_wnd:1017856 rcv_wnd:626688 rehash:63
|
|
ESTAB 0 0 10.100.100.7:757 10.100.100.4:nfs
|
|
bbr wscale:9,12 rto:202 rtt:1.547/0.044 ato:40 mss:1448 pmtu:1500 rcvmss:1448 advmss:1448 cwnd:162 bytes_sent:65060480 bytes_retrans:1144232 bytes_acked:63916249 bytes_received:405764716 segs_out:134575 segs_in:304763 data_segs_out:60008 data_segs_in:291542 bbr:(bw:315Mbps,mrtt:0.23,pacing_gain:1.25,cwnd_gain:2) send 1.21Gbps lastsnd:3165 lastrcv:3121 lastack:3121 pacing_rate 390Mbps delivery_rate 143Mbps delivered:59416 busy:209649ms rwnd_limited:32ms(0.0%) retrans:0/967 dsack_dups:377 rcv_rtt:1 rcv_space:258464 rcv_ssthresh:516278 minrtt:0.23 snd_wnd:1326592 rcv_wnd:520192 rehash:62
|
|
ESTAB 0 0 192.168.0.250:42658 209.177.156.94:https
|
|
bbr wscale:7,12 rto:214 rtt:13.297/1.209 ato:40 mss:1448 pmtu:1500 rcvmss:1448 advmss:1448 cwnd:18 bytes_sent:22150 bytes_acked:22151 bytes_received:34644 segs_out:258 segs_in:238 data_segs_out:119 data_segs_in:125 bbr:(bw:2.91Mbps,mrtt:12.48,pacing_gain:2.88672,cwnd_gain:2.88672) send 15.7Mbps lastsnd:3768 lastrcv:34920 lastack:3753 pacing_rate 23.3Mbps delivery_rate 2.91Mbps delivered:120 app_limited busy:1074ms rcv_space:14480 rcv_ssthresh:55700 minrtt:11.221 snd_wnd:64128 rcv_wnd:57344
|
|
ESTAB 0 0 192.168.0.250:50612 152.53.37.179:https
|
|
bbr wscale:11,12 rto:248 rtt:47.96/0.869 ato:40 mss:1448 pmtu:1500 rcvmss:1448 advmss:1448 cwnd:19 bytes_sent:40562 bytes_acked:40563 bytes_received:5420 segs_out:147 segs_in:169 data_segs_out:46 data_segs_in:39 bbr:(bw:956kbps,mrtt:46.917,pacing_gain:2.88672,cwnd_gain:2.88672) send 4.59Mbps lastsnd:55609 lastrcv:55613 lastack:9603 pacing_rate 6.86Mbps delivery_rate 956kbps delivered:47 app_limited busy:1746ms rcv_space:14480 rcv_ssthresh:54875 minrtt:46.917 snd_wnd:45056 rcv_wnd:57344
|
|
ESTAB 0 0 10.100.100.7:734 10.100.100.5:nfs
|
|
bbr wscale:12,12 rto:202 rtt:1.072/0.304 ato:40 mss:1448 pmtu:1500 rcvmss:536 advmss:1448 cwnd:138 bytes_sent:37396 bytes_acked:37397 bytes_received:40580 segs_out:414 segs_in:222 data_segs_out:220 data_segs_in:220 bbr:(bw:18.5Mbps,mrtt:0.604,pacing_gain:2.88672,cwnd_gain:2.88672) send 1.49Gbps lastsnd:13156 lastrcv:13155 lastack:13155 pacing_rate 548Mbps delivery_rate 18.5Mbps delivered:221 app_limited busy:477ms rcv_space:14480 rcv_ssthresh:42242 minrtt:0.604 snd_wnd:65536 rcv_wnd:45056
|
|
ESTAB 0 0 10.100.100.7:kerberos-adm 10.100.100.5:nfs
|
|
bbr wscale:12,12 rto:201 rtt:0.956/0.183 ato:40 mss:1448 pmtu:1500 rcvmss:536 advmss:1448 cwnd:140 bytes_sent:39692 bytes_retrans:336 bytes_acked:39357 bytes_received:44688 segs_out:423 segs_in:240 data_segs_out:235 data_segs_in:234 bbr:(bw:26.3Mbps,mrtt:0.623,pacing_gain:2.88672,cwnd_gain:2.88672) send 1.7Gbps lastsnd:13161 lastrcv:13160 lastack:13160 pacing_rate 709Mbps delivery_rate 26.3Mbps delivered:235 app_limited busy:1387ms retrans:0/2 dsack_dups:1 rcv_space:14480 rcv_ssthresh:42242 minrtt:0.623 snd_wnd:65536 rcv_wnd:45056
|
|
ESTAB 0 0 10.100.100.7:domain-s 10.100.100.5:nfs
|
|
bbr wscale:12,12 rto:201 rtt:0.942/0.232 ato:40 mss:1448 pmtu:1500 rcvmss:536 advmss:1448 cwnd:138 bytes_sent:37848 bytes_retrans:520 bytes_acked:37329 bytes_received:42804 segs_out:419 segs_in:223 data_segs_out:222 data_segs_in:219 bbr:(bw:18.9Mbps,mrtt:0.626,pacing_gain:2.88672,cwnd_gain:2.88672) send 1.7Gbps lastsnd:6837 lastrcv:6836 lastack:6836 pacing_rate 737Mbps delivery_rate 18.9Mbps delivered:221 app_limited busy:1558ms retrans:0/3 dsack_dups:1 rcv_space:14480 rcv_ssthresh:42242 minrtt:0.626 snd_wnd:65536 rcv_wnd:45056 rehash:1
|
|
ESTAB 0 0 10.100.100.7:1007 10.100.100.5:nfs
|
|
bbr wscale:12,12 rto:201 rtt:0.867/0.079 ato:40 mss:1448 pmtu:1500 rcvmss:536 advmss:1448 cwnd:138 bytes_sent:38008 bytes_retrans:672 bytes_acked:37337 bytes_received:41220 segs_out:418 segs_in:225 data_segs_out:224 data_segs_in:220 bbr:(bw:19.3Mbps,mrtt:0.619,pacing_gain:2.88672,cwnd_gain:2.88672) send 1.84Gbps lastsnd:7024 lastrcv:7023 lastack:7023 pacing_rate 665Mbps delivery_rate 19.3Mbps delivered:223 app_limited busy:1610ms retrans:0/4 dsack_dups:2 rcv_space:14480 rcv_ssthresh:42242 minrtt:0.619 snd_wnd:65536 rcv_wnd:45056 rehash:1
|
|
ESTAB 0 0 100.110.146.27:ssh 100.101.187.119:34530
|
|
bbr wscale:7,12 rto:207 rtt:6.317/10.515 ato:40 mss:1228 pmtu:1280 rcvmss:1228 advmss:1228 cwnd:30 bytes_sent:4537 bytes_acked:4537 bytes_received:4473 segs_out:29 segs_in:19 data_segs_out:20 data_segs_in:11 bbr:(bw:58.1Mbps,mrtt:0.754,pacing_gain:2.88672,cwnd_gain:2.88672) send 46.7Mbps lastsnd:2171 lastrcv:2271 lastack:2130 pacing_rate 369Mbps delivery_rate 58.1Mbps delivered:21 app_limited busy:58ms rcv_rtt:6 rcv_space:12280 rcv_ssthresh:57825 minrtt:0.754 snd_wnd:74112 rcv_wnd:61440
|
|
ESTAB 0 0 100.110.146.27:ssh 100.101.187.119:60700
|
|
bbr wscale:7,12 rto:206 rtt:5.194/8.454 ato:40 mss:1228 pmtu:1280 rcvmss:1228 advmss:1228 cwnd:27 bytes_sent:5585 bytes_acked:5585 bytes_received:3941 segs_out:24 segs_in:23 data_segs_out:17 data_segs_in:14 bbr:(bw:25.3Mbps,mrtt:0.66,pacing_gain:2.88672,cwnd_gain:2.88672) send 51.1Mbps lastsnd:2836 lastrcv:2837 lastack:2836 pacing_rate 425Mbps delivery_rate 25.3Mbps delivered:18 app_limited busy:59ms rcv_rtt:6 rcv_space:12280 rcv_ssthresh:58024 minrtt:0.66 snd_wnd:76800 rcv_wnd:61440
|
|
ESTAB 0 0 192.168.0.250:55968 199.165.136.100:https
|
|
bbr wscale:10,12 rto:263 rtt:62.213/16.128 ato:40 mss:1448 pmtu:1500 rcvmss:1448 advmss:1448 cwnd:26 bytes_sent:151373 bytes_acked:151374 bytes_received:30231 segs_out:545 segs_in:409 data_segs_out:277 data_segs_in:268 bbr:(bw:1.73Mbps,mrtt:41.546,pacing_gain:2.88672,cwnd_gain:2.88672) send 4.84Mbps lastsnd:1725 lastrcv:1657 lastack:1657 pacing_rate 7.62Mbps delivery_rate 1.73Mbps delivered:278 app_limited busy:17160ms rcv_space:14480 rcv_ssthresh:54875 minrtt:41.445 snd_wnd:87040 rcv_wnd:57344
|
|
|
|
--- /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 2724 209 6 34 14 6474366 17033844 402734 0 353 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 2724 209 6 34 14 6474366 17033844 402734 0 353 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.8G disk Internal Dual SD 0123456789AB running 1 0B 0B
|
|
sdb 1.8T disk WDC WD20SDRW-11VUUS0 WD-WXS2AB22T8HD running 1 0B 0B
|
|
├─sdb1 1007K part 1 0B 0B
|
|
├─sdb2 1G part vfat 1 0B 0B
|
|
└─sdb3 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
|
|
sr0 1024M rom TSSTcorp DVD-ROM SU-108CB S10I6YIDC00487 running 0 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
|
|
sdb 0 512 0 512 512 1 mq-deadline 2 4096 0B
|
|
├─sdb1 0 512 0 512 512 1 mq-deadline 2 4096 0B
|
|
├─sdb2 0 512 0 512 512 1 mq-deadline 2 4096 0B
|
|
└─sdb3 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
|
|
sr0 0 512 0 512 512 0 mq-deadline 64 128 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 usb-Dell_Internal_Dual_SD_0123456789AB-0:0 Dell_Internal_Dual_SD_0123456789AB-0:0 0 0 0B 11 0B 0 disk 6:0:0:0 0 sda 512 8:0 8 0 512 brw-rw---- Internal Dual SD 1 sda 0 root /dev/sda 512 4096 1 1.: 0 0 1 2 mq-deadline 0123456789AB 1.8G running block:scsi:usb:pci usb disk Dell 0B none 0B 0B 0B 0 0 0
|
|
0 wwn-0x50014ee215a17c95 0x50014ee215a17c95 0 0 0B 12 0B 0 disk 7:0:0:0 0 sdb 512 8:16 8 16 512 brw-rw---- WDC WD20SDRW-11VUUS0 1 sdb 0 root /dev/sdb 512 gpt 50acba93-6eaf-416d-baac-07c2420573e5 4096 1 01.01A01 0 0 1 2 mq-deadline WD-WXS2AB22T8HD 1.8T running block:scsi:usb:pci usb disk WD 0B 0x50014ee215a17c95 none 0B 0B 0B 0 0 0
|
|
0 wwn-0x50014ee215a17c95-part1 0x50014ee215a17c95-part1 0 0 0B 12 0B 0 disk 0 sdb1 512 8:17 8 17 512 brw-rw---- 1 ├─sdb1 0 root 1 21686148-6449-6e6f-744e-656564454649 BIOS boot e5b5f15d-0b19-47c6-bdca-6a48ffe6430e /dev/sdb1 512 sdb gpt 50acba93-6eaf-416d-baac-07c2420573e5 4096 1 0 0 1 2 mq-deadline 1007K 34 block:scsi:usb:pci part 0B 0x50014ee215a17c95 none 0B 0B 0B 0 0 0
|
|
0 wwn-0x50014ee215a17c95-part2 0x50014ee215a17c95-part2 0 0 0B 12 0B 0 vfat FAT32 disk 0 sdb2 512 8:18 8 18 512 brw-rw---- 1 ├─sdb2 0 root 2 c12a7328-f81f-11d2-ba4b-00a0c93ec93b EFI System f2115f91-e69f-4e25-8dc6-cee72b54e691 /dev/sdb2 512 sdb gpt 50acba93-6eaf-416d-baac-07c2420573e5 4096 1 0 0 1 2 mq-deadline 1G 2048 block:scsi:usb:pci part 749D-7465 0B 0x50014ee215a17c95 none 0B 0B 0B 0 0 0
|
|
0 wwn-0x50014ee215a17c95-part3 0x50014ee215a17c95-part3 0 0 0B 12 0B 0 LVM2_member LVM2 001 disk 0 sdb3 512 8:19 8 19 512 brw-rw---- 1 └─sdb3 0 root 3 e6d6d379-f507-44c2-a23c-238f2a3df928 Linux LVM c6fa0e75-e837-4cb0-8447-b01783d58e88 /dev/sdb3 512 sdb gpt 50acba93-6eaf-416d-baac-07c2420573e5 4096 1 0 0 1 2 mq-deadline 1.8T 2099200 block:scsi:usb:pci part 6NOPe4-xbYH-mYST-TOcr-xItw-d0YY-Ssoxl0 0B 0x50014ee215a17c95 none 0B 0B 0B 0 0 0
|
|
0 dm-name-pve-swap name-pve-swap 0 0 0B 13 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 sdb3 4096 0 0 0 1 8G running block [SWAP] [SWAP] lvm cda2077f-8b6c-4b1d-94de-9244ff779211 0B none 0B 0B 0B 0 0 0
|
|
0 dm-name-pve-root name-pve-root 0 0 0B 14 0B 0 81.3G / 93.9G ext4 7.9G 8% 1.0 disk 0 dm-1 512 252:1 252 1 512 brw-rw---- 1 ├─pve-root 0 root /dev/mapper/pve-root 512 sdb3 4096 0 0 0 1 96G running block / / lvm f84f4c3f-0766-4721-9855-055bfc03759e 0B none 0B 0B 0B 0 0 0
|
|
0 0 0 0B 15 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 sdb3 4096 0 0 0 1 15.9G running block lvm 0B none 0B 0B 0B 0 0 0
|
|
0 0 0 0B 17 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 16 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 sdb3 4096 0 0 0 1 1.7T running block lvm 0B none 0B 0B 0B 0 0 0
|
|
0 0 0 0B 17 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
|
|
0 ata-TSSTcorp_DVD-ROM_SU-108CB_S10I6YIDC00487 TSSTcorp_DVD-ROM_SU-108CB_S10I6YIDC00487 0 0 0B 10 0B 0 cdrom 4:0:0:0 0 sr0 512 11:0 11 0 512 brw-rw---- TSSTcorp DVD-ROM SU-108CB 1 sr0 0 root /dev/sr0 512 128 0 D250 1 0 0 64 mq-deadline S10I6YIDC00487 1024M running block:scsi:pci sata rom TSSTcorp 0B none 0B 0B 0B 0 0 0
|
|
|
|
--- blkid
|
|
$ blkid
|
|
/dev/mapper/pve-root: UUID="f84f4c3f-0766-4721-9855-055bfc03759e" BLOCK_SIZE="4096" TYPE="ext4"
|
|
/dev/sdb2: UUID="749D-7465" BLOCK_SIZE="512" TYPE="vfat" PARTUUID="f2115f91-e69f-4e25-8dc6-cee72b54e691"
|
|
/dev/sdb3: UUID="6NOPe4-xbYH-mYST-TOcr-xItw-d0YY-Ssoxl0" TYPE="LVM2_member" PARTUUID="c6fa0e75-e837-4cb0-8447-b01783d58e88"
|
|
/dev/sdb1: PARTUUID="e5b5f15d-0b19-47c6-bdca-6a48ffe6430e"
|
|
/dev/mapper/pve-swap: UUID="cda2077f-8b6c-4b1d-94de-9244ff779211" TYPE="swap"
|
|
|
|
--- /proc/partitions
|
|
$ cat /proc/partitions
|
|
major minor #blocks name
|
|
|
|
11 0 1048575 sr0
|
|
8 0 1903616 sda
|
|
8 16 1953481728 sdb
|
|
8 17 1007 sdb1
|
|
8 18 1048576 sdb2
|
|
8 19 1951398912 sdb3
|
|
252 0 8388608 dm-0
|
|
252 1 100663296 dm-1
|
|
252 2 16650240 dm-2
|
|
252 3 1792008192 dm-3
|
|
252 4 1792008192 dm-4
|
|
|
|
--- fdisk -l
|
|
$ fdisk -l
|
|
Disk /dev/sda: 1.82 GiB, 1949302784 bytes, 3807232 sectors
|
|
Disk model: Internal Dual SD
|
|
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/sdb: 1.82 TiB, 2000365289472 bytes, 3906963456 sectors
|
|
Disk model: Drive 2657
|
|
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: 50ACBA93-6EAF-416D-BAAC-07C2420573E5
|
|
|
|
Device Start End Sectors Size Type
|
|
/dev/sdb1 34 2047 2014 1007K BIOS boot
|
|
/dev/sdb2 2048 2099199 2097152 1G EFI System
|
|
/dev/sdb3 2099200 3904897024 3902797825 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 = Internal Dual SD
|
|
/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 = Drive 2657
|
|
[exit=1]
|
|
|
|
--- df -h (filesystem usage)
|
|
$ df -h
|
|
Filesystem Size Used Avail Use% Mounted on
|
|
udev 95G 0 95G 0% /dev
|
|
tmpfs 19G 3.7M 19G 1% /run
|
|
/dev/mapper/pve-root 94G 7.9G 82G 9% /
|
|
tmpfs 95G 40M 95G 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 95G 24K 95G 1% /tmp
|
|
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/D5 1.8T 233G 1.5T 14% /mnt/pve/D5
|
|
pfv-tsys5-nfs-stor:/mnt/pfv-tsys5/S2 916G 2.0M 870G 1% /mnt/pve/S2
|
|
pfv-tsys4-nfs-stor:/mnt/tsys4/D3 469G 2.0M 445G 1% /mnt/pve/D3
|
|
pfv-tsys5-nfs-stor:/mnt/pfv-tsys5/ssd 234G 83G 140G 38% /mnt/pve/T5-SSD
|
|
pfv-tsys5-nfs-stor:/mnt/pfv-tsys5/S3 916G 2.0M 870G 1% /mnt/pve/S3
|
|
pfv-tsys5-nfs-stor:/mnt/pfv-tsys5/S4 458G 2.0M 435G 1% /mnt/pve/S4
|
|
/dev/fuse 128M 20K 128M 1% /etc/pve
|
|
tmpfs 19G 4.0K 19G 1% /run/user/0
|
|
|
|
--- df -i (inode usage)
|
|
$ df -i
|
|
Filesystem Inodes IUsed IFree IUse% Mounted on
|
|
udev 24738541 651 24737890 1% /dev
|
|
tmpfs 24750536 1250 24749286 1% /run
|
|
/dev/mapper/pve-root 6291456 79070 6212386 2% /
|
|
tmpfs 24750536 93 24750443 1% /dev/shm
|
|
tmpfs 1024 1 1023 1% /run/credentials/systemd-journald.service
|
|
tmpfs 24750536 18 24750518 1% /run/lock
|
|
tmpfs 1048576 14 1048562 1% /tmp
|
|
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/D5 122101760 66 122101694 1% /mnt/pve/D5
|
|
pfv-tsys5-nfs-stor:/mnt/pfv-tsys5/S2 61054976 13 61054963 1% /mnt/pve/S2
|
|
pfv-tsys4-nfs-stor:/mnt/tsys4/D3 31260672 13 31260659 1% /mnt/pve/D3
|
|
pfv-tsys5-nfs-stor:/mnt/pfv-tsys5/ssd 15630336 15 15630321 1% /mnt/pve/T5-SSD
|
|
pfv-tsys5-nfs-stor:/mnt/pfv-tsys5/S3 61054976 13 61054963 1% /mnt/pve/S3
|
|
pfv-tsys5-nfs-stor:/mnt/pfv-tsys5/S4 30531584 13 30531571 1% /mnt/pve/S4
|
|
/dev/fuse 262144 37 262107 1% /etc/pve
|
|
tmpfs 4950107 26 4950081 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=98954164k,nr_inodes=24738541,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=19800432k,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)
|
|
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=16421)
|
|
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)
|
|
mqueue on /dev/mqueue type mqueue (rw,nosuid,nodev,noexec,relatime)
|
|
tmpfs on /run/lock type tmpfs (rw,nosuid,nodev,noexec,relatime,size=5120k,inode64)
|
|
tracefs on /sys/kernel/tracing type tracefs (rw,nosuid,nodev,noexec,relatime)
|
|
hugetlbfs on /dev/hugepages type hugetlbfs (rw,nosuid,nodev,relatime,pagesize=2M)
|
|
debugfs on /sys/kernel/debug type debugfs (rw,nosuid,nodev,noexec,relatime)
|
|
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)
|
|
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.7,local_lock=none,addr=10.100.100.4)
|
|
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.7,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.7,local_lock=none,addr=10.100.100.5)
|
|
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.7,local_lock=none,addr=10.100.100.4)
|
|
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.7,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.7,local_lock=none,addr=10.100.100.5)
|
|
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.7,local_lock=none,addr=10.100.100.5)
|
|
/dev/fuse on /etc/pve type fuse (rw,nosuid,nodev,relatime,user_id=0,group_id=0,default_permissions,allow_other)
|
|
tmpfs on /run/user/0 type tmpfs (rw,nosuid,nodev,relatime,size=19800428k,nr_inodes=4950107,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/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.7,local_lock=none,addr=10.100.100.4
|
|
├─/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.7,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.7,local_lock=none,addr=10.100.100.5
|
|
├─/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.7,local_lock=none,addr=10.100.100.4
|
|
├─/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.7,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.7,local_lock=none,addr=10.100.100.5
|
|
└─/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.7,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: 23272866
|
|
Block size: 4096
|
|
Reserved GDT blocks: 1024
|
|
Last mount time: Sun Jul 26 15:55:06 2026
|
|
Last write time: Sun Jul 26 15:54:59 2026
|
|
Mount count: 14
|
|
Maximum mount count: -1
|
|
Last checked: Sat Apr 4 16:48:58 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.7,local_lock=none,addr=10.100.100.4
|
|
|
|
/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.7,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.7,local_lock=none,addr=10.100.100.5
|
|
|
|
/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.7,local_lock=none,addr=10.100.100.4
|
|
|
|
/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.7,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.7,local_lock=none,addr=10.100.100.5
|
|
|
|
/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.7,local_lock=none,addr=10.100.100.5
|
|
|
|
|
|
--- nfsstat -c (client stats)
|
|
$ nfsstat -c
|
|
Client rpc stats:
|
|
calls retrans authrefrsh
|
|
90794 0 90907
|
|
|
|
Client nfs v4:
|
|
null read write commit open
|
|
2 0% 67035 73% 21707 23% 313 0% 0 0%
|
|
open_conf open_noat open_dgrd close setattr
|
|
0 0% 4 0% 0 0% 0 0% 0 0%
|
|
fsinfo renew setclntid confirm lock
|
|
32 0% 0 0% 0 0% 0 0% 0 0%
|
|
lockt locku access getattr lookup
|
|
0 0% 0 0% 63 0% 350 0% 68 0%
|
|
lookup_root remove rename link symlink
|
|
8 0% 0 0% 0 0% 0 0% 0 0%
|
|
create pathconf statfs readlink readdir
|
|
0 0% 32 0% 1027 1% 0 0% 0 0%
|
|
server_caps delegreturn getacl setacl fs_locations
|
|
64 0% 0 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% 0 0% 0 0% 2 0% 0 0%
|
|
getdevinfo layoutcommit layoutreturn secinfo_no test_stateid
|
|
0 0% 0 0% 0 0% 8 0% 0 0%
|
|
free_stateid getdevicelist bind_conn_to_ses destroy_clientid seek
|
|
0 0% 0 0% 0 0% 0 0% 19 0%
|
|
allocate deallocate layoutstats clone
|
|
0 0% 0 0% 57 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
|
|
90794 0 90907
|
|
|
|
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
|
|
2 0% 67035 73% 21707 23% 313 0% 0 0%
|
|
open_conf open_noat open_dgrd close setattr
|
|
0 0% 4 0% 0 0% 0 0% 0 0%
|
|
fsinfo renew setclntid confirm lock
|
|
32 0% 0 0% 0 0% 0 0% 0 0%
|
|
lockt locku access getattr lookup
|
|
0 0% 0 0% 63 0% 350 0% 68 0%
|
|
lookup_root remove rename link symlink
|
|
8 0% 0 0% 0 0% 0 0% 0 0%
|
|
create pathconf statfs readlink readdir
|
|
0 0% 32 0% 1027 1% 0 0% 0 0%
|
|
server_caps delegreturn getacl setacl fs_locations
|
|
64 0% 0 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% 0 0% 0 0% 2 0% 0 0%
|
|
getdevinfo layoutcommit layoutreturn secinfo_no test_stateid
|
|
0 0% 0 0% 0 0% 8 0% 0 0%
|
|
free_stateid getdevicelist bind_conn_to_ses destroy_clientid seek
|
|
0 0% 0 0% 0 0% 0 0% 19 0%
|
|
allocate deallocate layoutstats clone
|
|
0 0% 0 0% 57 0% 0 0%
|
|
|
|
|
|
--- showmount -e (exports)
|
|
$ showmount -e
|
|
clnt_create: RPC: Program not registered
|
|
[exit=1 / not installed or not permitted]
|
|
|
|
--- /proc/net/rpc/nfs
|
|
$ cat /proc/net/rpc/nfs
|
|
net 0 0 0 0
|
|
rpc 90794 0 90907
|
|
proc4 71 2 67035 21707 313 0 0 4 0 0 0 32 0 0 0 0 0 0 63 350 68 8 0 0 0 0 0 32 1027 0 0 64 0 0 0 0 0 0 0 4 2 0 0 0 2 0 0 0 0 8 0 0 0 0 0 19 0 0 57 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 8240516 85207716 8.37%
|
|
local-lvm lvmthin active 1792008192 0 1792008192 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/debian13.iso iso iso 790626304
|
|
--- 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/sdb3 pve lvm2 a-- <1.82t <16.25g <1.82t 6NOPe4-xbYH-mYST-TOcr-xItw-d0YY-Ssoxl0
|
|
|
|
--- 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.25g ZJzdG7-bFgL-X9dZ-NgjS-XKmi-5Rce-YuVOBh
|
|
|
|
--- 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-- 1835016388608B 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/sdb3
|
|
VG Name pve
|
|
PV Size <1.82 TiB / not usable 3.00 MiB
|
|
Allocatable yes
|
|
PE Size 4.00 MiB
|
|
Total PE 476415
|
|
Free PE 4159
|
|
Allocated PE 472256
|
|
PV UUID 6NOPe4-xbYH-mYST-TOcr-xItw-d0YY-Ssoxl0
|
|
|
|
|
|
--- 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 476415
|
|
Alloc PE / Size 472256 / 1.80 TiB
|
|
Free PE / Size 4159 / <16.25 GiB
|
|
VG UUID ZJzdG7-bFgL-X9dZ-NgjS-XKmi-5Rce-YuVOBh
|
|
|
|
|
|
--- lvdisplay
|
|
$ lvdisplay
|
|
--- Logical volume ---
|
|
LV Name data
|
|
VG Name pve
|
|
LV UUID pybecr-i79R-9tQ9-nnXk-Dtjb-DYLi-e87Ygc
|
|
LV Write Access read/write
|
|
LV Creation host, time proxmox, 2026-04-04 16:34:06 -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 437502
|
|
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 5eHgXe-ak7O-rXLs-x1Tx-2q78-StNq-4UAmLX
|
|
LV Write Access read/write
|
|
LV Creation host, time proxmox, 2026-04-04 16:34:06 -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 MsXWQ3-oVZy-ooxq-FLWb-kPyt-aDIh-18yecN
|
|
LV Write Access read/write
|
|
LV Creation host, time proxmox, 2026-04-04 16:34:06 -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.4.3-pve1
|
|
zfs-kmod-2.3.4-pve1
|
|
|
|
--- zpool version
|
|
$ zpool version
|
|
zfs-2.4.3-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
|
|
24 1 0x01 147 39984 17523781887 1928889936019
|
|
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 6336137216
|
|
c_min 4 6336137216
|
|
c_max 4 17179869184
|
|
size 4 5760
|
|
compressed_size 4 0
|
|
uncompressed_size 4 0
|
|
overhead_size 4 0
|
|
hdr_size 4 5760
|
|
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 202756390912
|
|
memory_free_bytes 4 193717690368
|
|
memory_available_bytes 3 186949284352
|
|
arc_no_grow 4 0
|
|
arc_tempreserve 4 0
|
|
arc_loaned_bytes 4 0
|
|
arc_prune 4 0
|
|
arc_meta_used 4 5760
|
|
arc_dnode_limit 4 1717986918
|
|
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 6768406016
|
|
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
|
|
20 1 0x01 13 3536 17462996510 1928891225846
|
|
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
|
|
19 1 0x01 8 2176 17462995810 1928892387255
|
|
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
|
|
17 1 0x01 20 5440 17462851008 1928894774827
|
|
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 = 17179869184
|
|
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:27:02 2026
|
|
Linux 6.17.2-1-pve 2.3.4-pve1
|
|
Machine: pfv-tsys7 (x86_64) 2.3.4-pve1
|
|
|
|
ARC status:
|
|
Total memory size: 188.8 GiB
|
|
Min target size: 3.1 % 5.9 GiB
|
|
Max target size: 8.5 % 16.0 GiB
|
|
Target size (adaptive): < 0.1 % 5.9 GiB
|
|
Current size: < 0.1 % 5.6 KiB
|
|
Free memory size: 180.5 GiB
|
|
Available memory size: 174.2 GiB
|
|
|
|
ARC structural breakdown (current size): 5.6 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 % 5.6 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 aesni
|
|
icp_gcm_avx_chunk_size 32736
|
|
icp_gcm_impl cycle [fastest] avx generic pclmulqdq
|
|
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 17179869184
|
|
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 2027563909
|
|
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 avx
|
|
zfs_sha512_impl cycle [fastest] generic x64 avx
|
|
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
|
|
/root/check.sh: line 45: nvme: command not found
|
|
[exit=127 / not installed or not permitted]
|
|
|
|
--- 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
|
|
|
|
/dev/sda: Unknown USB bridge [0x413c:0xa101 (0x110)]
|
|
Please specify device type with the -d option.
|
|
|
|
Use smartctl -h to get a usage summary
|
|
|
|
--- smartctl -a /dev/sdb ---
|
|
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 WD20SDRW-11VUUS0
|
|
Serial Number: WD-WXS2AB22T8HD
|
|
LU WWN Device Id: 5 0014ee 215a17c95
|
|
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:27:03 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: ( 1920) 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: ( 94) 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 207 188 021 Pre-fail Always - 2608
|
|
4 Start_Stop_Count 0x0032 091 091 000 Old_age Always - 9227
|
|
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 072 072 000 Old_age Always - 21097
|
|
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 099 099 000 Old_age Always - 1665
|
|
192 Power-Off_Retract_Count 0x0032 199 199 000 Old_age Always - 1477
|
|
193 Load_Cycle_Count 0x0032 178 178 000 Old_age Always - 66023
|
|
194 Temperature_Celsius 0x0022 113 097 000 Old_age Always - 34
|
|
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
|
|
701 pfv-k8s-wnode-tsys7 running 32000 32.00 4431
|
|
702 hfnoc-uisp running 8000 100.00 4711
|
|
703 rr-middleware running 2048 32.00 4811
|
|
704 TCTC running 6000 32.00 5011
|
|
|
|
--- 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 701 ---
|
|
balloon: 0
|
|
boot: order=virtio0;ide2;net0
|
|
cores: 4
|
|
cpu: host
|
|
ide2: none,media=cdrom
|
|
memory: 32000
|
|
meta: creation-qemu=10.1.2,ctime=1770665145
|
|
name: pfv-k8s-wnode-tsys7
|
|
net0: virtio=BC:24:11:5E:DC:44,bridge=vmbr0,firewall=1
|
|
net1: virtio=BC:24:11:A9:C0:EB,bridge=datanet,firewall=1
|
|
numa: 0
|
|
onboot: 1
|
|
ostype: l26
|
|
scsihw: virtio-scsi-single
|
|
smbios1: uuid=a1df4557-56ad-49b1-864e-8a7a984f8f4d
|
|
sockets: 1
|
|
virtio0: D5:701/vm-701-disk-0.qcow2,format=qcow2,iothread=1,size=32G
|
|
vmgenid: f85a65bb-a3f5-4bea-abf6-e0221f765e1f
|
|
|
|
--- VM 702 ---
|
|
agent: 1
|
|
balloon: 0
|
|
boot: order=scsi0;net0
|
|
cores: 2
|
|
cpu: host
|
|
memory: 8000
|
|
meta: creation-qemu=10.1.2,ctime=1776451550
|
|
name: hfnoc-uisp
|
|
net0: virtio=BC:24:11:A3:87:61,bridge=vmbr0,firewall=1
|
|
numa: 0
|
|
onboot: 1
|
|
ostype: l26
|
|
scsi0: D2:702/vm-702-disk-0.qcow2,format=qcow2,iothread=1,size=100G
|
|
scsihw: virtio-scsi-single
|
|
smbios1: uuid=75622ed6-34db-40e4-8f77-fe104d9c1621
|
|
sockets: 2
|
|
vmgenid: 53bafc14-2a86-4d73-a590-c135b3e5f9d7
|
|
|
|
--- VM 703 ---
|
|
agent: 1
|
|
balloon: 0
|
|
boot: order=scsi0;net0
|
|
cores: 2
|
|
cpu: host
|
|
memory: 2048
|
|
meta: creation-qemu=10.1.2,ctime=1771904766
|
|
name: rr-middleware
|
|
net0: virtio=BC:24:11:1E:61:CF,bridge=vmbr0,firewall=1
|
|
numa: 0
|
|
onboot: 1
|
|
ostype: l26
|
|
scsi0: D2:703/vm-703-disk-0.qcow2,cache=writethrough,format=qcow2,iothread=1,size=32G
|
|
scsihw: virtio-scsi-single
|
|
smbios1: uuid=5c8bd9e7-d9ba-4991-8493-1853e3d3c7ac
|
|
sockets: 1
|
|
vmgenid: dea273a7-8de9-4fcd-983b-6550cbe5b098
|
|
|
|
--- VM 704 ---
|
|
balloon: 0
|
|
boot: order=virtio0;ide2;net0
|
|
cores: 4
|
|
cpu: host
|
|
ide2: none,media=cdrom
|
|
memory: 6000
|
|
meta: creation-qemu=10.1.2,ctime=1770665145
|
|
name: TCTC
|
|
net0: virtio=BC:24:11:2E:5A:D6,bridge=vmbr0,firewall=1
|
|
net1: virtio=BC:24:11:CF:CF:3A,bridge=datanet,firewall=1
|
|
numa: 0
|
|
onboot: 1
|
|
ostype: l26
|
|
scsihw: virtio-scsi-single
|
|
smbios1: uuid=1019a054-8704-4cd0-b57e-ff83d1a2887e
|
|
sockets: 1
|
|
virtio0: D2:704/vm-704-disk-0.qcow2,format=qcow2,iothread=1,size=32G
|
|
vmgenid: 7cbefe0f-f42f-416b-b6e2-325adf6ca829
|
|
|
|
|
|
--- 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 701 runtime ---
|
|
--- VM 702 runtime ---
|
|
--- VM 703 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:1e:61:cf",
|
|
"ip-addresses" : [
|
|
{
|
|
"ip-address" : "192.168.1.226",
|
|
"ip-address-type" : "ipv4",
|
|
"prefix" : 22
|
|
},
|
|
{
|
|
"ip-address" : "2600:1700:1d1:eb00::47",
|
|
"ip-address-type" : "ipv6",
|
|
"prefix" : 128
|
|
},
|
|
--- VM 704 runtime ---
|
|
|
|
--- /etc/pve/qemu-server
|
|
lrwxr-xr-x 1 root www-data 27 Dec 31 1969 /etc/pve/qemu-server -> nodes/pfv-tsys7/qemu-server
|
|
|
|
--- /etc/pve/firewall
|
|
total 0
|
|
drwxr-xr-x 2 root www-data 0 Apr 4 17:02 .
|
|
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
|
|
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
|
|
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
|
|
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
|
|
xfs_scrub_all.timer enabled enabled
|
|
|
|
83 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:09:45 CDT; 17min ago
|
|
Invocation: 61c33f0aaea943918db7fe999e82db04
|
|
Main PID: 23840 (pmxcfs)
|
|
Tasks: 6 (limit: 231923)
|
|
Memory: 56.7M (peak: 66.6M)
|
|
CPU: 1.050s
|
|
CGroup: /system.slice/pve-cluster.service
|
|
└─23840 /usr/bin/pmxcfs
|
|
|
|
Jul 26 16:09:44 pfv-tsys7 systemd[1]: Starting pve-cluster.service - The Proxmox VE cluster filesystem...
|
|
Jul 26 16:09:44 pfv-tsys7 pmxcfs[23838]: [main] notice: resolved node name 'pfv-tsys7' to '192.168.0.250' for default node IP address
|
|
Jul 26 16:09:44 pfv-tsys7 pmxcfs[23838]: [main] notice: resolved node name 'pfv-tsys7' to '192.168.0.250' for default node IP address
|
|
Jul 26 16:09:45 pfv-tsys7 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 15:55:50 CDT; 31min ago
|
|
Invocation: 7a8926b334584d0bbb012c77f3c85522
|
|
Process: 24509 ExecReload=/usr/bin/pvedaemon restart (code=exited, status=0/SUCCESS)
|
|
Main PID: 1544 (pvedaemon)
|
|
Tasks: 4 (limit: 231923)
|
|
Memory: 187.1M (peak: 363.3M)
|
|
CPU: 6.618s
|
|
CGroup: /system.slice/pvedaemon.service
|
|
├─ 1544 pvedaemon
|
|
├─24533 "pvedaemon worker"
|
|
├─24534 "pvedaemon worker"
|
|
└─24535 "pvedaemon worker"
|
|
|
|
Jul 26 16:10:10 pfv-tsys7 pvedaemon[1546]: worker exit
|
|
Jul 26 16:10:10 pfv-tsys7 pvedaemon[1547]: worker exit
|
|
Jul 26 16:10:10 pfv-tsys7 pvedaemon[1545]: worker exit
|
|
Jul 26 16:10:10 pfv-tsys7 pvedaemon[1544]: worker 1546 finished
|
|
Jul 26 16:10:10 pfv-tsys7 pvedaemon[1544]: worker 1545 finished
|
|
Jul 26 16:10:10 pfv-tsys7 pvedaemon[1544]: worker 1547 finished
|
|
Jul 26 16:19:24 pfv-tsys7 pvedaemon[24533]: <root@pam> successful auth for user 'root@pam'
|
|
Jul 26 16:19:26 pfv-tsys7 pvedaemon[33170]: starting vnc proxy UPID:pfv-tsys7:00008192:00024048:6A6679DE:vncproxy:701:root@pam:
|
|
Jul 26 16:19:26 pfv-tsys7 pvedaemon[24535]: <root@pam> starting task UPID:pfv-tsys7:00008192:00024048:6A6679DE:vncproxy:701:root@pam:
|
|
Jul 26 16:19:29 pfv-tsys7 pvedaemon[24535]: <root@pam> end task UPID:pfv-tsys7:00008192:00024048:6A6679DE:vncproxy:701:root@pam: OK
|
|
|
|
● 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 15:55:53 CDT; 31min ago
|
|
Invocation: f27a818a2aab4de0a5143575d0a25637
|
|
Process: 24519 ExecReload=/usr/bin/pveproxy restart (code=exited, status=0/SUCCESS)
|
|
Main PID: 1647 (pveproxy)
|
|
Tasks: 4 (limit: 231923)
|
|
Memory: 210.9M (peak: 371M)
|
|
CPU: 6.505s
|
|
CGroup: /system.slice/pveproxy.service
|
|
├─ 1647 pveproxy
|
|
├─24547 "pveproxy worker"
|
|
├─24548 "pveproxy worker"
|
|
└─24549 "pveproxy worker"
|
|
|
|
Jul 26 16:10:06 pfv-tsys7 pveproxy[1647]: starting 3 worker(s)
|
|
Jul 26 16:10:06 pfv-tsys7 pveproxy[1647]: worker 24547 started
|
|
Jul 26 16:10:06 pfv-tsys7 pveproxy[1647]: worker 24548 started
|
|
Jul 26 16:10:06 pfv-tsys7 pveproxy[1647]: worker 24549 started
|
|
Jul 26 16:10:11 pfv-tsys7 pveproxy[1650]: worker exit
|
|
Jul 26 16:10:11 pfv-tsys7 pveproxy[1648]: worker exit
|
|
Jul 26 16:10:11 pfv-tsys7 pveproxy[1649]: worker exit
|
|
Jul 26 16:10:11 pfv-tsys7 pveproxy[1647]: worker 1650 finished
|
|
Jul 26 16:10:11 pfv-tsys7 pveproxy[1647]: worker 1648 finished
|
|
Jul 26 16:10:11 pfv-tsys7 pveproxy[1647]: worker 1649 finished
|
|
|
|
● 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 15:55:48 CDT; 31min ago
|
|
Invocation: 4f4ed9219b154a149c88b3d967cd6d1a
|
|
Main PID: 1517 (pve-firewall)
|
|
Tasks: 1 (limit: 231923)
|
|
Memory: 111.9M (peak: 215.1M)
|
|
CPU: 18.897s
|
|
CGroup: /system.slice/pve-firewall.service
|
|
└─1517 pve-firewall
|
|
|
|
Jul 26 15:55:42 pfv-tsys7 systemd[1]: Starting pve-firewall.service - Proxmox VE firewall...
|
|
Jul 26 15:55:48 pfv-tsys7 pve-firewall[1517]: starting server
|
|
Jul 26 15:55:48 pfv-tsys7 systemd[1]: Started pve-firewall.service - Proxmox VE firewall.
|
|
Jul 26 16:09:47 pfv-tsys7 systemd[1]: Reloading pve-firewall.service - Proxmox VE firewall...
|
|
Jul 26 16:09:48 pfv-tsys7 pve-firewall[24018]: send HUP to 1517
|
|
Jul 26 16:09:48 pfv-tsys7 pve-firewall[1517]: received signal HUP
|
|
Jul 26 16:09:48 pfv-tsys7 pve-firewall[1517]: server shutdown (restart)
|
|
Jul 26 16:09:48 pfv-tsys7 systemd[1]: Reloaded pve-firewall.service - Proxmox VE firewall.
|
|
Jul 26 16:09:49 pfv-tsys7 pve-firewall[1517]: restarting server
|
|
|
|
● 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:09:59 CDT; 17min ago
|
|
Invocation: ca1f3c385bec43cabc96c111acf3ef6d
|
|
Main PID: 24399 (pve-ha-crm)
|
|
Tasks: 1 (limit: 231923)
|
|
Memory: 118.5M (peak: 138.3M)
|
|
CPU: 1.396s
|
|
CGroup: /system.slice/pve-ha-crm.service
|
|
└─24399 pve-ha-crm
|
|
|
|
Jul 26 16:09:58 pfv-tsys7 systemd[1]: Starting pve-ha-crm.service - PVE Cluster HA Resource Manager Daemon...
|
|
Jul 26 16:09:59 pfv-tsys7 pve-ha-crm[24399]: starting server
|
|
Jul 26 16:09:59 pfv-tsys7 pve-ha-crm[24399]: status change startup => wait_for_quorum
|
|
Jul 26 16:09:59 pfv-tsys7 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:09:55 CDT; 17min ago
|
|
Invocation: ec80049700644307b54066f83c78a9cb
|
|
Main PID: 24317 (pve-ha-lrm)
|
|
Tasks: 1 (limit: 231923)
|
|
Memory: 117.5M (peak: 136.8M)
|
|
CPU: 1.350s
|
|
CGroup: /system.slice/pve-ha-lrm.service
|
|
└─24317 pve-ha-lrm
|
|
|
|
Jul 26 16:09:54 pfv-tsys7 systemd[1]: Starting pve-ha-lrm.service - PVE Local HA Resource Manager Daemon...
|
|
Jul 26 16:09:55 pfv-tsys7 pve-ha-lrm[24317]: starting server
|
|
Jul 26 16:09:55 pfv-tsys7 pve-ha-lrm[24317]: status change startup => wait_for_agent_lock
|
|
Jul 26 16:09:55 pfv-tsys7 systemd[1]: Started pve-ha-lrm.service - PVE Local HA Resource Manager Daemon.
|
|
|
|
--- 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 15:55:22 CDT; 32min ago
|
|
Invocation: 828d700ffd7049a48c620662da4782fd
|
|
TriggeredBy: ● rpcbind.socket
|
|
Docs: man:rpcbind(8)
|
|
Main PID: 963 (rpcbind)
|
|
Tasks: 1 (limit: 231923)
|
|
Memory: 628K (peak: 1.7M)
|
|
CPU: 12ms
|
|
CGroup: /system.slice/rpcbind.service
|
|
└─963 /usr/sbin/rpcbind -f -w
|
|
|
|
Jul 26 15:55:21 pfv-tsys7 systemd[1]: Starting rpcbind.service - RPC bind portmap service...
|
|
Jul 26 15:55:22 pfv-tsys7 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 15:55:14 CDT; 32min ago
|
|
Invocation: d742ff3beba24bc4a103aff39a617b6a
|
|
Docs: man:zfs(8)
|
|
Main PID: 803 (code=exited, status=0/SUCCESS)
|
|
Mem peak: 1.7M
|
|
CPU: 12ms
|
|
|
|
Jul 26 15:55:14 pfv-tsys7 systemd[1]: Starting zfs-mount.service - Mount ZFS filesystems...
|
|
Jul 26 15:55:14 pfv-tsys7 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:08:40 CDT; 18min ago
|
|
Invocation: f92033f042924f05b70b7708db246f7f
|
|
Docs: man:smartd(8)
|
|
man:smartd.conf(5)
|
|
Main PID: 9867 (smartd)
|
|
Status: "Next check of 1 device will start at 16:38:40"
|
|
Tasks: 1 (limit: 231923)
|
|
Memory: 1.4M (peak: 2M)
|
|
CPU: 39ms
|
|
CGroup: /system.slice/smartmontools.service
|
|
└─9867 /usr/sbin/smartd -n -q never
|
|
|
|
Jul 26 16:08:39 pfv-tsys7 smartd[9867]: Configuration file /etc/smartd.conf was parsed, found DEVICESCAN, scanning devices
|
|
Jul 26 16:08:39 pfv-tsys7 smartd[9867]: Device: /dev/sdb [SAT], opened
|
|
Jul 26 16:08:39 pfv-tsys7 smartd[9867]: Device: /dev/sdb [SAT], WDC WD20SDRW-11VUUS0, S/N:WD-WXS2AB22T8HD, WWN:5-0014ee-215a17c95, FW:01.01A01, 2.00 TB
|
|
Jul 26 16:08:39 pfv-tsys7 smartd[9867]: Device: /dev/sdb [SAT], not found in smartd database 7.5/5706.
|
|
Jul 26 16:08:40 pfv-tsys7 smartd[9867]: Device: /dev/sdb [SAT], is SMART capable. Adding to "monitor" list.
|
|
Jul 26 16:08:40 pfv-tsys7 smartd[9867]: Device: /dev/sdb [SAT], state read from /var/lib/smartmontools/smartd.WDC_WD20SDRW_11VUUS0-WD_WXS2AB22T8HD.ata.state
|
|
Jul 26 16:08:40 pfv-tsys7 smartd[9867]: Monitoring 1 ATA/SATA, 0 SCSI/SAS and 0 NVMe devices
|
|
Jul 26 16:08:40 pfv-tsys7 smartd[9867]: Device: /dev/sdb [SAT], SMART Usage Attribute: 194 Temperature_Celsius changed from 113 to 111
|
|
Jul 26 16:08:40 pfv-tsys7 smartd[9867]: Device: /dev/sdb [SAT], state written to /var/lib/smartmontools/smartd.WDC_WD20SDRW_11VUUS0-WD_WXS2AB22T8HD.ata.state
|
|
Jul 26 16:08:40 pfv-tsys7 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
|
|
Mon 2026-07-27 00:00:00 CDT 7h Sun 2026-07-26 00:00:24 CDT - dpkg-db-backup.timer dpkg-db-backup.service
|
|
Mon 2026-07-27 00:19:13 CDT 7h Mon 2026-07-20 00:18:54 CDT - fstrim.timer fstrim.service
|
|
Mon 2026-07-27 00:49:33 CDT 8h Sun 2026-07-26 00:09:24 CDT - logrotate.timer logrotate.service
|
|
Mon 2026-07-27 02:19:40 CDT 9h Sun 2026-07-26 02:47:24 CDT - beszel-agent-update.timer beszel-agent-update.service
|
|
Mon 2026-07-27 02:35:10 CDT 10h Sun 2026-07-26 11:27:46 CDT - apt-daily.timer apt-daily.service
|
|
Mon 2026-07-27 02:36:44 CDT 10h Sun 2026-07-26 04:25:24 CDT - pve-daily-update.timer pve-daily-update.service
|
|
Mon 2026-07-27 02:57:05 CDT 10h Sun 2026-07-26 01:30:24 CDT - man-db.timer man-db.service
|
|
Mon 2026-07-27 06:12:44 CDT 13h Sun 2026-07-26 06:30:24 CDT - apt-daily-upgrade.timer apt-daily-upgrade.service
|
|
Mon 2026-07-27 16:09:51 CDT 23h Sun 2026-07-26 16:09:51 CDT 17min ago systemd-tmpfiles-clean.timer systemd-tmpfiles-clean.service
|
|
Sun 2026-08-02 03:10:07 CDT 6 days Sun 2026-07-26 03:10:24 CDT - xfs_scrub_all.timer xfs_scrub_all.service
|
|
Sun 2026-08-02 03:10:20 CDT 6 days Sun 2026-07-26 03:11:13 CDT - e2scrub_all.timer e2scrub_all.service
|
|
|
|
11 timers listed.
|
|
|
|
--- /etc/cron.d
|
|
total 20
|
|
drwxr-xr-x 2 root root 4096 Jul 26 16:09 .
|
|
drwxr-xr-x 105 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
|
|
lrwxrwxrwx 1 root root 20 Apr 4 17:02 vzdump -> /etc/pve/vzdump.cron
|
|
-rw-r--r-- 1 root root 377 Aug 26 2025 zfsutils-linux
|
|
|
|
--- /etc/cron.daily
|
|
total 28
|
|
drwxr-xr-x 2 root root 4096 Jul 26 11:27 .
|
|
drwxr-xr-x 105 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
|
|
|
|
--- /etc/cron.hourly
|
|
total 12
|
|
drwxr-xr-x 2 root root 4096 Apr 4 16:52 .
|
|
drwxr-xr-x 105 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 16:52 .
|
|
drwxr-xr-x 105 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.68 0.98 0.94 1/537 39232
|
|
|
|
--- 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 2 0 188936536 17660 383484 0 0 657 2471 7891 4 1 1 96 2 0 1
|
|
1 1 0 188889676 17660 412704 0 0 29196 0 4170 6319 1 0 93 3 0 3
|
|
1 1 0 188878916 17660 434660 0 0 21956 0 3773 5992 1 0 94 3 0 2
|
|
|
|
--- mpstat 1 3 (per-cpu)
|
|
$ mpstat 1 3
|
|
/root/check.sh: line 45: mpstat: command not found
|
|
[exit=127 / not installed or not permitted]
|
|
|
|
--- iostat -xz 1 3
|
|
$ iostat -xz 1 3
|
|
/root/check.sh: line 45: iostat: command not found
|
|
[exit=127 / not installed or not permitted]
|
|
|
|
--- sar -dp 1 2
|
|
$ sar -dp 1 2
|
|
/root/check.sh: line 45: sar: command not found
|
|
[exit=127 / not installed or not permitted]
|
|
|
|
--- sar -n DEV 1 2
|
|
$ sar -n DEV 1 2
|
|
/root/check.sh: line 45: sar: command not found
|
|
[exit=127 / not installed or not permitted]
|
|
|
|
--- sar -n NFS,NFSD 1 2
|
|
$ sar -n NFS,NFSD 1 2
|
|
/root/check.sh: line 45: sar: command not found
|
|
[exit=127 / not installed or not permitted]
|
|
|
|
--- sar -n SOCK 1 1
|
|
$ sar -n SOCK 1 1
|
|
/root/check.sh: line 45: sar: command not found
|
|
[exit=127 / not installed or not permitted]
|
|
|
|
--- sar -n TCP,ETCP 1 2
|
|
$ sar -n TCP,ETCP 1 2
|
|
/root/check.sh: line 45: sar: command not found
|
|
[exit=127 / not installed or not permitted]
|
|
|
|
--- pidstat -d 1 2 (top disk)
|
|
$ pidstat -d 1 2
|
|
/root/check.sh: line 45: pidstat: command not found
|
|
[exit=127 / not installed or not permitted]
|
|
|
|
--- pidstat -u 1 2 (top cpu)
|
|
$ pidstat -u 1 2
|
|
/root/check.sh: line 45: pidstat: command not found
|
|
[exit=127 / not installed or not permitted]
|
|
|
|
--- top (single snapshot, top 30)
|
|
$ top -b -n 1
|
|
top - 16:27:28 up 32 min, 2 users, load average: 2.03, 1.06, 0.97
|
|
Tasks: 425 total, 2 running, 423 sleeping, 0 stopped, 0 zombie
|
|
%Cpu(s): 0.3 us, 0.3 sy, 0.0 ni, 93.2 id, 6.1 wa, 0.0 hi, 0.0 si, 0.0 st
|
|
MiB Mem : 193363.6 total, 184456.9 free, 9568.6 used, 449.4 buff/cache
|
|
MiB Swap: 8192.0 total, 8192.0 free, 0.0 used. 183794.9 avail Mem
|
|
|
|
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
|
|
39195 root 20 0 81172 64176 10872 D 25.0 0.0 0:00.76 apt-get
|
|
39249 root 20 0 10428 5496 3388 R 8.3 0.0 0:00.02 top
|
|
1 root 20 0 25260 15916 10736 S 0.0 0.0 0:12.85 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+
|
|
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.06 ksoftir+
|
|
15 root 20 0 0 0 0 I 0.0 0.0 0:01.61 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:01.21 migrati+
|
|
24 root 20 0 0 0 0 S 0.0 0.0 0:00.01 ksoftir+
|
|
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:01.21 migrati+
|
|
30 root 20 0 0 0 0 S 0.0 0.0 0:00.01 ksoftir+
|
|
31 root 20 0 0 0 0 I 0.0 0.0 0:00.13 kworker+
|
|
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:01.21 migrati+
|
|
36 root 20 0 0 0 0 S 0.0 0.0 0:00.01 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:01.22 migrati+
|
|
42 root 20 0 0 0 0 S 0.0 0.0 0:00.02 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:01.22 migrati+
|
|
48 root 20 0 0 0 0 S 0.0 0.0 0:00.00 ksoftir+
|
|
49 root 20 0 0 0 0 I 0.0 0.0 0:00.03 kworker+
|
|
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:01.22 migrati+
|
|
54 root 20 0 0 0 0 S 0.0 0.0 0:00.00 ksoftir+
|
|
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:01.22 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:01.22 migrati+
|
|
66 root 20 0 0 0 0 S 0.0 0.0 0:00.06 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:01.22 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:01.22 migrati+
|
|
78 root 20 0 0 0 0 S 0.0 0.0 0:00.01 ksoftir+
|
|
79 root 20 0 0 0 0 I 0.0 0.0 0:00.15 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:01.22 migrati+
|
|
84 root 20 0 0 0 0 S 0.0 0.0 0:00.00 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:01.23 migrati+
|
|
90 root 20 0 0 0 0 S 0.0 0.0 0:00.01 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:01.23 migrati+
|
|
96 root 20 0 0 0 0 S 0.0 0.0 0:00.00 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:01.23 migrati+
|
|
102 root 20 0 0 0 0 S 0.0 0.0 0:00.02 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:01.23 migrati+
|
|
108 root 20 0 0 0 0 S 0.0 0.0 0:00.01 ksoftir+
|
|
110 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
111 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/16
|
|
112 root -51 0 0 0 0 S 0.0 0.0 0:00.00 idle_in+
|
|
113 root rt 0 0 0 0 S 0.0 0.0 0:01.23 migrati+
|
|
114 root 20 0 0 0 0 S 0.0 0.0 0:00.03 ksoftir+
|
|
116 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
117 root 20 0 0 0 0 S 0.0 0.0 0:00.00 rcu_exp+
|
|
118 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/17
|
|
119 root -51 0 0 0 0 S 0.0 0.0 0:00.00 idle_in+
|
|
120 root rt 0 0 0 0 S 0.0 0.0 0:01.23 migrati+
|
|
121 root 20 0 0 0 0 S 0.0 0.0 0:00.00 ksoftir+
|
|
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.00 cpuhp/18
|
|
125 root -51 0 0 0 0 S 0.0 0.0 0:00.00 idle_in+
|
|
126 root rt 0 0 0 0 S 0.0 0.0 0:01.23 migrati+
|
|
127 root 20 0 0 0 0 S 0.0 0.0 0:00.01 ksoftir+
|
|
129 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
130 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/19
|
|
131 root -51 0 0 0 0 S 0.0 0.0 0:00.00 idle_in+
|
|
132 root rt 0 0 0 0 S 0.0 0.0 0:01.23 migrati+
|
|
133 root 20 0 0 0 0 S 0.0 0.0 0:00.00 ksoftir+
|
|
135 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
136 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/20
|
|
137 root -51 0 0 0 0 S 0.0 0.0 0:00.00 idle_in+
|
|
138 root rt 0 0 0 0 S 0.0 0.0 0:01.24 migrati+
|
|
139 root 20 0 0 0 0 S 0.0 0.0 0:00.00 ksoftir+
|
|
141 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
142 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/21
|
|
143 root -51 0 0 0 0 S 0.0 0.0 0:00.00 idle_in+
|
|
144 root rt 0 0 0 0 S 0.0 0.0 0:01.24 migrati+
|
|
145 root 20 0 0 0 0 S 0.0 0.0 0:00.00 ksoftir+
|
|
147 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
148 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/22
|
|
149 root -51 0 0 0 0 S 0.0 0.0 0:00.00 idle_in+
|
|
150 root rt 0 0 0 0 S 0.0 0.0 0:01.24 migrati+
|
|
151 root 20 0 0 0 0 S 0.0 0.0 0:00.00 ksoftir+
|
|
153 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
154 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/23
|
|
155 root -51 0 0 0 0 S 0.0 0.0 0:00.00 idle_in+
|
|
156 root rt 0 0 0 0 S 0.0 0.0 0:01.24 migrati+
|
|
157 root 20 0 0 0 0 S 0.0 0.0 0:00.00 ksoftir+
|
|
159 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
160 root 20 0 0 0 0 I 0.0 0.0 0:01.20 kworker+
|
|
161 root 20 0 0 0 0 I 0.0 0.0 0:00.12 kworker+
|
|
162 root 20 0 0 0 0 S 0.0 0.0 0:00.00 kdevtmp+
|
|
163 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
164 root 20 0 0 0 0 I 0.0 0.0 0:00.00 rcu_tas+
|
|
165 root 20 0 0 0 0 I 0.0 0.0 0:00.00 rcu_tas+
|
|
166 root 20 0 0 0 0 I 0.0 0.0 0:00.00 rcu_tas+
|
|
167 root 20 0 0 0 0 S 0.0 0.0 0:00.00 kauditd
|
|
168 root 20 0 0 0 0 S 0.0 0.0 0:00.00 khungta+
|
|
169 root 20 0 0 0 0 I 0.0 0.0 0:01.42 kworker+
|
|
170 root 20 0 0 0 0 S 0.0 0.0 0:00.00 oom_rea+
|
|
172 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
173 root 20 0 0 0 0 S 0.0 0.0 0:00.05 kcompac+
|
|
174 root 20 0 0 0 0 S 0.0 0.0 0:00.05 kcompac+
|
|
175 root 20 0 0 0 0 I 0.0 0.0 0:00.14 kworker+
|
|
176 root 25 5 0 0 0 S 0.0 0.0 0:00.00 ksmd
|
|
177 root 39 19 0 0 0 S 0.0 0.0 0:00.01 khugepa+
|
|
178 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
179 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 -51 0 0 0 0 S 0.0 0.0 0:00.00 irq/9-a+
|
|
183 root 20 0 0 0 0 I 0.0 0.0 0:00.14 kworker+
|
|
184 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
185 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
186 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
187 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
188 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
189 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
190 root 20 0 0 0 0 I 0.0 0.0 0:00.18 kworker+
|
|
191 root -51 0 0 0 0 S 0.0 0.0 0:00.00 watchdo+
|
|
192 root 0 -20 0 0 0 I 0.0 0.0 0:00.03 kworker+
|
|
194 root 20 0 0 0 0 I 0.0 0.0 0:00.15 kworker+
|
|
196 root 20 0 0 0 0 S 0.0 0.0 0:00.00 kswapd0
|
|
197 root 20 0 0 0 0 S 0.0 0.0 0:00.00 kswapd1
|
|
198 root 20 0 0 0 0 S 0.0 0.0 0:00.00 ecryptf+
|
|
199 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
200 root -51 0 0 0 0 S 0.0 0.0 0:00.00 irq/27-+
|
|
201 root -51 0 0 0 0 S 0.0 0.0 0:00.00 irq/28-+
|
|
202 root -51 0 0 0 0 S 0.0 0.0 0:00.00 irq/29-+
|
|
203 root -51 0 0 0 0 S 0.0 0.0 0:00.00 irq/30-+
|
|
204 root -51 0 0 0 0 S 0.0 0.0 0:00.00 irq/31-+
|
|
205 root -51 0 0 0 0 S 0.0 0.0 0:00.00 irq/32-+
|
|
206 root -51 0 0 0 0 S 0.0 0.0 0:00.00 irq/33-+
|
|
207 root -51 0 0 0 0 S 0.0 0.0 0:00.00 irq/34-+
|
|
208 root -51 0 0 0 0 S 0.0 0.0 0:00.00 irq/36-+
|
|
209 root -51 0 0 0 0 S 0.0 0.0 0:00.00 irq/37-+
|
|
210 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
212 root 20 0 0 0 0 I 0.0 0.0 0:00.07 kworker+
|
|
213 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
214 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
216 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
217 root 0 -20 0 0 0 I 0.0 0.0 0:00.04 kworker+
|
|
218 root 20 0 0 0 0 I 0.0 0.0 0:00.15 kworker+
|
|
220 root 20 0 0 0 0 I 0.0 0.0 0:00.08 kworker+
|
|
222 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
227 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
228 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
229 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
235 root 20 0 0 0 0 I 0.0 0.0 0:00.12 kworker+
|
|
245 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
246 root 0 -20 0 0 0 I 0.0 0.0 0:00.17 kworker+
|
|
247 root 20 0 0 0 0 I 0.0 0.0 0:00.08 kworker+
|
|
275 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
279 root 0 -20 0 0 0 I 0.0 0.0 0:00.06 kworker+
|
|
280 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
292 root 0 -20 0 0 0 I 0.0 0.0 0:00.01 kworker+
|
|
310 root 0 -20 0 0 0 I 0.0 0.0 0:00.03 kworker+
|
|
311 root 0 -20 0 0 0 I 0.0 0.0 0:00.02 kworker+
|
|
312 root 0 -20 0 0 0 I 0.0 0.0 0:00.03 kworker+
|
|
313 root 0 -20 0 0 0 I 0.0 0.0 0:00.01 kworker+
|
|
314 root 0 -20 0 0 0 I 0.0 0.0 0:00.19 kworker+
|
|
315 root 0 -20 0 0 0 I 0.0 0.0 0:00.02 kworker+
|
|
316 root 0 -20 0 0 0 I 0.0 0.0 0:00.01 kworker+
|
|
317 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
318 root 0 -20 0 0 0 I 0.0 0.0 0:00.01 kworker+
|
|
319 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
320 root 0 -20 0 0 0 I 0.0 0.0 0:00.03 kworker+
|
|
322 root 0 -20 0 0 0 I 0.0 0.0 0:00.01 kworker+
|
|
326 root 20 0 0 0 0 S 0.0 0.0 0:00.00 ptp0
|
|
335 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
336 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
337 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
338 root 0 -20 0 0 0 I 0.0 0.0 0:00.01 kworker+
|
|
339 root 20 0 0 0 0 S 0.0 0.0 0:00.00 ptp1
|
|
340 root 20 0 0 0 0 S 0.0 0.0 0:00.00 scsi_eh+
|
|
341 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
342 root 20 0 0 0 0 S 0.0 0.0 0:00.00 scsi_eh+
|
|
343 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
344 root 20 0 0 0 0 S 0.0 0.0 0:00.00 scsi_eh+
|
|
345 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
346 root 20 0 0 0 0 S 0.0 0.0 0:00.00 scsi_eh+
|
|
347 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
348 root 20 0 0 0 0 S 0.0 0.0 0:00.00 scsi_eh+
|
|
349 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
350 root 20 0 0 0 0 S 0.0 0.0 0:00.00 scsi_eh+
|
|
351 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
352 root 20 0 0 0 0 I 0.0 0.0 0:00.84 kworker+
|
|
353 root 20 0 0 0 0 I 0.0 0.0 0:00.67 kworker+
|
|
354 root 20 0 0 0 0 I 0.0 0.0 0:00.69 kworker+
|
|
355 root 20 0 0 0 0 I 0.0 0.0 0:00.75 kworker+
|
|
356 root 20 0 0 0 0 S 0.0 0.0 0:00.00 ptp2
|
|
357 root 20 0 0 0 0 S 0.0 0.0 0:00.00 ptp3
|
|
360 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
361 root 20 0 0 0 0 I 0.0 0.0 0:00.13 kworker+
|
|
363 root 20 0 0 0 0 I 0.0 0.0 0:00.04 kworker+
|
|
364 root 20 0 0 0 0 I 0.0 0.0 0:00.08 kworker+
|
|
369 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
375 root 0 -20 0 0 0 I 0.0 0.0 0:00.01 kworker+
|
|
377 root 20 0 0 0 0 S 0.0 0.0 0:00.00 scsi_eh+
|
|
378 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
379 root 20 0 0 0 0 S 0.0 0.0 0:00.00 usb-sto+
|
|
380 root 20 0 0 0 0 I 0.0 0.0 0:00.14 kworker+
|
|
381 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
395 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
396 root 20 0 0 0 0 S 0.0 0.0 0:00.00 scsi_eh+
|
|
397 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
398 root 20 0 0 0 0 R 0.0 0.0 0:02.23 usb-sto+
|
|
432 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
433 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
442 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
444 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
445 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
473 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
474 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
475 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
490 root 20 0 0 0 0 S 0.0 0.0 0:00.28 jbd2/dm+
|
|
491 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
521 root 20 0 0 0 0 I 0.0 0.0 0:00.08 kworker+
|
|
539 root 20 0 59540 36060 34456 S 0.0 0.0 0:00.95 systemd+
|
|
551 root 20 0 0 0 0 I 0.0 0.0 0:00.06 kworker+
|
|
581 root 20 0 0 0 0 I 0.0 0.0 0:00.02 kworker+
|
|
585 root 20 0 37336 10896 7872 S 0.0 0.0 0:00.62 systemd+
|
|
588 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 spl_sys+
|
|
589 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 spl_del+
|
|
590 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 spl_dyn+
|
|
591 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 spl_kme+
|
|
592 root 20 0 77296 22300 9124 S 0.0 0.0 0:00.11 dmeventd
|
|
595 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 zvol_tq+
|
|
596 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 zvol_tq+
|
|
597 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 zvol_tq+
|
|
598 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 zvol_tq+
|
|
599 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 zvol_tq+
|
|
600 root 20 0 0 0 0 S 0.0 0.0 0:00.00 arc_pru+
|
|
601 root 20 0 0 0 0 S 0.0 0.0 0:00.00 arc_evi+
|
|
602 root 20 0 0 0 0 S 0.0 0.0 0:00.00 arc_evi+
|
|
603 root 20 0 0 0 0 S 0.0 0.0 0:00.00 arc_evi+
|
|
604 root 20 0 0 0 0 S 0.0 0.0 0:00.00 arc_evi+
|
|
605 root 20 0 0 0 0 S 0.0 0.0 0:00.00 arc_evi+
|
|
606 root 20 0 0 0 0 S 0.0 0.0 0:00.00 arc_evi+
|
|
607 root 20 0 0 0 0 S 0.0 0.0 0:00.00 arc_flu+
|
|
608 root 20 0 0 0 0 S 0.0 0.0 0:00.03 arc_evi+
|
|
609 root 39 19 0 0 0 S 0.0 0.0 0:00.02 arc_reap
|
|
610 root 20 0 0 0 0 S 0.0 0.0 0:00.00 dbu_evi+
|
|
611 root 39 19 0 0 0 S 0.0 0.0 0:00.02 dbuf_ev+
|
|
612 root 39 19 0 0 0 S 0.0 0.0 0:00.00 z_vdev_+
|
|
613 root 20 0 0 0 0 S 0.0 0.0 0:00.03 l2arc_f+
|
|
619 root -2 0 0 0 0 S 0.0 0.0 0:00.00 psimon
|
|
704 root 20 0 0 0 0 I 0.0 0.0 0:00.15 kworker+
|
|
727 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
748 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
860 root 20 0 0 0 0 I 0.0 0.0 0:00.22 kworker+
|
|
963 _rpc 20 0 6568 3784 3356 S 0.0 0.0 0:00.00 rpcbind
|
|
965 message+ 20 0 8736 5360 4308 S 0.0 0.0 0:01.65 dbus-da+
|
|
973 root 20 0 276136 3656 3364 S 0.0 0.0 0:00.00 pve-lxc+
|
|
976 root 20 0 404848 7872 6868 S 0.0 0.0 0:00.27 rrdcach+
|
|
980 root 20 0 19108 9088 7756 S 0.0 0.0 0:00.83 systemd+
|
|
988 root 20 0 1423540 108904 26532 S 0.0 0.1 0:15.47 tailsca+
|
|
989 root 20 0 7216 2296 1948 S 0.0 0.0 0:00.04 ksmtuned
|
|
991 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
992 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
997 root 20 0 2432 1536 1436 S 0.0 0.0 0:00.07 watchdo+
|
|
1004 root 20 0 159064 2500 2136 S 0.0 0.0 0:00.00 lxcfs
|
|
1016 root 20 0 5256 1588 1368 S 0.0 0.0 0:00.00 blkmapd
|
|
1096 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
1196 root 20 0 5968 3512 2664 S 0.0 0.0 0:00.01 dhclient
|
|
1232 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
1299 beszel 20 0 2379056 18600 10376 S 0.0 0.0 0:00.63 beszel-+
|
|
1300 _lldpd 20 0 21376 6576 5408 S 0.0 0.0 0:00.02 lldpd
|
|
1301 root 20 0 5520 2552 2300 S 0.0 0.0 0:00.00 lxc-mon+
|
|
1309 root 20 0 266308 32436 15200 S 0.0 0.0 0:00.65 tuned
|
|
1317 root 20 0 8168 2760 2532 S 0.0 0.0 0:00.05 agetty
|
|
1324 root 20 0 11776 7788 6552 S 0.0 0.0 0:00.33 sshd
|
|
1347 _lldpd 20 0 21376 2848 1680 S 0.0 0.0 0:00.08 lldpd
|
|
1360 root 20 0 6864 2936 2684 S 0.0 0.0 0:00.00 cron
|
|
1495 root 20 0 43984 4744 4104 S 0.0 0.0 0:00.00 master
|
|
1496 postfix 20 0 44472 7692 7008 S 0.0 0.0 0:00.00 pickup
|
|
1497 postfix 20 0 44524 7716 7028 S 0.0 0.0 0:00.00 qmgr
|
|
1500 polkitd 20 0 306704 8152 7060 S 0.0 0.0 0:00.29 polkitd
|
|
1512 root 20 0 0 0 0 I 0.0 0.0 0:00.10 kworker+
|
|
1517 root 20 0 179212 134584 29116 S 0.0 0.1 0:06.88 pve-fir+
|
|
1532 root 20 0 184884 142296 32184 S 0.0 0.1 0:22.84 pvestatd
|
|
1544 root 20 0 230076 182876 32640 S 0.0 0.1 0:01.62 pvedaem+
|
|
1647 www-data 20 0 231248 183964 32464 S 0.0 0.1 0:01.66 pveproxy
|
|
1672 www-data 20 0 99264 69760 17700 S 0.0 0.0 0:00.57 spicepr+
|
|
1780 root 20 0 0 0 0 I 0.0 0.0 0:00.17 kworker+
|
|
1785 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
1854 root 20 0 209860 155600 32484 S 0.0 0.1 0:01.50 pvesche+
|
|
1898 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
3570 root 20 0 0 0 0 I 0.0 0.0 0:00.12 kworker+
|
|
3785 root 20 0 0 0 0 I 0.0 0.0 0:00.14 kworker+
|
|
3787 root 20 0 0 0 0 I 0.0 0.0 0:00.00 NFSv4 c+
|
|
4431 root 20 0 32.1g 1.2g 13424 S 0.0 0.6 0:40.50 kvm
|
|
4578 root 20 0 0 0 0 I 0.0 0.0 0:00.05 kworker+
|
|
4606 root 20 0 0 0 0 S 0.0 0.0 0:00.00 kvm-pit+
|
|
4711 root 20 0 9.8g 3.3g 11236 S 0.0 1.8 9:01.52 kvm
|
|
4756 root 20 0 0 0 0 I 0.0 0.0 0:00.06 kworker+
|
|
4772 root 20 0 0 0 0 S 0.0 0.0 0:00.00 kvm-pit+
|
|
4811 root 20 0 2821480 496664 11428 S 0.0 0.3 0:37.24 kvm
|
|
4930 root 20 0 0 0 0 S 0.0 0.0 0:00.00 kvm-pit+
|
|
5011 root 20 0 6987652 736032 11204 S 0.0 0.4 0:46.12 kvm
|
|
5180 root 20 0 0 0 0 S 0.0 0.0 0:00.00 kvm-pit+
|
|
5234 root 20 0 0 0 0 I 0.0 0.0 0:00.63 kworker+
|
|
5367 root 20 0 0 0 0 I 0.0 0.0 0:00.32 kworker+
|
|
5504 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
5506 root 20 0 0 0 0 I 0.0 0.0 0:00.03 kworker+
|
|
5558 root 20 0 0 0 0 I 0.0 0.0 0:00.86 kworker+
|
|
5844 root 20 0 0 0 0 I 0.0 0.0 0:00.18 kworker+
|
|
5951 root 20 0 0 0 0 I 0.0 0.0 0:00.03 kworker+
|
|
6832 root 20 0 0 0 0 I 0.0 0.0 0:00.03 kworker+
|
|
9456 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
9867 root 20 0 10076 6272 4828 S 0.0 0.0 0:00.03 smartd
|
|
9869 root 20 0 0 0 0 I 0.0 0.0 0:00.05 kworker+
|
|
9932 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
10237 _chrony 20 0 19940 5660 4896 S 0.0 0.0 0:00.05 chronyd
|
|
10248 _chrony 20 0 11612 2360 1732 S 0.0 0.0 0:00.00 chronyd
|
|
23495 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
23775 root 20 0 104420 6376 5228 S 0.0 0.0 0:00.00 zed
|
|
23840 root 20 0 473708 59148 45000 S 0.0 0.0 0:01.02 pmxcfs
|
|
23917 root 20 0 79620 2384 2176 S 0.0 0.0 0:00.13 pvefw-l+
|
|
24112 root 20 0 13584 5616 4756 S 0.0 0.0 0:00.10 proxmox+
|
|
24121 root 20 0 0 0 0 I 0.0 0.0 0:00.17 kworker+
|
|
24196 root 20 0 5748 2140 1952 S 0.0 0.0 0:00.00 qmeventd
|
|
24317 root 20 0 213244 123544 4304 S 0.0 0.1 0:00.13 pve-ha-+
|
|
24399 root 20 0 214204 124608 4356 S 0.0 0.1 0:00.11 pve-ha-+
|
|
24452 root -2 0 0 0 0 S 0.0 0.0 0:00.00 psimon
|
|
24533 root 20 0 238764 162616 10880 S 0.0 0.1 0:00.10 pvedaem+
|
|
24534 root 20 0 238596 162260 10664 S 0.0 0.1 0:00.08 pvedaem+
|
|
24535 root 20 0 238736 162532 10924 S 0.0 0.1 0:00.10 pvedaem+
|
|
24546 www-data 20 0 99364 56248 4048 S 0.0 0.0 0:00.03 spicepr+
|
|
24547 www-data 20 0 253808 181072 14140 S 0.0 0.1 0:00.30 pveprox+
|
|
24548 www-data 20 0 240100 162900 9860 S 0.0 0.1 0:00.19 pveprox+
|
|
24549 www-data 20 0 248300 173596 12108 S 0.0 0.1 0:00.25 pveprox+
|
|
30491 root 20 0 0 0 0 I 0.0 0.0 0:00.05 kworker+
|
|
30527 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
30589 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
30921 root 20 0 0 0 0 I 0.0 0.0 0:00.07 kworker+
|
|
31749 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
31750 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
31753 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
31900 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
31902 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
31903 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
32621 root 20 0 0 0 0 I 0.0 0.0 0:00.03 kworker+
|
|
32732 root 20 0 0 0 0 I 0.0 0.0 0:00.03 kworker+
|
|
33361 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
33450 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
33491 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
33521 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
33589 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
33591 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
34334 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
34415 root 20 0 0 0 0 I 0.0 0.0 0:00.01 kworker+
|
|
34416 root 20 0 0 0 0 I 0.0 0.0 0:00.03 kworker+
|
|
34564 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
34835 root 20 0 0 0 0 I 0.0 0.0 0:00.03 kworker+
|
|
35038 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
35175 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
35326 root 20 0 22216 12644 10200 S 0.0 0.0 0:00.24 systemd
|
|
35327 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
35329 root 20 0 24404 3828 2032 S 0.0 0.0 0:00.00 (sd-pam)
|
|
35338 root -2 0 0 0 0 S 0.0 0.0 0:00.00 psimon
|
|
35391 root 20 0 19652 11516 9744 S 0.0 0.0 0:00.01 sshd-se+
|
|
35393 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
35404 root 20 0 19908 7472 5424 S 0.0 0.0 0:00.00 sshd-se+
|
|
35406 root 20 0 7320 3720 3188 S 0.0 0.0 0:00.65 bash
|
|
35458 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
35560 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
35582 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
36097 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
36395 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
39065 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
39186 root 20 0 19652 11632 9860 S 0.0 0.0 0:00.01 sshd-se+
|
|
39193 root 20 0 19908 7424 5408 S 0.0 0.0 0:00.00 sshd-se+
|
|
39194 root 20 0 7084 3500 3248 S 0.0 0.0 0:00.00 bash
|
|
39196 root 20 0 5616 2160 2040 S 0.0 0.0 0:00.00 tail
|
|
39208 root 20 0 5580 2152 2040 S 0.0 0.0 0:00.00 sleep
|
|
39247 root 20 0 7320 2288 1756 S 0.0 0.0 0:00.00 bash
|
|
39248 root 20 0 5588 2160 2044 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:27:30 0 0 0 0 0 0 0 5.6K 5.9G 174G
|
|
16:27:31 0 0 0 0 0 0 0 5.6K 5.9G 174G
|
|
|
|
--- /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:
|
|
tailscale0:
|
|
vmbr0:
|
|
bond0:
|
|
datanet:
|
|
tap701i0:
|
|
fwbr701i0:
|
|
fwpr701p0:
|
|
fwln701i0:
|
|
tap701i1:
|
|
fwbr701i1:
|
|
fwpr701p1:
|
|
fwln701i1:
|
|
tap702i0:
|
|
fwbr702i0:
|
|
fwpr702p0:
|
|
fwln702i0:
|
|
tap703i0:
|
|
fwbr703i0:
|
|
fwpr703p0:
|
|
fwln703i0:
|
|
tap704i0:
|
|
fwbr704i0:
|
|
fwpr704p0:
|
|
fwln704i0:
|
|
tap704i1:
|
|
fwbr704i1:
|
|
fwpr704p1:
|
|
fwln704i1:
|
|
--- t0 ---
|
|
Inter-| Receive | Transmit
|
|
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
|
|
lo: 60217 417 0 0 0 0 0 0 60217 417 0 0 0 0 0 0
|
|
nic0: 625915407 526432 0 64 0 0 0 53498 11011056 67329 0 0 0 0 0 0
|
|
nic1: 5846774596 4999079 0 0 0 0 0 272 11994498274 8959384 0 0 0 0 0 0
|
|
nic2: 7957595238 6169277 0 0 0 0 0 1590 13986741675 11221261 0 0 0 0 0 0
|
|
nic3: 198139 2092 0 0 0 0 0 1920 34865 131 0 0 0 0 0 0
|
|
tailscale0: 926121 4418 0 0 0 0 0 0 2342677 4476 0 0 0 0 0 0
|
|
vmbr0: 592266668 184306 0 0 0 0 0 46991 6763158 46934 0 0 0 0 0 0
|
|
bond0: 13804369834 11168356 0 126 0 0 0 1862 25981239949 20180645 0 0 0 0 0 0
|
|
datanet: 13347854180 6379526 0 0 0 0 0 1605 30281594887 10194094 0 0 0 0 0 0
|
|
tap701i0: 851607 4322 0 0 0 0 0 0 7452371 61712 0 0 0 0 0 0
|
|
fwbr701i0: 4590739 54443 0 60 0 0 0 35661 0 0 0 0 0 0 0 0
|
|
fwpr701p0: 864306 4373 0 51 0 0 0 0 7452422 61712 0 0 0 0 0 0
|
|
fwln701i0: 7452422 61712 0 51 0 0 0 0 864306 4373 0 0 0 0 0 0
|
|
tap701i1: 0 0 0 0 0 0 0 0 60 1 0 566 0 0 0 0
|
|
fwbr701i1: 114770 1399 0 0 0 0 0 1309 0 0 0 0 0 0 0 0
|
|
fwpr701p1: 12699 51 0 51 0 0 0 0 159455 1582 0 0 0 0 0 0
|
|
fwln701i1: 159455 1582 0 51 0 0 0 0 12699 51 0 0 0 0 0 0
|
|
tap702i0: 1180340 6244 0 0 0 0 0 0 8691525 64132 0 279 0 0 0 0
|
|
fwbr702i0: 4579524 54279 0 60 0 0 0 35586 0 0 0 0 0 0 0 0
|
|
fwpr702p0: 1193039 6295 0 51 0 0 0 0 8721193 64411 0 0 0 0 0 0
|
|
fwln702i0: 8721193 64411 0 51 0 0 0 0 1193039 6295 0 0 0 0 0 0
|
|
tap703i0: 1039045 4930 0 0 0 0 0 0 7694629 61876 0 628 0 0 0 0
|
|
fwbr703i0: 4564711 54112 0 60 0 0 0 35475 0 0 0 0 0 0 0 0
|
|
fwpr703p0: 1051744 4981 0 51 0 0 0 0 7756364 62511 0 0 0 0 0 0
|
|
fwln703i0: 7756364 62511 0 51 0 0 0 0 1051744 4981 0 0 0 0 0 0
|
|
tap704i0: 806319 3945 0 0 0 0 0 0 7037958 58761 0 1864 0 0 0 0
|
|
fwbr704i0: 4550610 53952 0 60 0 0 0 35369 0 0 0 0 0 0 0 0
|
|
fwpr704p0: 818769 3995 0 50 0 0 0 0 7215219 60625 0 0 0 0 0 0
|
|
fwln704i0: 7215219 60625 0 50 0 0 0 0 818769 3995 0 0 0 0 0 0
|
|
tap704i1: 0 0 0 0 0 0 0 0 60 1 0 547 0 0 0 0
|
|
fwbr704i1: 112878 1381 0 0 0 0 0 1294 0 0 0 0 0 0 0 0
|
|
fwpr704p1: 12450 50 0 50 0 0 0 0 157062 1563 0 0 0 0 0 0
|
|
fwln704i1: 157062 1563 0 50 0 0 0 0 12450 50 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: 60217 417 0 0 0 0 0 0 60217 417 0 0 0 0 0 0
|
|
nic0: 628254430 528197 0 64 0 0 0 53517 11031909 67577 0 0 0 0 0 0
|
|
nic1: 5846775178 4999084 0 0 0 0 0 272 11994507156 8959391 0 0 0 0 0 0
|
|
nic2: 7957595302 6169278 0 0 0 0 0 1591 13986750557 11221268 0 0 0 0 0 0
|
|
nic3: 198139 2092 0 0 0 0 0 1920 34865 131 0 0 0 0 0 0
|
|
tailscale0: 926121 4418 0 0 0 0 0 0 2342677 4476 0 0 0 0 0 0
|
|
vmbr0: 592268804 184335 0 0 0 0 0 47001 6763284 46937 0 0 0 0 0 0
|
|
bond0: 13804370480 11168362 0 126 0 0 0 1863 25981257713 20180659 0 0 0 0 0 0
|
|
datanet: 13347854620 6379530 0 0 0 0 0 1605 30281612067 10194100 0 0 0 0 0 0
|
|
tap701i0: 855407 4332 0 0 0 0 0 0 7458531 61749 0 0 0 0 0 0
|
|
fwbr701i0: 4592737 54469 0 60 0 0 0 35671 0 0 0 0 0 0 0 0
|
|
fwpr701p0: 868106 4383 0 51 0 0 0 0 7458582 61749 0 0 0 0 0 0
|
|
fwln701i0: 7458582 61749 0 51 0 0 0 0 868106 4383 0 0 0 0 0 0
|
|
tap701i1: 0 0 0 0 0 0 0 0 60 1 0 566 0 0 0 0
|
|
fwbr701i1: 114770 1399 0 0 0 0 0 1309 0 0 0 0 0 0 0 0
|
|
fwpr701p1: 12699 51 0 51 0 0 0 0 159455 1582 0 0 0 0 0 0
|
|
fwln701i1: 159455 1582 0 51 0 0 0 0 12699 51 0 0 0 0 0 0
|
|
tap702i0: 1180340 6244 0 0 0 0 0 0 8693887 64158 0 279 0 0 0 0
|
|
fwbr702i0: 4581522 54305 0 60 0 0 0 35596 0 0 0 0 0 0 0 0
|
|
fwpr702p0: 1193039 6295 0 51 0 0 0 0 8723555 64437 0 0 0 0 0 0
|
|
fwln702i0: 8723555 64437 0 51 0 0 0 0 1193039 6295 0 0 0 0 0 0
|
|
tap703i0: 1039303 4932 0 0 0 0 0 0 7697263 61904 0 628 0 0 0 0
|
|
fwbr703i0: 4566709 54138 0 60 0 0 0 35485 0 0 0 0 0 0 0 0
|
|
fwpr703p0: 1052002 4983 0 51 0 0 0 0 7758998 62539 0 0 0 0 0 0
|
|
fwln703i0: 7758998 62539 0 51 0 0 0 0 1052002 4983 0 0 0 0 0 0
|
|
tap704i0: 806319 3945 0 0 0 0 0 0 7040320 58787 0 1864 0 0 0 0
|
|
fwbr704i0: 4552608 53978 0 60 0 0 0 35379 0 0 0 0 0 0 0 0
|
|
fwpr704p0: 818769 3995 0 50 0 0 0 0 7217581 60651 0 0 0 0 0 0
|
|
fwln704i0: 7217581 60651 0 50 0 0 0 0 818769 3995 0 0 0 0 0 0
|
|
tap704i1: 0 0 0 0 0 0 0 0 60 1 0 547 0 0 0 0
|
|
fwbr704i1: 112878 1381 0 0 0 0 0 1294 0 0 0 0 0 0 0 0
|
|
fwpr704p1: 12450 50 0 50 0 0 0 0 157062 1563 0 0 0 0 0 0
|
|
fwln704i1: 157062 1563 0 50 0 0 0 0 12450 50 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.0.250 pfv-tsys7.knel.net pfv-tsys7
|
|
|
|
# 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:27:32 CDT
|
|
Universal time: Sun 2026-07-26 21:27:32 UTC
|
|
RTC time: Sun 2026-07-26 21:27:32
|
|
Time zone: America/Chicago (CDT, -0500)
|
|
System clock synchronized: yes
|
|
NTP service: active
|
|
RTC in local TZ: no
|
|
|
|
--- chronyc tracking
|
|
$ chronyc tracking
|
|
Reference ID : 40832FB2 (64-131-47-178.metronet.net)
|
|
Stratum : 2
|
|
Ref time (UTC) : Sun Jul 26 21:27:08 2026
|
|
System time : 0.000180375 seconds slow of NTP time
|
|
Last offset : +0.000134459 seconds
|
|
RMS offset : 0.000872636 seconds
|
|
Frequency : 25.071 ppm slow
|
|
Residual freq : +0.020 ppm
|
|
Skew : 1.241 ppm
|
|
Root delay : 0.031746965 seconds
|
|
Root dispersion : 0.001038373 seconds
|
|
Update interval : 128.9 seconds
|
|
Leap status : Normal
|
|
|
|
--- chronyc sources
|
|
$ chronyc sources
|
|
MS Name/IP address Stratum Poll Reach LastRx Last sample
|
|
===============================================================================
|
|
^+ sushi.ruselabs.com 2 7 377 20 -2104us[-2104us] +/- 19ms
|
|
^+ 216.82.35.115 2 7 377 21 +895us[ +895us] +/- 34ms
|
|
^* 64-131-47-178.metronet.n> 1 7 377 24 +1716us[+1850us] +/- 17ms
|
|
^+ 96-19-94-82.cpe.sparklig> 1 7 377 22 +654us[ +654us] +/- 17ms
|
|
|
|
--- 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:27:34 2026
|
|
*mangle
|
|
:PREROUTING ACCEPT [6573947:13944580785]
|
|
:INPUT ACCEPT [6496410:13935456995]
|
|
:FORWARD ACCEPT [0:0]
|
|
:OUTPUT ACCEPT [4392964:30030606831]
|
|
:POSTROUTING ACCEPT [4392964:30030606831]
|
|
-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:27:34 2026
|
|
# Generated by iptables-save v1.8.11 on Sun Jul 26 16:27:34 2026
|
|
*raw
|
|
:PREROUTING ACCEPT [6574068:13944624055]
|
|
:OUTPUT ACCEPT [4393076:30030618149]
|
|
COMMIT
|
|
# Completed on Sun Jul 26 16:27:34 2026
|
|
# Generated by iptables-save v1.8.11 on Sun Jul 26 16:27:34 2026
|
|
*nat
|
|
:PREROUTING ACCEPT [74544:8585960]
|
|
:INPUT ACCEPT [1626:437447]
|
|
:OUTPUT ACCEPT [4020:271026]
|
|
:POSTROUTING ACCEPT [4020:271026]
|
|
: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:27:34 2026
|
|
# Generated by iptables-save v1.8.11 on Sun Jul 26 16:27:34 2026
|
|
*filter
|
|
:INPUT ACCEPT [6483536:13932755795]
|
|
:FORWARD ACCEPT [0:0]
|
|
:OUTPUT ACCEPT [4393092:30030619209]
|
|
: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.110.146.27/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:27:34 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 (10237)
|
|
/usr/sbin/chronyd (10248)
|
|
/usr/sbin/dhclient (1196) /{,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
|
|
4711 root 3507976 10288716 35.9 1.7 kvm
|
|
4431 root 1221196 33646680 2.6 0.6 kvm
|
|
5011 root 736032 6987652 3.0 0.3 kvm
|
|
4811 root 496664 2821480 2.4 0.2 kvm
|
|
1647 www-data 183964 231248 0.0 0.0 pveproxy
|
|
1544 root 182876 230076 0.0 0.0 pvedaemon
|
|
24547 www-data 181072 253808 0.0 0.0 pveproxy worker
|
|
24549 www-data 173596 248300 0.0 0.0 pveproxy worker
|
|
24548 www-data 162900 240100 0.0 0.0 pveproxy worker
|
|
24533 root 162616 238764 0.0 0.0 pvedaemon worke
|
|
|
|
--- top 10 CPU hogs
|
|
$ ps -eo pid,user,pcpu,pmem,rss,comm --sort=-pcpu | head -n 11
|
|
PID USER %CPU %MEM RSS COMMAND
|
|
4711 root 35.9 1.7 3507976 kvm
|
|
39294 root 13.2 0.0 76756 apt-get
|
|
5011 root 3.0 0.3 736032 kvm
|
|
39330 root 3.0 0.0 13508 dpkg
|
|
4431 root 2.6 0.6 1221196 kvm
|
|
39327 root 2.6 0.0 7720 systemd-timedat
|
|
4811 root 2.4 0.2 496664 kvm
|
|
1532 root 1.2 0.0 142312 pvestatd
|
|
988 root 0.8 0.0 108904 tailscaled
|
|
35406 root 0.7 0.0 3720 bash
|
|
|
|
--- 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=184 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 88M Jul 19 13:35 /var/log/journal/0e2091f0cca443c1a271a38629dbc5b5/system@0ec05c42f3e446c09fa114ed8bf8bbde-0000000000029981-00065496c0fe843f.journal
|
|
-rw-r-----+ 1 root systemd-journal 48M Jun 19 03:02 /var/log/journal/0e2091f0cca443c1a271a38629dbc5b5/system@00065496c109b687-b0a7b1eee6538ebe.journal~
|
|
-rw-r-----+ 1 root systemd-journal 40M May 5 03:34 /var/log/journal/0e2091f0cca443c1a271a38629dbc5b5/system@0ec05c42f3e446c09fa114ed8bf8bbde-0000000000000001-00064ea994b6f81f.journal
|
|
-rw-r-----+ 1 root systemd-journal 32M Jul 26 16:27 /var/log/journal/0e2091f0cca443c1a271a38629dbc5b5/system.journal
|
|
-rw-r-----+ 1 root systemd-journal 24M May 20 11:21 /var/log/journal/0e2091f0cca443c1a271a38629dbc5b5/system@000652424b9ca9bb-f4ff275107ae8c03.journal~
|
|
-rw-r-----+ 1 root systemd-journal 16M May 10 21:57 /var/log/journal/0e2091f0cca443c1a271a38629dbc5b5/system@00065181f2f29a40-c9d09f859e785b97.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)"
|
|
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
|
|
[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
|
|
datanet : mtu=1500
|
|
fwbr701i0 : mtu=1500
|
|
fwbr701i1 : mtu=1500
|
|
fwbr702i0 : mtu=1500
|
|
fwbr703i0 : mtu=1500
|
|
fwbr704i0 : mtu=1500
|
|
fwbr704i1 : mtu=1500
|
|
fwln701i0 : mtu=1500
|
|
fwln701i1 : mtu=1500
|
|
fwln702i0 : mtu=1500
|
|
fwln703i0 : mtu=1500
|
|
fwln704i0 : mtu=1500
|
|
fwln704i1 : mtu=1500
|
|
fwpr701p0 : mtu=1500
|
|
fwpr701p1 : mtu=1500
|
|
fwpr702p0 : mtu=1500
|
|
fwpr703p0 : mtu=1500
|
|
fwpr704p0 : mtu=1500
|
|
fwpr704p1 : mtu=1500
|
|
nic0 : mtu=1500
|
|
nic1 : mtu=1500
|
|
nic2 : mtu=1500
|
|
nic3 : mtu=1500
|
|
tap701i0 : mtu=1500
|
|
tap701i1 : mtu=1500
|
|
tap702i0 : mtu=1500
|
|
tap703i0 : mtu=1500
|
|
tap704i0 : mtu=1500
|
|
tap704i1 : 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=5760 bytes ARC max=17179869184 bytes RAM total=202756390912 bytes
|
|
ARC max is 8% 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 701: ide-disk no-iothread
|
|
VM 704: ide-disk no-iothread
|
|
[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-tsys7
|
|
# Output: /root/pfv-tsys7.log
|
|
# Size: 896062 bytes / 17334 lines
|
|
# Elapsed: 103 seconds
|
|
###############################################################################
|