Deployed check.sh to all 7 hosts at 21:50 CDT. Captures the live state after the user's PDM migrations: Cnode movements since last audit: - cnode1: tsys1 -> tsys9 - cnode2: tsys6 -> tsys7 - cnode5: tsys6 -> tsys7, storage D5(tsys4) -> S2(tsys5) Wnode changes: - wnode-tsys1 (102): new VM on S2, stopped - wnode-tsys3: RAM bumped 20 -> 28 GB - wnode-tsys6: now running (was stopped) - wnode-tsys9: storage moved S3 -> S2 Storage distribution improved from 90/10 to 73/27 (tsys4/tsys5). Still need 2 more cnode moves for etcd quorum survival. Updated executive summary, k8s distribution tables, storage utilization, and open items with the fresh data. Captured future k8s requirements: vcluster + Rancher, OIDC to Keycloak, workload isolation (RackRental/Suborbital ITAR/non-ITAR/SLP), and solar-aware scale-out with PowerEdge 19xx/2950 systems. Added tsys9 to deploy-check.sh host list.
11661 lines
733 KiB
Plaintext
11661 lines
733 KiB
Plaintext
###############################################################################
|
|
# Proxmox VE host performance assessment (READ-ONLY)
|
|
# Host: pfv-tsys3 (pfv-tsys3.knel.net)
|
|
# FQDN: pfv-tsys3.knel.net
|
|
# All IPs: 100.66.186.10 192.168.2.5 10.100.100.3 fd7a:115c:a1e0::cc01:baa2
|
|
# Collected: 2026-07-28T02:50:35Z (UTC)
|
|
# Kernel: 7.0.14-6-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: 7.0.14-6-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 yes /usr/bin/mtr
|
|
nstat yes /usr/bin/nstat
|
|
netstat yes /usr/bin/netstat
|
|
nicstat no - -
|
|
ifstat no - -
|
|
dmidecode yes /usr/sbin/dmidecode
|
|
lscpu yes /usr/bin/lscpu
|
|
lshw yes /usr/bin/lshw
|
|
hwinfo no - -
|
|
inxi no - -
|
|
lspci yes /usr/bin/lspci
|
|
lsusb yes /usr/bin/lsusb
|
|
numactl yes /usr/bin/numactl
|
|
numastat yes /usr/bin/numastat
|
|
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.4.3-pve1
|
|
zfs yes /usr/sbin/zfs zfs-2.4.3-pve1 zfs-kmod-2.4.3-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-7.0.14-6-pve] (local build)
|
|
nvme yes /usr/sbin/nvme nvme version 2.13 (git 2.13)
|
|
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 yes /usr/bin/iperf
|
|
iperf3 yes /usr/bin/iperf3 iperf 3.18 (cJSON 1.7.15)
|
|
sysbench no - -
|
|
bonnie++ no - -
|
|
iozone no - -
|
|
iostat yes /usr/bin/iostat
|
|
mpstat yes /usr/bin/mpstat
|
|
pidstat yes /usr/bin/pidstat
|
|
sar yes /usr/bin/sar
|
|
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 yes /usr/bin/jq
|
|
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-7.0.14-6-pve] (local build)
|
|
nvme yes /usr/sbin/nvme nvme version 2.13 (git 2.13)
|
|
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
|
|
numactl 2.0.19-1
|
|
nvme-cli 2.13-2
|
|
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-headers 2.1.0
|
|
proxmox-default-kernel 2.1.0
|
|
proxmox-enterprise-support-keyring 1.0
|
|
proxmox-firewall 1.2.3
|
|
proxmox-headers-7.0 7.0.14-6
|
|
proxmox-headers-7.0.14-6-pve 7.0.14-6
|
|
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-5-pve-signed 7.0.14-5
|
|
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-headers 9.2.0
|
|
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
|
|
sysstat 12.7.5-2
|
|
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.4.3-pve1)
|
|
available : spl (2.4.3-pve1)
|
|
available : znvpair (2.4.3-pve1)
|
|
available : zcommon (2.4.3-pve1)
|
|
available : zunicode (2.4.3-pve1)
|
|
available : zavl (2.4.3-pve1)
|
|
available : icp (2.4.3-pve1)
|
|
available : zlua (2.4.3-pve1)
|
|
available : megaraid_sas (07.734.00.00-rc1)
|
|
available : mpt3sas (54.100.00.00)
|
|
available : hpsa (3.4.20-200)
|
|
available : aacraid (1.2.1[50983]-custom)
|
|
available : smartpqi (2.1.36-026)
|
|
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 32768 0
|
|
nfsv4 1200128 2
|
|
tcp_diag 20480 0
|
|
sunrpc 815104 23 nfsv4,auth_rpcgss,lockd,rpcsec_gss_krb5,nfs
|
|
bonding 253952 0
|
|
kvm_intel 507904 10
|
|
kvm 1445888 9 kvm_intel
|
|
zfs 6258688 6
|
|
spl 151552 1 zfs
|
|
vhost_net 36864 1
|
|
vhost 69632 1 vhost_net
|
|
vhost_iotlb 16384 1 vhost
|
|
tcp_bbr 24576 24
|
|
nvme_fabrics 36864 0
|
|
dm_thin_pool 94208 1
|
|
dm_persistent_data 118784 1 dm_thin_pool
|
|
dm_bio_prison 24576 1 dm_thin_pool
|
|
dm_bufio 57344 1 dm_persistent_data
|
|
nvme 65536 4
|
|
nvme_core 229376 6 nvme,nvme_fabrics
|
|
nvme_keyring 20480 2 nvme_core,nvme_fabrics
|
|
nvme_auth 28672 1 nvme_core
|
|
|
|
###############################################################################
|
|
# 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
|
|
21:50:37 up 13:43, 1 user, load average: 0.09, 0.04, 0.01
|
|
|
|
--- uptime raw (since boot)
|
|
$ cat /proc/uptime
|
|
49412.51 387640.21
|
|
|
|
--- last reboot
|
|
$ last -x reboot
|
|
reboot system boot 7.0.14-6-pve Mon Jul 27 08:07 - still running
|
|
reboot system boot 7.0.14-6-pve Fri Jul 24 16:26 - 08:06 (2+15:39)
|
|
shutdown system down 7.0.14-6-pve Mon Jul 27 08:06 - 08:07 (00:01)
|
|
reboot system boot 7.0.14-6-pve Fri Jul 24 16:24 - 16:25 (00:01)
|
|
shutdown system down 7.0.14-6-pve Fri Jul 24 16:25 - 16:26 (00:00)
|
|
reboot system boot 7.0.14-6-pve Fri Jul 24 13:41 - crash
|
|
reboot system boot 7.0.14-5-pve Sun Jul 19 16:36 - 10:46 (4+18:09)
|
|
shutdown system down 7.0.14-5-pve Fri Jul 24 10:46 - 13:41 (02:54)
|
|
reboot system boot 6.17.9-1-pve Mon Apr 6 10:59 - 16:33 (104+05:33)
|
|
shutdown system down 6.17.9-1-pve Sun Jul 19 16:33 - 16:36 (00:03)
|
|
reboot system boot 6.17.9-1-pve Mon Apr 6 10:57 - 10:59 (00:01)
|
|
shutdown system down 6.17.9-1-pve Mon Apr 6 10:59 - 10:59 (00:00)
|
|
reboot system boot 6.17.9-1-pve Sat Apr 4 10:18 - crash
|
|
reboot system boot 6.17.9-1-pve Sat Apr 4 10:07 - 10:14 (00:06)
|
|
shutdown system down 6.17.9-1-pve Sat Apr 4 10:14 - 10:18 (00:03)
|
|
reboot system boot 6.17.9-1-pve Sat Apr 4 09:42 - 10:06 (00:24)
|
|
shutdown system down 6.17.9-1-pve Sat Apr 4 10:06 - 10:07 (00:00)
|
|
reboot system boot 6.17.9-1-pve Mon Mar 30 17:19 - 09:31 (4+16:12)
|
|
shutdown system down 6.17.9-1-pve Sat Apr 4 09:31 - 09:42 (00:10)
|
|
reboot system boot 6.17.9-1-pve Sun Mar 8 14:41 - 17:14 (22+02:32)
|
|
shutdown system down 6.17.9-1-pve Mon Mar 30 17:14 - 17:19 (00:05)
|
|
reboot system boot 6.17.9-1-pve Thu Mar 5 10:38 - 14:37 (3+02:58)
|
|
shutdown system down 6.17.9-1-pve Sun Mar 8 14:37 - 14:41 (00:03)
|
|
reboot system boot 6.17.9-1-pve Wed Mar 4 10:53 - 10:34 (23:41)
|
|
shutdown system down 6.17.9-1-pve Thu Mar 5 10:34 - 10:38 (00:04)
|
|
reboot system boot 6.17.9-1-pve Tue Feb 24 10:35 - 20:51 (7+10:15)
|
|
shutdown system down 6.17.9-1-pve Tue Mar 3 20:51 - 10:53 (14:01)
|
|
reboot system boot 6.17.2-1-pve Mon Feb 23 18:38 - 10:31 (15:52)
|
|
shutdown system down 6.17.2-1-pve Tue Feb 24 10:31 - 10:35 (00:03)
|
|
reboot system boot 6.17.2-1-pve Sun Feb 22 11:23 - 18:37 (1+07:14)
|
|
shutdown system down 6.17.2-1-pve Mon Feb 23 18:37 - 18:38 (00:00)
|
|
reboot system boot 6.17.2-1-pve Wed Feb 18 20:40 - 11:15 (3+14:35)
|
|
shutdown system down 6.17.2-1-pve Sun Feb 22 11:15 - 11:23 (00:07)
|
|
reboot system boot 6.17.2-1-pve Wed Feb 18 11:50 - 20:39 (08:49)
|
|
shutdown system down 6.17.2-1-pve Wed Feb 18 20:39 - 20:40 (00:00)
|
|
reboot system boot 6.17.2-1-pve Tue Feb 17 20:00 - 20:26 (00:25)
|
|
shutdown system down 6.17.2-1-pve Tue Feb 17 20:26 - 11:50 (15:23)
|
|
reboot system boot 6.17.2-1-pve Tue Feb 17 19:57 - crash
|
|
reboot system boot 6.17.2-1-pve Mon Feb 16 13:23 - 19:56 (1+06:33)
|
|
shutdown system down 6.17.2-1-pve Tue Feb 17 19:56 - 19:57 (00:01)
|
|
reboot system boot 6.17.2-1-pve Mon Feb 16 13:08 - 13:22 (00:14)
|
|
shutdown system down 6.17.2-1-pve Mon Feb 16 13:22 - 13:23 (00:00)
|
|
reboot system boot 6.17.2-1-pve Sun Feb 15 13:32 - 13:02 (23:30)
|
|
shutdown system down 6.17.2-1-pve Mon Feb 16 13:02 - 13:08 (00:05)
|
|
reboot system boot 6.17.2-1-pve Sun Feb 15 12:25 - crash
|
|
reboot system boot 6.17.2-1-pve Wed Feb 11 08:41 - crash
|
|
reboot system boot 6.17.2-1-pve Tue Feb 10 16:04 - crash
|
|
reboot system boot 6.17.2-1-pve Tue Feb 10 15:49 - crash
|
|
reboot system boot 6.17.2-1-pve Tue Feb 10 14:54 - crash
|
|
reboot system boot 6.17.2-1-pve Tue Feb 10 14:48 - 14:49 (00:01)
|
|
shutdown system down 6.17.2-1-pve Tue Feb 10 14:49 - 14:54 (00:04)
|
|
|
|
wtmpdb begins Tue Feb 10 14:48:46 2026
|
|
|
|
--- last logins
|
|
$ last
|
|
root pts/0 100.87.49.37 Mon Jul 27 08:43 - 08:43 (00:00)
|
|
root pts/0 100.87.49.37 Mon Jul 27 08:21 - 08:21 (00:00)
|
|
root pts/0 100.87.49.37 Mon Jul 27 08:21 - 08:21 (00:00)
|
|
reboot system boot 7.0.14-6-pve Mon Jul 27 08:07 - still running
|
|
root pts/0 100.87.49.37 Mon Jul 27 00:35 - 00:35 (00:00)
|
|
root pts/1 100.87.49.37 Mon Jul 27 00:32 - 00:34 (00:02)
|
|
root pts/1 100.87.49.37 Mon Jul 27 00:29 - 00:32 (00:02)
|
|
root pts/0 100.87.49.37 Mon Jul 27 00:27 - 00:35 (00:08)
|
|
root pts/0 100.87.49.37 Sun Jul 26 17:51 - 17:51 (00:00)
|
|
root pts/0 100.87.49.37 Sun Jul 26 17:12 - 17:12 (00:00)
|
|
root pts/0 100.87.49.37 Sun Jul 26 17:09 - 17:10 (00:00)
|
|
root pts/0 100.87.49.37 Sun Jul 26 17:09 - 17:09 (00:00)
|
|
root pts/0 100.87.49.37 Sun Jul 26 17:07 - 17:07 (00:00)
|
|
root pts/0 100.87.49.37 Sun Jul 26 15:06 - 15:07 (00:00)
|
|
root pts/0 100.87.49.37 Sun Jul 26 13:32 - 13:33 (00:00)
|
|
root pts/0 100.87.49.37 Sun Jul 26 13:15 - 13:18 (00:03)
|
|
root pts/0 100.87.49.37 Sun Jul 26 13:05 - 13:14 (00:09)
|
|
root pts/0 100.87.49.37 Sun Jul 26 12:24 - 12:24 (00:00)
|
|
root pts/0 100.87.49.37 Sun Jul 26 11:34 - 11:53 (00:19)
|
|
root pts/0 100.87.49.37 Sun Jul 26 09:11 - 09:16 (00:04)
|
|
root pts/0 100.87.49.37 Sat Jul 25 11:32 - 11:34 (00:01)
|
|
root pts/0 100.87.49.37 Sat Jul 25 11:32 - 11:32 (00:00)
|
|
root pts/0 100.87.49.37 Fri Jul 24 16:32 - 16:32 (00:00)
|
|
root pts/0 100.87.49.37 Fri Jul 24 16:31 - 16:31 (00:00)
|
|
reboot system boot 7.0.14-6-pve Fri Jul 24 16:26 - 08:06 (2+15:39)
|
|
reboot system boot 7.0.14-6-pve Fri Jul 24 16:24 - 16:25 (00:01)
|
|
reboot system boot 7.0.14-6-pve Fri Jul 24 13:41 - crash
|
|
root pts/0 100.87.49.37 Fri Jul 24 10:46 - 10:46 (00:00)
|
|
root pts/0 100.87.49.37 Fri Jul 24 10:44 - 10:44 (00:00)
|
|
root pts/1 100.87.49.37 Mon Jul 20 12:27 - 12:27 (00:00)
|
|
root pts/0 100.109.70.137 Mon Jul 20 12:26 - 17:16 (04:50)
|
|
root pts/0 100.87.49.37 Mon Jul 20 11:28 - 11:28 (00:00)
|
|
root pts/0 100.87.49.37 Mon Jul 20 11:10 - 11:11 (00:01)
|
|
root pts/0 100.87.49.37 Mon Jul 20 10:54 - 10:54 (00:00)
|
|
root pts/0 100.87.49.37 Sun Jul 19 17:57 - 18:02 (00:05)
|
|
root pts/0 100.87.49.37 Sun Jul 19 16:54 - 17:12 (00:18)
|
|
reboot system boot 7.0.14-5-pve Sun Jul 19 16:36 - 10:46 (4+18:09)
|
|
root pts/2 100.87.49.37 Sun Jul 19 16:30 - 16:32 (00:02)
|
|
root pts/0 100.87.49.37 Sun Jul 19 15:57 - 16:33 (00:35)
|
|
root pts/0 100.87.49.37 Sun Jul 19 15:01 - 15:26 (00:24)
|
|
root pts/0 100.87.49.37 Sun Jul 19 14:38 - 14:47 (00:08)
|
|
root pts/0 100.87.49.37 Sun Jul 19 14:24 - 14:29 (00:04)
|
|
root pts/2 Sat Jul 11 12:43 - 12:45 (00:01)
|
|
root pts/1 Sat Jul 11 12:43 - 12:45 (00:01)
|
|
root pts/0 Sat Jul 11 12:43 - 12:45 (00:02)
|
|
root pts/1 Fri Jun 26 11:20 - 11:23 (00:02)
|
|
root pts/0 Fri Jun 26 11:20 - 11:23 (00:03)
|
|
root pts/1 100.118.91.16 Fri Apr 24 17:16 - 17:28 (00:12)
|
|
root pts/1 100.118.91.16 Fri Apr 24 16:36 - 16:50 (00:13)
|
|
root pts/1 100.118.91.16 Fri Apr 24 16:14 - 16:25 (00:10)
|
|
root pts/1 100.118.91.16 Fri Apr 24 14:24 - 14:27 (00:03)
|
|
root pts/1 100.118.91.16 Fri Apr 24 12:52 - 12:57 (00:05)
|
|
root pts/1 100.118.91.16 Fri Apr 24 12:40 - 12:43 (00:02)
|
|
root pts/1 100.118.91.16 Fri Apr 24 12:21 - 12:22 (00:01)
|
|
root pts/1 100.118.91.16 Fri Apr 24 09:53 - 10:11 (00:18)
|
|
root pts/1 100.118.91.16 Fri Apr 24 09:45 - 09:51 (00:05)
|
|
root pts/1 100.118.91.16 Fri Apr 24 09:17 - 09:23 (00:05)
|
|
root pts/1 100.118.91.16 Fri Apr 24 08:27 - 08:33 (00:06)
|
|
root pts/1 100.118.91.16 Fri Apr 24 06:59 - 07:03 (00:03)
|
|
root pts/1 100.118.91.16 Thu Apr 23 14:23 - 14:26 (00:02)
|
|
root pts/1 100.118.91.16 Mon Apr 20 20:22 - 20:25 (00:03)
|
|
root pts/1 100.118.91.16 Tue Apr 7 11:39 - 11:39 (00:00)
|
|
root pts/0 100.109.70.137 Mon Apr 6 11:06 - 01:09 (52+14:02)
|
|
reboot system boot 6.17.9-1-pve Mon Apr 6 10:59 - 16:33 (104+05:33)
|
|
reboot system boot 6.17.9-1-pve Mon Apr 6 10:57 - 10:59 (00:01)
|
|
root pts/2 100.109.70.137 Mon Apr 6 10:40 - crash
|
|
root pts/0 100.109.70.137 Mon Apr 6 10:03 - crash
|
|
root pts/0 100.118.91.16 Mon Apr 6 08:45 - 08:57 (00:12)
|
|
root pts/0 100.118.91.16 Sun Apr 5 09:47 - 09:50 (00:03)
|
|
reboot system boot 6.17.9-1-pve Sat Apr 4 10:18 - crash
|
|
root pts/0 100.118.91.16 Sat Apr 4 10:14 - 10:14 (00:00)
|
|
root pts/0 192.168.0.14 Sat Apr 4 10:10 - 10:11 (00:00)
|
|
reboot system boot 6.17.9-1-pve Sat Apr 4 10:07 - 10:14 (00:06)
|
|
reboot system boot 6.17.9-1-pve Sat Apr 4 09:42 - 10:06 (00:24)
|
|
root pts/0 100.118.91.16 Sat Apr 4 09:12 - 09:19 (00:06)
|
|
root pts/0 100.118.91.16 Fri Apr 3 00:12 - 00:13 (00:00)
|
|
root pts/0 100.109.70.137 Thu Apr 2 23:57 - 00:07 (00:09)
|
|
root pts/0 100.118.91.16 Mon Mar 30 17:20 - 17:22 (00:01)
|
|
reboot system boot 6.17.9-1-pve Mon Mar 30 17:19 - 09:31 (4+16:12)
|
|
root pts/0 100.118.91.16 Mon Mar 30 17:13 - 17:14 (00:00)
|
|
root pts/0 100.109.70.137 Tue Mar 17 13:27 - 11:06 (2+21:39)
|
|
reboot system boot 6.17.9-1-pve Sun Mar 8 14:41 - 17:14 (22+02:32)
|
|
reboot system boot 6.17.9-1-pve Thu Mar 5 10:38 - 14:37 (3+02:58)
|
|
root pts/0 100.109.70.137 Thu Mar 5 10:33 - 10:34 (00:00)
|
|
reboot system boot 6.17.9-1-pve Wed Mar 4 10:53 - 10:34 (23:41)
|
|
reboot system boot 6.17.9-1-pve Tue Feb 24 10:35 - 20:51 (7+10:15)
|
|
root pts/0 100.109.70.137 Tue Feb 24 10:30 - 10:31 (00:00)
|
|
root pts/0 100.109.70.137 Tue Feb 24 07:24 - 10:10 (02:45)
|
|
root pts/0 Mon Feb 23 22:29 - 22:29 (00:00)
|
|
root pts/1 Mon Feb 23 21:28 - 21:44 (00:15)
|
|
root pts/0 100.109.70.137 Mon Feb 23 18:39 - 22:08 (03:28)
|
|
reboot system boot 6.17.2-1-pve Mon Feb 23 18:38 - 10:31 (15:52)
|
|
root pts/0 100.109.70.137 Mon Feb 23 17:34 - 18:37 (01:03)
|
|
root pts/0 100.109.70.137 Mon Feb 23 17:13 - 17:19 (00:06)
|
|
root pts/1 100.109.70.137 Mon Feb 23 11:13 - 11:13 (00:00)
|
|
root pts/1 10.100.100.1 Sun Feb 22 12:03 - 12:03 (00:00)
|
|
root pts/0 100.109.70.137 Sun Feb 22 11:57 - 12:14 (1+00:16)
|
|
root pts/0 100.109.70.137 Sun Feb 22 11:30 - 11:30 (00:00)
|
|
reboot system boot 6.17.2-1-pve Sun Feb 22 11:23 - 18:37 (1+07:14)
|
|
root pts/0 100.109.70.137 Sun Feb 22 11:13 - 11:15 (00:01)
|
|
root pts/0 100.109.70.137 Wed Feb 18 20:40 - 10:59 (3+14:18)
|
|
reboot system boot 6.17.2-1-pve Wed Feb 18 20:40 - 11:15 (3+14:35)
|
|
root pts/1 100.109.70.137 Wed Feb 18 12:14 - 20:39 (08:24)
|
|
root pts/1 100.109.70.137 Wed Feb 18 11:55 - 12:14 (00:19)
|
|
root pts/0 100.109.70.137 Wed Feb 18 11:51 - 13:54 (02:02)
|
|
reboot system boot 6.17.2-1-pve Wed Feb 18 11:50 - 20:39 (08:49)
|
|
reboot system boot 6.17.2-1-pve Tue Feb 17 20:00 - 20:26 (00:25)
|
|
reboot system boot 6.17.2-1-pve Tue Feb 17 19:57 - crash
|
|
root tty1 Tue Feb 17 19:54 - 19:56 (00:02)
|
|
reboot system boot 6.17.2-1-pve Mon Feb 16 13:23 - 19:56 (1+06:33)
|
|
reboot system boot 6.17.2-1-pve Mon Feb 16 13:08 - 13:22 (00:14)
|
|
reboot system boot 6.17.2-1-pve Sun Feb 15 13:32 - 13:02 (23:30)
|
|
root pts/0 100.109.70.137 Sun Feb 15 12:26 - crash
|
|
reboot system boot 6.17.2-1-pve Sun Feb 15 12:25 - crash
|
|
reboot system boot 6.17.2-1-pve Wed Feb 11 08:41 - crash
|
|
root pts/1 100.109.70.137 Tue Feb 10 18:38 - 18:45 (00:06)
|
|
root pts/0 100.115.33.100 Tue Feb 10 18:30 - 19:05 (00:34)
|
|
root pts/0 100.109.70.137 Tue Feb 10 18:25 - 18:25 (00:00)
|
|
root pts/0 100.109.70.137 Tue Feb 10 18:16 - 18:24 (00:08)
|
|
root pts/0 Tue Feb 10 17:56 - 18:03 (00:07)
|
|
root pts/1 100.109.70.137 Tue Feb 10 17:54 - 18:27 (00:32)
|
|
root pts/0 192.168.3.16 Tue Feb 10 17:50 - 18:03 (00:13)
|
|
reboot system boot 6.17.2-1-pve Tue Feb 10 16:04 - crash
|
|
reboot system boot 6.17.2-1-pve Tue Feb 10 15:49 - crash
|
|
reboot system boot 6.17.2-1-pve Tue Feb 10 14:54 - crash
|
|
root tty1 Tue Feb 10 14:49 - 14:49 (00:00)
|
|
reboot system boot 6.17.2-1-pve Tue Feb 10 14:48 - 14:49 (00:01)
|
|
|
|
wtmpdb begins Tue Feb 10 14:48:46 2026
|
|
|
|
--- uname
|
|
$ uname -a
|
|
Linux pfv-tsys3 7.0.14-6-pve #1 SMP PREEMPT_DYNAMIC PMX 7.0.14-6 (2026-07-20T14:45Z) x86_64 GNU/Linux
|
|
|
|
--- /proc/cmdline (boot args)
|
|
$ cat /proc/cmdline
|
|
BOOT_IMAGE=/boot/vmlinuz-7.0.14-6-pve root=/dev/mapper/pve-root ro quiet intel_iommu=on
|
|
|
|
###############################################################################
|
|
# 3. HARDWARE INVENTORY
|
|
###############################################################################
|
|
|
|
--- dmidecode -t system
|
|
$ dmidecode -t system
|
|
# dmidecode 3.6
|
|
Getting SMBIOS data from sysfs.
|
|
SMBIOS 3.0.0 present.
|
|
|
|
Handle 0x0001, DMI type 1, 27 bytes
|
|
System Information
|
|
Manufacturer: Dell Inc.
|
|
Product Name: Precision 7510
|
|
Version: Not Specified
|
|
Serial Number: HG537H2
|
|
UUID: 4c4c4544-0047-3510-8033-c8c04f374832
|
|
Wake-up Type: Power Switch
|
|
SKU Number: 06D9
|
|
Family: Precision
|
|
|
|
Handle 0x002A, DMI type 12, 5 bytes
|
|
System Configuration Options
|
|
Option 1: To Be Filled By O.E.M.
|
|
|
|
Handle 0x002B, DMI type 15, 35 bytes
|
|
System Event Log
|
|
Area Length: 4 bytes
|
|
Header Start Offset: 0x0000
|
|
Header Length: 2 bytes
|
|
Data Start Offset: 0x0002
|
|
Access Method: Indexed I/O, one 16-bit index port, one 8-bit data port
|
|
Access Address: Index 0x046A, Data 0x046C
|
|
Status: Invalid, Not Full
|
|
Change Token: 0x00000000
|
|
Header Format: No Header
|
|
Supported Log Type Descriptors: 6
|
|
Descriptor 1: End of log
|
|
Data Format 1: OEM-specific
|
|
Descriptor 2: End of log
|
|
Data Format 2: OEM-specific
|
|
Descriptor 3: End of log
|
|
Data Format 3: OEM-specific
|
|
Descriptor 4: End of log
|
|
Data Format 4: OEM-specific
|
|
Descriptor 5: End of log
|
|
Data Format 5: OEM-specific
|
|
Descriptor 6: End of log
|
|
Data Format 6: OEM-specific
|
|
|
|
Handle 0x0032, DMI type 32, 20 bytes
|
|
System Boot Information
|
|
Status: No errors detected
|
|
|
|
|
|
--- dmidecode -t baseboard
|
|
$ dmidecode -t baseboard
|
|
# dmidecode 3.6
|
|
Getting SMBIOS data from sysfs.
|
|
SMBIOS 3.0.0 present.
|
|
|
|
Handle 0x0002, DMI type 2, 15 bytes
|
|
Base Board Information
|
|
Manufacturer: Dell Inc.
|
|
Product Name: 0692Y5
|
|
Version: A00
|
|
Serial Number: /HG537H2/CN1296377E0002/
|
|
Asset Tag: Not Specified
|
|
Features:
|
|
Board is a hosting board
|
|
Board is replaceable
|
|
Location In Chassis: Not Specified
|
|
Chassis Handle: 0x0300
|
|
Type: Motherboard
|
|
Contained Object Handles: 0
|
|
|
|
Handle 0x0028, DMI type 10, 6 bytes
|
|
On Board Device Information
|
|
Type: Video
|
|
Status: Enabled
|
|
Description: "Intel HD Graphics"
|
|
|
|
Handle 0x003F, DMI type 41, 11 bytes
|
|
Onboard Device
|
|
Reference Designation: Onboard IGD
|
|
Type: Video
|
|
Status: Enabled
|
|
Type Instance: 1
|
|
Bus Address: 0000:00:02.0
|
|
|
|
Handle 0x0040, DMI type 41, 11 bytes
|
|
Onboard Device
|
|
Reference Designation: Onboard LAN
|
|
Type: Ethernet
|
|
Status: Enabled
|
|
Type Instance: 1
|
|
Bus Address: 0000:00:19.0
|
|
|
|
Handle 0x0041, DMI type 41, 11 bytes
|
|
Onboard Device
|
|
Reference Designation: Onboard 1394
|
|
Type: Other
|
|
Status: Enabled
|
|
Type Instance: 1
|
|
Bus Address: 0000:03:1c.2
|
|
|
|
|
|
--- dmidecode -t bios
|
|
$ dmidecode -t bios
|
|
# dmidecode 3.6
|
|
Getting SMBIOS data from sysfs.
|
|
SMBIOS 3.0.0 present.
|
|
|
|
Handle 0x0000, DMI type 0, 24 bytes
|
|
BIOS Information
|
|
Vendor: Dell Inc.
|
|
Version: 1.31.3
|
|
Release Date: 03/09/2023
|
|
Address: 0xF0000
|
|
Runtime Size: 64 kB
|
|
ROM Size: 16 MB
|
|
Characteristics:
|
|
PCI is supported
|
|
PNP is supported
|
|
BIOS is upgradeable
|
|
BIOS shadowing is allowed
|
|
Boot from CD is supported
|
|
Selectable boot is supported
|
|
EDD is supported
|
|
5.25"/1.2 MB floppy services are supported (int 13h)
|
|
3.5"/720 kB floppy services are supported (int 13h)
|
|
3.5"/2.88 MB floppy services are supported (int 13h)
|
|
Print screen service is supported (int 5h)
|
|
8042 keyboard services are supported (int 9h)
|
|
Serial services are supported (int 14h)
|
|
Printer services are supported (int 17h)
|
|
ACPI is supported
|
|
USB legacy is supported
|
|
Smart battery is supported
|
|
BIOS boot specification is supported
|
|
Function key-initiated network boot is supported
|
|
Targeted content distribution is supported
|
|
UEFI is supported
|
|
BIOS Revision: 1.31
|
|
|
|
Handle 0xF03C, DMI type 13, 22 bytes
|
|
BIOS Language Information
|
|
Language Description Format: Long
|
|
Installable Languages: 2
|
|
en|US|iso8859-1
|
|
<BAD INDEX>
|
|
Currently Installed Language: en|US|iso8859-1
|
|
|
|
|
|
--- dmidecode -t chassis
|
|
$ dmidecode -t chassis
|
|
# dmidecode 3.6
|
|
Getting SMBIOS data from sysfs.
|
|
SMBIOS 3.0.0 present.
|
|
|
|
Handle 0x0003, DMI type 3, 22 bytes
|
|
Chassis Information
|
|
Manufacturer: Dell Inc.
|
|
Type: Laptop
|
|
Lock: Not Present
|
|
Version: Not Specified
|
|
Serial Number: HG537H2
|
|
Asset Tag: Not Specified
|
|
Boot-up State: Safe
|
|
Power Supply State: Safe
|
|
Thermal State: Safe
|
|
Security Status: None
|
|
OEM Information: 0x00000000
|
|
Height: Unspecified
|
|
Number Of Power Cords: 1
|
|
Contained Elements: 0
|
|
SKU Number: Laptop
|
|
|
|
|
|
--- dmidecode -t processor
|
|
$ dmidecode -t processor
|
|
# dmidecode 3.6
|
|
Getting SMBIOS data from sysfs.
|
|
SMBIOS 3.0.0 present.
|
|
|
|
Handle 0x0047, DMI type 4, 48 bytes
|
|
Processor Information
|
|
Socket Designation: U3E1
|
|
Type: Central Processor
|
|
Family: Xeon
|
|
Manufacturer: Intel(R) Corporation
|
|
ID: E3 06 05 00 FF FB EB BF
|
|
Signature: Type 0, Family 6, Model 94, Stepping 3
|
|
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 E3-1535M v5 @ 2.90GHz
|
|
Voltage: 0.9 V
|
|
External Clock: 100 MHz
|
|
Max Speed: 2900 MHz
|
|
Current Speed: 2900 MHz
|
|
Status: Populated, Enabled
|
|
Upgrade: Other
|
|
L1 Cache Handle: 0x0044
|
|
L2 Cache Handle: 0x0045
|
|
L3 Cache Handle: 0x0046
|
|
Serial Number: To Be Filled By O.E.M.
|
|
Asset Tag: To Be Filled By O.E.M.
|
|
Part Number: To Be Filled By O.E.M.
|
|
Core Count: 4
|
|
Core Enabled: 4
|
|
Thread Count: 8
|
|
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 3.0.0 present.
|
|
|
|
Handle 0x0048, DMI type 16, 23 bytes
|
|
Physical Memory Array
|
|
Location: System Board Or Motherboard
|
|
Use: System Memory
|
|
Error Correction Type: None
|
|
Maximum Capacity: 64 GB
|
|
Error Information Handle: Not Provided
|
|
Number Of Devices: 4
|
|
|
|
Handle 0x0049, DMI type 17, 40 bytes
|
|
Memory Device
|
|
Array Handle: 0x0048
|
|
Error Information Handle: Not Provided
|
|
Total Width: 64 bits
|
|
Data Width: 64 bits
|
|
Size: 8 GB
|
|
Form Factor: SODIMM
|
|
Set: None
|
|
Locator: ChannelA-DIMM0
|
|
Bank Locator: BANK 0
|
|
Type: DDR4
|
|
Type Detail: Synchronous
|
|
Speed: 2133 MT/s
|
|
Manufacturer: SK Hynix
|
|
Serial Number: 12161215
|
|
Asset Tag: 01171000
|
|
Part Number: HMA41GS6AFR8N-TF
|
|
Rank: 2
|
|
Configured Memory Speed: 2133 MT/s
|
|
Minimum Voltage: Unknown
|
|
Maximum Voltage: Unknown
|
|
Configured Voltage: 1.2 V
|
|
|
|
Handle 0x004A, DMI type 17, 40 bytes
|
|
Memory Device
|
|
Array Handle: 0x0048
|
|
Error Information Handle: Not Provided
|
|
Total Width: 64 bits
|
|
Data Width: 64 bits
|
|
Size: 8 GB
|
|
Form Factor: SODIMM
|
|
Set: None
|
|
Locator: ChannelB-DIMM0
|
|
Bank Locator: BANK 1
|
|
Type: DDR4
|
|
Type Detail: Synchronous
|
|
Speed: 2133 MT/s
|
|
Manufacturer: SK Hynix
|
|
Serial Number: 12121212
|
|
Asset Tag: 01171000
|
|
Part Number: HMA41GS6AFR8N-TF
|
|
Rank: 2
|
|
Configured Memory Speed: 2133 MT/s
|
|
Minimum Voltage: Unknown
|
|
Maximum Voltage: Unknown
|
|
Configured Voltage: 1.2 V
|
|
|
|
Handle 0x004B, DMI type 17, 40 bytes
|
|
Memory Device
|
|
Array Handle: 0x0048
|
|
Error Information Handle: Not Provided
|
|
Total Width: 64 bits
|
|
Data Width: 64 bits
|
|
Size: 8 GB
|
|
Form Factor: SODIMM
|
|
Set: None
|
|
Locator: ChannelB-DIMM1
|
|
Bank Locator: BANK 2
|
|
Type: DDR4
|
|
Type Detail: Synchronous
|
|
Speed: 2133 MT/s
|
|
Manufacturer: SK Hynix
|
|
Serial Number: 12121212
|
|
Asset Tag: 01171000
|
|
Part Number: HMA41GS6AFR8N-TF
|
|
Rank: 2
|
|
Configured Memory Speed: 2133 MT/s
|
|
Minimum Voltage: Unknown
|
|
Maximum Voltage: Unknown
|
|
Configured Voltage: 1.2 V
|
|
|
|
Handle 0x004C, DMI type 17, 40 bytes
|
|
Memory Device
|
|
Array Handle: 0x0048
|
|
Error Information Handle: Not Provided
|
|
Total Width: 64 bits
|
|
Data Width: 64 bits
|
|
Size: 8 GB
|
|
Form Factor: SODIMM
|
|
Set: None
|
|
Locator: ChannelA-DIMM1
|
|
Bank Locator: BANK 3
|
|
Type: DDR4
|
|
Type Detail: Synchronous
|
|
Speed: 2133 MT/s
|
|
Manufacturer: SK Hynix
|
|
Serial Number: 12121212
|
|
Asset Tag: 01171000
|
|
Part Number: HMA41GS6AFR8N-TF
|
|
Rank: 2
|
|
Configured Memory Speed: 2133 MT/s
|
|
Minimum Voltage: Unknown
|
|
Maximum Voltage: Unknown
|
|
Configured Voltage: 1.2 V
|
|
|
|
|
|
--- dmidecode -t cache
|
|
$ dmidecode -t cache
|
|
# dmidecode 3.6
|
|
Getting SMBIOS data from sysfs.
|
|
SMBIOS 3.0.0 present.
|
|
|
|
Handle 0x0043, DMI type 7, 19 bytes
|
|
Cache Information
|
|
Socket Designation: L1 Cache
|
|
Configuration: Enabled, Not Socketed, Level 1
|
|
Operational Mode: Write Back
|
|
Location: Internal
|
|
Installed Size: 128 kB
|
|
Maximum Size: 128 kB
|
|
Supported SRAM Types:
|
|
Synchronous
|
|
Installed SRAM Type: Synchronous
|
|
Speed: Unknown
|
|
Error Correction Type: Parity
|
|
System Type: Data
|
|
Associativity: 8-way Set-associative
|
|
|
|
Handle 0x0044, DMI type 7, 19 bytes
|
|
Cache Information
|
|
Socket Designation: L1 Cache
|
|
Configuration: Enabled, Not Socketed, Level 1
|
|
Operational Mode: Write Back
|
|
Location: Internal
|
|
Installed Size: 128 kB
|
|
Maximum Size: 128 kB
|
|
Supported SRAM Types:
|
|
Synchronous
|
|
Installed SRAM Type: Synchronous
|
|
Speed: Unknown
|
|
Error Correction Type: Parity
|
|
System Type: Instruction
|
|
Associativity: 8-way Set-associative
|
|
|
|
Handle 0x0045, DMI type 7, 19 bytes
|
|
Cache Information
|
|
Socket Designation: L2 Cache
|
|
Configuration: Enabled, Not Socketed, Level 2
|
|
Operational Mode: Write Back
|
|
Location: Internal
|
|
Installed Size: 1 MB
|
|
Maximum Size: 1 MB
|
|
Supported SRAM Types:
|
|
Synchronous
|
|
Installed SRAM Type: Synchronous
|
|
Speed: Unknown
|
|
Error Correction Type: Single-bit ECC
|
|
System Type: Unified
|
|
Associativity: 4-way Set-associative
|
|
|
|
Handle 0x0046, DMI type 7, 19 bytes
|
|
Cache Information
|
|
Socket Designation: L3 Cache
|
|
Configuration: Enabled, Not Socketed, Level 3
|
|
Operational Mode: Write Back
|
|
Location: Internal
|
|
Installed Size: 8 MB
|
|
Maximum Size: 8 MB
|
|
Supported SRAM Types:
|
|
Synchronous
|
|
Installed SRAM Type: Synchronous
|
|
Speed: Unknown
|
|
Error Correction Type: Multi-bit ECC
|
|
System Type: Unified
|
|
Associativity: 16-way Set-associative
|
|
|
|
|
|
--- dmidecode -t connector
|
|
$ dmidecode -t connector
|
|
# dmidecode 3.6
|
|
Getting SMBIOS data from sysfs.
|
|
SMBIOS 3.0.0 present.
|
|
|
|
Handle 0x0004, DMI type 8, 9 bytes
|
|
Port Connector Information
|
|
Internal Reference Designator: JDOCK1
|
|
Internal Connector Type: None
|
|
External Reference Designator: DOCK
|
|
External Connector Type: Other
|
|
Port Type: None
|
|
|
|
Handle 0x0005, DMI type 8, 9 bytes
|
|
Port Connector Information
|
|
Internal Reference Designator: JCRT1
|
|
Internal Connector Type: None
|
|
External Reference Designator: CRT
|
|
External Connector Type: Other
|
|
Port Type: Video Port
|
|
|
|
Handle 0x0006, DMI type 8, 9 bytes
|
|
Port Connector Information
|
|
Internal Reference Designator: JHDMI
|
|
Internal Connector Type: None
|
|
External Reference Designator: HDMI
|
|
External Connector Type: Other
|
|
Port Type: Video Port
|
|
|
|
Handle 0x0007, DMI type 8, 9 bytes
|
|
Port Connector Information
|
|
Internal Reference Designator: JSD1
|
|
Internal Connector Type: None
|
|
External Reference Designator: Cardreader
|
|
External Connector Type: Other
|
|
Port Type: None
|
|
|
|
Handle 0x0008, DMI type 8, 9 bytes
|
|
Port Connector Information
|
|
Internal Reference Designator: JLOM1
|
|
Internal Connector Type: None
|
|
External Reference Designator: Network
|
|
External Connector Type: RJ-45
|
|
Port Type: Network Port
|
|
|
|
Handle 0x0009, DMI type 8, 9 bytes
|
|
Port Connector Information
|
|
Internal Reference Designator: JUSB1
|
|
Internal Connector Type: None
|
|
External Reference Designator: USB1
|
|
External Connector Type: Access Bus (USB)
|
|
Port Type: USB
|
|
|
|
Handle 0x000A, DMI type 8, 9 bytes
|
|
Port Connector Information
|
|
Internal Reference Designator: JUSB2
|
|
Internal Connector Type: None
|
|
External Reference Designator: USB2
|
|
External Connector Type: Access Bus (USB)
|
|
Port Type: USB
|
|
|
|
Handle 0x000B, DMI type 8, 9 bytes
|
|
Port Connector Information
|
|
Internal Reference Designator: JUSB3
|
|
Internal Connector Type: None
|
|
External Reference Designator: USB3
|
|
External Connector Type: Access Bus (USB)
|
|
Port Type: USB
|
|
|
|
Handle 0x000C, DMI type 8, 9 bytes
|
|
Port Connector Information
|
|
Internal Reference Designator: JHP1
|
|
Internal Connector Type: None
|
|
External Reference Designator: Audio Jack
|
|
External Connector Type: Mini Jack (headphones)
|
|
Port Type: Audio Port
|
|
|
|
Handle 0x000D, DMI type 8, 9 bytes
|
|
Port Connector Information
|
|
Internal Reference Designator: JSIM1
|
|
Internal Connector Type: None
|
|
External Reference Designator: SIM Card
|
|
External Connector Type: Other
|
|
Port Type: Other
|
|
|
|
Handle 0x000E, DMI type 8, 9 bytes
|
|
Port Connector Information
|
|
Internal Reference Designator: JUSB4
|
|
Internal Connector Type: None
|
|
External Reference Designator: USB4
|
|
External Connector Type: Access Bus (USB)
|
|
Port Type: USB
|
|
|
|
Handle 0x000F, DMI type 8, 9 bytes
|
|
Port Connector Information
|
|
Internal Reference Designator: JEDP1
|
|
Internal Connector Type: None
|
|
External Reference Designator: Camera
|
|
External Connector Type: Other
|
|
Port Type: Other
|
|
|
|
Handle 0x0010, DMI type 8, 9 bytes
|
|
Port Connector Information
|
|
Internal Reference Designator: JFP1
|
|
Internal Connector Type: None
|
|
External Reference Designator: Finger Print sensor
|
|
External Connector Type: Other
|
|
Port Type: Other
|
|
|
|
Handle 0x0011, DMI type 8, 9 bytes
|
|
Port Connector Information
|
|
Internal Reference Designator: JSC1
|
|
Internal Connector Type: None
|
|
External Reference Designator: Smart Card
|
|
External Connector Type: Other
|
|
Port Type: Other
|
|
|
|
Handle 0x0012, DMI type 8, 9 bytes
|
|
Port Connector Information
|
|
Internal Reference Designator: JeDP1 - eDP
|
|
Internal Connector Type: None
|
|
External Reference Designator: Not Specified
|
|
External Connector Type: None
|
|
Port Type: Other
|
|
|
|
Handle 0x0013, DMI type 8, 9 bytes
|
|
Port Connector Information
|
|
Internal Reference Designator: JNGFF1 - WLAN/BT/Wigig CONN
|
|
Internal Connector Type: None
|
|
External Reference Designator: Not Specified
|
|
External Connector Type: None
|
|
Port Type: Other
|
|
|
|
Handle 0x0014, DMI type 8, 9 bytes
|
|
Port Connector Information
|
|
Internal Reference Designator: JNGFF2 - WLAN/LTE CONN
|
|
Internal Connector Type: None
|
|
External Reference Designator: Not Specified
|
|
External Connector Type: None
|
|
Port Type: Other
|
|
|
|
Handle 0x0015, DMI type 8, 9 bytes
|
|
Port Connector Information
|
|
Internal Reference Designator: JNGFF3 - HDD
|
|
Internal Connector Type: None
|
|
External Reference Designator: Not Specified
|
|
External Connector Type: None
|
|
Port Type: Other
|
|
|
|
Handle 0x0016, DMI type 8, 9 bytes
|
|
Port Connector Information
|
|
Internal Reference Designator: JKBTP1 - Keyboard
|
|
Internal Connector Type: None
|
|
External Reference Designator: Not Specified
|
|
External Connector Type: None
|
|
Port Type: Keyboard Port
|
|
|
|
Handle 0x0017, DMI type 8, 9 bytes
|
|
Port Connector Information
|
|
Internal Reference Designator: JFAN1 - CPU FAN
|
|
Internal Connector Type: None
|
|
External Reference Designator: Not Specified
|
|
External Connector Type: None
|
|
Port Type: Other
|
|
|
|
Handle 0x0018, DMI type 8, 9 bytes
|
|
Port Connector Information
|
|
Internal Reference Designator: JUSH1 - USH CONN
|
|
Internal Connector Type: None
|
|
External Reference Designator: Not Specified
|
|
External Connector Type: None
|
|
Port Type: Other
|
|
|
|
Handle 0x0019, DMI type 8, 9 bytes
|
|
Port Connector Information
|
|
Internal Reference Designator: JSPK1 - Speaker
|
|
Internal Connector Type: Mini Jack (headphones)
|
|
External Reference Designator: Not Specified
|
|
External Connector Type: None
|
|
Port Type: Audio Port
|
|
|
|
Handle 0x001A, DMI type 8, 9 bytes
|
|
Port Connector Information
|
|
Internal Reference Designator: JXDP1 - CPU XDP Port
|
|
Internal Connector Type: None
|
|
External Reference Designator: Not Specified
|
|
External Connector Type: None
|
|
Port Type: Other
|
|
|
|
Handle 0x001B, DMI type 8, 9 bytes
|
|
Port Connector Information
|
|
Internal Reference Designator: JAPS1 - Automatic Power
|
|
Internal Connector Type: None
|
|
External Reference Designator: Not Specified
|
|
External Connector Type: None
|
|
Port Type: Other
|
|
|
|
Handle 0x001C, DMI type 8, 9 bytes
|
|
Port Connector Information
|
|
Internal Reference Designator: JSPI1 - SPI PORT
|
|
Internal Connector Type: None
|
|
External Reference Designator: Not Specified
|
|
External Connector Type: None
|
|
Port Type: Other
|
|
|
|
Handle 0x001D, DMI type 8, 9 bytes
|
|
Port Connector Information
|
|
Internal Reference Designator: JLPDE1 - 80 PORT
|
|
Internal Connector Type: None
|
|
External Reference Designator: Not Specified
|
|
External Connector Type: None
|
|
Port Type: Other
|
|
|
|
Handle 0x001E, DMI type 8, 9 bytes
|
|
Port Connector Information
|
|
Internal Reference Designator: JDEG1 - Debug PORT
|
|
Internal Connector Type: None
|
|
External Reference Designator: Not Specified
|
|
External Connector Type: None
|
|
Port Type: Other
|
|
|
|
Handle 0x001F, DMI type 8, 9 bytes
|
|
Port Connector Information
|
|
Internal Reference Designator: JLED1 - LED
|
|
Internal Connector Type: None
|
|
External Reference Designator: Not Specified
|
|
External Connector Type: None
|
|
Port Type: Other
|
|
|
|
Handle 0x0020, DMI type 8, 9 bytes
|
|
Port Connector Information
|
|
Internal Reference Designator: JRTC1 - RTC
|
|
Internal Connector Type: None
|
|
External Reference Designator: Not Specified
|
|
External Connector Type: None
|
|
Port Type: Other
|
|
|
|
Handle 0x0021, DMI type 8, 9 bytes
|
|
Port Connector Information
|
|
Internal Reference Designator: JCS1 - RFID/NFC
|
|
Internal Connector Type: None
|
|
External Reference Designator: Not Specified
|
|
External Connector Type: None
|
|
Port Type: Other
|
|
|
|
Handle 0x0022, DMI type 8, 9 bytes
|
|
Port Connector Information
|
|
Internal Reference Designator: JSATA1 - SATA3 CONN
|
|
Internal Connector Type: SAS/SATA Plug Receptacle
|
|
External Reference Designator: Not Specified
|
|
External Connector Type: None
|
|
Port Type: SATA
|
|
|
|
|
|
--- dmidecode -t slot
|
|
$ dmidecode -t slot
|
|
# dmidecode 3.6
|
|
Getting SMBIOS data from sysfs.
|
|
SMBIOS 3.0.0 present.
|
|
|
|
Handle 0x0023, DMI type 9, 17 bytes
|
|
System Slot Information
|
|
Designation: J6B2
|
|
Type: PCI Express
|
|
Data Bus Width: 16x or x16
|
|
Current Usage: In Use
|
|
Length: Long
|
|
ID: 0
|
|
Characteristics:
|
|
3.3 V is provided
|
|
Opening is shared
|
|
PME signal is supported
|
|
Bus Address: 0000:00:01.0
|
|
|
|
Handle 0x0024, DMI type 9, 17 bytes
|
|
System Slot Information
|
|
Designation: J6B1
|
|
Type: PCI Express
|
|
Data Bus Width: 1x or x1
|
|
Current Usage: In Use
|
|
Length: Short
|
|
ID: 1
|
|
Characteristics:
|
|
3.3 V is provided
|
|
Opening is shared
|
|
PME signal is supported
|
|
Bus Address: 0000:00:1c.3
|
|
|
|
Handle 0x0025, DMI type 9, 17 bytes
|
|
System Slot Information
|
|
Designation: J6D1
|
|
Type: PCI Express
|
|
Data Bus Width: 1x or x1
|
|
Current Usage: In Use
|
|
Length: Short
|
|
ID: 2
|
|
Characteristics:
|
|
3.3 V is provided
|
|
Opening is shared
|
|
PME signal is supported
|
|
Bus Address: 0000:00:1c.4
|
|
|
|
Handle 0x0026, DMI type 9, 17 bytes
|
|
System Slot Information
|
|
Designation: J7B1
|
|
Type: PCI Express
|
|
Data Bus Width: 1x or x1
|
|
Current Usage: In Use
|
|
Length: Short
|
|
ID: 3
|
|
Characteristics:
|
|
3.3 V is provided
|
|
Opening is shared
|
|
PME signal is supported
|
|
Bus Address: 0000:00:1c.5
|
|
|
|
Handle 0x0027, DMI type 9, 17 bytes
|
|
System Slot Information
|
|
Designation: J8B4
|
|
Type: PCI Express
|
|
Data Bus Width: 1x or x1
|
|
Current Usage: In Use
|
|
Length: Short
|
|
ID: 4
|
|
Characteristics:
|
|
3.3 V is provided
|
|
Opening is shared
|
|
PME signal is supported
|
|
Bus Address: 0000:00:1c.6
|
|
|
|
|
|
--- lscpu
|
|
$ lscpu
|
|
Architecture: x86_64
|
|
CPU op-mode(s): 32-bit, 64-bit
|
|
Address sizes: 39 bits physical, 48 bits virtual
|
|
Byte Order: Little Endian
|
|
CPU(s): 8
|
|
On-line CPU(s) list: 0-7
|
|
Vendor ID: GenuineIntel
|
|
Model name: Intel(R) Xeon(R) CPU E3-1535M v5 @ 2.90GHz
|
|
CPU family: 6
|
|
Model: 94
|
|
Thread(s) per core: 2
|
|
Core(s) per socket: 4
|
|
Socket(s): 1
|
|
Stepping: 3
|
|
CPU(s) scaling MHz: 91%
|
|
CPU max MHz: 3800.0000
|
|
CPU min MHz: 800.0000
|
|
BogoMIPS: 5799.77
|
|
Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc art arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm 3dnowprefetch cpuid_fault epb pti ssbd ibrs ibpb stibp tpr_shadow flexpriority ept vpid ept_ad fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid mpx rdseed adx smap clflushopt intel_pt xsaveopt xsavec xgetbv1 xsaves dtherm ida arat pln pts hwp hwp_notify hwp_act_window hwp_epp vnmi md_clear flush_l1d arch_capabilities
|
|
Virtualization: VT-x
|
|
L1d cache: 128 KiB (4 instances)
|
|
L1i cache: 128 KiB (4 instances)
|
|
L2 cache: 1 MiB (4 instances)
|
|
L3 cache: 8 MiB (1 instance)
|
|
NUMA node(s): 1
|
|
NUMA node0 CPU(s): 0-7
|
|
Vulnerability Gather data sampling: Vulnerable: No microcode
|
|
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: Mitigation; Clear CPU buffers; SMT vulnerable
|
|
Vulnerability Old microcode: Not affected
|
|
Vulnerability Reg file data sampling: Not affected
|
|
Vulnerability Retbleed: Mitigation; IBRS
|
|
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; IBRS; IBPB conditional; STIBP conditional; RSB filling; PBRSB-eIBRS Not affected; BHI Not affected
|
|
Vulnerability Srbds: Mitigation; Microcode
|
|
Vulnerability Tsa: Not affected
|
|
Vulnerability Tsx async abort: Mitigation; TSX disabled
|
|
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 128K 8 Data 1 64 1 64
|
|
L1i 32K 128K 8 Instruction 1 64 1 64
|
|
L2 256K 1M 4 Unified 2 1024 1 64
|
|
L3 8M 8M 16 Unified 3 8192 1 64
|
|
|
|
--- numactl --hardware
|
|
$ numactl --hardware
|
|
available: 1 nodes (0)
|
|
node 0 cpus: 0 1 2 3 4 5 6 7
|
|
node 0 size: 31806 MB
|
|
node 0 free: 28082 MB
|
|
node distances:
|
|
node 0
|
|
0: 10
|
|
|
|
--- numactl --show
|
|
$ numactl --show
|
|
policy: default
|
|
preferred node: current
|
|
physcpubind: 0 1 2 3 4 5 6 7
|
|
cpubind: 0
|
|
nodebind: 0
|
|
membind: 0
|
|
preferred:
|
|
|
|
--- lspci -nnvv (verbose)
|
|
$ lspci -nnvv
|
|
00:00.0 Host bridge [0600]: Intel Corporation Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor Host Bridge/DRAM Registers [8086:1918] (rev 07)
|
|
Subsystem: Dell Device [1028:06d9]
|
|
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
|
|
IOMMU group: 0
|
|
Capabilities: [e0] Vendor Specific Information: Len=10 <?>
|
|
Kernel driver in use: skl_uncore
|
|
Kernel modules: ie31200_edac
|
|
|
|
00:01.0 PCI bridge [0604]: Intel Corporation 6th-10th Gen Core Processor PCIe Controller (x16) [8086:1901] (rev 07) (prog-if 00 [Normal decode])
|
|
Subsystem: Dell Device [1028:06d9]
|
|
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
|
|
Interrupt: pin A routed to IRQ 121
|
|
IOMMU group: 1
|
|
Bus: primary=00, secondary=01, subordinate=01, sec-latency=0
|
|
I/O behind bridge: e000-efff [size=4K] [16-bit]
|
|
Memory behind bridge: de000000-df0fffff [size=17M] [32-bit]
|
|
Prefetchable memory behind bridge: c0000000-d1ffffff [size=288M] [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: [88] Subsystem: Dell Device [1028:06d9]
|
|
Capabilities: [80] 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: [90] MSI: Enable+ Count=1/1 Maskable- 64bit-
|
|
Address: fee00238 Data: 0000
|
|
Capabilities: [a0] 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 x16, ASPM L0s L1, Exit Latency L0s <256ns, L1 <8us
|
|
ClockPM- Surprise- LLActRep- BwNot+ ASPMOptComp+
|
|
LnkCtl: ASPM Disabled; RCB 64 bytes, LnkDisable- CommClk+
|
|
ExtSynch- ClockPM- AutWidDis- BWInt+ AutBWInt+
|
|
LnkSta: Speed 2.5GT/s, Width x16
|
|
TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
|
|
SltCap: AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
|
|
Slot #1, PowerLimit 75W; Interlock- NoCompl+
|
|
SltCtl: Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
|
|
Control: AttnInd Unknown, PwrInd Unknown, 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: Not Supported, TimeoutDis- NROPrPrP- LTR+
|
|
10BitTagComp- 10BitTagReq- OBFF Via WAKE#, 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 Via WAKE#, 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: [100 v1] Virtual Channel
|
|
Caps: LPEVC=0 RefClk=100ns PATEntryBits=1
|
|
Arb: Fixed- WRR32- WRR64- WRR128-
|
|
Ctrl: ArbSelect=Fixed
|
|
Status: InProgress-
|
|
VC0: Caps: PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
|
|
Arb: Fixed+ WRR32- WRR64- WRR128- TWRR128- WRR256-
|
|
Ctrl: Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
|
|
Status: NegoPending- InProgress-
|
|
Capabilities: [140 v1] Root Complex Link
|
|
Desc: PortNumber=02 ComponentID=01 EltType=Config
|
|
Link0: Desc: TargetPort=00 TargetComponent=01 AssocRCRB- LinkType=MemMapped LinkValid+
|
|
Addr: 00000000fed19000
|
|
Capabilities: [1c0 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: [d94 v1] Secondary PCI Express
|
|
LnkCtl3: LnkEquIntrruptEn- PerformEqu-
|
|
LaneErrStat: 0
|
|
Kernel driver in use: pcieport
|
|
Kernel modules: shpchp
|
|
|
|
00:04.0 Signal processing controller [1180]: Intel Corporation Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor Thermal Subsystem [8086:1903] (rev 07)
|
|
Subsystem: Dell Device [1028:06d9]
|
|
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
|
|
Interrupt: pin A routed to IRQ 16
|
|
IOMMU group: 2
|
|
Region 0: Memory at dfd40000 (64-bit, non-prefetchable) [size=32K]
|
|
Capabilities: [90] MSI: Enable- Count=1/1 Maskable- 64bit-
|
|
Address: 00000000 Data: 0000
|
|
Capabilities: [d0] 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: [e0] Vendor Specific Information: Len=0c <?>
|
|
Kernel driver in use: proc_thermal
|
|
Kernel modules: processor_thermal_device_pci_legacy
|
|
|
|
00:14.0 USB controller [0c03]: Intel Corporation 100 Series/C230 Series Chipset Family USB 3.0 xHCI Controller [8086:a12f] (rev 31) (prog-if 30 [XHCI])
|
|
Subsystem: Dell Device [1028:06d9]
|
|
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 128
|
|
IOMMU group: 3
|
|
Region 0: Memory at dfd30000 (64-bit, non-prefetchable) [size=64K]
|
|
Capabilities: [70] 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: [80] MSI: Enable+ Count=8/8 Maskable- 64bit+
|
|
Address: 00000000fee00418 Data: 0000
|
|
Kernel driver in use: xhci_hcd
|
|
Kernel modules: xhci_pci
|
|
|
|
00:14.2 Signal processing controller [1180]: Intel Corporation 100 Series/C230 Series Chipset Family Thermal Subsystem [8086:a131] (rev 31)
|
|
Subsystem: Dell Device [1028:06d9]
|
|
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
|
|
Interrupt: pin C routed to IRQ 18
|
|
IOMMU group: 3
|
|
Region 0: Memory at dfd56000 (64-bit, non-prefetchable) [size=4K]
|
|
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: [80] MSI: Enable- Count=1/1 Maskable- 64bit-
|
|
Address: 00000000 Data: 0000
|
|
Kernel driver in use: intel_pch_thermal
|
|
Kernel modules: intel_pch_thermal
|
|
|
|
00:16.0 Communication controller [0780]: Intel Corporation 100 Series/C230 Series Chipset Family MEI Controller #1 [8086:a13a] (rev 31)
|
|
Subsystem: Dell Device [1028:06d9]
|
|
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
|
|
Interrupt: pin A routed to IRQ 144
|
|
IOMMU group: 4
|
|
Region 0: Memory at dfd55000 (64-bit, non-prefetchable) [size=4K]
|
|
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: 00000000fee00538 Data: 0000
|
|
Kernel driver in use: mei_me
|
|
Kernel modules: mei_me
|
|
|
|
00:17.0 RAID bus controller [0104]: Intel Corporation SATA Controller [RAID mode] [8086:2822] (rev 31) (prog-if 00 [Vendor specific])
|
|
Subsystem: Dell Device [1028:06d9]
|
|
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 126
|
|
IOMMU group: 5
|
|
Region 0: Memory at dfd50000 (32-bit, non-prefetchable) [size=8K]
|
|
Region 1: Memory at dfd54000 (32-bit, non-prefetchable) [size=256]
|
|
Region 2: I/O ports at f050 [size=8]
|
|
Region 3: I/O ports at f040 [size=4]
|
|
Region 4: I/O ports at f020 [size=32]
|
|
Region 5: Memory at dfd53000 (32-bit, non-prefetchable) [size=2K]
|
|
Capabilities: [80] MSI: Enable+ Count=1/1 Maskable- 64bit-
|
|
Address: fee002f8 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
|
|
Kernel driver in use: ahci
|
|
Kernel modules: ahci
|
|
|
|
00:1c.0 PCI bridge [0604]: Intel Corporation 100 Series/C230 Series Chipset Family PCI Express Root Port #3 [8086:a112] (rev f1) (prog-if 00 [Normal decode])
|
|
Subsystem: Dell Device [1028:06d9]
|
|
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
|
|
Interrupt: pin C routed to IRQ 122
|
|
IOMMU group: 6
|
|
Bus: primary=00, secondary=02, subordinate=02, sec-latency=0
|
|
I/O behind bridge: [disabled] [16-bit]
|
|
Memory behind bridge: dfc00000-dfcfffff [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] Express (v2) Root Port (Slot+), IntMsgNum 0
|
|
DevCap: MaxPayload 256 bytes, PhantFunc 0
|
|
ExtTag- RBE+ TEE-IO-
|
|
DevCtl: CorrErr+ NonFatalErr+ FatalErr+ UnsupReq+
|
|
RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
|
|
MaxPayload 256 bytes, MaxReadReq 128 bytes
|
|
DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
|
|
LnkCap: Port #3, Speed 8GT/s, Width x1, ASPM L0s L1, Exit Latency L0s <1us, L1 <16us
|
|
ClockPM- Surprise- LLActRep+ BwNot+ ASPMOptComp+
|
|
LnkCtl: ASPM L0s L1 Enabled; RCB 64 bytes, LnkDisable- CommClk+
|
|
ExtSynch- ClockPM- AutWidDis- BWInt+ AutBWInt+
|
|
LnkSta: Speed 5GT/s, Width x1
|
|
TrErr- Train- SlotClk+ DLActive+ BWMgmt- ABWMgmt-
|
|
SltCap: AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
|
|
Slot #6, PowerLimit 10W; Interlock- NoCompl+
|
|
SltCtl: Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
|
|
Control: AttnInd Unknown, PwrInd Unknown, 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 ABC, 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-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: [80] MSI: Enable+ Count=1/1 Maskable- 64bit-
|
|
Address: fee00278 Data: 0000
|
|
Capabilities: [90] Subsystem: Dell Device [1028:06d9]
|
|
Capabilities: [a0] Power Management version 3
|
|
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
|
|
Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
|
|
Capabilities: [100 v1] Advanced Error Reporting
|
|
UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
UEMsk: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt+ RxOF- MalfTLP-
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
UESvrt: DLP+ SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
CESta: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr- CorrIntErr- HeaderOF-
|
|
CEMsk: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+ CorrIntErr- HeaderOF-
|
|
AERCap: First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
|
|
MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
|
|
HeaderLog: 00000000 00000000 00000000 00000000
|
|
RootCmd: CERptEn+ NFERptEn+ FERptEn+
|
|
RootSta: CERcvd- MultCERcvd- UERcvd- MultUERcvd-
|
|
FirstFatal- NonFatalMsg- FatalMsg- IntMsgNum 0
|
|
ErrorSrc: ERR_COR: 0000 ERR_FATAL/NONFATAL: 0000
|
|
Capabilities: [140 v1] Access Control Services
|
|
ACSCap: SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd- EgressCtrl- DirectTrans-
|
|
ACSCtl: SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
|
|
Capabilities: [220 v1] Secondary PCI Express
|
|
LnkCtl3: LnkEquIntrruptEn- PerformEqu-
|
|
LaneErrStat: 0
|
|
Kernel driver in use: pcieport
|
|
Kernel modules: shpchp
|
|
|
|
00:1c.4 PCI bridge [0604]: Intel Corporation 100 Series/C230 Series Chipset Family PCI Express Root Port #5 [8086:a114] (rev f1) (prog-if 00 [Normal decode])
|
|
Subsystem: Dell Device [1028:06d9]
|
|
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
|
|
Interrupt: pin A routed to IRQ 123
|
|
IOMMU group: 7
|
|
Bus: primary=00, secondary=03, subordinate=03, sec-latency=0
|
|
I/O behind bridge: d000-dfff [size=4K] [16-bit]
|
|
Memory behind bridge: df100000-dfafffff [size=10M] [32-bit]
|
|
Prefetchable memory behind bridge: d2100000-d2afffff [size=10M] [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 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 x4, 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 x0
|
|
TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
|
|
SltCap: AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+
|
|
Slot #8, PowerLimit 25W; Interlock- NoCompl+
|
|
SltCtl: Enable: AttnBtn- PwrFlt- MRL- PresDet+ CmdCplt- HPIrq+ LinkChg+
|
|
Control: AttnInd Unknown, PwrInd Unknown, 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 ABC, 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-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: -3.5dB, EqualizationComplete- EqualizationPhase1-
|
|
EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
|
|
Retimer- 2Retimers- CrosslinkRes: unsupported
|
|
Capabilities: [80] MSI: Enable+ Count=1/1 Maskable- 64bit-
|
|
Address: fee00298 Data: 0000
|
|
Capabilities: [90] Subsystem: Dell Device [1028:06d9]
|
|
Capabilities: [a0] Power Management version 3
|
|
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
|
|
Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
|
|
Capabilities: [100 v1] Advanced Error Reporting
|
|
UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
UEMsk: DLP- SDES- TLP- FCP- CmpltTO+ CmpltAbrt- UnxCmplt+ RxOF- MalfTLP-
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
UESvrt: DLP+ SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
CESta: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr- CorrIntErr- HeaderOF-
|
|
CEMsk: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+ CorrIntErr- HeaderOF-
|
|
AERCap: First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
|
|
MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
|
|
HeaderLog: 00000000 00000000 00000000 00000000
|
|
RootCmd: CERptEn+ NFERptEn+ FERptEn+
|
|
RootSta: CERcvd- MultCERcvd- UERcvd- MultUERcvd-
|
|
FirstFatal- NonFatalMsg- FatalMsg- IntMsgNum 0
|
|
ErrorSrc: ERR_COR: 0000 ERR_FATAL/NONFATAL: 0000
|
|
Capabilities: [140 v1] Access Control Services
|
|
ACSCap: SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd- EgressCtrl- DirectTrans-
|
|
ACSCtl: SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
|
|
Capabilities: [220 v1] Secondary PCI Express
|
|
LnkCtl3: LnkEquIntrruptEn- PerformEqu-
|
|
LaneErrStat: 0
|
|
Kernel driver in use: pcieport
|
|
Kernel modules: shpchp
|
|
|
|
00:1d.0 PCI bridge [0604]: Intel Corporation 100 Series/C230 Series Chipset Family PCI Express Root Port #9 [8086:a118] (rev f1) (prog-if 00 [Normal decode])
|
|
Subsystem: Dell Device [1028:06d9]
|
|
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
|
|
Interrupt: pin A routed to IRQ 124
|
|
IOMMU group: 8
|
|
Bus: primary=00, secondary=04, subordinate=04, sec-latency=0
|
|
I/O behind bridge: [disabled] [16-bit]
|
|
Memory behind bridge: dfb00000-dfbfffff [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] 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 #9, Speed 8GT/s, Width x4, ASPM L1, Exit Latency L1 <16us
|
|
ClockPM- Surprise- LLActRep+ BwNot+ ASPMOptComp+
|
|
LnkCtl: ASPM L1 Enabled; RCB 64 bytes, LnkDisable- CommClk+
|
|
ExtSynch- ClockPM- AutWidDis- BWInt+ AutBWInt+
|
|
LnkSta: Speed 8GT/s, Width x4
|
|
TrErr- Train- SlotClk+ DLActive+ BWMgmt- ABWMgmt-
|
|
SltCap: AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
|
|
Slot #12, PowerLimit 25W; Interlock- NoCompl+
|
|
SltCtl: Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
|
|
Control: AttnInd Unknown, PwrInd Unknown, 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 ABC, 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-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: -3.5dB, EqualizationComplete+ EqualizationPhase1+
|
|
EqualizationPhase2+ EqualizationPhase3+ LinkEqualizationRequest-
|
|
Retimer- 2Retimers- CrosslinkRes: unsupported
|
|
Capabilities: [80] MSI: Enable+ Count=1/1 Maskable- 64bit-
|
|
Address: fee002b8 Data: 0000
|
|
Capabilities: [90] Subsystem: Dell Device [1028:06d9]
|
|
Capabilities: [a0] Power Management version 3
|
|
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
|
|
Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
|
|
Capabilities: [100 v1] Advanced Error Reporting
|
|
UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
UEMsk: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt+ RxOF- MalfTLP-
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
UESvrt: DLP+ SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
CESta: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr- CorrIntErr- HeaderOF-
|
|
CEMsk: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+ CorrIntErr- HeaderOF-
|
|
AERCap: First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
|
|
MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
|
|
HeaderLog: 00000000 00000000 00000000 00000000
|
|
RootCmd: CERptEn+ NFERptEn+ FERptEn+
|
|
RootSta: CERcvd- MultCERcvd- UERcvd- MultUERcvd-
|
|
FirstFatal- NonFatalMsg- FatalMsg- IntMsgNum 0
|
|
ErrorSrc: ERR_COR: 0000 ERR_FATAL/NONFATAL: 0000
|
|
Capabilities: [140 v1] Access Control Services
|
|
ACSCap: SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd- EgressCtrl- DirectTrans-
|
|
ACSCtl: SrcValid- TransBlk- ReqRedir- CmpltRedir- UpstreamFwd- EgressCtrl- DirectTrans-
|
|
Capabilities: [220 v1] Secondary PCI Express
|
|
LnkCtl3: LnkEquIntrruptEn- PerformEqu-
|
|
LaneErrStat: 0
|
|
Kernel driver in use: pcieport
|
|
Kernel modules: shpchp
|
|
|
|
00:1f.0 ISA bridge [0601]: Intel Corporation CM236 Chipset LPC/eSPI Controller [8086:a150] (rev 31)
|
|
Subsystem: Dell Device [1028:06d9]
|
|
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
|
|
IOMMU group: 9
|
|
|
|
00:1f.2 Memory controller [0580]: Intel Corporation 100 Series/C230 Series Chipset Family Power Management Controller [8086:a121] (rev 31)
|
|
Subsystem: Dell Device [1028:06d9]
|
|
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
|
|
IOMMU group: 9
|
|
Region 0: Memory at dfd4c000 (32-bit, non-prefetchable) [size=16K]
|
|
|
|
00:1f.3 Audio device [0403]: Intel Corporation 100 Series/C230 Series Chipset Family HD Audio Controller [8086:a170] (rev 31) (prog-if 00 [HDA compatible])
|
|
Subsystem: Dell Device [1028:06d9]
|
|
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: 32
|
|
Interrupt: pin A routed to IRQ 145
|
|
IOMMU group: 9
|
|
Region 0: Memory at dfd48000 (64-bit, non-prefetchable) [size=16K]
|
|
Region 4: Memory at dfd20000 (64-bit, non-prefetchable) [size=64K]
|
|
Capabilities: [50] Power Management version 3
|
|
Flags: PMEClk- DSI- D1- D2- AuxCurrent=55mA PME(D0-,D1-,D2-,D3hot+,D3cold+)
|
|
Status: D3 NoSoftRst+ PME-Enable+ DSel=0 DScale=0 PME-
|
|
Capabilities: [60] MSI: Enable+ Count=1/1 Maskable- 64bit+
|
|
Address: 00000000fee00578 Data: 0000
|
|
Kernel driver in use: snd_hda_intel
|
|
Kernel modules: snd_soc_avs, snd_hda_intel
|
|
|
|
00:1f.4 SMBus [0c05]: Intel Corporation 100 Series/C230 Series Chipset Family SMBus [8086:a123] (rev 31)
|
|
Subsystem: Dell Device [1028:06d9]
|
|
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-
|
|
Interrupt: pin A routed to IRQ 16
|
|
IOMMU group: 9
|
|
Region 0: Memory at dfd52000 (64-bit, non-prefetchable) [size=256]
|
|
Region 4: I/O ports at f000 [size=32]
|
|
Kernel driver in use: i801_smbus
|
|
Kernel modules: i2c_i801
|
|
|
|
00:1f.6 Ethernet controller [0200]: Intel Corporation Ethernet Connection (2) I219-LM [8086:15b7] (rev 31)
|
|
Subsystem: Dell Device [1028:06d9]
|
|
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
|
|
Interrupt: pin A routed to IRQ 127
|
|
IOMMU group: 10
|
|
Region 0: Memory at dfd00000 (32-bit, non-prefetchable) [size=128K]
|
|
Capabilities: [c8] 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: [d0] MSI: Enable+ Count=1/1 Maskable- 64bit+
|
|
Address: 00000000fee00318 Data: 0000
|
|
Capabilities: [e0] PCI Advanced Features
|
|
AFCap: TP+ FLR+
|
|
AFCtrl: FLR-
|
|
AFStatus: TP-
|
|
Kernel driver in use: e1000e
|
|
Kernel modules: e1000e
|
|
|
|
01:00.0 VGA compatible controller [0300]: NVIDIA Corporation GM107GLM [Quadro M2000M] [10de:13b0] (rev a2) (prog-if 00 [VGA controller])
|
|
Subsystem: Dell Device [1028:16d9]
|
|
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
|
|
Interrupt: pin A routed to IRQ 11
|
|
IOMMU group: 1
|
|
Region 0: Memory at de000000 (32-bit, non-prefetchable) [size=16M]
|
|
Region 1: Memory at c0000000 (64-bit, prefetchable) [size=256M]
|
|
Region 3: Memory at d0000000 (64-bit, prefetchable) [size=32M]
|
|
Region 5: I/O ports at e000 [size=128]
|
|
Expansion ROM at 000c0000 [disabled] [size=128K]
|
|
Capabilities: [60] 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: [68] MSI: Enable- Count=1/1 Maskable- 64bit+
|
|
Address: 0000000000000000 Data: 0000
|
|
Capabilities: [78] Express (v2) Legacy Endpoint, IntMsgNum 0
|
|
DevCap: MaxPayload 256 bytes, PhantFunc 0, Latency L0s unlimited, L1 <64us
|
|
ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset- TEE-IO-
|
|
DevCtl: CorrErr- NonFatalErr- FatalErr- UnsupReq-
|
|
RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
|
|
MaxPayload 256 bytes, MaxReadReq 512 bytes
|
|
DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
|
|
LnkCap: Port #0, Speed 8GT/s, Width x16, 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 (downgraded), Width x16
|
|
TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
|
|
DevCap2: Completion Timeout: Range AB, TimeoutDis+ NROPrPrP- LTR+
|
|
10BitTagComp- 10BitTagReq- OBFF Via message, ExtFmt- EETLPPrefix-
|
|
EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
|
|
FRS-
|
|
AtomicOpsCap: 32bit- 64bit- 128bitCAS-
|
|
DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
|
|
AtomicOpsCtl: ReqEn-
|
|
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: -3.5dB, EqualizationComplete+ EqualizationPhase1+
|
|
EqualizationPhase2+ EqualizationPhase3+ LinkEqualizationRequest-
|
|
Retimer- 2Retimers- CrosslinkRes: unsupported
|
|
Capabilities: [100 v1] Virtual Channel
|
|
Caps: LPEVC=0 RefClk=100ns PATEntryBits=1
|
|
Arb: Fixed- WRR32- WRR64- WRR128-
|
|
Ctrl: ArbSelect=Fixed
|
|
Status: InProgress-
|
|
VC0: Caps: PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
|
|
Arb: Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
|
|
Ctrl: Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
|
|
Status: NegoPending- InProgress-
|
|
Capabilities: [250 v1] Latency Tolerance Reporting
|
|
Max snoop latency: 71680ns
|
|
Max no snoop latency: 71680ns
|
|
Capabilities: [258 v1] L1 PM Substates
|
|
L1SubCap: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+ ASPM_L1.1+ L1_PM_Substates+
|
|
PortCommonModeRestoreTime=255us PortTPowerOnTime=10us
|
|
L1SubCtl1: PCI-PM_L1.2- PCI-PM_L1.1- ASPM_L1.2- ASPM_L1.1-
|
|
T_CommonMode=0us LTR1.2_Threshold=0ns
|
|
L1SubCtl2: T_PwrOn=10us
|
|
Capabilities: [128 v1] Power Budgeting <?>
|
|
Capabilities: [600 v1] Vendor Specific Information: ID=0001 Rev=1 Len=024 <?>
|
|
Capabilities: [900 v1] Secondary PCI Express
|
|
LnkCtl3: LnkEquIntrruptEn- PerformEqu-
|
|
LaneErrStat: 0
|
|
Kernel modules: nvidiafb, nouveau
|
|
|
|
01:00.1 Audio device [0403]: NVIDIA Corporation GM107 High Definition Audio Controller [GeForce 940MX] [10de:0fbc] (rev a1) (prog-if 00 [HDA compatible])
|
|
Subsystem: Dell Device [1028:16d9]
|
|
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
|
|
Interrupt: pin B routed to IRQ 17
|
|
IOMMU group: 1
|
|
Region 0: Memory at df080000 (32-bit, non-prefetchable) [size=16K]
|
|
Capabilities: [60] 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: [68] MSI: Enable- Count=1/1 Maskable- 64bit+
|
|
Address: 0000000000000000 Data: 0000
|
|
Capabilities: [78] Express (v2) Endpoint, IntMsgNum 0
|
|
DevCap: MaxPayload 256 bytes, PhantFunc 0, Latency L0s unlimited, L1 <64us
|
|
ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset- SlotPowerLimit 75W TEE-IO-
|
|
DevCtl: CorrErr- NonFatalErr- FatalErr- UnsupReq-
|
|
RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
|
|
MaxPayload 256 bytes, MaxReadReq 512 bytes
|
|
DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
|
|
LnkCap: Port #0, Speed 8GT/s, Width x16, ASPM L0s L1, Exit Latency L0s <512ns, L1 <4us
|
|
ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp+
|
|
LnkCtl: ASPM L0s L1 Enabled; RCB 64 bytes, LnkDisable- CommClk+
|
|
ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
|
|
LnkSta: Speed 2.5GT/s (downgraded), Width x16
|
|
TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
|
|
DevCap2: Completion Timeout: Range AB, TimeoutDis+ NROPrPrP- LTR+
|
|
10BitTagComp- 10BitTagReq- OBFF Via message, ExtFmt- EETLPPrefix-
|
|
EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
|
|
FRS- TPHComp- ExtTPHComp-
|
|
AtomicOpsCap: 32bit- 64bit- 128bitCAS-
|
|
DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
|
|
AtomicOpsCtl: ReqEn-
|
|
IDOReq- IDOCompl- LTR- EmergencyPowerReductionReq-
|
|
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
|
|
LnkSta2: Current De-emphasis Level: -3.5dB, EqualizationComplete- EqualizationPhase1-
|
|
EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
|
|
Retimer- 2Retimers- CrosslinkRes: unsupported
|
|
Kernel driver in use: snd_hda_intel
|
|
Kernel modules: snd_hda_intel
|
|
|
|
02:00.0 Unassigned class [ff00]: Realtek Semiconductor Co., Ltd. RTS525A PCI Express Card Reader [10ec:525a] (rev 01)
|
|
Subsystem: Dell Device [1028:06d9]
|
|
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
|
|
Interrupt: pin A routed to IRQ 125
|
|
IOMMU group: 11
|
|
Region 1: Memory at dfc00000 (32-bit, non-prefetchable) [size=4K]
|
|
Capabilities: [80] Power Management version 3
|
|
Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=375mA PME(D0-,D1+,D2+,D3hot+,D3cold+)
|
|
Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
|
|
Capabilities: [90] MSI: Enable+ Count=1/1 Maskable- 64bit+
|
|
Address: 00000000fee002d8 Data: 0000
|
|
Capabilities: [b0] Express (v2) Endpoint, IntMsgNum 0
|
|
DevCap: MaxPayload 512 bytes, PhantFunc 0, Latency L0s unlimited, L1 unlimited
|
|
ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset- SlotPowerLimit 10W TEE-IO-
|
|
DevCtl: CorrErr+ NonFatalErr+ FatalErr+ UnsupReq+
|
|
RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop-
|
|
MaxPayload 256 bytes, MaxReadReq 512 bytes
|
|
DevSta: CorrErr+ NonFatalErr- FatalErr- UnsupReq+ AuxPwr+ TransPend-
|
|
LnkCap: Port #0, Speed 5GT/s, Width x1, ASPM L0s L1, Exit Latency L0s unlimited, L1 <64us
|
|
ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp+
|
|
LnkCtl: ASPM L0s L1 Enabled; RCB 64 bytes, LnkDisable- CommClk+
|
|
ExtSynch- ClockPM+ AutWidDis- BWInt- AutBWInt-
|
|
LnkSta: Speed 5GT/s, Width x1
|
|
TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
|
|
DevCap2: Completion Timeout: Not Supported, TimeoutDis+ NROPrPrP- LTR+
|
|
10BitTagComp- 10BitTagReq- OBFF Via message/WAKE#, ExtFmt- EETLPPrefix-
|
|
EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
|
|
FRS- TPHComp- ExtTPHComp-
|
|
AtomicOpsCap: 32bit- 64bit- 128bitCAS-
|
|
DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
|
|
AtomicOpsCtl: ReqEn-
|
|
IDOReq- IDOCompl- LTR+ EmergencyPowerReductionReq-
|
|
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
|
|
LnkCap2: Supported Link Speeds: 2.5-5GT/s, Crosslink- Retimer- 2Retimers- DRS-
|
|
LnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-
|
|
Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
|
|
Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot
|
|
LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete- EqualizationPhase1-
|
|
EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
|
|
Retimer- 2Retimers- CrosslinkRes: unsupported
|
|
Capabilities: [100 v2] 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: [148 v1] Device Serial Number 00-00-00-01-00-4c-e0-00
|
|
Capabilities: [158 v1] Latency Tolerance Reporting
|
|
Max snoop latency: 3145728ns
|
|
Max no snoop latency: 3145728ns
|
|
Capabilities: [160 v1] L1 PM Substates
|
|
L1SubCap: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+ ASPM_L1.1+ L1_PM_Substates+
|
|
PortCommonModeRestoreTime=60us PortTPowerOnTime=60us
|
|
L1SubCtl1: PCI-PM_L1.2- PCI-PM_L1.1- ASPM_L1.2- ASPM_L1.1-
|
|
T_CommonMode=0us LTR1.2_Threshold=0ns
|
|
L1SubCtl2: T_PwrOn=10us
|
|
Kernel driver in use: rtsx_pci
|
|
Kernel modules: rtsx_pci
|
|
|
|
04:00.0 Non-Volatile memory controller [0108]: Samsung Electronics Co Ltd NVMe SSD Controller SM961/PM961/SM963 [144d:a804] (prog-if 02 [NVM Express])
|
|
Subsystem: Samsung Electronics Co Ltd SM963 2.5" NVMe PCIe SSD [144d:a801]
|
|
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
|
|
Interrupt: pin A routed to IRQ 16
|
|
IOMMU group: 12
|
|
Region 0: Memory at dfb00000 (64-bit, non-prefetchable) [size=16K]
|
|
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/32 Maskable- 64bit+
|
|
Address: 0000000000000000 Data: 0000
|
|
Capabilities: [70] Express (v2) Endpoint, IntMsgNum 0
|
|
DevCap: MaxPayload 256 bytes, PhantFunc 0, Latency L0s unlimited, L1 unlimited
|
|
ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset+ SlotPowerLimit 25W 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 8GT/s, Width x4, ASPM L1, Exit Latency L1 <64us
|
|
ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp+
|
|
LnkCtl: ASPM L1 Enabled; RCB 64 bytes, LnkDisable- CommClk+
|
|
ExtSynch- ClockPM+ AutWidDis- BWInt- AutBWInt-
|
|
LnkSta: Speed 8GT/s, Width x4
|
|
TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
|
|
DevCap2: Completion Timeout: Range ABCD, TimeoutDis+ NROPrPrP- LTR+
|
|
10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
|
|
EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
|
|
FRS- TPHComp- ExtTPHComp-
|
|
AtomicOpsCap: 32bit- 64bit- 128bitCAS-
|
|
DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
|
|
AtomicOpsCtl: ReqEn-
|
|
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: [b0] MSI-X: Enable+ Count=8 Masked-
|
|
Vector table: BAR=0 offset=00003000
|
|
PBA: BAR=0 offset=00002000
|
|
Capabilities: [100 v2] 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: [148 v1] Device Serial Number 00-00-00-00-00-00-00-00
|
|
Capabilities: [158 v1] Power Budgeting <?>
|
|
Capabilities: [168 v1] Secondary PCI Express
|
|
LnkCtl3: LnkEquIntrruptEn- PerformEqu-
|
|
LaneErrStat: 0
|
|
Capabilities: [188 v1] Latency Tolerance Reporting
|
|
Max snoop latency: 3145728ns
|
|
Max no snoop latency: 3145728ns
|
|
Capabilities: [190 v1] L1 PM Substates
|
|
L1SubCap: PCI-PM_L1.2+ PCI-PM_L1.1+ ASPM_L1.2+ ASPM_L1.1+ L1_PM_Substates+
|
|
PortCommonModeRestoreTime=10us PortTPowerOnTime=10us
|
|
L1SubCtl1: PCI-PM_L1.2- PCI-PM_L1.1- ASPM_L1.2- ASPM_L1.1-
|
|
T_CommonMode=0us LTR1.2_Threshold=0ns
|
|
L1SubCtl2: T_PwrOn=10us
|
|
Kernel driver in use: nvme
|
|
Kernel modules: nvme
|
|
|
|
|
|
--- lspci -tv (tree)
|
|
$ lspci -tv
|
|
-[0000:00]-+-00.0 Intel Corporation Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor Host Bridge/DRAM Registers
|
|
+-01.0-[01]--+-00.0 NVIDIA Corporation GM107GLM [Quadro M2000M]
|
|
| \-00.1 NVIDIA Corporation GM107 High Definition Audio Controller [GeForce 940MX]
|
|
+-04.0 Intel Corporation Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor Thermal Subsystem
|
|
+-14.0 Intel Corporation 100 Series/C230 Series Chipset Family USB 3.0 xHCI Controller
|
|
+-14.2 Intel Corporation 100 Series/C230 Series Chipset Family Thermal Subsystem
|
|
+-16.0 Intel Corporation 100 Series/C230 Series Chipset Family MEI Controller #1
|
|
+-17.0 Intel Corporation SATA Controller [RAID mode]
|
|
+-1c.0-[02]----00.0 Realtek Semiconductor Co., Ltd. RTS525A PCI Express Card Reader
|
|
+-1c.4-[03]--
|
|
+-1d.0-[04]----00.0 Samsung Electronics Co Ltd NVMe SSD Controller SM961/PM961/SM963
|
|
+-1f.0 Intel Corporation CM236 Chipset LPC/eSPI Controller
|
|
+-1f.2 Intel Corporation 100 Series/C230 Series Chipset Family Power Management Controller
|
|
+-1f.3 Intel Corporation 100 Series/C230 Series Chipset Family HD Audio Controller
|
|
+-1f.4 Intel Corporation 100 Series/C230 Series Chipset Family SMBus
|
|
\-1f.6 Intel Corporation Ethernet Connection (2) I219-LM
|
|
|
|
--- 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:04.0/numa_node /sys/bus/pci/devices/0000:00:14.0/numa_node /sys/bus/pci/devices/0000:00:14.2/numa_node /sys/bus/pci/devices/0000:00:16.0/numa_node /sys/bus/pci/devices/0000:00:17.0/numa_node /sys/bus/pci/devices/0000:00:1c.0/numa_node /sys/bus/pci/devices/0000:00:1c.4/numa_node /sys/bus/pci/devices/0000:00:1d.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:00:1f.3/numa_node /sys/bus/pci/devices/0000:00:1f.4/numa_node /sys/bus/pci/devices/0000:00:1f.6/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:04:00.0/numa_node
|
|
-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 0a5c:5832 Broadcom Corp. BCM5880 Secure Applications Processor Smartcard reader
|
|
Bus 002 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
|
|
Bus 002 Device 002: ID 0b95:1790 ASIX Electronics Corp. AX88179 Gigabit Ethernet
|
|
|
|
--- lshw -short
|
|
$ lshw -short
|
|
H/W path Device Class Description
|
|
============================================================
|
|
system Precision 7510 (06D9)
|
|
/0 bus 0692Y5
|
|
/0/0 memory 64KiB BIOS
|
|
/0/43 memory 128KiB L1 cache
|
|
/0/44 memory 128KiB L1 cache
|
|
/0/45 memory 1MiB L2 cache
|
|
/0/46 memory 8MiB L3 cache
|
|
/0/47 processor Intel(R) Xeon(R) CPU E3-1535M v5 @ 2.90GHz
|
|
/0/48 memory 32GiB System Memory
|
|
/0/48/0 memory 8GiB SODIMM DDR4 Synchronous 2133 MHz (0.5 ns)
|
|
/0/48/1 memory 8GiB SODIMM DDR4 Synchronous 2133 MHz (0.5 ns)
|
|
/0/48/2 memory 8GiB SODIMM DDR4 Synchronous 2133 MHz (0.5 ns)
|
|
/0/48/3 memory 8GiB SODIMM DDR4 Synchronous 2133 MHz (0.5 ns)
|
|
/0/100 bridge Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor Host Bridge/DRAM Registers
|
|
/0/100/1 input6 bridge Video Bus
|
|
/0/100/1/0 display GM107GLM [Quadro M2000M]
|
|
/0/100/1/0.1 card1 multimedia GM107 High Definition Audio Controller [GeForce 940MX]
|
|
/0/100/1/0.1/0 input12 input HDA NVidia HDMI/DP,pcm=3
|
|
/0/100/1/0.1/1 input13 input HDA NVidia HDMI/DP,pcm=7
|
|
/0/100/1/0.1/2 input14 input HDA NVidia HDMI/DP,pcm=8
|
|
/0/100/1/0.1/3 input15 input HDA NVidia HDMI/DP,pcm=9
|
|
/0/100/4 generic Xeon E3-1200 v5/E3-1500 v5/6th Gen Core Processor Thermal Subsystem
|
|
/0/100/14 bus 100 Series/C230 Series Chipset Family USB 3.0 xHCI Controller
|
|
/0/100/14/0 usb1 bus xHCI Host Controller
|
|
/0/100/14/0/a generic 5880
|
|
/0/100/14/1 usb2 bus xHCI Host Controller
|
|
/0/100/14/1/1 communication AX88179A
|
|
/0/100/14.2 generic 100 Series/C230 Series Chipset Family Thermal Subsystem
|
|
/0/100/16 communication 100 Series/C230 Series Chipset Family MEI Controller #1
|
|
/0/100/17 storage SATA Controller [RAID mode]
|
|
/0/100/1c bridge 100 Series/C230 Series Chipset Family PCI Express Root Port #3
|
|
/0/100/1c/0 mmc0 bus RTS525A PCI Express Card Reader
|
|
/0/100/1c.4 bridge 100 Series/C230 Series Chipset Family PCI Express Root Port #5
|
|
/0/100/1d bridge 100 Series/C230 Series Chipset Family PCI Express Root Port #9
|
|
/0/100/1d/0 /dev/nvme0 storage PM961 NVMe SAMSUNG 512GB
|
|
/0/100/1d/0/0 hwmon3 disk NVMe disk
|
|
/0/100/1d/0/2 /dev/ng0n1 disk NVMe disk
|
|
/0/100/1d/0/1 /dev/nvme0n1 disk 512GB NVMe disk
|
|
/0/100/1d/0/1/1 /dev/nvme0n1p1 volume 1006KiB BIOS Boot partition
|
|
/0/100/1d/0/1/2 /dev/nvme0n1p2 volume 1023MiB Windows FAT volume
|
|
/0/100/1d/0/1/3 /dev/nvme0n1p3 volume 475GiB LVM Physical Volume
|
|
/0/100/1f bridge CM236 Chipset LPC/eSPI Controller
|
|
/0/100/1f/0 system PnP device PNP0b00
|
|
/0/100/1f/1 input PnP device PNP0303
|
|
/0/100/1f/2 generic PnP device DLL06d9
|
|
/0/100/1f/3 printer PnP device PNP0401
|
|
/0/100/1f.2 memory Memory controller
|
|
/0/100/1f.3 card0 multimedia 100 Series/C230 Series Chipset Family HD Audio Controller
|
|
/0/100/1f.3/0 input16 input HDA Intel PCH Headphone Mic
|
|
/0/100/1f.3/1 input17 input HDA Intel PCH Dock Mic
|
|
/0/100/1f.3/2 input18 input HDA Intel PCH Dock Line Out
|
|
/0/100/1f.4 bus 100 Series/C230 Series Chipset Family SMBus
|
|
/0/100/1f.6 nic0 network Ethernet Connection (2) I219-LM
|
|
/1 power DELL 1V0PP77
|
|
/2 input0 input Lid Switch
|
|
/3 input1 input Power Button
|
|
/4 input10 input PC Speaker
|
|
/5 input11 input Dell WMI hotkeys
|
|
/6 input2 input Sleep Button
|
|
/7 input3 input Power Button
|
|
/8 input4 input AT Translated Set 2 keyboard
|
|
/9 input7 input AlpsPS/2 ALPS DualPoint TouchPad
|
|
/a input8 input AlpsPS/2 ALPS DualPoint Stick
|
|
/b input9 input DELL Wireless hotkeys
|
|
/c enx8cae4ccda774 network Ethernet interface
|
|
|
|
--- 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:04:00.0 aer_dev_correctable = RxErr 0
|
|
BadTLP 0
|
|
BadDLLP 0
|
|
Rollover 0
|
|
Timeout 0
|
|
NonFatalErr 0
|
|
CorrIntErr 0
|
|
HeaderOF 0
|
|
TOTAL_ERR_COR 0
|
|
0000:04:00.0 aer_dev_fatal = Undefined 0
|
|
DLP 0
|
|
SDES 0
|
|
TLP 0
|
|
FCP 0
|
|
CmpltTO 0
|
|
CmpltAbrt 0
|
|
UnxCmplt 0
|
|
RxOF 0
|
|
MalfTLP 0
|
|
ECRC 0
|
|
UnsupReq 0
|
|
ACSViol 0
|
|
UncorrIntErr 0
|
|
BlockedTLP 0
|
|
AtomicOpBlocked 0
|
|
TLPBlockedErr 0
|
|
PoisonTLPBlocked 0
|
|
DMWrReqBlocked 0
|
|
IDECheck 0
|
|
MisIDETLP 0
|
|
PCRC_CHECK 0
|
|
TLPXlatBlocked 0
|
|
TOTAL_ERR_FATAL 0
|
|
0000:04:00.0 aer_dev_nonfatal = Undefined 0
|
|
DLP 0
|
|
SDES 0
|
|
TLP 0
|
|
FCP 0
|
|
CmpltTO 0
|
|
CmpltAbrt 0
|
|
UnxCmplt 0
|
|
RxOF 0
|
|
MalfTLP 0
|
|
ECRC 0
|
|
UnsupReq 0
|
|
ACSViol 0
|
|
UncorrIntErr 0
|
|
BlockedTLP 0
|
|
AtomicOpBlocked 0
|
|
TLPBlockedErr 0
|
|
PoisonTLPBlocked 0
|
|
DMWrReqBlocked 0
|
|
IDECheck 0
|
|
MisIDETLP 0
|
|
PCRC_CHECK 0
|
|
TLPXlatBlocked 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
|
|
8 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
|
|
base_frequency = 2900000
|
|
cpuinfo_avg_freq = 3517436
|
|
cpuinfo_max_freq = 3800000
|
|
cpuinfo_min_freq = 800000
|
|
cpuinfo_transition_latency = 0
|
|
energy_performance_available_preferences = default performance balance_performance balance_power power
|
|
energy_performance_preference = performance
|
|
related_cpus = 0
|
|
scaling_available_governors = performance powersave
|
|
scaling_cur_freq = 3550212
|
|
scaling_driver = intel_pstate
|
|
scaling_governor = performance
|
|
scaling_max_freq = 3800000
|
|
scaling_min_freq = 800000
|
|
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: active
|
|
intel_pstate no_turbo: 0
|
|
intel_pstate turbo_pct: 30
|
|
intel_pstate max_perf_pct: 100
|
|
intel_pstate min_perf_pct: 100
|
|
EPB (energy_perf_bias) per cpu:
|
|
8 cpu : 0
|
|
EPP (energy_performance_preference) per cpu:
|
|
8 cpu : performance
|
|
available EPP:
|
|
default performance balance_performance balance_power power
|
|
|
|
--- cpupower frequency-info
|
|
$ cpupower frequency-info
|
|
analyzing CPU 6:
|
|
driver: intel_pstate
|
|
CPUs which run at the same hardware frequency: 6
|
|
CPUs which need to have their frequency coordinated by software: 6
|
|
maximum transition latency: Cannot determine or is not supported.
|
|
hardware limits: 800 MHz - 3.80 GHz
|
|
available cpufreq governors: performance powersave
|
|
current policy: frequency should be within 800 MHz and 3.80 GHz.
|
|
The governor "performance" may decide which speed to use
|
|
within this range.
|
|
current CPU frequency: Unable to call hardware
|
|
current CPU frequency: 3.49 GHz (asserted by call to kernel)
|
|
boost state support:
|
|
Supported: yes
|
|
Active: yes
|
|
|
|
--- turbostat snapshot
|
|
$ timeout 3 turbostat --quiet --show CPU,Core,Bzy_MHz,IRQ,Busy%,Bzy_MHz,TSC_MHz,CoreTmp,PkgTmp sleep 1
|
|
1.002068 sec
|
|
Core CPU Busy% Bzy_MHz TSC_MHz IRQ CoreTmp PkgTmp
|
|
- - 0.26 3606 2904 636 42 42
|
|
0 0 0.32 3653 2904 60 42 42
|
|
0 4 0.27 3636 2904 128
|
|
1 1 0.22 3607 2904 75 42
|
|
1 5 0.32 3519 2904 105
|
|
2 2 0.05 3639 2904 12 41
|
|
2 6 0.35 3607 2904 77
|
|
3 3 0.26 3615 2904 86 40
|
|
3 7 0.28 3607 2904 93
|
|
|
|
--- x86_energy_perf_policy -r
|
|
$ x86_energy_perf_policy -r
|
|
cpu0: EPB 0
|
|
cpu0: HWP_REQ: min 38 max 38 des 0 epp 0 window 0x0 (0*10^0us) use_pkg 0
|
|
cpu0: HWP_CAP: low 1 eff 9 guar 29 high 38
|
|
cpu1: EPB 0
|
|
cpu1: HWP_REQ: min 38 max 38 des 0 epp 0 window 0x0 (0*10^0us) use_pkg 0
|
|
cpu1: HWP_CAP: low 1 eff 9 guar 29 high 38
|
|
cpu2: EPB 0
|
|
cpu2: HWP_REQ: min 38 max 38 des 0 epp 0 window 0x0 (0*10^0us) use_pkg 0
|
|
cpu2: HWP_CAP: low 1 eff 9 guar 29 high 38
|
|
cpu3: EPB 0
|
|
cpu3: HWP_REQ: min 38 max 38 des 0 epp 0 window 0x0 (0*10^0us) use_pkg 0
|
|
cpu3: HWP_CAP: low 1 eff 9 guar 29 high 38
|
|
cpu4: EPB 0
|
|
cpu4: HWP_REQ: min 38 max 38 des 0 epp 0 window 0x0 (0*10^0us) use_pkg 0
|
|
cpu4: HWP_CAP: low 1 eff 9 guar 29 high 38
|
|
cpu5: EPB 0
|
|
cpu5: HWP_REQ: min 38 max 38 des 0 epp 0 window 0x0 (0*10^0us) use_pkg 0
|
|
cpu5: HWP_CAP: low 1 eff 9 guar 29 high 38
|
|
cpu6: EPB 0
|
|
cpu6: HWP_REQ: min 38 max 38 des 0 epp 0 window 0x0 (0*10^0us) use_pkg 0
|
|
cpu6: HWP_CAP: low 1 eff 9 guar 29 high 38
|
|
cpu7: EPB 0
|
|
cpu7: HWP_REQ: min 38 max 38 des 0 epp 0 window 0x0 (0*10^0us) use_pkg 0
|
|
cpu7: HWP_CAP: low 1 eff 9 guar 29 high 38
|
|
|
|
--- 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=124144us
|
|
C1 : MWAIT 0x00 disabled=0 latency=2us residency=14437776us
|
|
C1E : MWAIT 0x01 disabled=0 latency=10us residency=143381679us
|
|
C3 : MWAIT 0x10 disabled=0 latency=70us residency=48834060642us
|
|
C6 : MWAIT 0x20 disabled=0 latency=85us residency=1254257us
|
|
C7s : MWAIT 0x33 disabled=0 latency=124us residency=0us
|
|
C8 : MWAIT 0x40 disabled=0 latency=200us residency=824045us
|
|
C9 : MWAIT 0x50 disabled=0 latency=480us residency=15118us
|
|
C10 : MWAIT 0x60 disabled=0 latency=890us residency=42752773us
|
|
|
|
--- 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.012193] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)
|
|
[ 0.012195] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)
|
|
[ 0.012201] ACPI: Using ACPI (MADT) for SMP configuration information
|
|
[ 0.012202] ACPI: HPET id: 0x8086a701 base: 0xfed00000
|
|
[ 0.012206] TSC deadline timer available
|
|
[ 0.012209] CPU topo: Max. logical packages: 1
|
|
[ 0.012210] CPU topo: Max. logical nodes: 1
|
|
[ 0.012211] CPU topo: Num. nodes per package: 1
|
|
[ 0.012214] CPU topo: Max. logical dies: 1
|
|
[ 0.012214] CPU topo: Max. dies per package: 1
|
|
[ 0.012219] CPU topo: Max. threads per core: 2
|
|
[ 0.012220] CPU topo: Num. cores per package: 4
|
|
[ 0.012221] CPU topo: Num. threads per package: 8
|
|
[ 0.012222] CPU topo: Allowing 8 present CPUs plus 0 hotplug CPUs
|
|
[ 0.012236] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]
|
|
[ 0.012239] PM: hibernation: Registered nosave memory: [mem 0x0009d000-0x000fffff]
|
|
[ 0.012241] PM: hibernation: Registered nosave memory: [mem 0x6fc28000-0xffffffff]
|
|
[ 0.012243] [gap 0x80000000-0xdfffffff] available for PCI devices
|
|
[ 0.012244] Booting paravirtualized kernel on bare hardware
|
|
[ 0.012247] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns
|
|
[ 0.012312] Zone ranges:
|
|
[ 0.012313] DMA [mem 0x0000000000001000-0x0000000000ffffff]
|
|
[ 0.012316] DMA32 [mem 0x0000000001000000-0x00000000ffffffff]
|
|
[ 0.012318] Normal [mem 0x0000000100000000-0x000000087dffffff]
|
|
[ 0.012320] Device empty
|
|
[ 0.012321] Movable zone start for each node
|
|
[ 0.012324] Early memory node ranges
|
|
[ 0.012324] node 0: [mem 0x0000000000001000-0x000000000009cfff]
|
|
[ 0.012326] node 0: [mem 0x0000000000100000-0x000000006fc27fff]
|
|
[ 0.012328] node 0: [mem 0x0000000100000000-0x000000087dffffff]
|
|
[ 0.012333] Initmem setup node 0 [mem 0x0000000000001000-0x000000087dffffff]
|
|
[ 0.012340] On node 0, zone DMA: 1 pages in unavailable ranges
|
|
[ 0.012363] On node 0, zone DMA: 99 pages in unavailable ranges
|
|
[ 0.058799] On node 0, zone Normal: 984 pages in unavailable ranges
|
|
[ 0.058860] On node 0, zone Normal: 8192 pages in unavailable ranges
|
|
[ 0.058871] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:8 nr_cpu_ids:8 nr_node_ids:1
|
|
[ 0.059348] percpu: Embedded 85 pages/cpu s225280 r8192 d114688 u524288
|
|
[ 0.059355] pcpu-alloc: s225280 r8192 d114688 u524288 alloc=1*2097152
|
|
[ 0.059358] pcpu-alloc: [0] 0 1 2 3 [0] 4 5 6 7
|
|
[ 0.059382] Kernel command line: BOOT_IMAGE=/boot/vmlinuz-7.0.14-6-pve root=/dev/mapper/pve-root ro quiet intel_iommu=on
|
|
[ 0.059453] DMAR: IOMMU enabled
|
|
[ 0.059491] random: crng init done
|
|
[ 0.059492] printk: log buffer data + meta data: 262144 + 1114112 = 1376256 bytes
|
|
[ 0.062240] Dentry cache hash table entries: 4194304 (order: 13, 33554432 bytes, linear)
|
|
[ 0.063614] Inode-cache hash table entries: 2097152 (order: 12, 16777216 bytes, linear)
|
|
[ 0.063787] software IO TLB: area num 8.
|
|
[ 0.075149] Fallback order for Node 0: 0
|
|
[ 0.075153] Built 1 zonelists, mobility grouping on. Total pages: 8313796
|
|
[ 0.075155] Policy zone: Normal
|
|
[ 0.075164] mem auto-init: stack:all(zero), heap alloc:on, heap free:off
|
|
[ 0.157474] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=8, Nodes=1
|
|
[ 0.157514] Kernel/User page tables isolation: enabled
|
|
[ 0.170240] ftrace: allocating 60562 entries in 240 pages
|
|
[ 0.170243] ftrace: allocated 240 pages with 4 groups
|
|
[ 0.171094] Dynamic Preempt: lazy
|
|
[ 0.171178] rcu: Preemptible hierarchical RCU implementation.
|
|
[ 0.171179] rcu: RCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=8.
|
|
[ 0.171181] Trampoline variant of Tasks RCU enabled.
|
|
[ 0.171182] Rude variant of Tasks RCU enabled.
|
|
[ 0.171182] Tracing variant of Tasks RCU enabled.
|
|
[ 0.171183] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.
|
|
[ 0.171184] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=8
|
|
[ 0.171195] RCU Tasks: Setting shift to 3 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=8.
|
|
[ 0.171197] RCU Tasks Rude: Setting shift to 3 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=8.
|
|
[ 0.178131] NR_IRQS: 524544, nr_irqs: 2048, preallocated irqs: 16
|
|
[ 0.178380] rcu: srcu_init: Setting srcu_struct sizes based on contention.
|
|
[ 0.178588] spurious 8259A interrupt: IRQ7.
|
|
[ 0.182790] Console: colour VGA+ 80x25
|
|
[ 0.182793] printk: legacy console [tty0] enabled
|
|
[ 0.182860] ACPI: Core revision 20251212
|
|
[ 0.183349] clocksource: hpet: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635855245 ns
|
|
[ 0.183454] APIC: Switch to symmetric I/O mode setup
|
|
[ 0.183457] DMAR: Host address width 39
|
|
[ 0.183458] DMAR: DRHD base: 0x000000fed90000 flags: 0x1
|
|
[ 0.183472] DMAR: dmar0: reg_base_addr fed90000 ver 1:0 cap d2008c40660462 ecap f050da
|
|
[ 0.183475] DMAR: RMRR base: 0x0000007dcb3000 end: 0x0000007dcd2fff
|
|
[ 0.183483] DMAR-IR: IOAPIC id 2 under DRHD base 0xfed90000 IOMMU 0
|
|
[ 0.183485] DMAR-IR: HPET id 0 under DRHD base 0xfed90000
|
|
[ 0.183487] DMAR-IR: x2apic is disabled because BIOS sets x2apic opt out bit.
|
|
[ 0.183488] DMAR-IR: Use 'intremap=no_x2apic_optout' to override the BIOS setting.
|
|
[ 0.184947] DMAR-IR: Enabled IRQ remapping in xapic mode
|
|
[ 0.184950] x2apic: IRQ remapping doesn't support X2APIC mode
|
|
[ 0.188832] ..TIMER: vector=0x30 apic1=0 pin1=2 apic2=-1 pin2=-1
|
|
[ 0.193405] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x29ccd767b87, max_idle_ns: 440795223720 ns
|
|
[ 0.193411] Calibrating delay loop (skipped), value calculated using timer frequency.. 5799.77 BogoMIPS (lpj=2899886)
|
|
[ 0.193441] x86/cpu: SGX disabled or unsupported by BIOS.
|
|
[ 0.193447] CPU0: Thermal monitoring enabled (TM1)
|
|
[ 0.193514] Last level iTLB entries: 4KB 64, 2MB 8, 4MB 8
|
|
[ 0.193516] Last level dTLB entries: 4KB 64, 2MB 32, 4MB 32, 1GB 4
|
|
[ 0.193525] process: using mwait in idle threads
|
|
[ 0.193529] mitigations: Enabled attack vectors: user_kernel, user_user, guest_host, guest_guest, SMT mitigations: auto
|
|
[ 0.193535] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
|
|
[ 0.193537] SRBDS: Mitigation: Microcode
|
|
[ 0.193539] Spectre V2 : Mitigation: IBRS
|
|
[ 0.193540] RETBleed: Mitigation: IBRS
|
|
[ 0.193541] Spectre V2 : User space: Mitigation: STIBP via prctl
|
|
[ 0.193543] MDS: Mitigation: Clear CPU buffers
|
|
[ 0.193544] MMIO Stale Data: Mitigation: Clear CPU buffers
|
|
[ 0.193545] VMSCAPE: Mitigation: IBPB before exit to userspace
|
|
[ 0.193546] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization
|
|
[ 0.193548] Spectre V2 : Spectre v2 / SpectreRSB: Filling RSB on context switch and VMEXIT
|
|
[ 0.193550] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier
|
|
[ 0.193561] GDS: Vulnerable: No microcode
|
|
[ 0.193568] x86/fpu: Supporting XSAVE feature 0x001: 'x87 floating point registers'
|
|
[ 0.193571] x86/fpu: Supporting XSAVE feature 0x002: 'SSE registers'
|
|
[ 0.193573] x86/fpu: Supporting XSAVE feature 0x004: 'AVX registers'
|
|
[ 0.193575] x86/fpu: Supporting XSAVE feature 0x008: 'MPX bounds registers'
|
|
[ 0.193577] x86/fpu: Supporting XSAVE feature 0x010: 'MPX CSR'
|
|
[ 0.193579] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256
|
|
[ 0.193582] x86/fpu: xstate_offset[3]: 832, xstate_sizes[3]: 64
|
|
[ 0.193584] x86/fpu: xstate_offset[4]: 896, xstate_sizes[4]: 64
|
|
[ 0.193587] x86/fpu: Enabled xstate features 0x1f, context size is 960 bytes, using 'compacted' format.
|
|
[ 0.246384] Freeing SMP alternatives memory: 56K
|
|
[ 0.246390] pid_max: default: 32768 minimum: 301
|
|
[ 0.246523] Yama: becoming mindful.
|
|
[ 0.246677] AppArmor: AppArmor initialized
|
|
[ 0.246679] AppArmor: AppArmor secmark mediation reserved: ready to be enabled
|
|
[ 0.246831] Mount-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
|
|
[ 0.246867] Mountpoint-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)
|
|
[ 0.246981] VFS: Finished mounting rootfs on nullfs
|
|
[ 0.247487] smpboot: CPU0: Intel(R) Xeon(R) CPU E3-1535M v5 @ 2.90GHz (family: 0x6, model: 0x5e, stepping: 0x3)
|
|
[ 0.247762] Performance Events: PEBS fmt3+, Skylake events, 32-deep LBR, full-width counters, Intel PMU driver.
|
|
[ 0.247799] ... version: 4
|
|
[ 0.247801] ... bit width: 48
|
|
[ 0.247803] ... generic counters: 4
|
|
[ 0.247804] ... generic bitmap: 000000000000000f
|
|
[ 0.247806] ... fixed-purpose counters: 3
|
|
[ 0.247807] ... fixed-purpose bitmap: 0000000000000007
|
|
[ 0.247809] ... value mask: 0000ffffffffffff
|
|
[ 0.247811] ... max period: 00007fffffffffff
|
|
[ 0.247812] ... global_ctrl mask: 000000070000000f
|
|
[ 0.248048] signal: max sigframe size: 2032
|
|
[ 0.248069] Estimated ratio of average max frequency by base frequency (times 1024): 1200
|
|
[ 0.248115] rcu: Hierarchical SRCU implementation.
|
|
[ 0.248117] rcu: Max phase no-delay instances is 400.
|
|
[ 0.248184] Timer migration: 1 hierarchy levels; 8 children per group; 1 crossnode level
|
|
[ 0.249030] NMI watchdog: Enabled. Permanently consumes one hw-PMU counter.
|
|
[ 0.249136] smp: Bringing up secondary CPUs ...
|
|
[ 0.249288] smpboot: x86: Booting SMP configuration:
|
|
[ 0.249290] .... node #0, CPUs: #1 #2 #3 #4 #5 #6 #7
|
|
[ 0.252682] MDS CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html for more details.
|
|
[ 0.252682] MMIO Stale Data CPU bug present and SMT on, data leak possible. See https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/processor_mmio_stale_data.html for more details.
|
|
[ 0.252682] 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.
|
|
[ 0.252682] smp: Brought up 1 node, 8 CPUs
|
|
[ 0.252682] smpboot: Total of 8 processors activated (46398.17 BogoMIPS)
|
|
[ 0.253552] Memory: 29556620K/33255184K available (22442K kernel code, 4068K rwdata, 16172K rodata, 5092K init, 4892K bss, 3680300K reserved, 0K cma-reserved)
|
|
[ 0.254538] devtmpfs: initialized
|
|
[ 0.254538] x86/mm: Memory block size: 128MB
|
|
[ 0.259456] ACPI: PM: Registering ACPI NVS region [mem 0x6fc28000-0x6fc28fff] (4096 bytes)
|
|
[ 0.259460] ACPI: PM: Registering ACPI NVS region [mem 0x7df7a000-0x7e607fff] (6873088 bytes)
|
|
[ 0.259640] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1911260446275000 ns
|
|
[ 0.259640] posixtimers hash table entries: 4096 (order: 4, 65536 bytes, linear)
|
|
[ 0.259640] futex hash table entries: 2048 (131072 bytes on 1 NUMA nodes, total 128 KiB, linear).
|
|
[ 0.259784] PM: RTC time: 13:07:04, date: 2026-07-27
|
|
[ 0.260685] NET: Registered PF_NETLINK/PF_ROUTE protocol family
|
|
[ 0.261203] DMA: preallocated 4096 KiB GFP_KERNEL pool for atomic allocations
|
|
[ 0.261478] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA pool for atomic allocations
|
|
[ 0.261749] DMA: preallocated 4096 KiB GFP_KERNEL|GFP_DMA32 pool for atomic allocations
|
|
[ 0.261770] audit: initializing netlink subsys (disabled)
|
|
[ 0.261787] audit: type=2000 audit(1785157624.075:1): state=initialized audit_enabled=0 res=1
|
|
[ 0.261787] thermal_sys: Registered thermal governor 'fair_share'
|
|
[ 0.261787] thermal_sys: Registered thermal governor 'bang_bang'
|
|
[ 0.261787] thermal_sys: Registered thermal governor 'step_wise'
|
|
[ 0.261787] thermal_sys: Registered thermal governor 'user_space'
|
|
[ 0.261787] thermal_sys: Registered thermal governor 'power_allocator'
|
|
[ 0.261787] cpuidle: using governor ladder
|
|
[ 0.261787] cpuidle: using governor menu
|
|
[ 0.261787] ACPI FADT declares the system doesn't support PCIe ASPM, so disable it
|
|
[ 0.261787] acpiphp: ACPI Hot Plug PCI Controller Driver version: 0.5
|
|
[ 0.261787] PCI: ECAM [mem 0xe0000000-0xefffffff] (base 0xe0000000) for domain 0000 [bus 00-ff]
|
|
[ 0.261787] PCI: Using configuration type 1 for base access
|
|
[ 0.262491] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
|
|
[ 0.262568] HugeTLB: registered 1.00 GiB page size, pre-allocated 0 pages
|
|
[ 0.262568] HugeTLB: 16380 KiB vmemmap can be freed for a 1.00 GiB page
|
|
[ 0.262568] HugeTLB: registered 2.00 MiB page size, pre-allocated 0 pages
|
|
[ 0.262568] HugeTLB: 28 KiB vmemmap can be freed for a 2.00 MiB page
|
|
[ 0.264485] ACPI: Added _OSI(Module Device)
|
|
[ 0.264489] ACPI: Added _OSI(Processor Device)
|
|
[ 0.264491] ACPI: Added _OSI(Processor Aggregator Device)
|
|
[ 0.327105] ACPI: 10 ACPI AML tables successfully acquired and loaded
|
|
[ 0.331393] ACPI: [Firmware Bug]: BIOS _OSI(Linux) query ignored
|
|
[ 0.343582] ACPI: \_SB_: platform _OSC: OS support mask [006e7eff]
|
|
[ 0.343647] ACPI: \_SB_: platform _OSC: OS control mask [0000003b]
|
|
[ 0.344776] ACPI: Dynamic OEM Table Load:
|
|
[ 0.344786] ACPI: SSDT 0xFFFF8D22414ECC00 00037F (v02 PmRef Cpu0Cst 00003001 INTL 20120913)
|
|
[ 0.346962] ACPI: Dynamic OEM Table Load:
|
|
[ 0.346971] ACPI: SSDT 0xFFFF8D2240877000 00063F (v02 PmRef Cpu0Ist 00003000 INTL 20120913)
|
|
[ 0.349862] ACPI: Dynamic OEM Table Load:
|
|
[ 0.349871] ACPI: SSDT 0xFFFF8D2240875000 0005AA (v02 PmRef ApIst 00003000 INTL 20120913)
|
|
[ 0.352511] ACPI: Dynamic OEM Table Load:
|
|
[ 0.352519] ACPI: SSDT 0xFFFF8D22408BF400 000119 (v02 PmRef ApCst 00003000 INTL 20120913)
|
|
[ 0.360271] ACPI: EC: EC started
|
|
[ 0.360274] ACPI: EC: interrupt blocked
|
|
[ 0.365670] ACPI: EC: EC_CMD/EC_SC=0x934, EC_DATA=0x930
|
|
[ 0.365674] ACPI: \_SB_.PCI0.LPCB.ECDV: Boot DSDT EC used to handle transactions
|
|
[ 0.365677] ACPI: Interpreter enabled
|
|
[ 0.365730] ACPI: PM: (supports S0 S4 S5)
|
|
[ 0.365732] ACPI: Using IOAPIC for interrupt routing
|
|
[ 0.368398] PCI: Using host bridge windows from ACPI; if necessary, use "pci=nocrs" and report a bug
|
|
[ 0.368400] PCI: Ignoring E820 reservations for host bridge windows
|
|
[ 0.369368] ACPI: Enabled 8 GPEs in block 00 to 7F
|
|
[ 0.372905] ACPI: \_SB_.PCI0.PEG0.PG00: New power resource
|
|
[ 0.374299] ACPI: \_SB_.PCI0.PEG1.PG01: New power resource
|
|
[ 0.374886] ACPI: \_SB_.PCI0.PEG2.PG02: New power resource
|
|
[ 0.381724] ACPI: \_SB_.PCI0.RP09.PXSX.WRST: New power resource
|
|
[ 0.382234] ACPI: \_SB_.PCI0.RP10.PXSX.WRST: New power resource
|
|
[ 0.382757] ACPI: \_SB_.PCI0.RP11.PXSX.WRST: New power resource
|
|
[ 0.383264] ACPI: \_SB_.PCI0.RP12.PXSX.WRST: New power resource
|
|
[ 0.383774] ACPI: \_SB_.PCI0.RP13.PXSX.WRST: New power resource
|
|
[ 0.384696] ACPI: \_SB_.PCI0.RP02.PXSX.WRST: New power resource
|
|
[ 0.385203] ACPI: \_SB_.PCI0.RP03.PXSX.WRST: New power resource
|
|
[ 0.385713] ACPI: \_SB_.PCI0.RP04.PXSX.WRST: New power resource
|
|
[ 0.387612] ACPI: \_SB_.PCI0.RP07.PXSX.WRST: New power resource
|
|
[ 0.388120] ACPI: \_SB_.PCI0.RP08.PXSX.WRST: New power resource
|
|
[ 0.388643] ACPI: \_SB_.PCI0.RP17.PXSX.WRST: New power resource
|
|
[ 0.389156] ACPI: \_SB_.PCI0.RP18.PXSX.WRST: New power resource
|
|
[ 0.389674] ACPI: \_SB_.PCI0.RP19.PXSX.WRST: New power resource
|
|
[ 0.390181] ACPI: \_SB_.PCI0.RP20.PXSX.WRST: New power resource
|
|
[ 0.390723] ACPI: \_SB_.PCI0.RP14.PXSX.WRST: New power resource
|
|
[ 0.391234] ACPI: \_SB_.PCI0.RP15.PXSX.WRST: New power resource
|
|
[ 0.391747] ACPI: \_SB_.PCI0.RP16.PXSX.WRST: New power resource
|
|
[ 0.425500] ACPI: PCI Root Bridge [PCI0] (domain 0000 [bus 00-fe])
|
|
[ 0.425511] acpi PNP0A08:00: _OSC: OS supports [ExtendedConfig ASPM ClockPM Segments MSI EDR HPX-Type3]
|
|
[ 0.427821] acpi PNP0A08:00: _OSC: OS now controls [PCIeHotplug SHPCHotplug PME AER PCIeCapability LTR DPC]
|
|
[ 0.427824] acpi PNP0A08:00: FADT indicates ASPM is unsupported, using BIOS configuration
|
|
[ 0.428440] PCI host bridge to bus 0000:00
|
|
[ 0.428447] pci_bus 0000:00: root bus resource [io 0x0000-0x0cf7 window]
|
|
[ 0.428451] pci_bus 0000:00: root bus resource [io 0x0d00-0xffff window]
|
|
[ 0.428454] pci_bus 0000:00: root bus resource [mem 0x000a0000-0x000bffff window]
|
|
[ 0.428457] pci_bus 0000:00: root bus resource [mem 0x80000000-0xdfffffff window]
|
|
[ 0.428459] pci_bus 0000:00: root bus resource [mem 0xfd000000-0xfe7fffff window]
|
|
[ 0.428462] pci_bus 0000:00: root bus resource [bus 00-fe]
|
|
[ 0.428486] pci 0000:00:00.0: [8086:1918] type 00 class 0x060000 conventional PCI endpoint
|
|
[ 0.428626] pci 0000:00:01.0: [8086:1901] type 01 class 0x060400 PCIe Root Port
|
|
[ 0.428657] pci 0000:00:01.0: PCI bridge to [bus 01]
|
|
[ 0.428661] pci 0000:00:01.0: bridge window [io 0xe000-0xefff]
|
|
[ 0.428665] pci 0000:00:01.0: bridge window [mem 0xde000000-0xdf0fffff]
|
|
[ 0.428675] pci 0000:00:01.0: bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
|
|
[ 0.428718] pci 0000:00:01.0: PME# supported from D0 D3hot D3cold
|
|
[ 0.429534] pci 0000:00:04.0: [8086:1903] type 00 class 0x118000 conventional PCI endpoint
|
|
[ 0.429585] pci 0000:00:04.0: BAR 0 [mem 0xdfd40000-0xdfd47fff 64bit]
|
|
[ 0.430059] pci 0000:00:14.0: [8086:a12f] type 00 class 0x0c0330 conventional PCI endpoint
|
|
[ 0.430126] pci 0000:00:14.0: BAR 0 [mem 0xdfd30000-0xdfd3ffff 64bit]
|
|
[ 0.430168] pci 0000:00:14.0: PME# supported from D3hot D3cold
|
|
[ 0.430707] pci 0000:00:14.2: [8086:a131] type 00 class 0x118000 conventional PCI endpoint
|
|
[ 0.430773] pci 0000:00:14.2: BAR 0 [mem 0xdfd56000-0xdfd56fff 64bit]
|
|
[ 0.430899] pci 0000:00:16.0: [8086:a13a] type 00 class 0x078000 conventional PCI endpoint
|
|
[ 0.430968] pci 0000:00:16.0: BAR 0 [mem 0xdfd55000-0xdfd55fff 64bit]
|
|
[ 0.431016] pci 0000:00:16.0: PME# supported from D3hot
|
|
[ 0.431435] pci 0000:00:17.0: [8086:2822] type 00 class 0x010400 conventional PCI endpoint
|
|
[ 0.431500] pci 0000:00:17.0: BAR 0 [mem 0xdfd50000-0xdfd51fff]
|
|
[ 0.431503] pci 0000:00:17.0: BAR 1 [mem 0xdfd54000-0xdfd540ff]
|
|
[ 0.431507] pci 0000:00:17.0: BAR 2 [io 0xf050-0xf057]
|
|
[ 0.431510] pci 0000:00:17.0: BAR 3 [io 0xf040-0xf043]
|
|
[ 0.431513] pci 0000:00:17.0: BAR 4 [io 0xf020-0xf03f]
|
|
[ 0.431516] pci 0000:00:17.0: BAR 5 [mem 0xdfd53000-0xdfd537ff]
|
|
[ 0.431556] pci 0000:00:17.0: PME# supported from D3hot
|
|
[ 0.432057] pci 0000:00:1c.0: [8086:a112] type 01 class 0x060400 PCIe Root Port
|
|
[ 0.432094] pci 0000:00:1c.0: PCI bridge to [bus 02]
|
|
[ 0.432100] pci 0000:00:1c.0: bridge window [mem 0xdfc00000-0xdfcfffff]
|
|
[ 0.432168] pci 0000:00:1c.0: PME# supported from D0 D3hot D3cold
|
|
[ 0.433177] pci 0000:00:1c.4: [8086:a114] type 01 class 0x060400 PCIe Root Port
|
|
[ 0.433217] pci 0000:00:1c.4: PCI bridge to [bus 03]
|
|
[ 0.433223] pci 0000:00:1c.4: bridge window [io 0xd000-0xdfff]
|
|
[ 0.433227] pci 0000:00:1c.4: bridge window [mem 0xdf100000-0xdfafffff]
|
|
[ 0.433240] pci 0000:00:1c.4: bridge window [mem 0xd2100000-0xd2afffff 64bit pref]
|
|
[ 0.433313] pci 0000:00:1c.4: PME# supported from D0 D3hot D3cold
|
|
[ 0.434302] pci 0000:00:1d.0: [8086:a118] type 01 class 0x060400 PCIe Root Port
|
|
[ 0.434339] pci 0000:00:1d.0: PCI bridge to [bus 04]
|
|
[ 0.434346] pci 0000:00:1d.0: bridge window [mem 0xdfb00000-0xdfbfffff]
|
|
[ 0.435414] pci 0000:00:1d.0: PME# supported from D0 D3hot D3cold
|
|
[ 0.436404] pci 0000:00:1f.0: [8086:a150] type 00 class 0x060100 conventional PCI endpoint
|
|
[ 0.436960] pci 0000:00:1f.2: [8086:a121] type 00 class 0x058000 conventional PCI endpoint
|
|
[ 0.437032] pci 0000:00:1f.2: BAR 0 [mem 0xdfd4c000-0xdfd4ffff]
|
|
[ 0.437458] pci 0000:00:1f.3: [8086:a170] type 00 class 0x040300 conventional PCI endpoint
|
|
[ 0.437538] pci 0000:00:1f.3: BAR 0 [mem 0xdfd48000-0xdfd4bfff 64bit]
|
|
[ 0.437546] pci 0000:00:1f.3: BAR 4 [mem 0xdfd20000-0xdfd2ffff 64bit]
|
|
[ 0.437594] pci 0000:00:1f.3: PME# supported from D3hot D3cold
|
|
[ 0.438650] pci 0000:00:1f.4: [8086:a123] type 00 class 0x0c0500 conventional PCI endpoint
|
|
[ 0.438783] pci 0000:00:1f.4: BAR 0 [mem 0xdfd52000-0xdfd520ff 64bit]
|
|
[ 0.438795] pci 0000:00:1f.4: BAR 4 [io 0xf000-0xf01f]
|
|
[ 0.439245] pci 0000:00:1f.6: [8086:15b7] type 00 class 0x020000 conventional PCI endpoint
|
|
[ 0.439330] pci 0000:00:1f.6: BAR 0 [mem 0xdfd00000-0xdfd1ffff]
|
|
[ 0.439395] pci 0000:00:1f.6: PME# supported from D0 D3hot D3cold
|
|
[ 0.439871] pci 0000:01:00.0: [10de:13b0] type 00 class 0x030000 PCIe Legacy Endpoint
|
|
[ 0.439935] pci 0000:01:00.0: BAR 0 [mem 0xde000000-0xdeffffff]
|
|
[ 0.439939] pci 0000:01:00.0: BAR 1 [mem 0xc0000000-0xcfffffff 64bit pref]
|
|
[ 0.439944] pci 0000:01:00.0: BAR 3 [mem 0xd0000000-0xd1ffffff 64bit pref]
|
|
[ 0.439947] pci 0000:01:00.0: BAR 5 [io 0xe000-0xe07f]
|
|
[ 0.439950] pci 0000:01:00.0: ROM [mem 0xdf000000-0xdf07ffff pref]
|
|
[ 0.439985] pci 0000:01:00.0: Video device with shadowed ROM at [mem 0x000c0000-0x000dffff]
|
|
[ 0.440081] pci 0000:01:00.0: 32.000 Gb/s available PCIe bandwidth, limited by 2.5 GT/s PCIe x16 link at 0000:00:01.0 (capable of 126.016 Gb/s with 8.0 GT/s PCIe x16 link)
|
|
[ 0.441194] pci 0000:01:00.1: [10de:0fbc] type 00 class 0x040300 PCIe Endpoint
|
|
[ 0.441259] pci 0000:01:00.1: BAR 0 [mem 0xdf080000-0xdf083fff]
|
|
[ 0.441391] pci 0000:00:01.0: ASPM: current common clock configuration is inconsistent, reconfiguring
|
|
[ 0.442454] pci 0000:00:01.0: PCI bridge to [bus 01]
|
|
[ 0.442573] pci 0000:02:00.0: [10ec:525a] type 00 class 0xff0000 PCIe Endpoint
|
|
[ 0.442736] pci 0000:02:00.0: BAR 1 [mem 0xdfc00000-0xdfc00fff]
|
|
[ 0.442844] pci 0000:02:00.0: supports D1 D2
|
|
[ 0.442847] pci 0000:02:00.0: PME# supported from D1 D2 D3hot D3cold
|
|
[ 0.443577] pci 0000:00:1c.0: PCI bridge to [bus 02]
|
|
[ 0.443657] pci 0000:00:1c.4: PCI bridge to [bus 03]
|
|
[ 0.443750] pci 0000:04:00.0: [144d:a804] type 00 class 0x010802 PCIe Endpoint
|
|
[ 0.443821] pci 0000:04:00.0: BAR 0 [mem 0xdfb00000-0xdfb03fff 64bit]
|
|
[ 0.444594] pci 0000:00:1d.0: PCI bridge to [bus 04]
|
|
[ 0.451156] ACPI: PCI: Interrupt link LNKA configured for IRQ 11
|
|
[ 0.451248] ACPI: PCI: Interrupt link LNKB configured for IRQ 10
|
|
[ 0.451338] ACPI: PCI: Interrupt link LNKC configured for IRQ 11
|
|
[ 0.451427] ACPI: PCI: Interrupt link LNKD configured for IRQ 11
|
|
[ 0.451517] ACPI: PCI: Interrupt link LNKE configured for IRQ 11
|
|
[ 0.451606] ACPI: PCI: Interrupt link LNKF configured for IRQ 11
|
|
[ 0.451695] ACPI: PCI: Interrupt link LNKG configured for IRQ 11
|
|
[ 0.451783] ACPI: PCI: Interrupt link LNKH configured for IRQ 11
|
|
[ 0.454917] ACPI: EC: interrupt unblocked
|
|
[ 0.454920] ACPI: EC: event unblocked
|
|
[ 0.454925] ACPI: EC: EC_CMD/EC_SC=0x934, EC_DATA=0x930
|
|
[ 0.454928] ACPI: EC: GPE=0x14
|
|
[ 0.454930] ACPI: \_SB_.PCI0.LPCB.ECDV: Boot DSDT EC initialization complete
|
|
[ 0.454933] ACPI: \_SB_.PCI0.LPCB.ECDV: EC: Used to handle transactions and events
|
|
[ 0.455075] iommu: Default domain type: Translated
|
|
[ 0.455075] iommu: DMA domain TLB invalidation policy: lazy mode
|
|
[ 0.455664] SCSI subsystem initialized
|
|
[ 0.455675] libata version 3.00 loaded.
|
|
[ 0.455675] ACPI: bus type USB registered
|
|
[ 0.455675] usbcore: registered new interface driver usbfs
|
|
[ 0.455675] usbcore: registered new interface driver hub
|
|
[ 0.455675] usbcore: registered new device driver usb
|
|
[ 0.455675] pps_core: LinuxPPS API ver. 1 registered
|
|
[ 0.455675] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
|
|
[ 0.455675] PTP clock support registered
|
|
[ 0.455675] EDAC MC: Ver: 3.0.0
|
|
[ 0.456566] NetLabel: Initializing
|
|
[ 0.456568] NetLabel: domain hash size = 128
|
|
[ 0.456570] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO
|
|
[ 0.456597] NetLabel: unlabeled traffic allowed by default
|
|
[ 0.456630] mctp: management component transport protocol core
|
|
[ 0.456630] NET: Registered PF_MCTP protocol family
|
|
[ 0.456630] PCI: Using ACPI for IRQ routing
|
|
[ 0.483968] PCI: pci_cache_line_size set to 64 bytes
|
|
[ 0.484029] e820: register RAM buffer resource [mem 0x0009dc00-0x0009ffff]
|
|
[ 0.484032] e820: register RAM buffer resource [mem 0x6fc28000-0x6fffffff]
|
|
[ 0.484034] e820: register RAM buffer resource [mem 0x87e000000-0x87fffffff]
|
|
[ 0.484424] pci 0000:01:00.0: vgaarb: setting as boot VGA device
|
|
[ 0.484427] pci 0000:01:00.0: vgaarb: bridge control possible
|
|
[ 0.484429] pci 0000:01:00.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none
|
|
[ 0.484433] vgaarb: loaded
|
|
[ 0.485564] hpet0: at MMIO 0xfed00000, IRQs 2, 8, 0, 0, 0, 0, 0, 0
|
|
[ 0.485564] hpet0: 8 comparators, 64-bit 24.000000 MHz counter
|
|
[ 0.494486] clocksource: Switched to clocksource tsc-early
|
|
[ 0.494762] VFS: Disk quotas dquot_6.6.0
|
|
[ 0.494786] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)
|
|
[ 0.494980] AppArmor: AppArmor Filesystem Enabled
|
|
[ 0.495004] acpi PNP0C02:00: Skipped [io 0x002e-0x002f]
|
|
[ 0.495008] acpi PNP0C02:00: Skipped [io 0x004e-0x004f]
|
|
[ 0.495011] acpi PNP0C02:00: Skipped [io 0x0061]
|
|
[ 0.495013] acpi PNP0C02:00: Skipped [io 0x0063]
|
|
[ 0.495015] acpi PNP0C02:00: Skipped [io 0x0065]
|
|
[ 0.495017] acpi PNP0C02:00: Skipped [io 0x0067]
|
|
[ 0.495019] acpi PNP0C02:00: Skipped [io 0x0070]
|
|
[ 0.495021] acpi PNP0C02:00: Skipped [io 0x0080]
|
|
[ 0.495023] acpi PNP0C02:00: Skipped [io 0x0092]
|
|
[ 0.495025] acpi PNP0C02:00: Skipped [io 0x00b2-0x00b3]
|
|
[ 0.495028] acpi PNP0C02:00: Reserved [io 0x0680-0x069f]
|
|
[ 0.495031] acpi PNP0C02:00: Reserved [io 0xffff]
|
|
[ 0.495033] acpi PNP0C02:00: Reserved [io 0xffff]
|
|
[ 0.495035] acpi PNP0C02:00: Reserved [io 0xffff]
|
|
[ 0.495038] acpi PNP0C02:00: Could not reserve [io 0x1800-0x18fe]
|
|
[ 0.495040] acpi PNP0C02:00: Reserved [io 0x164e-0x164f]
|
|
[ 0.495047] acpi PNP0C02:01: Reserved [io 0x0800-0x087f]
|
|
[ 0.495299] acpi PNP0C02:02: Reserved [mem 0xfed10000-0xfed17fff]
|
|
[ 0.495302] acpi PNP0C02:02: Reserved [mem 0xfed18000-0xfed18fff]
|
|
[ 0.495304] acpi PNP0C02:02: Reserved [mem 0xfed19000-0xfed19fff]
|
|
[ 0.495307] acpi PNP0C02:02: Reserved [mem 0xe0000000-0xefffffff]
|
|
[ 0.495309] acpi PNP0C02:02: Reserved [mem 0xfed20000-0xfed3ffff]
|
|
[ 0.495312] acpi PNP0C02:02: Could not reserve [mem 0xfed90000-0xfed93fff]
|
|
[ 0.495314] acpi PNP0C02:02: Reserved [mem 0xfed45000-0xfed8ffff]
|
|
[ 0.495316] acpi PNP0C02:02: Reserved [mem 0xff000000-0xffffffff]
|
|
[ 0.495319] acpi PNP0C02:02: Could not reserve [mem 0xfee00000-0xfeefffff]
|
|
[ 0.495322] acpi PNP0C02:02: Reserved [mem 0xdffe0000-0xdfffffff]
|
|
[ 0.495358] acpi PNP0C02:03: Reserved [mem 0xfd000000-0xfdabffff]
|
|
[ 0.495361] acpi PNP0C02:03: Reserved [mem 0xfdad0000-0xfdadffff]
|
|
[ 0.495364] acpi PNP0C02:03: Reserved [mem 0xfdb00000-0xfdffffff]
|
|
[ 0.495366] acpi PNP0C02:03: Could not reserve [mem 0xfe000000-0xfe01ffff]
|
|
[ 0.495369] acpi PNP0C02:03: Reserved [mem 0xfe036000-0xfe03bfff]
|
|
[ 0.495371] acpi PNP0C02:03: Reserved [mem 0xfe03d000-0xfe3fffff]
|
|
[ 0.495373] acpi PNP0C02:03: Reserved [mem 0xfe410000-0xfe7fffff]
|
|
[ 0.495790] acpi PNP0C02:04: Reserved [io 0xff00-0xfffe]
|
|
[ 0.497525] acpi PNP0C02:05: Reserved [mem 0xfdaf0000-0xfdafffff]
|
|
[ 0.497529] acpi PNP0C02:05: Reserved [mem 0xfdae0000-0xfdaeffff]
|
|
[ 0.497531] acpi PNP0C02:05: Reserved [mem 0xfdac0000-0xfdacffff]
|
|
[ 0.497567] pnp: PnP ACPI init
|
|
[ 0.503530] pnp: PnP ACPI: found 4 devices
|
|
[ 0.510618] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns
|
|
[ 0.510717] NET: Registered PF_INET protocol family
|
|
[ 0.510872] IP idents hash table entries: 262144 (order: 9, 2097152 bytes, linear)
|
|
[ 0.537143] tcp_listen_portaddr_hash hash table entries: 16384 (order: 6, 262144 bytes, linear)
|
|
[ 0.537192] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)
|
|
[ 0.537324] TCP established hash table entries: 262144 (order: 9, 2097152 bytes, linear)
|
|
[ 0.537710] TCP bind hash table entries: 65536 (order: 9, 2097152 bytes, linear)
|
|
[ 0.538025] TCP: Hash tables configured (established 262144 bind 65536)
|
|
[ 0.538168] MPTCP token hash table entries: 32768 (order: 8, 786432 bytes, linear)
|
|
[ 0.538372] UDP hash table entries: 16384 (order: 8, 1048576 bytes, linear)
|
|
[ 0.538600] UDP-Lite hash table entries: 16384 (order: 8, 1048576 bytes, linear)
|
|
[ 0.538831] NET: Registered PF_UNIX/PF_LOCAL protocol family
|
|
[ 0.538840] NET: Registered PF_XDP protocol family
|
|
[ 0.538860] pci 0000:00:01.0: PCI bridge to [bus 01]
|
|
[ 0.538865] pci 0000:00:01.0: bridge window [io 0xe000-0xefff]
|
|
[ 0.538875] pci 0000:00:01.0: bridge window [mem 0xde000000-0xdf0fffff]
|
|
[ 0.538882] pci 0000:00:01.0: bridge window [mem 0xc0000000-0xd1ffffff 64bit pref]
|
|
[ 0.538894] pci 0000:00:1c.0: PCI bridge to [bus 02]
|
|
[ 0.538903] pci 0000:00:1c.0: bridge window [mem 0xdfc00000-0xdfcfffff]
|
|
[ 0.538924] pci 0000:00:1c.4: PCI bridge to [bus 03]
|
|
[ 0.538928] pci 0000:00:1c.4: bridge window [io 0xd000-0xdfff]
|
|
[ 0.538938] pci 0000:00:1c.4: bridge window [mem 0xdf100000-0xdfafffff]
|
|
[ 0.538945] pci 0000:00:1c.4: bridge window [mem 0xd2100000-0xd2afffff 64bit pref]
|
|
[ 0.538957] pci 0000:00:1d.0: PCI bridge to [bus 04]
|
|
[ 0.538966] pci 0000:00:1d.0: bridge window [mem 0xdfb00000-0xdfbfffff]
|
|
[ 0.538984] pci_bus 0000:00: resource 4 [io 0x0000-0x0cf7 window]
|
|
[ 0.538987] pci_bus 0000:00: resource 5 [io 0x0d00-0xffff window]
|
|
[ 0.538989] pci_bus 0000:00: resource 6 [mem 0x000a0000-0x000bffff window]
|
|
[ 0.538992] pci_bus 0000:00: resource 7 [mem 0x80000000-0xdfffffff window]
|
|
[ 0.538995] pci_bus 0000:00: resource 8 [mem 0xfd000000-0xfe7fffff window]
|
|
[ 0.538997] pci_bus 0000:01: resource 0 [io 0xe000-0xefff]
|
|
[ 0.538999] pci_bus 0000:01: resource 1 [mem 0xde000000-0xdf0fffff]
|
|
[ 0.539002] pci_bus 0000:01: resource 2 [mem 0xc0000000-0xd1ffffff 64bit pref]
|
|
[ 0.539004] pci_bus 0000:02: resource 1 [mem 0xdfc00000-0xdfcfffff]
|
|
[ 0.539007] pci_bus 0000:03: resource 0 [io 0xd000-0xdfff]
|
|
[ 0.539009] pci_bus 0000:03: resource 1 [mem 0xdf100000-0xdfafffff]
|
|
[ 0.539011] pci_bus 0000:03: resource 2 [mem 0xd2100000-0xd2afffff 64bit pref]
|
|
[ 0.539014] pci_bus 0000:04: resource 1 [mem 0xdfb00000-0xdfbfffff]
|
|
[ 0.550343] pci 0000:00:14.0: quirk_usb_early_handoff+0x0/0x740 took 10827 usecs
|
|
[ 0.550394] pci 0000:01:00.1: extending delay after power-on from D3hot to 20 msec
|
|
[ 0.550429] pci 0000:01:00.1: D0 power state depends on 0000:01:00.0
|
|
[ 0.550444] PCI: CLS 0 bytes, default 64
|
|
[ 0.550492] pci 0000:00:1f.1: [8086:a120] type 00 class 0x058000 conventional PCI endpoint
|
|
[ 0.550634] pci 0000:00:1f.1: BAR 0 [mem 0xfd000000-0xfdffffff 64bit]
|
|
[ 0.550813] DMAR: No ATSR found
|
|
[ 0.550815] DMAR: No SATC found
|
|
[ 0.550817] DMAR: dmar0: Using Queued invalidation
|
|
[ 0.550898] Trying to unpack rootfs image as initramfs...
|
|
[ 0.550915] pci 0000:00:00.0: Adding to iommu group 0
|
|
[ 0.550938] pci 0000:00:01.0: Adding to iommu group 1
|
|
[ 0.550952] pci 0000:00:04.0: Adding to iommu group 2
|
|
[ 0.550977] pci 0000:00:14.0: Adding to iommu group 3
|
|
[ 0.550990] pci 0000:00:14.2: Adding to iommu group 3
|
|
[ 0.551007] pci 0000:00:16.0: Adding to iommu group 4
|
|
[ 0.551020] pci 0000:00:17.0: Adding to iommu group 5
|
|
[ 0.551024] pci 0000:00:1c.0: Intel SPT PCH root port ACS workaround enabled
|
|
[ 0.551039] pci 0000:00:1c.0: Adding to iommu group 6
|
|
[ 0.551045] pci 0000:00:1c.4: Intel SPT PCH root port ACS workaround enabled
|
|
[ 0.551060] pci 0000:00:1c.4: Adding to iommu group 7
|
|
[ 0.551064] pci 0000:00:1d.0: Intel SPT PCH root port ACS workaround enabled
|
|
[ 0.551083] pci 0000:00:1d.0: Adding to iommu group 8
|
|
[ 0.551115] pci 0000:00:1f.0: Adding to iommu group 9
|
|
[ 0.551131] pci 0000:00:1f.2: Adding to iommu group 9
|
|
[ 0.551144] pci 0000:00:1f.3: Adding to iommu group 9
|
|
[ 0.551157] pci 0000:00:1f.4: Adding to iommu group 9
|
|
[ 0.551170] pci 0000:00:1f.6: Adding to iommu group 10
|
|
[ 0.551178] pci 0000:01:00.0: Adding to iommu group 1
|
|
[ 0.551184] pci 0000:01:00.1: Adding to iommu group 1
|
|
[ 0.551199] pci 0000:02:00.0: Adding to iommu group 11
|
|
[ 0.551213] pci 0000:04:00.0: Adding to iommu group 12
|
|
[ 0.552300] DMAR: Intel(R) Virtualization Technology for Directed I/O
|
|
[ 0.552303] PCI-DMA: Using software bounce buffering for IO (SWIOTLB)
|
|
[ 0.552305] software IO TLB: mapped [mem 0x000000006bc28000-0x000000006fc28000] (64MB)
|
|
[ 0.556326] Initialise system trusted keyrings
|
|
[ 0.556340] Key type blacklist registered
|
|
[ 0.556470] workingset: timestamp_bits=36 max_order=23 bucket_order=0
|
|
[ 0.556981] squashfs: version 4.0 (2009/01/31) Phillip Lougher
|
|
[ 0.557245] fuse: init (API version 7.45)
|
|
[ 0.557847] integrity: Platform Keyring initialized
|
|
[ 0.557852] integrity: Machine keyring initialized
|
|
[ 0.575901] Key type asymmetric registered
|
|
[ 0.575907] Asymmetric key parser 'x509' registered
|
|
[ 0.575939] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 242)
|
|
[ 0.576061] io scheduler mq-deadline registered
|
|
[ 0.578024] ledtrig-cpu: registered to indicate activity on CPUs
|
|
[ 0.578329] pcieport 0000:00:01.0: PME: Signaling with IRQ 121
|
|
[ 0.578497] pcieport 0000:00:01.0: AER: enabled with IRQ 121
|
|
[ 0.578594] pcieport 0000:00:1c.0: Intel SPT PCH root port ACS workaround enabled
|
|
[ 0.578823] pcieport 0000:00:1c.0: PME: Signaling with IRQ 122
|
|
[ 0.578976] pcieport 0000:00:1c.0: AER: enabled with IRQ 122
|
|
[ 0.579085] pcieport 0000:00:1c.4: Intel SPT PCH root port ACS workaround enabled
|
|
[ 0.579296] pcieport 0000:00:1c.4: PME: Signaling with IRQ 123
|
|
[ 0.579457] pcieport 0000:00:1c.4: AER: enabled with IRQ 123
|
|
[ 0.579489] pcieport 0000:00:1c.4: pciehp: Slot #8 AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug+ Surprise+ Interlock- NoCompl+ IbPresDis- LLActRep+
|
|
[ 0.579732] pcieport 0000:00:1d.0: Intel SPT PCH root port ACS workaround enabled
|
|
[ 0.579937] pcieport 0000:00:1d.0: PME: Signaling with IRQ 124
|
|
[ 0.580186] pcieport 0000:00:1d.0: AER: enabled with IRQ 124
|
|
[ 0.581264] ACPI: AC: AC Adapter [AC] (on-line)
|
|
[ 0.581349] input: Lid Switch as /devices/platform/PNP0C0D:00/input/input0
|
|
[ 0.581373] ACPI: button: Lid Switch [LID0]
|
|
[ 0.581433] input: Power Button as /devices/platform/PNP0C0C:00/input/input1
|
|
[ 0.581449] ACPI: button: Power Button [PBTN]
|
|
[ 0.581507] input: Sleep Button as /devices/platform/PNP0C0E:00/input/input2
|
|
[ 0.581532] ACPI: button: Sleep Button [SBTN]
|
|
[ 0.581572] input: Power Button as /devices/platform/LNXPWRBN:00/input/input3
|
|
[ 0.581602] ACPI: button: Power Button [PWRF]
|
|
[ 0.582035] Monitor-Mwait will be used to enter C-1 state
|
|
[ 0.582043] Monitor-Mwait will be used to enter C-2 state
|
|
[ 0.582049] Monitor-Mwait will be used to enter C-3 state
|
|
[ 0.585725] acpi LNXTHERM:00: registered as thermal_zone0
|
|
[ 0.585729] ACPI: thermal: Thermal Zone [THM] (25 C)
|
|
[ 0.586122] Serial: 8250/16550 driver, 32 ports, IRQ sharing enabled
|
|
[ 0.590386] Linux agpgart interface v0.103
|
|
[ 0.602075] tpm_tis MSFT0101:00: 2.0 TPM (device-id 0xFE, rev-id 2)
|
|
[ 0.626231] ACPI: battery: Slot [BAT0] (battery present)
|
|
[ 0.639012] loop: module loaded
|
|
[ 0.639365] ACPI: bus type drm_connector registered
|
|
[ 0.639667] tun: Universal TUN/TAP device driver, 1.6
|
|
[ 0.639721] PPP generic driver version 2.4.2
|
|
[ 0.639830] i8042: PNP: PS/2 Controller [PNP0303:PS2K,PNP0f13:PS2M] at 0x60,0x64 irq 1,12
|
|
[ 0.640147] i8042: Warning: Keylock active
|
|
[ 0.642591] serio: i8042 KBD port at 0x60,0x64 irq 1
|
|
[ 0.642598] serio: i8042 AUX port at 0x60,0x64 irq 12
|
|
[ 0.642755] mousedev: PS/2 mouse device common for all mice
|
|
[ 0.643183] rtc_cmos 00:00: RTC can wake from S4
|
|
[ 0.643950] rtc_cmos 00:00: registered as rtc0
|
|
[ 0.644090] rtc_cmos 00:00: setting system clock to 2026-07-27T13:07:05 UTC (1785157625)
|
|
[ 0.644124] rtc_cmos 00:00: alarms up to one month, y3k, 242 bytes nvram
|
|
[ 0.644136] i2c_dev: i2c /dev entries driver
|
|
[ 0.645034] input: AT Translated Set 2 keyboard as /devices/platform/i8042/serio0/input/input4
|
|
[ 0.645169] device-mapper: core: CONFIG_IMA_DISABLE_HTABLE is disabled. Duplicate IMA measurements will not be recorded in the IMA log.
|
|
[ 0.645200] device-mapper: uevent: version 1.0.3
|
|
[ 0.645365] device-mapper: ioctl: 4.50.0-ioctl (2025-04-28) initialised: dm-devel@lists.linux.dev
|
|
[ 0.645373] intel_pstate: Intel P-state driver initializing
|
|
[ 0.646895] intel_pstate: HWP enabled
|
|
[ 0.647017] drop_monitor: Initializing network drop monitor service
|
|
[ 0.647144] NET: Registered PF_INET6 protocol family
|
|
[ 0.647482] Segment Routing with IPv6
|
|
[ 0.647491] In-situ OAM (IOAM) with IPv6
|
|
[ 0.647512] NET: Registered PF_PACKET protocol family
|
|
[ 0.647533] Bridge firewalling registered
|
|
[ 0.647588] Key type dns_resolver registered
|
|
[ 0.649720] ENERGY_PERF_BIAS: Set to 'normal', was 'performance'
|
|
[ 0.650226] microcode: Current revision: 0x000000f0
|
|
[ 0.651220] IPI shorthand broadcast: enabled
|
|
[ 0.653213] sched_clock: Marking stable (645000822, 7904611)->(663639749, -10734316)
|
|
[ 0.653609] registered taskstats version 1
|
|
[ 0.655260] Loading compiled-in X.509 certificates
|
|
[ 0.655870] Loaded X.509 cert 'Build time autogenerated kernel key: f4065fd0a2a97ad8fb261e072b7b62f295ff3990'
|
|
[ 0.660997] Demotion targets for Node 0: null
|
|
[ 0.661338] Key type .fscrypt registered
|
|
[ 0.661340] Key type fscrypt-provisioning registered
|
|
[ 0.661415] Key type big_key registered
|
|
[ 0.661420] Key type trusted registered
|
|
[ 1.071517] Freeing initrd memory: 89812K
|
|
[ 1.088667] Key type encrypted registered
|
|
[ 1.088671] AppArmor: AppArmor sha256 policy hashing enabled
|
|
[ 1.088692] Loading compiled-in module X.509 certificates
|
|
[ 1.089174] Loaded X.509 cert 'Build time autogenerated kernel key: f4065fd0a2a97ad8fb261e072b7b62f295ff3990'
|
|
[ 1.089177] ima: Allocated hash algorithm: sha256
|
|
[ 1.124190] ima: No architecture policies found
|
|
[ 1.124210] evm: Initialising EVM extended attributes:
|
|
[ 1.124211] evm: security.selinux
|
|
[ 1.124212] evm: security.SMACK64
|
|
[ 1.124213] evm: security.SMACK64EXEC
|
|
[ 1.124214] evm: security.SMACK64TRANSMUTE
|
|
[ 1.124215] evm: security.SMACK64MMAP
|
|
[ 1.124216] evm: security.apparmor
|
|
[ 1.124217] evm: security.ima
|
|
[ 1.124218] evm: security.capability
|
|
[ 1.124219] evm: HMAC attrs: 0x1
|
|
[ 1.124600] PM: Magic number: 2:479:130
|
|
[ 1.124678] acpi PNP0C02:02: hash matches
|
|
[ 1.124687] acpi device:05: hash matches
|
|
[ 1.124692] memory memory271: hash matches
|
|
[ 1.125056] RAS: Correctable Errors collector initialized.
|
|
[ 1.125284] clk: Disabling unused clocks
|
|
[ 1.125286] PM: genpd: Disabling unused power domains
|
|
[ 1.126588] Freeing unused decrypted memory: 2028K
|
|
[ 1.127387] Freeing unused kernel image (initmem) memory: 5092K
|
|
[ 1.127531] Write protecting the kernel read-only data: 38912k
|
|
[ 1.128035] Freeing unused kernel image (text/rodata gap) memory: 84K
|
|
[ 1.128328] Freeing unused kernel image (rodata/data gap) memory: 212K
|
|
[ 1.174209] x86/mm: Checked W+X mappings: passed, no W+X pages found.
|
|
[ 1.174211] x86/mm: Checking user space page tables
|
|
[ 1.218285] x86/mm: Checked W+X mappings: passed, no W+X pages found.
|
|
[ 1.218292] Run /init as init process
|
|
[ 1.218293] with arguments:
|
|
[ 1.218295] /init
|
|
[ 1.218296] with environment:
|
|
[ 1.218297] HOME=/
|
|
[ 1.218298] TERM=linux
|
|
[ 1.467260] wmi_bus wmi_bus-PNP0C14:02: [Firmware Bug]: WQBC data block query control method not found
|
|
[ 1.471000] wmi_bus wmi_bus-PNP0C14:04: [Firmware Info]: F1DDEE52-063C-4784-A11E-8A06684B9BF5 has zero instances
|
|
[ 1.471004] wmi_bus wmi_bus-PNP0C14:04: [Firmware Info]: F1DDEE52-063C-4784-A11E-8A06684B9BF9 has zero instances
|
|
[ 1.471007] wmi_bus wmi_bus-PNP0C14:04: [Firmware Info]: F1DDEE52-063C-4784-A11E-8A06684B9BFA has zero instances
|
|
[ 1.481320] ACPI: video: Video Device [PEGP] (multi-head: yes rom: yes post: no)
|
|
[ 1.482327] input: Video Bus as /devices/pci0000:00/0000:00:01.0/acpi.video_bus.1/input/input6
|
|
[ 1.489135] ahci 0000:00:17.0: controller can't do SNTF, turning off CAP_SNTF
|
|
[ 1.489205] ahci 0000:00:17.0: SSS flag set, parallel bus scan disabled
|
|
[ 1.489231] ahci 0000:00:17.0: AHCI vers 0001.0301, 32 command slots, 6 Gbps, RAID mode
|
|
[ 1.489235] ahci 0000:00:17.0: 3/3 ports implemented (port mask 0x1a)
|
|
[ 1.489238] ahci 0000:00:17.0: flags: 64bit ncq stag led clo only pio slum part ems sxs deso sadm sds apst
|
|
[ 1.492518] e1000e: Intel(R) PRO/1000 Network Driver
|
|
[ 1.492521] e1000e: Copyright(c) 1999 - 2015 Intel Corporation.
|
|
[ 1.492760] e1000e 0000:00:1f.6: Interrupt Throttling Rate (ints/sec) set to dynamic conservative mode
|
|
[ 1.495189] scsi host0: ahci
|
|
[ 1.495409] scsi host1: ahci
|
|
[ 1.495632] scsi host2: ahci
|
|
[ 1.495961] scsi host3: ahci
|
|
[ 1.496175] scsi host4: ahci
|
|
[ 1.496238] ata1: DUMMY
|
|
[ 1.496242] ata2: SATA max UDMA/133 abar m2048@0xdfd53000 port 0xdfd53180 irq 126 lpm-pol 1 ext
|
|
[ 1.496245] ata3: DUMMY
|
|
[ 1.496246] ata4: SATA max UDMA/133 abar m2048@0xdfd53000 port 0xdfd53280 irq 126 lpm-pol 4
|
|
[ 1.496249] ata5: SATA max UDMA/133 abar m2048@0xdfd53000 port 0xdfd53300 irq 126 lpm-pol 4
|
|
[ 1.563917] tsc: Refined TSC clocksource calibration: 2903.999 MHz
|
|
[ 1.563941] clocksource: tsc: mask: 0xffffffffffffffff max_cycles: 0x29dc050a48e, max_idle_ns: 440795325698 ns
|
|
[ 1.563997] clocksource: Switched to clocksource tsc
|
|
[ 1.716539] e1000e 0000:00:1f.6 0000:00:1f.6 (uninitialized): registered PHC clock
|
|
[ 1.779536] e1000e 0000:00:1f.6 eth0: (PCI Express:2.5GT/s:Width x1) a4:4c:c8:08:d1:b8
|
|
[ 1.779559] e1000e 0000:00:1f.6 eth0: Intel(R) PRO/1000 Network Connection
|
|
[ 1.779626] e1000e 0000:00:1f.6 eth0: MAC: 12, PHY: 12, PBA No: FFFFFF-0FF
|
|
[ 1.802252] ata2: SATA link down (SStatus 0 SControl 300)
|
|
[ 2.116197] ata4: SATA link down (SStatus 4 SControl 300)
|
|
[ 2.259606] input: AlpsPS/2 ALPS DualPoint Stick as /devices/platform/i8042/serio1/input/input8
|
|
[ 2.274377] input: AlpsPS/2 ALPS DualPoint TouchPad as /devices/platform/i8042/serio1/input/input7
|
|
[ 2.428485] ata5: SATA link down (SStatus 4 SControl 300)
|
|
[ 2.431606] Key type psk registered
|
|
[ 2.432224] xhci_hcd 0000:00:14.0: xHCI Host Controller
|
|
[ 2.432232] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 1
|
|
[ 2.432277] i801_smbus 0000:00:1f.4: SPD Write Disable is set
|
|
[ 2.432306] i801_smbus 0000:00:1f.4: SMBus using PCI interrupt
|
|
[ 2.433958] e1000e 0000:00:1f.6 enp0s31f6: renamed from eth0
|
|
[ 2.434654] xhci_hcd 0000:00:14.0: hcc params 0x200077c1 hci version 0x100 quirks 0x0000000001109810
|
|
[ 2.435307] xhci_hcd 0000:00:14.0: xHCI Host Controller
|
|
[ 2.435313] xhci_hcd 0000:00:14.0: new USB bus registered, assigned bus number 2
|
|
[ 2.435317] xhci_hcd 0000:00:14.0: Host supports USB 3.0 SuperSpeed
|
|
[ 2.435401] usb usb1: New USB device found, idVendor=1d6b, idProduct=0002, bcdDevice= 7.00
|
|
[ 2.435405] usb usb1: New USB device strings: Mfr=3, Product=2, SerialNumber=1
|
|
[ 2.435407] usb usb1: Product: xHCI Host Controller
|
|
[ 2.435409] usb usb1: Manufacturer: Linux 7.0.14-6-pve xhci-hcd
|
|
[ 2.435410] usb usb1: SerialNumber: 0000:00:14.0
|
|
[ 2.435660] hub 1-0:1.0: USB hub found
|
|
[ 2.435691] hub 1-0:1.0: 16 ports detected
|
|
[ 2.438017] i2c i2c-0: Successfully instantiated SPD at 0x50
|
|
[ 2.438302] i2c i2c-0: Successfully instantiated SPD at 0x51
|
|
[ 2.438583] i2c i2c-0: Successfully instantiated SPD at 0x52
|
|
[ 2.438864] i2c i2c-0: Successfully instantiated SPD at 0x53
|
|
[ 2.441552] usb usb2: New USB device found, idVendor=1d6b, idProduct=0003, bcdDevice= 7.00
|
|
[ 2.441555] usb usb2: New USB device strings: Mfr=3, Product=2, SerialNumber=1
|
|
[ 2.441558] usb usb2: Product: xHCI Host Controller
|
|
[ 2.441559] usb usb2: Manufacturer: Linux 7.0.14-6-pve xhci-hcd
|
|
[ 2.441561] usb usb2: SerialNumber: 0000:00:14.0
|
|
[ 2.441677] hub 2-0:1.0: USB hub found
|
|
[ 2.441694] hub 2-0:1.0: 10 ports detected
|
|
[ 2.442879] nvme nvme0: pci function 0000:04:00.0
|
|
[ 2.455481] nvme nvme0: 7/0/0 default/read/poll queues
|
|
[ 2.479343] nvme0n1: p1 p2 p3
|
|
[ 2.675310] usb 1-10: new full-speed USB device number 2 using xhci_hcd
|
|
[ 2.802389] usb 1-10: New USB device found, idVendor=0a5c, idProduct=5832, bcdDevice= 1.01
|
|
[ 2.802394] usb 1-10: New USB device strings: Mfr=1, Product=2, SerialNumber=3
|
|
[ 2.802396] usb 1-10: Product: 5880
|
|
[ 2.802398] usb 1-10: Manufacturer: Broadcom Corp
|
|
[ 2.802399] usb 1-10: SerialNumber: 0123456789ABCD
|
|
[ 2.917132] usb 2-1: new SuperSpeed USB device number 2 using xhci_hcd
|
|
[ 3.041715] usb 2-1: Int endpoint with wBytesPerInterval of 0 in config 1 interface 0 altsetting 0 ep 129: setting to 16
|
|
[ 3.094482] usb 2-1: Int endpoint with wBytesPerInterval of 0 in config 2 interface 0 altsetting 0 ep 129: setting to 16
|
|
[ 3.146138] usb 2-1: Int endpoint with wBytesPerInterval of 0 in config 3 interface 0 altsetting 0 ep 129: setting to 16
|
|
[ 3.203220] usb 2-1: New USB device found, idVendor=0b95, idProduct=1790, bcdDevice= 2.00
|
|
[ 3.203224] usb 2-1: New USB device strings: Mfr=1, Product=2, SerialNumber=3
|
|
[ 3.203226] usb 2-1: Product: AX88179A
|
|
[ 3.203228] usb 2-1: Manufacturer: ASIX
|
|
[ 3.203229] usb 2-1: SerialNumber: 00000000004885
|
|
[ 3.237952] raid6: avx2x4 gen() 36933 MB/s
|
|
[ 3.254949] raid6: avx2x2 gen() 37708 MB/s
|
|
[ 3.271906] raid6: avx2x1 gen() 21801 MB/s
|
|
[ 3.271909] raid6: using algorithm avx2x2 gen() 37708 MB/s
|
|
[ 3.272171] usbcore: registered new interface driver cdc_ether
|
|
[ 3.288952] raid6: .... xor() 20915 MB/s, rmw enabled
|
|
[ 3.288953] raid6: using avx2x2 recovery algorithm
|
|
[ 3.290213] xor: automatically using best checksumming function avx
|
|
[ 3.397620] Btrfs loaded, zoned=yes, fsverity=yes
|
|
[ 3.479979] cdc_ncm 2-1:2.0: MAC-Address: 8c:ae:4c:cd:a7:74
|
|
[ 3.479984] cdc_ncm 2-1:2.0: setting rx_max = 16384
|
|
[ 3.492938] cdc_ncm 2-1:2.0: setting tx_max = 16384
|
|
[ 3.503157] cdc_ncm 2-1:2.0 eth0: register 'cdc_ncm' at usb-0000:00:14.0-1, CDC NCM (NO ZLP), 8c:ae:4c:cd:a7:74
|
|
[ 3.514714] usbcore: registered new interface driver cdc_ncm
|
|
[ 3.517726] cdc_ncm 2-1:2.0 enx8cae4ccda774: renamed from eth0
|
|
[ 3.559989] EXT4-fs (dm-1): orphan cleanup on readonly fs
|
|
[ 3.560503] EXT4-fs (dm-1): mounted filesystem 1d0d11c1-7e0f-4e90-9adb-6c049dc744cf ro with ordered data mode. Quota mode: none.
|
|
[ 3.709814] systemd[1]: Inserted module 'autofs4'
|
|
[ 3.738383] 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)
|
|
[ 3.738389] systemd[1]: Detected architecture x86-64.
|
|
[ 3.740069] systemd[1]: Hostname set to <pfv-tsys3>.
|
|
[ 3.793609] systemd[1]: bpf-restrict-fs: BPF LSM hook not enabled in the kernel, BPF LSM not supported.
|
|
[ 3.921754] systemd[1]: Queued start job for default target graphical.target.
|
|
[ 3.935819] systemd[1]: Created slice system-getty.slice - Slice /system/getty.
|
|
[ 3.936386] systemd[1]: Created slice system-modprobe.slice - Slice /system/modprobe.
|
|
[ 3.937003] systemd[1]: Created slice system-xfs_scrub.slice - xfs_scrub background service slice.
|
|
[ 3.937310] systemd[1]: Created slice user.slice - User and Session Slice.
|
|
[ 3.937370] systemd[1]: Started systemd-ask-password-console.path - Dispatch Password Requests to Console Directory Watch.
|
|
[ 3.937419] systemd[1]: Started systemd-ask-password-wall.path - Forward Password Requests to Wall Directory Watch.
|
|
[ 3.937583] systemd[1]: Set up automount proc-sys-fs-binfmt_misc.automount - Arbitrary Executable File Formats File System Automount Point.
|
|
[ 3.937603] systemd[1]: Expecting device dev-pve-swap.device - /dev/pve/swap...
|
|
[ 3.937613] systemd[1]: Reached target ceph-fuse.target - ceph target allowing to start/stop all ceph-fuse@.service instances at once.
|
|
[ 3.937624] systemd[1]: Reached target ceph.target - ceph target allowing to start/stop all ceph*@.service instances at once.
|
|
[ 3.937645] systemd[1]: Reached target network-pre.target - Preparation for Network.
|
|
[ 3.937660] systemd[1]: Reached target paths.target - Path Units.
|
|
[ 3.937684] systemd[1]: Reached target slices.target - Slice Units.
|
|
[ 3.937775] systemd[1]: Listening on dm-event.socket - Device-mapper event daemon FIFOs.
|
|
[ 3.937830] systemd[1]: Listening on lvm2-lvmpolld.socket - LVM2 poll daemon socket.
|
|
[ 3.941659] systemd[1]: Listening on rpcbind.socket - RPCbind Server Activation Socket.
|
|
[ 3.942472] systemd[1]: Listening on systemd-creds.socket - Credential Encryption/Decryption.
|
|
[ 3.942547] systemd[1]: Listening on systemd-initctl.socket - initctl Compatibility Named Pipe.
|
|
[ 3.942646] systemd[1]: Listening on systemd-journald-dev-log.socket - Journal Socket (/dev/log).
|
|
[ 3.942749] systemd[1]: Listening on systemd-journald.socket - Journal Sockets.
|
|
[ 3.942780] systemd[1]: systemd-pcrextend.socket - TPM PCR Measurements skipped, unmet condition check ConditionSecurity=measured-uki
|
|
[ 3.942797] systemd[1]: systemd-pcrlock.socket - Make TPM PCR Policy skipped, unmet condition check ConditionSecurity=measured-uki
|
|
[ 3.942878] systemd[1]: Listening on systemd-udevd-control.socket - udev Control Socket.
|
|
[ 3.942962] systemd[1]: Listening on systemd-udevd-kernel.socket - udev Kernel Socket.
|
|
[ 3.944038] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
|
|
[ 3.944861] systemd[1]: Mounting dev-mqueue.mount - POSIX Message Queue File System...
|
|
[ 3.944964] systemd[1]: run-lock.mount: Directory /run/lock to mount over is not empty, mounting anyway.
|
|
[ 3.945825] systemd[1]: Mounting run-lock.mount - Legacy Locks Directory /run/lock...
|
|
[ 3.946694] systemd[1]: Mounting sys-kernel-debug.mount - Kernel Debug File System...
|
|
[ 3.947995] systemd[1]: Mounting sys-kernel-tracing.mount - Kernel Trace File System...
|
|
[ 3.948070] systemd[1]: auth-rpcgss-module.service - Kernel Module supporting RPCSEC_GSS skipped, unmet condition check ConditionPathExists=/etc/krb5.keytab
|
|
[ 3.949698] systemd[1]: Starting keyboard-setup.service - Set the console keyboard layout...
|
|
[ 3.951162] systemd[1]: Starting kmod-static-nodes.service - Create List of Static Device Nodes...
|
|
[ 3.953111] systemd[1]: Starting lvm2-monitor.service - Monitoring of LVM2 mirrors, snapshots etc. using dmeventd or progress polling...
|
|
[ 3.955626] systemd[1]: Starting modprobe@configfs.service - Load Kernel Module configfs...
|
|
[ 3.957134] systemd[1]: Starting modprobe@drm.service - Load Kernel Module drm...
|
|
[ 3.958760] systemd[1]: Starting modprobe@efi_pstore.service - Load Kernel Module efi_pstore...
|
|
[ 3.960157] systemd[1]: Starting modprobe@fuse.service - Load Kernel Module fuse...
|
|
[ 3.961457] systemd[1]: Starting modprobe@nvme_fabrics.service - Load Kernel Module nvme_fabrics...
|
|
[ 3.961782] systemd[1]: systemd-fsck-root.service - File System Check on Root Device skipped, unmet condition check ConditionPathExists=!/run/initramfs/fsck-root
|
|
[ 3.961821] 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
|
|
[ 3.964533] systemd[1]: Starting systemd-journald.service - Journal Service...
|
|
[ 3.966569] systemd[1]: Starting systemd-modules-load.service - Load Kernel Modules...
|
|
[ 3.966597] systemd[1]: systemd-pcrmachine.service - TPM PCR Machine ID Measurement skipped, unmet condition check ConditionSecurity=measured-uki
|
|
[ 3.968180] systemd[1]: Starting systemd-remount-fs.service - Remount Root and Kernel File Systems...
|
|
[ 3.968270] systemd[1]: systemd-tpm2-setup-early.service - Early TPM SRK Setup skipped, unmet condition check ConditionSecurity=measured-uki
|
|
[ 3.969941] systemd[1]: Starting systemd-udev-load-credentials.service - Load udev Rules from Credentials...
|
|
[ 3.971331] systemd[1]: Starting systemd-udev-trigger.service - Coldplug All udev Devices...
|
|
[ 3.974433] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
|
|
[ 3.974610] systemd[1]: Mounted dev-mqueue.mount - POSIX Message Queue File System.
|
|
[ 3.974785] systemd[1]: Mounted run-lock.mount - Legacy Locks Directory /run/lock.
|
|
[ 3.974928] systemd[1]: Mounted sys-kernel-debug.mount - Kernel Debug File System.
|
|
[ 3.975062] systemd[1]: Mounted sys-kernel-tracing.mount - Kernel Trace File System.
|
|
[ 3.975512] systemd[1]: Finished keyboard-setup.service - Set the console keyboard layout.
|
|
[ 3.976034] systemd[1]: Finished kmod-static-nodes.service - Create List of Static Device Nodes.
|
|
[ 3.976496] systemd[1]: modprobe@configfs.service: Deactivated successfully.
|
|
[ 3.976719] systemd[1]: Finished modprobe@configfs.service - Load Kernel Module configfs.
|
|
[ 3.977883] systemd[1]: modprobe@drm.service: Deactivated successfully.
|
|
[ 3.978131] systemd[1]: Finished modprobe@drm.service - Load Kernel Module drm.
|
|
[ 3.978627] systemd[1]: modprobe@efi_pstore.service: Deactivated successfully.
|
|
[ 3.978846] systemd[1]: Finished modprobe@efi_pstore.service - Load Kernel Module efi_pstore.
|
|
[ 3.979260] systemd[1]: modprobe@fuse.service: Deactivated successfully.
|
|
[ 3.979479] systemd[1]: Finished modprobe@fuse.service - Load Kernel Module fuse.
|
|
[ 3.979835] systemd[1]: modprobe@nvme_fabrics.service: Deactivated successfully.
|
|
[ 3.980062] systemd[1]: Finished modprobe@nvme_fabrics.service - Load Kernel Module nvme_fabrics.
|
|
[ 3.981785] systemd[1]: Mounting sys-fs-fuse-connections.mount - FUSE Control File System...
|
|
[ 3.983042] systemd[1]: Mounting sys-kernel-config.mount - Kernel Configuration File System...
|
|
[ 3.984593] systemd[1]: Starting systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully...
|
|
[ 3.986329] systemd[1]: Finished systemd-udev-load-credentials.service - Load udev Rules from Credentials.
|
|
[ 3.991585] EXT4-fs (dm-1): re-mounted 1d0d11c1-7e0f-4e90-9adb-6c049dc744cf r/w.
|
|
[ 3.993351] systemd[1]: Started dm-event.service - Device-mapper event daemon.
|
|
[ 3.994370] systemd-journald[353]: Collecting audit messages is disabled.
|
|
[ 3.995033] VFIO - User Level meta-driver version: 0.3
|
|
[ 3.995501] systemd[1]: Finished systemd-remount-fs.service - Remount Root and Kernel File Systems.
|
|
[ 3.996593] systemd[1]: Mounted sys-fs-fuse-connections.mount - FUSE Control File System.
|
|
[ 3.996788] systemd[1]: Mounted sys-kernel-config.mount - Kernel Configuration File System.
|
|
[ 3.997333] systemd[1]: systemd-hwdb-update.service - Rebuild Hardware Database skipped, unmet condition check ConditionNeedsUpdate=/etc
|
|
[ 3.997410] systemd[1]: systemd-pstore.service - Platform Persistent Storage Archival skipped, unmet condition check ConditionDirectoryNotEmpty=/sys/fs/pstore
|
|
[ 3.999175] systemd[1]: Starting systemd-random-seed.service - Load/Save OS Random Seed...
|
|
[ 3.999206] systemd[1]: systemd-tpm2-setup.service - TPM SRK Setup skipped, unmet condition check ConditionSecurity=measured-uki
|
|
[ 4.017022] systemd[1]: Finished systemd-tmpfiles-setup-dev-early.service - Create Static Device Nodes in /dev gracefully.
|
|
[ 4.017187] systemd[1]: systemd-sysusers.service - Create System Users skipped, no trigger condition checks were met.
|
|
[ 4.018352] systemd[1]: Starting systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev...
|
|
[ 4.022258] systemd[1]: Finished systemd-random-seed.service - Load/Save OS Random Seed.
|
|
[ 4.036380] spl: loading out-of-tree module taints kernel.
|
|
[ 4.042074] systemd[1]: Finished systemd-tmpfiles-setup-dev.service - Create Static Device Nodes in /dev.
|
|
[ 4.044130] systemd[1]: Starting systemd-udevd.service - Rule-based Manager for Device Events and Files...
|
|
[ 4.075348] systemd[1]: Started systemd-journald.service - Journal Service.
|
|
[ 4.075711] zfs: module license 'CDDL' taints kernel.
|
|
[ 4.075714] Disabling lock debugging due to kernel taint
|
|
[ 4.075736] zfs: module license taints kernel.
|
|
[ 4.090149] systemd-journald[353]: Received client request to flush runtime journal.
|
|
[ 4.269750] e1000e 0000:00:1f.6 nic0: renamed from enp0s31f6
|
|
[ 4.412853] Adding 8388604k swap on /dev/mapper/pve-swap. Priority:-1 extents:1 across:8388604k SS
|
|
[ 4.747433] usbcore: registered new interface driver cdc_wdm
|
|
[ 4.747544] input: DELL Wireless hotkeys as /devices/virtual/input/input9
|
|
[ 4.752512] EDAC MC0: Giving out device to module ie31200_edac controller IE31200: DEV 0000:00:00.0 (POLLED)
|
|
[ 4.759102] usbcore: registered new interface driver cdc_mbim
|
|
[ 4.760151] dell_lis3lv02d: accelerometer is present on SMBus but its address is unknown, skipping registration
|
|
[ 4.760155] dell_lis3lv02d: Pass dell_lis3lv02d.probe_i2c_addr=1 on the kernel command line to probe, this may be dangerous!
|
|
[ 4.763031] parport_pc 00:03: [io 0x0378-0x037b]
|
|
[ 4.763239] mei_me 0000:00:16.0: enabling device (0000 -> 0002)
|
|
[ 4.769322] parport_pc 00:03: activated
|
|
[ 4.769327] parport_pc 00:03: reported by Plug and Play ACPI
|
|
[ 4.795012] intel_pmc_core INT33A1:00: initialized
|
|
[ 4.846870] ee1004 0-0050: 512 byte EE1004-compliant SPD EEPROM, read-only
|
|
[ 4.846887] input: PC Speaker as /devices/platform/pcspkr/input/input10
|
|
[ 4.849960] ee1004 0-0051: 512 byte EE1004-compliant SPD EEPROM, read-only
|
|
[ 4.851707] ee1004 0-0052: 512 byte EE1004-compliant SPD EEPROM, read-only
|
|
[ 4.853119] ee1004 0-0053: 512 byte EE1004-compliant SPD EEPROM, read-only
|
|
[ 4.869296] dcdbas dcdbas: Dell Systems Management Base Driver (version 5.6.0-3.4)
|
|
[ 4.872697] RAPL PMU: API unit is 2^-32 Joules, 3 fixed counters, 655360 ms ovfl timer
|
|
[ 4.872701] RAPL PMU: hw unit of domain pp0-core 2^-14 Joules
|
|
[ 4.872703] RAPL PMU: hw unit of domain package 2^-14 Joules
|
|
[ 4.872704] RAPL PMU: hw unit of domain dram 2^-14 Joules
|
|
[ 4.878668] intel_rapl_common: Found RAPL domain package
|
|
[ 4.878671] intel_rapl_common: Found RAPL domain dram
|
|
[ 4.992074] dell_smm_hwmon: Enabling support for setting automatic/manual fan control
|
|
[ 4.992465] snd_hda_intel 0000:01:00.1: Disabling MSI
|
|
[ 4.992472] snd_hda_intel 0000:01:00.1: Handle vga_switcheroo audio client
|
|
[ 4.992875] input: Dell WMI hotkeys as /devices/platform/PNP0C14:02/wmi_bus/wmi_bus-PNP0C14:02/9DBB5994-A997-11DA-B012-B622A1EF5492/input/input11
|
|
[ 5.054262] intel_rapl_common: Found RAPL domain package
|
|
[ 5.054266] intel_rapl_common: Found RAPL domain core
|
|
[ 5.054268] intel_rapl_common: Found RAPL domain dram
|
|
[ 5.054272] intel_rapl_common: package-0:package:long_term locked by BIOS
|
|
[ 5.054276] intel_rapl_common: package-0:package:short_term locked by BIOS
|
|
[ 5.064926] ppdev: user-space parallel port driver
|
|
[ 5.065410] ZFS: Loaded module v2.4.3-pve1, ZFS pool version 5000, ZFS filesystem version 5
|
|
[ 5.073205] dell_laptop: Using i8042 filter function for receiving events
|
|
[ 5.075825] ACPI: battery: new hook: Dell Primary Battery Extension
|
|
[ 5.408261] snd_hda_codec_alc269 hdaudioC0D0: ALC3235: picked fixup for PCI SSID 1028:06d9
|
|
[ 5.408883] snd_hda_codec_alc269 hdaudioC0D0: autoconfig for ALC3235: line_outs=1 (0x16/0x0/0x0/0x0/0x0) type:line
|
|
[ 5.408888] snd_hda_codec_alc269 hdaudioC0D0: speaker_outs=1 (0x14/0x0/0x0/0x0/0x0)
|
|
[ 5.408890] snd_hda_codec_alc269 hdaudioC0D0: hp_outs=1 (0x15/0x0/0x0/0x0/0x0)
|
|
[ 5.408893] snd_hda_codec_alc269 hdaudioC0D0: mono: mono_out=0x0
|
|
[ 5.408894] snd_hda_codec_alc269 hdaudioC0D0: inputs:
|
|
[ 5.408896] snd_hda_codec_alc269 hdaudioC0D0: Internal Mic=0x13
|
|
[ 5.408898] snd_hda_codec_alc269 hdaudioC0D0: Headset Mic=0x1a
|
|
[ 5.408900] snd_hda_codec_alc269 hdaudioC0D0: Headphone Mic=0x18
|
|
[ 5.408902] snd_hda_codec_alc269 hdaudioC0D0: Dock Mic=0x19
|
|
[ 5.413006] input: HDA NVidia HDMI/DP,pcm=3 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input12
|
|
[ 5.413084] input: HDA NVidia HDMI/DP,pcm=7 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input13
|
|
[ 5.413147] input: HDA NVidia HDMI/DP,pcm=8 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input14
|
|
[ 5.413217] input: HDA NVidia HDMI/DP,pcm=9 as /devices/pci0000:00/0000:00:01.0/0000:01:00.1/sound/card1/input15
|
|
[ 5.437203] intel_tcc_cooling: Programmable TCC Offset detected
|
|
[ 5.451712] input: HDA Intel PCH Headphone Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input16
|
|
[ 5.451786] input: HDA Intel PCH Dock Mic as /devices/pci0000:00/0000:00:1f.3/sound/card0/input17
|
|
[ 5.451884] input: HDA Intel PCH Dock Line Out as /devices/pci0000:00/0000:00:1f.3/sound/card0/input18
|
|
[ 5.548068] audit: type=1400 audit(1785157630.401:2): apparmor="STATUS" operation="profile_load" profile="unconfined" name="balena-etcher" pid=582 comm="apparmor_parser"
|
|
[ 5.548075] audit: type=1400 audit(1785157630.401:3): apparmor="STATUS" operation="profile_load" profile="unconfined" name=4D6F6E676F444220436F6D70617373 pid=579 comm="apparmor_parser"
|
|
[ 5.548078] audit: type=1400 audit(1785157630.402:4): apparmor="STATUS" operation="profile_load" profile="unconfined" name="Discord" pid=578 comm="apparmor_parser"
|
|
[ 5.548098] audit: type=1400 audit(1785157630.402:5): apparmor="STATUS" operation="profile_load" profile="unconfined" name="brave" pid=583 comm="apparmor_parser"
|
|
[ 5.548387] audit: type=1400 audit(1785157630.402:6): apparmor="STATUS" operation="profile_load" profile="unconfined" name="QtWebEngineProcess" pid=580 comm="apparmor_parser"
|
|
[ 5.548392] audit: type=1400 audit(1785157630.402:7): apparmor="STATUS" operation="profile_load" profile="unconfined" name="buildah" pid=584 comm="apparmor_parser"
|
|
[ 5.548943] audit: type=1400 audit(1785157630.403:8): apparmor="STATUS" operation="profile_load" profile="unconfined" name="1password" pid=577 comm="apparmor_parser"
|
|
[ 5.550428] audit: type=1400 audit(1785157630.404:9): apparmor="STATUS" operation="profile_load" profile="unconfined" name="ch-checkns" pid=589 comm="apparmor_parser"
|
|
[ 5.550635] audit: type=1400 audit(1785157630.404:10): apparmor="STATUS" operation="profile_load" profile="unconfined" name="chrome" pid=591 comm="apparmor_parser"
|
|
[ 5.550752] audit: type=1400 audit(1785157630.404:11): apparmor="STATUS" operation="profile_load" profile="unconfined" name="vscode" pid=593 comm="apparmor_parser"
|
|
[ 5.703758] nvme nvme0: using unchecked data buffer
|
|
[ 6.050512] RPC: Registered named UNIX socket transport module.
|
|
[ 6.050517] RPC: Registered udp transport module.
|
|
[ 6.050519] RPC: Registered tcp transport module.
|
|
[ 6.050520] RPC: Registered tcp-with-tls transport module.
|
|
[ 6.050522] RPC: Registered tcp NFSv4.1 backchannel transport module.
|
|
[ 6.230313] vmbr0: port 1(nic0) entered blocking state
|
|
[ 6.230337] vmbr0: port 1(nic0) entered disabled state
|
|
[ 6.230349] e1000e 0000:00:1f.6 nic0: entered allmulticast mode
|
|
[ 6.230421] e1000e 0000:00:1f.6 nic0: entered promiscuous mode
|
|
[ 9.203184] e1000e 0000:00:1f.6 nic0: NIC Link is Up 1000 Mbps Full Duplex, Flow Control: None
|
|
[ 9.203267] vmbr0: port 1(nic0) entered blocking state
|
|
[ 9.203270] vmbr0: port 1(nic0) entered forwarding state
|
|
[ 13.652555] kauditd_printk_skb: 113 callbacks suppressed
|
|
[ 13.652558] audit: type=1400 audit(1785157638.507:125): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 17.335958] audit: type=1400 audit(1785157642.190:126): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 21.893197] audit: type=1400 audit(1785157646.748:127): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 27.408822] audit: type=1400 audit(1785157652.264:128): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 46.826175] audit: type=1400 audit(1785157671.682:129): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 46.834437] audit: type=1400 audit(1785157671.689:130): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 46.834506] audit: type=1400 audit(1785157671.689:131): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 46.836737] audit: type=1400 audit(1785157671.692:132): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 46.872056] audit: type=1400 audit(1785157671.727:133): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 46.892358] datanet: port 1(enx8cae4ccda774) entered blocking state
|
|
[ 46.892362] datanet: port 1(enx8cae4ccda774) entered disabled state
|
|
[ 46.892373] cdc_ncm 2-1:2.0 enx8cae4ccda774: entered allmulticast mode
|
|
[ 46.892439] cdc_ncm 2-1:2.0 enx8cae4ccda774: entered promiscuous mode
|
|
[ 47.202703] datanet: port 1(enx8cae4ccda774) entered blocking state
|
|
[ 47.202709] datanet: port 1(enx8cae4ccda774) entered forwarding state
|
|
[ 47.421003] audit: type=1400 audit(1785157672.276:134): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/usr/bin/lxc-copy" pid=1083 comm="apparmor_parser"
|
|
[ 47.432529] audit: type=1400 audit(1785157672.287:135): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/usr/bin/lxc-start" pid=1093 comm="apparmor_parser"
|
|
[ 47.455215] audit: type=1400 audit(1785157672.310:136): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="lxc-container-default" pid=1099 comm="apparmor_parser"
|
|
[ 47.455221] audit: type=1400 audit(1785157672.310:137): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="lxc-container-default-cgns" pid=1099 comm="apparmor_parser"
|
|
[ 47.455225] audit: type=1400 audit(1785157672.310:138): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="lxc-container-default-with-mounting" pid=1099 comm="apparmor_parser"
|
|
[ 53.595648] netfs: FS-Cache loaded
|
|
[ 53.645466] nfs: Unknown parameter 'version'
|
|
[ 59.677255] 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.
|
|
[ 59.764565] nfs: Unknown parameter 'version'
|
|
[ 59.789890] nfs: Unknown parameter 'version'
|
|
[ 59.816328] nfs: Unknown parameter 'version'
|
|
[ 59.849652] nfs: Unknown parameter 'version'
|
|
[ 59.872373] nfs: Unknown parameter 'version'
|
|
[ 59.896379] nfs: Unknown parameter 'version'
|
|
[ 59.997643] nfs: Unknown parameter 'version'
|
|
[ 70.153260] nfs: Unknown parameter 'version'
|
|
[ 70.177265] nfs: Unknown parameter 'version'
|
|
[ 70.203531] nfs: Unknown parameter 'version'
|
|
[ 70.316646] nfs: Unknown parameter 'version'
|
|
[ 70.342351] nfs: Unknown parameter 'version'
|
|
[ 70.368016] nfs: Unknown parameter 'version'
|
|
[ 70.400636] nfs: Unknown parameter 'version'
|
|
[ 79.457042] nfs: Unknown parameter 'version'
|
|
[ 79.483097] nfs: Unknown parameter 'version'
|
|
[ 79.510492] nfs: Unknown parameter 'version'
|
|
[ 79.536907] nfs: Unknown parameter 'version'
|
|
[ 79.627157] nfs: Unknown parameter 'version'
|
|
[ 79.650605] nfs: Unknown parameter 'version'
|
|
[ 79.674009] nfs: Unknown parameter 'version'
|
|
[ 89.723589] nfs: Unknown parameter 'version'
|
|
[ 89.747308] nfs: Unknown parameter 'version'
|
|
[ 89.773511] nfs: Unknown parameter 'version'
|
|
[ 89.797001] nfs: Unknown parameter 'version'
|
|
[ 89.901782] nfs: Unknown parameter 'version'
|
|
[ 89.929506] nfs: Unknown parameter 'version'
|
|
[ 89.953212] nfs: Unknown parameter 'version'
|
|
[ 100.012604] nfs: Unknown parameter 'version'
|
|
[ 100.036220] nfs: Unknown parameter 'version'
|
|
[ 100.060095] nfs: Unknown parameter 'version'
|
|
[ 100.159097] nfs: Unknown parameter 'version'
|
|
[ 100.185042] nfs: Unknown parameter 'version'
|
|
[ 100.210826] nfs: Unknown parameter 'version'
|
|
[ 100.233493] nfs: Unknown parameter 'version'
|
|
[ 107.220153] nfs: Unknown parameter 'version'
|
|
[ 110.358081] nfs: Unknown parameter 'version'
|
|
[ 110.383798] nfs: Unknown parameter 'version'
|
|
[ 110.407322] nfs: Unknown parameter 'version'
|
|
[ 110.431299] nfs: Unknown parameter 'version'
|
|
[ 110.463433] nfs: Unknown parameter 'version'
|
|
[ 110.489178] nfs: Unknown parameter 'version'
|
|
[ 110.515244] nfs: Unknown parameter 'version'
|
|
[ 119.566322] nfs: Unknown parameter 'version'
|
|
[ 119.590219] nfs: Unknown parameter 'version'
|
|
[ 119.692293] nfs: Unknown parameter 'version'
|
|
[ 119.715821] nfs: Unknown parameter 'version'
|
|
[ 119.739290] nfs: Unknown parameter 'version'
|
|
[ 119.773851] nfs: Unknown parameter 'version'
|
|
[ 119.799985] nfs: Unknown parameter 'version'
|
|
[ 129.856215] nfs: Unknown parameter 'version'
|
|
[ 129.882552] nfs: Unknown parameter 'version'
|
|
[ 129.908819] nfs: Unknown parameter 'version'
|
|
[ 130.011651] nfs: Unknown parameter 'version'
|
|
[ 130.037794] nfs: Unknown parameter 'version'
|
|
[ 130.062098] nfs: Unknown parameter 'version'
|
|
[ 130.085474] nfs: Unknown parameter 'version'
|
|
[ 140.130230] nfs: Unknown parameter 'version'
|
|
[ 140.153295] nfs: Unknown parameter 'version'
|
|
[ 140.178849] nfs: Unknown parameter 'version'
|
|
[ 140.203731] nfs: Unknown parameter 'version'
|
|
[ 140.329827] nfs: Unknown parameter 'version'
|
|
[ 140.355179] nfs: Unknown parameter 'version'
|
|
[ 140.378097] nfs: Unknown parameter 'version'
|
|
[ 140.863705] NFS: Registering the id_resolver key type
|
|
[ 140.863713] Key type id_resolver registered
|
|
[ 140.863714] Key type id_legacy registered
|
|
[ 149.506127] nfs: Unknown parameter 'version'
|
|
[ 149.531145] nfs: Unknown parameter 'version'
|
|
[ 149.554570] nfs: Unknown parameter 'version'
|
|
[ 149.578091] nfs: Unknown parameter 'version'
|
|
[ 149.610115] nfs: Unknown parameter 'version'
|
|
[ 149.635651] nfs: Unknown parameter 'version'
|
|
[ 159.881761] nfs: Unknown parameter 'version'
|
|
[ 159.905478] nfs: Unknown parameter 'version'
|
|
[ 159.997235] nfs: Unknown parameter 'version'
|
|
[ 160.020670] nfs: Unknown parameter 'version'
|
|
[ 160.044330] nfs: Unknown parameter 'version'
|
|
[ 160.109041] nfs: Unknown parameter 'version'
|
|
[ 170.185926] nfs: Unknown parameter 'version'
|
|
[ 170.218552] nfs: Unknown parameter 'version'
|
|
[ 170.242301] nfs: Unknown parameter 'version'
|
|
[ 170.266640] nfs: Unknown parameter 'version'
|
|
[ 170.293212] nfs: Unknown parameter 'version'
|
|
[ 170.393601] nfs: Unknown parameter 'version'
|
|
[ 173.109753] tap313i0: entered promiscuous mode
|
|
[ 173.190821] vmbr0: port 2(fwpr313p0) entered blocking state
|
|
[ 173.190826] vmbr0: port 2(fwpr313p0) entered disabled state
|
|
[ 173.190836] fwpr313p0: entered allmulticast mode
|
|
[ 173.190880] fwpr313p0: entered promiscuous mode
|
|
[ 173.190933] vmbr0: port 2(fwpr313p0) entered blocking state
|
|
[ 173.190936] vmbr0: port 2(fwpr313p0) entered forwarding state
|
|
[ 173.201593] fwbr313i0: port 1(fwln313i0) entered blocking state
|
|
[ 173.201597] fwbr313i0: port 1(fwln313i0) entered disabled state
|
|
[ 173.201607] fwln313i0: entered allmulticast mode
|
|
[ 173.201647] fwln313i0: entered promiscuous mode
|
|
[ 173.201696] fwbr313i0: port 1(fwln313i0) entered blocking state
|
|
[ 173.201699] fwbr313i0: port 1(fwln313i0) entered forwarding state
|
|
[ 173.212390] fwbr313i0: port 2(tap313i0) entered blocking state
|
|
[ 173.212394] fwbr313i0: port 2(tap313i0) entered disabled state
|
|
[ 173.212400] tap313i0: entered allmulticast mode
|
|
[ 173.212533] fwbr313i0: port 2(tap313i0) entered blocking state
|
|
[ 173.212536] fwbr313i0: port 2(tap313i0) entered forwarding state
|
|
[ 303.954862] kauditd_printk_skb: 1 callbacks suppressed
|
|
[ 303.954865] audit: type=1400 audit(1785157928.684:140): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 303.957092] audit: type=1400 audit(1785157928.686:141): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 303.998591] audit: type=1400 audit(1785157928.728:142): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 552.628248] audit: type=1400 audit(1785158177.410:143): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 552.630497] audit: type=1400 audit(1785158177.412:144): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 552.671347] audit: type=1400 audit(1785158177.453:145): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 832.014772] audit: type=1400 audit(1785158456.768:146): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 832.025433] audit: type=1400 audit(1785158456.779:147): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 832.066854] audit: type=1400 audit(1785158456.820:148): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 1081.278612] audit: type=1400 audit(1785158706.034:149): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 1081.282640] audit: type=1400 audit(1785158706.038:150): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 1081.317563] audit: type=1400 audit(1785158706.073:151): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 1328.165422] audit: type=1400 audit(1785158952.921:152): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 1328.166779] audit: type=1400 audit(1785158952.922:153): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 1328.207773] audit: type=1400 audit(1785158952.963:154): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 1628.926260] audit: type=1400 audit(1785159253.685:155): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 1628.928505] audit: type=1400 audit(1785159253.687:156): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 1628.963859] audit: type=1400 audit(1785159253.722:157): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 1910.244631] audit: type=1400 audit(1785159535.005:158): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 1910.246664] audit: type=1400 audit(1785159535.007:159): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 1910.292671] audit: type=1400 audit(1785159535.053:160): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 2139.475621] audit: type=1400 audit(1785159764.237:161): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 2139.477549] audit: type=1400 audit(1785159764.239:162): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 2139.518389] audit: type=1400 audit(1785159764.280:163): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 2211.082707] tap313i0: left allmulticast mode
|
|
[ 2211.082731] fwbr313i0: port 2(tap313i0) entered disabled state
|
|
[ 2211.086431] fwbr313i0: port 1(fwln313i0) entered disabled state
|
|
[ 2211.087029] vmbr0: port 2(fwpr313p0) entered disabled state
|
|
[ 2211.087219] fwln313i0 (unregistering): left allmulticast mode
|
|
[ 2211.087223] fwln313i0 (unregistering): left promiscuous mode
|
|
[ 2211.087225] fwbr313i0: port 1(fwln313i0) entered disabled state
|
|
[ 2211.087682] fwpr313p0 (unregistering): left allmulticast mode
|
|
[ 2211.087699] fwpr313p0 (unregistering): left promiscuous mode
|
|
[ 2211.087701] vmbr0: port 2(fwpr313p0) entered disabled state
|
|
[ 2216.957200] tap313i0: entered promiscuous mode
|
|
[ 2217.029832] vmbr0: port 2(fwpr313p0) entered blocking state
|
|
[ 2217.029837] vmbr0: port 2(fwpr313p0) entered disabled state
|
|
[ 2217.029847] fwpr313p0: entered allmulticast mode
|
|
[ 2217.029890] fwpr313p0: entered promiscuous mode
|
|
[ 2217.029934] vmbr0: port 2(fwpr313p0) entered blocking state
|
|
[ 2217.029936] vmbr0: port 2(fwpr313p0) entered forwarding state
|
|
[ 2217.040916] fwbr313i0: port 1(fwln313i0) entered blocking state
|
|
[ 2217.040920] fwbr313i0: port 1(fwln313i0) entered disabled state
|
|
[ 2217.040930] fwln313i0: entered allmulticast mode
|
|
[ 2217.040971] fwln313i0: entered promiscuous mode
|
|
[ 2217.041015] fwbr313i0: port 1(fwln313i0) entered blocking state
|
|
[ 2217.041017] fwbr313i0: port 1(fwln313i0) entered forwarding state
|
|
[ 2217.051957] fwbr313i0: port 2(tap313i0) entered blocking state
|
|
[ 2217.051974] fwbr313i0: port 2(tap313i0) entered disabled state
|
|
[ 2217.051994] tap313i0: entered allmulticast mode
|
|
[ 2217.052088] fwbr313i0: port 2(tap313i0) entered blocking state
|
|
[ 2217.052103] fwbr313i0: port 2(tap313i0) entered forwarding state
|
|
[ 2367.000958] audit: type=1400 audit(1785159991.764:164): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 2367.003225] audit: type=1400 audit(1785159991.767:165): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 2367.043985] audit: type=1400 audit(1785159991.807:166): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 2620.699531] audit: type=1400 audit(1785160245.464:167): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 2620.701877] audit: type=1400 audit(1785160245.466:168): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 2620.736593] audit: type=1400 audit(1785160245.501:169): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 2892.996816] audit: type=1400 audit(1785160517.763:170): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 2892.998826] audit: type=1400 audit(1785160517.765:171): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 2893.039877] audit: type=1400 audit(1785160517.806:172): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 3181.200632] audit: type=1400 audit(1785160805.968:173): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 3181.202175] audit: type=1400 audit(1785160805.969:174): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 3181.238890] audit: type=1400 audit(1785160806.006:175): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 3418.306382] audit: type=1400 audit(1785161043.076:176): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 3418.308604] audit: type=1400 audit(1785161043.078:177): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 3418.349431] audit: type=1400 audit(1785161043.118:178): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 3664.969259] audit: type=1400 audit(1785161289.740:179): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 3664.971506] audit: type=1400 audit(1785161289.742:180): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 3665.006189] audit: type=1400 audit(1785161289.777:181): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 3897.539157] audit: type=1400 audit(1785161522.311:182): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 3897.541400] audit: type=1400 audit(1785161522.313:183): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 3897.582421] audit: type=1400 audit(1785161522.354:184): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 4146.654434] audit: type=1400 audit(1785161771.428:185): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 4146.656691] audit: type=1400 audit(1785161771.430:186): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 4146.698014] audit: type=1400 audit(1785161771.471:187): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 4394.775702] audit: type=1400 audit(1785162019.551:188): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 4394.777721] audit: type=1400 audit(1785162019.552:189): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 4394.817993] audit: type=1400 audit(1785162019.593:190): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 4644.375777] audit: type=1400 audit(1785162269.152:191): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 4644.378000] audit: type=1400 audit(1785162269.154:192): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 4644.418495] audit: type=1400 audit(1785162269.195:193): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 4875.432110] audit: type=1400 audit(1785162500.210:194): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 4875.434329] audit: type=1400 audit(1785162500.212:195): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 4875.474462] audit: type=1400 audit(1785162500.252:196): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 5125.844961] audit: type=1400 audit(1785162750.624:197): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 5125.847322] audit: type=1400 audit(1785162750.627:198): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 5125.887574] audit: type=1400 audit(1785162750.667:199): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 5383.666193] audit: type=1400 audit(1785163008.447:200): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 5383.667619] audit: type=1400 audit(1785163008.448:201): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 5383.707988] audit: type=1400 audit(1785163008.488:202): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 5663.168475] audit: type=1400 audit(1785163287.951:203): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 5663.170745] audit: type=1400 audit(1785163287.953:204): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 5663.212159] audit: type=1400 audit(1785163287.994:205): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 5944.658679] audit: type=1400 audit(1785163569.443:206): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 5944.660720] audit: type=1400 audit(1785163569.445:207): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 5944.702835] audit: type=1400 audit(1785163569.487:208): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 6213.531414] audit: type=1400 audit(1785163838.317:209): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 6213.533661] audit: type=1400 audit(1785163838.319:210): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 6213.574722] audit: type=1400 audit(1785163838.360:211): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 6505.560157] audit: type=1400 audit(1785164130.348:212): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 6505.562513] audit: type=1400 audit(1785164130.350:213): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 6505.603031] audit: type=1400 audit(1785164130.390:214): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 6735.991375] audit: type=1400 audit(1785164360.780:215): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 6735.993559] audit: type=1400 audit(1785164360.782:216): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 6736.034651] audit: type=1400 audit(1785164360.823:217): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 7018.187259] audit: type=1400 audit(1785164642.978:218): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 7018.189621] audit: type=1400 audit(1785164642.980:219): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 7018.230560] audit: type=1400 audit(1785164643.021:220): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 7258.336190] audit: type=1400 audit(1785164883.129:221): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 7258.338797] audit: type=1400 audit(1785164883.131:222): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 7258.380068] audit: type=1400 audit(1785164883.172:223): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 7490.776710] audit: type=1400 audit(1785165115.570:224): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 7490.779008] audit: type=1400 audit(1785165115.572:225): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 7490.813768] audit: type=1400 audit(1785165115.607:226): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 7719.794398] audit: type=1400 audit(1785165344.589:227): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 7719.796429] audit: type=1400 audit(1785165344.591:228): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 7719.836859] audit: type=1400 audit(1785165344.631:229): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 7996.320646] audit: type=1400 audit(1785165621.117:230): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 7996.322931] audit: type=1400 audit(1785165621.119:231): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 7996.363786] audit: type=1400 audit(1785165621.160:232): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 8294.869896] audit: type=1400 audit(1785165919.668:233): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 8294.872137] audit: type=1400 audit(1785165919.671:234): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 8294.912844] audit: type=1400 audit(1785165919.711:235): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 8531.994818] audit: type=1400 audit(1785166156.794:236): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 8531.997059] audit: type=1400 audit(1785166156.796:237): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 8532.037659] audit: type=1400 audit(1785166156.837:238): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 8794.225086] audit: type=1400 audit(1785166419.026:239): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 8794.227046] audit: type=1400 audit(1785166419.028:240): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 8794.267642] audit: type=1400 audit(1785166419.068:241): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 9023.664861] audit: type=1400 audit(1785166648.467:242): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 9023.667146] audit: type=1400 audit(1785166648.470:243): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 9023.707624] audit: type=1400 audit(1785166648.510:244): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 9279.965094] audit: type=1400 audit(1785166904.769:245): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 9279.967445] audit: type=1400 audit(1785166904.771:246): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 9280.001738] audit: type=1400 audit(1785166904.805:247): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 9563.317088] audit: type=1400 audit(1785167188.122:248): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 9563.319385] audit: type=1400 audit(1785167188.125:249): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 9563.359685] audit: type=1400 audit(1785167188.165:250): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 9805.276869] audit: type=1400 audit(1785167430.083:251): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 9805.279112] audit: type=1400 audit(1785167430.086:252): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[ 9805.319916] audit: type=1400 audit(1785167430.126:253): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[10103.151361] audit: type=1400 audit(1785167727.960:254): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[10103.153559] audit: type=1400 audit(1785167727.962:255): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[10103.194221] audit: type=1400 audit(1785167728.002:256): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[10359.771059] audit: type=1400 audit(1785167984.581:257): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[10359.773427] audit: type=1400 audit(1785167984.584:258): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[10359.814119] audit: type=1400 audit(1785167984.624:259): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[10656.603299] audit: type=1400 audit(1785168281.415:260): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[10656.605602] audit: type=1400 audit(1785168281.417:261): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[10656.647263] audit: type=1400 audit(1785168281.459:262): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[10700.102055] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[10943.085296] audit: type=1400 audit(1785168567.899:263): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[10943.087299] audit: type=1400 audit(1785168567.901:264): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[10943.121182] audit: type=1400 audit(1785168567.934:265): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[11168.643384] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[11206.759967] audit: type=1400 audit(1785168831.574:266): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[11206.762265] audit: type=1400 audit(1785168831.577:267): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[11206.803323] audit: type=1400 audit(1785168831.618:268): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[11348.802405] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[11355.010328] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[11482.527373] audit: type=1400 audit(1785169107.343:269): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[11482.529583] audit: type=1400 audit(1785169107.346:270): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[11482.563664] audit: type=1400 audit(1785169107.380:271): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[11528.833393] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[11535.105332] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[11541.377282] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[11709.184346] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[11715.520313] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[11719.649994] audit: type=1400 audit(1785169344.467:272): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[11719.652215] audit: type=1400 audit(1785169344.470:273): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[11719.692849] audit: type=1400 audit(1785169344.510:274): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[11721.664308] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[11727.808267] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[11889.215373] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[11896.959326] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[11903.103289] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[11909.247220] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[11915.391188] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[12000.907610] audit: type=1400 audit(1785169625.727:275): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[12000.909777] audit: type=1400 audit(1785169625.729:276): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[12000.944383] audit: type=1400 audit(1785169625.763:277): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[12069.222310] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[12075.134281] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[12084.350229] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[12088.318206] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[12094.462193] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[12102.782148] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[12250.237299] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[12256.381300] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[12260.349238] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[12264.720841] audit: type=1400 audit(1785169889.541:278): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[12264.723141] audit: type=1400 audit(1785169889.544:279): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[12264.761326] audit: type=1400 audit(1785169889.582:280): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[12274.813166] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[12280.957170] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[12287.997073] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[12430.268272] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[12437.628079] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[12445.692190] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[12462.204101] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[12468.348068] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[12473.340027] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[12542.893090] audit: type=1400 audit(1785170167.716:281): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[12542.895329] audit: type=1400 audit(1785170167.718:282): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[12542.936055] audit: type=1400 audit(1785170167.758:283): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[12610.299263] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[12615.803300] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[12625.019210] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[12631.035142] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[12647.419047] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[12658.683005] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[12776.529397] audit: type=1400 audit(1785170401.353:284): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[12776.531106] audit: type=1400 audit(1785170401.354:285): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[12776.580215] audit: type=1400 audit(1785170401.404:286): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[12790.906279] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[12797.050231] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[12801.018206] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[12812.410129] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[12816.378094] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[12833.914017] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[12844.025939] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[12970.937219] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[12976.121185] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[12986.361152] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[13002.873045] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[13019.128944] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[13029.368910] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[13034.962181] audit: type=1400 audit(1785170659.788:287): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[13034.964473] audit: type=1400 audit(1785170659.790:288): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[13035.005735] audit: type=1400 audit(1785170659.831:289): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[13150.968201] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[13161.464138] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[13171.832081] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[13188.087989] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[13205.623761] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[13214.839842] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[13299.538262] audit: type=1400 audit(1785170924.365:290): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[13299.540419] audit: type=1400 audit(1785170924.367:291): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[13299.580830] audit: type=1400 audit(1785170924.407:292): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[13331.575040] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[13336.055154] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[13346.807101] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[13359.222892] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[13374.582943] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[13390.838843] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[13402.230820] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[13511.606170] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[13522.038122] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[13532.150040] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[13544.437966] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[13561.973894] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[13577.333634] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[13585.300623] audit: type=1400 audit(1785171210.129:293): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[13585.303289] audit: type=1400 audit(1785171210.132:294): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[13585.344419] audit: type=1400 audit(1785171210.172:295): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[13589.621743] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[13694.069165] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[13697.141183] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[13707.253068] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[13718.645012] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[13729.780988] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[13747.188864] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[13762.548797] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[13774.836721] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[13819.572509] audit: type=1400 audit(1785171444.402:296): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[13819.574106] audit: type=1400 audit(1785171444.403:297): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[13819.608545] audit: type=1400 audit(1785171444.438:298): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[13874.100118] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[13884.532086] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[13892.596022] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[13906.035956] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[13915.123936] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[13932.531669] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[13949.043702] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[13960.179515] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[14056.563131] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[14059.507089] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[14069.747072] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[14078.066992] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[14091.250913] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[14100.466855] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[14114.845665] audit: type=1400 audit(1785171739.677:299): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[14114.847469] audit: type=1400 audit(1785171739.678:300): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[14114.888545] audit: type=1400 audit(1785171739.719:301): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[14117.874761] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[14134.258673] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[14145.522605] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[14236.593968] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[14247.026042] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[14255.090028] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[14265.457829] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[14277.745912] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[14286.961817] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[14305.393723] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[14319.601512] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[14330.865553] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[14340.338708] audit: type=1400 audit(1785171965.171:302): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[14340.340560] audit: type=1400 audit(1785171965.173:303): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[14340.380612] audit: type=1400 audit(1785171965.213:304): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[14416.625085] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[14422.001052] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[14432.241028] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[14440.432945] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[14452.848881] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[14462.960836] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[14472.176788] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[14490.608654] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[14504.944562] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[14517.360501] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[14597.232043] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[14598.017126] audit: type=1400 audit(1785172222.851:305): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[14598.018886] audit: type=1400 audit(1785172222.852:306): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[14598.059517] audit: type=1400 audit(1785172222.892:307): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[14603.376007] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[14607.343980] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[14617.583925] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[14627.951886] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[14638.063804] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[14648.303772] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[14657.519711] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[14675.951598] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[14690.287505] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[14704.751438] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[14777.263044] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[14782.446975] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[14792.686905] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[14802.926859] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[14815.342792] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[14823.406746] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[14833.646685] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[14842.862628] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[14849.774679] audit: type=1400 audit(1785172474.610:308): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[14849.776589] audit: type=1400 audit(1785172474.612:309): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[14849.817455] audit: type=1400 audit(1785172474.653:310): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[14861.294524] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[14875.630427] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[14889.966397] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[14957.293970] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[14967.789910] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[14978.029855] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[14990.445828] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15000.557716] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15008.749691] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15021.165610] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15030.381556] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15046.637322] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15060.973369] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15075.309309] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15124.467697] audit: type=1400 audit(1785172749.304:311): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[15124.469573] audit: type=1400 audit(1785172749.306:312): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[15124.509908] audit: type=1400 audit(1785172749.346:313): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[15137.324933] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15142.380925] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15153.260836] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15163.372804] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15177.836709] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15185.900653] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15194.092440] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15208.557540] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15217.772499] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15231.980383] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15246.316306] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15260.652221] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15319.147888] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15327.723825] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15338.475809] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15348.715713] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15352.269304] audit: type=1400 audit(1785172977.108:314): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[15352.271197] audit: type=1400 audit(1785172977.110:315): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[15352.311569] audit: type=1400 audit(1785172977.150:316): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[15365.227614] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15371.371638] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15380.587552] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15393.771496] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15402.987440] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15417.451317] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15431.659168] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15448.171145] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15499.178853] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15504.362817] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15513.042753] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15524.010704] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15534.058690] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15552.618547] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15556.586521] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15565.802465] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15579.114374] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15588.330337] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15593.105361] audit: type=1400 audit(1785173217.945:317): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[15593.107157] audit: type=1400 audit(1785173217.947:318): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[15593.152029] audit: type=1400 audit(1785173217.991:319): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[15602.666299] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15617.002170] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15633.386077] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15679.209825] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15689.897785] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15698.409688] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15709.289644] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15719.401580] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15741.929440] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15751.145412] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15764.649379] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15773.673268] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15788.201198] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15804.521095] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15819.880907] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15859.368803] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15861.994467] audit: type=1400 audit(1785173486.836:320): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[15861.996230] audit: type=1400 audit(1785173486.838:321): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[15862.037063] audit: type=1400 audit(1785173486.878:322): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[15864.488755] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15875.240687] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15884.392640] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15896.680469] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15904.936510] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15927.400387] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15936.616339] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15949.800257] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15959.208225] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15973.480121] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[15989.928170] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16007.271930] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16039.399745] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16044.495707] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16049.831697] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16060.391620] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16071.783562] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16081.895488] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16090.215487] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16090.904961] audit: type=1400 audit(1785173715.747:323): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[16090.906786] audit: type=1400 audit(1785173715.749:324): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[16090.947473] audit: type=1400 audit(1785173715.790:325): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[16112.615357] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16121.831268] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16135.143199] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16144.359134] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16158.695082] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16176.230958] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16192.486704] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16222.310692] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16229.862648] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16235.174619] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16245.734544] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16256.998530] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16267.430447] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16277.606369] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16297.958248] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16307.366230] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16320.678278] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16329.830115] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16344.037988] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16349.478029] audit: type=1400 audit(1785173974.322:326): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[16349.479832] audit: type=1400 audit(1785173974.324:327): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[16349.520095] audit: type=1400 audit(1785173974.364:328): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[16361.445885] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16377.829828] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16403.621806] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16407.525618] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16415.205574] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16421.990578] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16431.077512] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16443.493421] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16452.709362] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16462.821303] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16483.493221] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16492.645150] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16505.829053] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16515.045001] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16529.380920] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16548.004808] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16563.300731] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16583.652606] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16594.084574] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16600.524724] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16602.337736] audit: type=1400 audit(1785174227.183:329): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[16602.339185] audit: type=1400 audit(1785174227.184:330): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[16602.379620] audit: type=1400 audit(1785174227.225:331): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[16609.380484] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16616.420417] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16628.900387] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16640.100283] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16649.316271] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16668.644134] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16677.860062] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16691.171870] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16700.387932] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16716.899859] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16733.155769] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16749.732499] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16763.683564] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16769.123540] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16781.411508] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16785.891440] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16794.595390] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16801.763346] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16814.051274] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16825.315224] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16834.723225] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16853.987081] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16864.354985] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16876.514911] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16885.858700] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16892.642612] audit: type=1400 audit(1785174517.490:332): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[16892.644411] audit: type=1400 audit(1785174517.492:333): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[16892.685459] audit: type=1400 audit(1785174517.532:334): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[16904.290754] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16918.498668] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16934.882449] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16944.226560] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16954.338463] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16971.234365] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16979.938313] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16987.234280] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[16999.586225] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17011.810132] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17019.874086] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17039.522094] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17051.809983] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17061.857846] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17071.073789] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17089.505744] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17104.033724] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17119.956626] audit: type=1400 audit(1785174744.805:335): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[17119.958454] audit: type=1400 audit(1785174744.807:336): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[17119.998584] audit: type=1400 audit(1785174744.847:337): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[17120.225534] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17124.257481] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17129.441479] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17139.681403] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17156.553320] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17165.409284] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17172.449202] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17184.737130] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17197.025048] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17205.345020] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17224.672926] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17236.960832] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17247.200773] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17256.416717] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17274.848665] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17289.184531] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17304.288297] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17315.936383] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17325.024312] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17341.920276] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17350.624177] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17357.792193] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17368.313070] audit: type=1400 audit(1785174993.162:338): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[17368.315002] audit: type=1400 audit(1785174993.164:339): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[17368.358258] audit: type=1400 audit(1785174993.208:340): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[17371.296161] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17382.367985] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17390.559943] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17411.167844] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17422.303784] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17432.735863] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17441.951793] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17460.383688] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17475.679456] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17484.959558] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17491.104391] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17503.391293] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17510.559273] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17527.967159] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17536.159147] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17543.327209] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17556.639019] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17567.903137] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17577.054909] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17598.558747] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17607.646707] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17615.029000] audit: type=1400 audit(1785175239.880:341): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[17615.031252] audit: type=1400 audit(1785175239.883:342): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[17615.065779] audit: type=1400 audit(1785175239.917:343): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[17618.078662] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17629.278611] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17646.750502] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17663.070379] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17666.142360] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17670.110236] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17676.446311] nfs: server pfv-tsys5-nfs-stor not responding, timed out
|
|
[17850.496564] audit: type=1400 audit(1785175475.349:344): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[17850.498388] audit: type=1400 audit(1785175475.351:345): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[17850.539333] audit: type=1400 audit(1785175475.392:346): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[18135.228766] audit: type=1400 audit(1785175760.083:347): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[18135.230642] audit: type=1400 audit(1785175760.085:348): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[18135.270751] audit: type=1400 audit(1785175760.125:349): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[18408.984145] audit: type=1400 audit(1785176033.840:350): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[18408.985915] audit: type=1400 audit(1785176033.841:351): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[18409.026841] audit: type=1400 audit(1785176033.882:352): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[18666.325665] audit: type=1400 audit(1785176291.183:353): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[18666.327533] audit: type=1400 audit(1785176291.185:354): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[18666.368372] audit: type=1400 audit(1785176291.225:355): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[18915.176355] audit: type=1400 audit(1785176540.035:356): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[18915.178130] audit: type=1400 audit(1785176540.037:357): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[18915.221850] audit: type=1400 audit(1785176540.080:358): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[19209.801675] audit: type=1400 audit(1785176834.662:359): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[19209.805000] audit: type=1400 audit(1785176834.665:360): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[19209.846396] audit: type=1400 audit(1785176834.707:361): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[19505.905087] audit: type=1400 audit(1785177130.767:362): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[19505.906931] audit: type=1400 audit(1785177130.769:363): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[19505.948157] audit: type=1400 audit(1785177130.810:364): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[19803.928284] audit: type=1400 audit(1785177428.792:365): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[19803.933637] audit: type=1400 audit(1785177428.797:366): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[19803.978513] audit: type=1400 audit(1785177428.842:367): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[20088.684495] audit: type=1400 audit(1785177713.550:368): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[20088.687780] audit: type=1400 audit(1785177713.553:369): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[20088.729125] audit: type=1400 audit(1785177713.594:370): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[20332.023068] audit: type=1400 audit(1785177956.890:371): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[20332.025046] audit: type=1400 audit(1785177956.892:372): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[20332.068977] audit: type=1400 audit(1785177956.936:373): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[20594.838012] audit: type=1400 audit(1785178219.706:374): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[20594.839902] audit: type=1400 audit(1785178219.708:375): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[20594.875548] audit: type=1400 audit(1785178219.744:376): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[20848.325941] audit: type=1400 audit(1785178473.195:377): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[20848.327601] audit: type=1400 audit(1785178473.196:378): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[20848.368100] audit: type=1400 audit(1785178473.237:379): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[21092.942300] audit: type=1400 audit(1785178717.814:380): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[21092.944498] audit: type=1400 audit(1785178717.816:381): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[21092.985013] audit: type=1400 audit(1785178717.856:382): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[21373.078037] audit: type=1400 audit(1785178997.951:383): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[21373.080328] audit: type=1400 audit(1785178997.954:384): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[21373.120977] audit: type=1400 audit(1785178997.994:385): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[21622.785090] audit: type=1400 audit(1785179247.660:386): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[21622.786840] audit: type=1400 audit(1785179247.661:387): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[21622.827639] audit: type=1400 audit(1785179247.702:388): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[21869.847029] audit: type=1400 audit(1785179494.722:389): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[21869.849192] audit: type=1400 audit(1785179494.725:390): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[21869.889994] audit: type=1400 audit(1785179494.765:391): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[22109.779357] audit: type=1400 audit(1785179734.657:392): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[22109.781608] audit: type=1400 audit(1785179734.659:393): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[22109.824177] audit: type=1400 audit(1785179734.701:394): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[22396.896188] audit: type=1400 audit(1785180021.775:395): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[22396.898539] audit: type=1400 audit(1785180021.776:396): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[22396.939258] audit: type=1400 audit(1785180021.818:397): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[22674.372220] audit: type=1400 audit(1785180299.253:398): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[22674.374419] audit: type=1400 audit(1785180299.255:399): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[22674.414448] audit: type=1400 audit(1785180299.295:400): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[22927.081366] audit: type=1400 audit(1785180551.963:401): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[22927.082904] audit: type=1400 audit(1785180551.965:402): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[22927.128395] audit: type=1400 audit(1785180552.010:403): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[23226.493698] audit: type=1400 audit(1785180851.377:404): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[23226.495900] audit: type=1400 audit(1785180851.379:405): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[23226.536376] audit: type=1400 audit(1785180851.420:406): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[23464.145351] audit: type=1400 audit(1785181089.031:407): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[23464.147683] audit: type=1400 audit(1785181089.033:408): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[23464.188813] audit: type=1400 audit(1785181089.074:409): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[23697.543173] audit: type=1400 audit(1785181322.430:410): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[23697.545442] audit: type=1400 audit(1785181322.432:411): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[23697.586498] audit: type=1400 audit(1785181322.473:412): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[23985.611126] audit: type=1400 audit(1785181610.500:413): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[23985.613617] audit: type=1400 audit(1785181610.502:414): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[23985.649257] audit: type=1400 audit(1785181610.537:415): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[24259.373136] audit: type=1400 audit(1785181884.263:416): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[24259.375316] audit: type=1400 audit(1785181884.265:417): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[24259.416876] audit: type=1400 audit(1785181884.306:418): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[24504.226156] audit: type=1400 audit(1785182129.118:419): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[24504.228511] audit: type=1400 audit(1785182129.120:420): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[24504.268835] audit: type=1400 audit(1785182129.160:421): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[24781.552581] audit: type=1400 audit(1785182406.445:422): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[24781.554717] audit: type=1400 audit(1785182406.446:423): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[24781.598074] audit: type=1400 audit(1785182406.490:424): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[25052.669549] audit: type=1400 audit(1785182677.564:425): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[25052.671683] audit: type=1400 audit(1785182677.566:426): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[25052.712763] audit: type=1400 audit(1785182677.607:427): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[25296.306275] audit: type=1400 audit(1785182921.202:428): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[25296.308482] audit: type=1400 audit(1785182921.204:429): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[25296.350276] audit: type=1400 audit(1785182921.246:430): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[25539.801340] audit: type=1400 audit(1785183164.699:431): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[25539.803580] audit: type=1400 audit(1785183164.701:432): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[25539.844269] audit: type=1400 audit(1785183164.741:433): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[25831.267736] audit: type=1400 audit(1785183456.166:434): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[25831.270027] audit: type=1400 audit(1785183456.168:435): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[25831.310211] audit: type=1400 audit(1785183456.209:436): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[26059.166147] audit: type=1400 audit(1785183684.066:437): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[26059.168440] audit: type=1400 audit(1785183684.069:438): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[26059.209420] audit: type=1400 audit(1785183684.109:439): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[26294.590315] audit: type=1400 audit(1785183919.492:440): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[26294.592322] audit: type=1400 audit(1785183919.494:441): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[26294.633049] audit: type=1400 audit(1785183919.534:442): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[26589.069776] audit: type=1400 audit(1785184213.973:443): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[26589.072085] audit: type=1400 audit(1785184213.975:444): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[26589.113282] audit: type=1400 audit(1785184214.016:445): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[26818.063401] audit: type=1400 audit(1785184442.968:446): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[26818.065037] audit: type=1400 audit(1785184442.969:447): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[26818.105314] audit: type=1400 audit(1785184443.010:448): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[27057.859948] audit: type=1400 audit(1785184682.766:449): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[27057.862266] audit: type=1400 audit(1785184682.769:450): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[27057.902961] audit: type=1400 audit(1785184682.809:451): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[27308.778834] audit: type=1400 audit(1785184933.686:452): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[27308.781181] audit: type=1400 audit(1785184933.689:453): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[27308.822512] audit: type=1400 audit(1785184933.730:454): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[27586.089761] audit: type=1400 audit(1785185210.999:455): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[27586.091909] audit: type=1400 audit(1785185211.001:456): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[27586.132738] audit: type=1400 audit(1785185211.042:457): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[27874.595189] audit: type=1400 audit(1785185499.506:458): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[27874.597475] audit: type=1400 audit(1785185499.507:459): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[27874.638819] audit: type=1400 audit(1785185499.549:460): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[28120.066072] audit: type=1400 audit(1785185744.978:461): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[28120.068383] audit: type=1400 audit(1785185744.980:462): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[28120.110124] audit: type=1400 audit(1785185745.022:463): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[28373.096683] audit: type=1400 audit(1785185998.010:464): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[28373.098850] audit: type=1400 audit(1785185998.012:465): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[28373.140762] audit: type=1400 audit(1785185998.054:466): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[28618.028521] audit: type=1400 audit(1785186242.944:467): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[28618.030740] audit: type=1400 audit(1785186242.946:468): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[28618.071411] audit: type=1400 audit(1785186242.986:469): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[28895.874941] audit: type=1400 audit(1785186520.791:470): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[28895.877261] audit: type=1400 audit(1785186520.794:471): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[28895.918058] audit: type=1400 audit(1785186520.834:472): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[29166.605171] audit: type=1400 audit(1785186791.523:473): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[29166.607483] audit: type=1400 audit(1785186791.526:474): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[29166.649183] audit: type=1400 audit(1785186791.567:475): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[29417.680335] audit: type=1400 audit(1785187042.600:476): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[29417.682540] audit: type=1400 audit(1785187042.602:477): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[29417.725590] audit: type=1400 audit(1785187042.645:478): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[29680.733702] audit: type=1400 audit(1785187305.655:479): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[29680.735719] audit: type=1400 audit(1785187305.657:480): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[29680.770717] audit: type=1400 audit(1785187305.692:481): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[29978.453817] audit: type=1400 audit(1785187603.377:482): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[29978.455668] audit: type=1400 audit(1785187603.378:483): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[29978.496635] audit: type=1400 audit(1785187603.419:484): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[30258.551435] audit: type=1400 audit(1785187883.476:485): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[30258.553560] audit: type=1400 audit(1785187883.478:486): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[30258.594188] audit: type=1400 audit(1785187883.519:487): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[30529.785434] audit: type=1400 audit(1785188154.712:488): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[30529.787751] audit: type=1400 audit(1785188154.714:489): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[30529.828756] audit: type=1400 audit(1785188154.755:490): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[30807.420991] audit: type=1400 audit(1785188432.348:491): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[30807.423215] audit: type=1400 audit(1785188432.351:492): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[30807.463102] audit: type=1400 audit(1785188432.390:493): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[31064.057922] audit: type=1400 audit(1785188688.987:494): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[31064.059920] audit: type=1400 audit(1785188688.989:495): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[31064.103135] audit: type=1400 audit(1785188689.032:496): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[31291.808877] audit: type=1400 audit(1785188916.739:497): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[31291.811237] audit: type=1400 audit(1785188916.742:498): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[31291.852312] audit: type=1400 audit(1785188916.783:499): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[31580.808031] audit: type=1400 audit(1785189205.740:500): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[31580.810258] audit: type=1400 audit(1785189205.743:501): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[31580.845725] audit: type=1400 audit(1785189205.778:502): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[31881.411279] audit: type=1400 audit(1785189506.346:503): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[31881.413547] audit: type=1400 audit(1785189506.348:504): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[31881.453510] audit: type=1400 audit(1785189506.387:505): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[32121.058965] audit: type=1400 audit(1785189745.994:506): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[32121.061256] audit: type=1400 audit(1785189745.997:507): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[32121.102593] audit: type=1400 audit(1785189746.038:508): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[32420.769293] audit: type=1400 audit(1785190045.707:509): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[32420.771231] audit: type=1400 audit(1785190045.709:510): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[32420.812369] audit: type=1400 audit(1785190045.749:511): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[32673.671120] audit: type=1400 audit(1785190298.609:512): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[32673.675011] audit: type=1400 audit(1785190298.613:513): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[32673.715203] audit: type=1400 audit(1785190298.654:514): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[32968.236115] audit: type=1400 audit(1785190593.177:515): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[32968.238394] audit: type=1400 audit(1785190593.179:516): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[32968.279179] audit: type=1400 audit(1785190593.219:517): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[33240.806198] audit: type=1400 audit(1785190865.749:518): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[33240.808449] audit: type=1400 audit(1785190865.751:519): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[33240.849944] audit: type=1400 audit(1785190865.792:520): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[33508.352176] audit: type=1400 audit(1785191133.296:521): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[33508.353691] audit: type=1400 audit(1785191133.297:522): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[33508.394167] audit: type=1400 audit(1785191133.338:523): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[33752.647879] audit: type=1400 audit(1785191377.593:524): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[33752.650212] audit: type=1400 audit(1785191377.596:525): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[33752.690585] audit: type=1400 audit(1785191377.635:526): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[33996.636487] audit: type=1400 audit(1785191621.583:527): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[33996.638834] audit: type=1400 audit(1785191621.585:528): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[33996.680089] audit: type=1400 audit(1785191621.626:529): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[34259.143870] audit: type=1400 audit(1785191884.092:530): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[34259.146164] audit: type=1400 audit(1785191884.095:531): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[34259.186728] audit: type=1400 audit(1785191884.134:532): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[34488.469776] audit: type=1400 audit(1785192113.419:533): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[34488.472121] audit: type=1400 audit(1785192113.422:534): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[34488.513765] audit: type=1400 audit(1785192113.463:535): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[34776.300095] audit: type=1400 audit(1785192401.251:536): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[34776.302352] audit: type=1400 audit(1785192401.254:537): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[34776.343663] audit: type=1400 audit(1785192401.294:538): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[35071.542209] audit: type=1400 audit(1785192696.495:539): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[35071.544305] audit: type=1400 audit(1785192696.497:540): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[35071.579811] audit: type=1400 audit(1785192696.532:541): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[35337.175810] audit: type=1400 audit(1785192962.130:542): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[35337.177645] audit: type=1400 audit(1785192962.132:543): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[35337.217731] audit: type=1400 audit(1785192962.172:544): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[35593.091366] audit: type=1400 audit(1785193218.047:545): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[35593.093517] audit: type=1400 audit(1785193218.049:546): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[35593.134202] audit: type=1400 audit(1785193218.090:547): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[35843.479177] audit: type=1400 audit(1785193468.437:548): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[35843.481249] audit: type=1400 audit(1785193468.439:549): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[35843.516800] audit: type=1400 audit(1785193468.474:550): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[36083.803374] audit: type=1400 audit(1785193708.762:551): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[36083.805721] audit: type=1400 audit(1785193708.764:552): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[36083.846752] audit: type=1400 audit(1785193708.805:553): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[36311.293013] audit: type=1400 audit(1785193936.253:554): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[36311.295279] audit: type=1400 audit(1785193936.256:555): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[36311.337075] audit: type=1400 audit(1785193936.297:556): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[36595.416096] audit: type=1400 audit(1785194220.377:557): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[36595.418799] audit: type=1400 audit(1785194220.380:558): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[36595.462673] audit: type=1400 audit(1785194220.424:559): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[36839.310007] audit: type=1400 audit(1785194464.273:560): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[36839.312133] audit: type=1400 audit(1785194464.276:561): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[36839.353818] audit: type=1400 audit(1785194464.317:562): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[37109.069301] audit: type=1400 audit(1785194734.034:563): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[37109.071558] audit: type=1400 audit(1785194734.036:564): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[37109.112986] audit: type=1400 audit(1785194734.077:565): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[37364.395911] audit: type=1400 audit(1785194989.362:566): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[37364.398065] audit: type=1400 audit(1785194989.364:567): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[37364.438363] audit: type=1400 audit(1785194989.404:568): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[37600.606339] audit: type=1400 audit(1785195225.574:569): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[37600.607731] audit: type=1400 audit(1785195225.575:570): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[37600.642591] audit: type=1400 audit(1785195225.610:571): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[37837.940578] audit: type=1400 audit(1785195462.909:572): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[37837.944353] audit: type=1400 audit(1785195462.913:573): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[37837.985131] audit: type=1400 audit(1785195462.953:574): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[38074.252813] audit: type=1400 audit(1785195699.223:575): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[38074.255130] audit: type=1400 audit(1785195699.226:576): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[38074.295798] audit: type=1400 audit(1785195699.266:577): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[38323.985494] audit: type=1400 audit(1785195948.957:578): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[38323.987790] audit: type=1400 audit(1785195948.959:579): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[38324.022398] audit: type=1400 audit(1785195948.994:580): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[38593.712200] audit: type=1400 audit(1785196218.686:581): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[38593.713925] audit: type=1400 audit(1785196218.687:582): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[38593.754775] audit: type=1400 audit(1785196218.728:583): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[38861.314953] audit: type=1400 audit(1785196486.289:584): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[38861.317246] audit: type=1400 audit(1785196486.292:585): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[38861.358124] audit: type=1400 audit(1785196486.332:586): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[39150.683590] audit: type=1400 audit(1785196775.660:587): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[39150.685761] audit: type=1400 audit(1785196775.662:588): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[39150.726547] audit: type=1400 audit(1785196775.703:589): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[39385.515215] audit: type=1400 audit(1785197010.493:590): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[39385.517498] audit: type=1400 audit(1785197010.495:591): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[39385.557734] audit: type=1400 audit(1785197010.535:592): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[39630.135028] audit: type=1400 audit(1785197255.114:593): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[39630.137348] audit: type=1400 audit(1785197255.117:594): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[39630.178523] audit: type=1400 audit(1785197255.158:595): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[39908.059240] audit: type=1400 audit(1785197533.041:596): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[39908.061446] audit: type=1400 audit(1785197533.042:597): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[39908.097118] audit: type=1400 audit(1785197533.078:598): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[40178.436487] audit: type=1400 audit(1785197803.419:599): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[40178.438770] audit: type=1400 audit(1785197803.421:600): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[40178.479556] audit: type=1400 audit(1785197803.462:601): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[40476.594793] audit: type=1400 audit(1785198101.579:602): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[40476.597068] audit: type=1400 audit(1785198101.581:603): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[40476.637765] audit: type=1400 audit(1785198101.622:604): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[40717.441353] audit: type=1400 audit(1785198342.427:605): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[40717.443672] audit: type=1400 audit(1785198342.429:606): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[40717.488364] audit: type=1400 audit(1785198342.474:607): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[40949.704476] audit: type=1400 audit(1785198574.692:608): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[40949.706652] audit: type=1400 audit(1785198574.694:609): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[40949.746682] audit: type=1400 audit(1785198574.733:610): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[41245.717332] audit: type=1400 audit(1785198870.706:611): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[41245.720099] audit: type=1400 audit(1785198870.709:612): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[41245.760739] audit: type=1400 audit(1785198870.749:613): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[41528.058525] audit: type=1400 audit(1785199153.049:614): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[41528.060929] audit: type=1400 audit(1785199153.051:615): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[41528.095680] audit: type=1400 audit(1785199153.086:616): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[41791.660462] audit: type=1400 audit(1785199416.652:617): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[41791.662745] audit: type=1400 audit(1785199416.654:618): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[41791.704264] audit: type=1400 audit(1785199416.695:619): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[42074.651506] audit: type=1400 audit(1785199699.645:620): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[42074.653687] audit: type=1400 audit(1785199699.647:621): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[42074.689346] audit: type=1400 audit(1785199699.683:622): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[42334.360433] audit: type=1400 audit(1785199959.355:623): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[42334.362802] audit: type=1400 audit(1785199959.358:624): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[42334.399809] audit: type=1400 audit(1785199959.395:625): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[42595.084431] audit: type=1400 audit(1785200220.081:626): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[42595.086801] audit: type=1400 audit(1785200220.083:627): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[42595.122410] audit: type=1400 audit(1785200220.119:628): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[42841.200106] audit: type=1400 audit(1785200466.199:629): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[42841.202343] audit: type=1400 audit(1785200466.201:630): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[42841.243437] audit: type=1400 audit(1785200466.241:631): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[43121.864016] audit: type=1400 audit(1785200746.863:632): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[43121.868169] audit: type=1400 audit(1785200746.868:633): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[43121.909241] audit: type=1400 audit(1785200746.909:634): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[43393.245100] audit: type=1400 audit(1785201018.247:635): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[43393.247296] audit: type=1400 audit(1785201018.249:636): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[43393.288464] audit: type=1400 audit(1785201018.289:637): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[43688.626904] audit: type=1400 audit(1785201313.630:638): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[43688.629028] audit: type=1400 audit(1785201313.632:639): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[43688.669646] audit: type=1400 audit(1785201313.672:640): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[43955.071180] audit: type=1400 audit(1785201580.076:641): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[43955.073382] audit: type=1400 audit(1785201580.078:642): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[43955.113869] audit: type=1400 audit(1785201580.118:643): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[44194.935142] audit: type=1400 audit(1785201819.941:644): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[44194.937222] audit: type=1400 audit(1785201819.943:645): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[44194.977361] audit: type=1400 audit(1785201819.983:646): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[44440.962876] audit: type=1400 audit(1785202065.970:647): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[44440.965116] audit: type=1400 audit(1785202065.972:648): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[44441.006433] audit: type=1400 audit(1785202066.013:649): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[44702.756576] audit: type=1400 audit(1785202327.765:650): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[44702.759034] audit: type=1400 audit(1785202327.767:651): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[44702.799842] audit: type=1400 audit(1785202327.808:652): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[44941.287415] audit: type=1400 audit(1785202566.298:653): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[44941.289642] audit: type=1400 audit(1785202566.300:654): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[44941.330286] audit: type=1400 audit(1785202566.340:655): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[45187.523193] audit: type=1400 audit(1785202812.535:656): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[45187.525426] audit: type=1400 audit(1785202812.537:657): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[45187.566396] audit: type=1400 audit(1785202812.578:658): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[45483.869445] audit: type=1400 audit(1785203108.883:659): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[45483.871435] audit: type=1400 audit(1785203108.885:660): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[45483.910752] audit: type=1400 audit(1785203108.924:661): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[45769.271077] audit: type=1400 audit(1785203394.286:662): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[45769.274983] audit: type=1400 audit(1785203394.290:663): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[45769.310028] audit: type=1400 audit(1785203394.325:664): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[45995.588384] audit: type=1400 audit(1785203620.605:665): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[45995.590713] audit: type=1400 audit(1785203620.607:666): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[45995.630743] audit: type=1400 audit(1785203620.647:667): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[46291.662919] audit: type=1400 audit(1785203916.681:668): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[46291.665099] audit: type=1400 audit(1785203916.683:669): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[46291.706500] audit: type=1400 audit(1785203916.724:670): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[46559.922338] audit: type=1400 audit(1785204184.942:671): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[46559.924265] audit: type=1400 audit(1785204184.944:672): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[46559.965407] audit: type=1400 audit(1785204184.985:673): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[46813.362203] audit: type=1400 audit(1785204438.384:674): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[46813.364466] audit: type=1400 audit(1785204438.386:675): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[46813.405597] audit: type=1400 audit(1785204438.426:676): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[47085.024575] audit: type=1400 audit(1785204710.047:677): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[47085.026693] audit: type=1400 audit(1785204710.049:678): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[47085.061354] audit: type=1400 audit(1785204710.084:679): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[47355.829561] audit: type=1400 audit(1785204980.854:680): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[47355.831645] audit: type=1400 audit(1785204980.856:681): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[47355.867624] audit: type=1400 audit(1785204980.892:682): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[47628.359651] audit: type=1400 audit(1785205253.385:683): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[47628.361965] audit: type=1400 audit(1785205253.387:684): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[47628.402095] audit: type=1400 audit(1785205253.427:685): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[47870.293645] audit: type=1400 audit(1785205495.321:686): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[47870.295902] audit: type=1400 audit(1785205495.323:687): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[47870.336713] audit: type=1400 audit(1785205495.364:688): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[48110.541819] audit: type=1400 audit(1785205735.570:689): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[48110.544068] audit: type=1400 audit(1785205735.572:690): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[48110.585369] audit: type=1400 audit(1785205735.614:691): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[48357.892302] audit: type=1400 audit(1785205982.923:692): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[48357.894699] audit: type=1400 audit(1785205982.925:693): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[48357.934972] audit: type=1400 audit(1785205982.965:694): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[48617.675408] audit: type=1400 audit(1785206242.707:695): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[48617.677378] audit: type=1400 audit(1785206242.709:696): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[48617.718360] audit: type=1400 audit(1785206242.750:697): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[48884.343804] audit: type=1400 audit(1785206509.377:698): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[48884.346005] audit: type=1400 audit(1785206509.379:699): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[48884.386882] audit: type=1400 audit(1785206509.420:700): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[49130.426171] audit: type=1400 audit(1785206755.461:701): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[49130.428390] audit: type=1400 audit(1785206755.463:702): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[49130.468944] audit: type=1400 audit(1785206755.503:703): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[49370.060813] audit: type=1400 audit(1785206995.097:704): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[49370.063068] audit: type=1400 audit(1785206995.099:705): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[49370.103038] audit: type=1400 audit(1785206995.139:706): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=923 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
|
|
--- cpu MHz (live snapshot)
|
|
$ grep -c ^processor /proc/cpuinfo
|
|
8
|
|
|
|
###############################################################################
|
|
# 5. MEMORY / NUMA / SWAP
|
|
###############################################################################
|
|
|
|
--- free -h
|
|
$ free -h
|
|
total used free shared buff/cache available
|
|
Mem: 31Gi 3.0Gi 27Gi 35Mi 1.0Gi 28Gi
|
|
Swap: 8.0Gi 0B 8.0Gi
|
|
|
|
--- free -b
|
|
$ free -b
|
|
total used free shared buff/cache available
|
|
Mem: 33351712768 3251277824 29457137664 37646336 1077899264 30100434944
|
|
Swap: 8589930496 0 8589930496
|
|
|
|
--- swapon
|
|
$ swapon --show
|
|
NAME TYPE SIZE USED PRIO
|
|
/dev/dm-0 partition 8G 0B -1
|
|
|
|
--- /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: 32570032 kB
|
|
MemFree: 28767028 kB
|
|
MemAvailable: 29395248 kB
|
|
Buffers: 76124 kB
|
|
Cached: 939092 kB
|
|
SwapTotal: 8388604 kB
|
|
SwapFree: 8388604 kB
|
|
Dirty: 3324 kB
|
|
Writeback: 0 kB
|
|
AnonPages: 2341404 kB
|
|
Mapped: 160976 kB
|
|
Shmem: 36764 kB
|
|
Slab: 177456 kB
|
|
SReclaimable: 37420 kB
|
|
SUnreclaim: 140036 kB
|
|
KernelStack: 5044 kB
|
|
PageTables: 13984 kB
|
|
SecPageTables: 2364 kB
|
|
NFS_Unstable: 0 kB
|
|
WritebackTmp: 0 kB
|
|
AnonHugePages: 1316864 kB
|
|
ShmemHugePages: 0 kB
|
|
ShmemPmdMapped: 0 kB
|
|
FilePmdMapped: 0 kB
|
|
HugePages_Total: 0
|
|
HugePages_Free: 0
|
|
Hugepagesize: 2048 kB
|
|
DirectMap4k: 219296 kB
|
|
DirectMap2M: 4724736 kB
|
|
DirectMap1G: 28311552 kB
|
|
|
|
--- numa stat
|
|
$ cat /proc/sys/vm/numa_stat
|
|
1
|
|
|
|
--- numa_balancing
|
|
$ cat /proc/sys/kernel/numa_balancing
|
|
0
|
|
|
|
--- zone reclaim
|
|
$ cat /proc/sys/vm/zone_reclaim_mode
|
|
0
|
|
|
|
--- slab top (top 20)
|
|
$ slabtop -o -s c
|
|
Active / Total Objects (% used) : 506222 / 540397 (93.7%)
|
|
Active / Total Slabs (% used) : 14646 / 14646 (100.0%)
|
|
Active / Total Caches (% used) : 364 / 473 (77.0%)
|
|
Active / Total Size (% used) : 115287.49K / 123215.81K (93.6%)
|
|
Minimum / Average / Maximum Object : 0.01K / 0.23K / 16.00K
|
|
|
|
OBJS ACTIVE USE OBJ SIZE SLABS OBJ/SLAB CACHE SIZE NAME
|
|
8845 8820 99% 1.10K 305 29 9760K ext4_inode_cache
|
|
66240 66240 100% 0.13K 2208 30 8832K kernfs_node_cache
|
|
12428 12404 99% 0.60K 478 26 7648K inode_cache
|
|
35469 35457 99% 0.19K 1689 21 6756K dentry
|
|
396 396 100% 10.75K 198 2 6336K task_struct
|
|
9436 9435 99% 0.57K 337 28 5392K radix_tree_node
|
|
2048 756 36% 2.00K 128 16 4096K kmalloc-cg-2k
|
|
15834 13800 87% 0.19K 754 21 3016K vm_area_struct
|
|
24336 24300 99% 0.10K 624 39 2496K buffer_head
|
|
28520 28494 99% 0.09K 620 46 2480K lsm_inode_cache
|
|
32928 29395 89% 0.07K 588 56 2352K vmap_area
|
|
3872 3848 99% 0.50K 121 32 1936K kmalloc-rnd-03-512
|
|
2484 2464 99% 0.67K 108 23 1728K proc_inode_cache
|
|
2142 2100 98% 0.75K 102 21 1632K shmem_inode_cache
|
|
1408 1380 98% 1.00K 44 32 1408K iommu_iova_magazine
|
|
576 576 100% 2.00K 36 16 1152K kmalloc-rnd-06-2k
|
|
1120 1104 98% 1.00K 35 32 1120K kmalloc-rnd-07-1k
|
|
256 256 100% 4.00K 32 8 1024K kmalloc-rnd-03-4k
|
|
1575 1568 99% 0.62K 63 25 1008K debugfs_inode_cache
|
|
15552 12360 79% 0.06K 243 64 972K anon_vma_chain
|
|
464 456 98% 2.00K 29 16 928K kmalloc-2k
|
|
1242 353 28% 0.69K 54 23 864K skbuff_small_head
|
|
108 108 100% 8.00K 27 4 864K kmalloc-rnd-10-8k
|
|
8346 6960 83% 0.10K 214 39 856K anon_vma
|
|
13504 13500 99% 0.06K 211 64 844K dmaengine-unmap-2
|
|
3328 2561 76% 0.25K 104 32 832K maple_node
|
|
200 172 86% 4.00K 25 8 800K biovec-max
|
|
1600 1570 98% 0.50K 50 32 800K kmalloc-rnd-13-512
|
|
672 671 99% 1.12K 24 28 768K signal_cache
|
|
360 360 100% 2.06K 24 15 768K sighand_cache
|
|
368 204 55% 2.00K 23 16 736K kmalloc-rnd-07-2k
|
|
3591 3573 99% 0.19K 171 21 684K kmalloc-rnd-13-192
|
|
672 650 96% 1.00K 21 32 672K kmalloc-rnd-13-1k
|
|
780 744 95% 0.81K 20 39 640K sock_inode_cache
|
|
160 152 95% 4.00K 20 8 640K kmalloc-cg-4k
|
|
266 264 99% 2.25K 19 14 608K mem_cgroup
|
|
3045 1260 41% 0.19K 145 21 580K kmalloc-cg-192
|
|
1152 1148 99% 0.50K 36 32 576K kmalloc-rnd-07-512
|
|
3003 3000 99% 0.19K 143 21 572K filp
|
|
1056 1036 98% 0.50K 33 32 528K pool_workqueue
|
|
272 264 97% 1.88K 16 17 512K mem_cgroup_per_node
|
|
64 64 100% 8.00K 16 4 512K kmalloc-rnd-06-8k
|
|
1984 1963 98% 0.25K 62 32 496K kmalloc-rnd-03-256
|
|
3872 1440 37% 0.12K 121 32 484K kmalloc-cg-128
|
|
7680 7560 98% 0.06K 120 64 480K kmalloc-cg-64
|
|
60 60 100% 8.00K 15 4 480K kmalloc-rnd-15-8k
|
|
60 60 100% 8.00K 15 4 480K kmalloc-rnd-11-8k
|
|
448 444 99% 1.00K 14 32 448K kmalloc-cg-1k
|
|
448 420 93% 1.00K 14 32 448K kmalloc-rnd-10-1k
|
|
112 68 60% 4.00K 14 8 448K kmalloc-rnd-07-4k
|
|
1696 588 34% 0.25K 53 32 424K nf_conntrack
|
|
442 420 95% 0.94K 13 34 416K nfs_read_data
|
|
208 204 98% 2.00K 13 16 416K kmalloc-rnd-08-2k
|
|
104 64 61% 4.00K 13 8 416K kmalloc-rnd-05-4k
|
|
7446 7440 99% 0.05K 102 73 408K ftrace_event_field
|
|
1600 1596 99% 0.25K 50 32 400K kmalloc-rnd-13-256
|
|
144 144 100% 2.50K 12 12 384K TCPv6
|
|
156 156 100% 2.38K 12 13 384K TCP
|
|
216 216 100% 1.75K 12 18 384K mm_struct
|
|
96 96 100% 4.00K 12 8 384K kmalloc-rnd-06-4k
|
|
96 96 100% 4.00K 12 8 384K kmalloc-rnd-01-4k
|
|
3696 3660 99% 0.09K 88 42 352K trace_event_file
|
|
1280 676 52% 0.25K 40 32 320K skbuff_head_cache
|
|
3318 3300 99% 0.09K 79 42 316K kmalloc-rnd-01-96
|
|
608 560 92% 0.50K 19 32 304K kmalloc-rnd-14-512
|
|
207 192 92% 1.38K 9 23 288K RAWv6
|
|
144 132 91% 2.00K 9 16 288K biovec-128
|
|
414 392 94% 0.69K 18 23 288K files_cache
|
|
144 144 100% 2.00K 9 16 288K kmalloc-rnd-13-2k
|
|
288 276 95% 1.00K 9 32 288K kmalloc-rnd-12-1k
|
|
36 36 100% 8.00K 9 4 288K kmalloc-rnd-07-8k
|
|
576 560 97% 0.50K 18 32 288K kmalloc-rnd-06-512
|
|
144 144 100% 2.00K 9 16 288K kmalloc-rnd-04-2k
|
|
144 144 100% 2.00K 9 16 288K kmalloc-rnd-01-2k
|
|
735 728 99% 0.38K 35 21 280K mnt_cache
|
|
5950 5880 98% 0.05K 70 85 280K shared_policy_node
|
|
1449 1433 98% 0.19K 69 21 276K pid
|
|
1088 924 84% 0.25K 34 32 272K bio-200
|
|
544 532 97% 0.50K 17 32 272K kmalloc-cg-512
|
|
24 24 100% 9.19K 8 3 256K kvm_vcpu
|
|
32 32 100% 8.00K 8 4 256K kmalloc-cg-8k
|
|
128 120 93% 2.00K 8 16 256K kmalloc-rnd-12-2k
|
|
128 120 93% 2.00K 8 16 256K kmalloc-rnd-11-2k
|
|
256 252 98% 1.00K 8 32 256K kmalloc-rnd-11-1k
|
|
256 252 98% 1.00K 8 32 256K kmalloc-rnd-03-1k
|
|
32 32 100% 8.00K 8 4 256K kmalloc-rnd-02-8k
|
|
32 32 100% 8.00K 8 4 256K kmalloc-rnd-01-8k
|
|
256 228 89% 1.00K 8 32 256K kmalloc-rnd-01-1k
|
|
6426 6360 98% 0.04K 63 102 252K extent_status
|
|
480 476 99% 0.50K 15 32 240K kmalloc-512
|
|
294 280 95% 0.75K 14 21 224K nfs_commit_data
|
|
77 72 93% 2.75K 7 11 224K x86_emulator
|
|
252 224 88% 0.88K 7 36 224K fuse_inode
|
|
182 180 98% 1.19K 7 26 224K RAW
|
|
252 224 88% 0.88K 7 36 224K user_namespace
|
|
322 308 95% 0.69K 14 23 224K task_group
|
|
112 108 96% 2.00K 7 16 224K kmalloc-rnd-15-2k
|
|
448 448 100% 0.50K 14 32 224K kmalloc-rnd-15-512
|
|
56 56 100% 4.00K 7 8 224K kmalloc-rnd-09-4k
|
|
56 52 92% 4.00K 7 8 224K kmalloc-rnd-08-4k
|
|
3456 3429 99% 0.06K 54 64 216K kmalloc-rnd-03-64
|
|
325 308 94% 0.63K 13 25 208K tracefs_inode_cache
|
|
416 392 94% 0.50K 13 32 208K kmalloc-rnd-10-512
|
|
1568 1560 99% 0.12K 49 32 196K eventpoll_epi
|
|
1029 1020 99% 0.19K 49 21 196K proc_dir_entry
|
|
600 587 97% 0.31K 24 25 192K bio-256
|
|
144 132 91% 1.31K 6 24 192K UDP
|
|
96 96 100% 2.00K 6 16 192K memdup_user-2k
|
|
144 132 91% 1.32K 6 24 192K perf_event
|
|
48 48 100% 4.00K 6 8 192K kmalloc-rnd-15-4k
|
|
96 84 87% 2.00K 6 16 192K kmalloc-rnd-14-2k
|
|
24 24 100% 8.00K 6 4 192K kmalloc-rnd-13-8k
|
|
24 24 100% 8.00K 6 4 192K kmalloc-rnd-12-8k
|
|
384 364 94% 0.50K 12 32 192K kmalloc-rnd-11-512
|
|
96 96 100% 2.00K 6 16 192K kmalloc-rnd-10-2k
|
|
96 84 87% 2.00K 6 16 192K kmalloc-rnd-09-2k
|
|
192 180 93% 1.00K 6 32 192K kmalloc-rnd-06-1k
|
|
96 96 100% 2.00K 6 16 192K kmalloc-rnd-05-2k
|
|
96 96 100% 2.00K 6 16 192K kmalloc-rnd-03-2k
|
|
1536 1518 98% 0.12K 48 32 192K kmalloc-rnd-03-128
|
|
96 96 100% 2.00K 6 16 192K kmalloc-rnd-02-2k
|
|
192 192 100% 1.00K 6 32 192K kmalloc-1k
|
|
1932 1920 99% 0.09K 46 42 184K kmalloc-rnd-14-96
|
|
704 700 99% 0.25K 22 32 176K kmalloc-rnd-05-256
|
|
704 588 83% 0.25K 22 32 176K kmalloc-rnd-04-256
|
|
903 900 99% 0.19K 43 21 172K file_lock_cache
|
|
11008 10860 98% 0.02K 43 256 172K kmalloc-rnd-14-16
|
|
5376 5340 99% 0.03K 42 128 168K kmalloc-rnd-14-32
|
|
2688 2688 100% 0.06K 42 64 168K kmalloc-rnd-10-64
|
|
230 224 97% 0.69K 10 23 160K rpc_inode_cache
|
|
110 108 98% 1.44K 5 22 160K UDPv6
|
|
1280 1260 98% 0.12K 40 32 160K bio_integrity_data
|
|
165 140 84% 0.97K 5 33 160K request_queue
|
|
20 20 100% 8.00K 5 4 160K kmalloc-rnd-14-8k
|
|
40 38 95% 4.00K 5 8 160K kmalloc-rnd-13-4k
|
|
1680 1260 75% 0.09K 40 42 160K kmalloc-rnd-13-96
|
|
40 36 90% 4.00K 5 8 160K kmalloc-rnd-11-4k
|
|
840 840 100% 0.19K 40 21 160K kmalloc-rnd-11-192
|
|
40 40 100% 4.00K 5 8 160K kmalloc-rnd-10-4k
|
|
160 144 90% 1.00K 5 32 160K kmalloc-rnd-09-1k
|
|
320 308 96% 0.50K 10 32 160K kmalloc-rnd-08-512
|
|
40 36 90% 4.00K 5 8 160K kmalloc-rnd-02-4k
|
|
160 132 82% 1.00K 5 32 160K kmalloc-rnd-02-1k
|
|
858 840 97% 0.18K 39 22 156K kvm_mmu_page_header
|
|
207 196 94% 0.67K 9 23 144K taskstats
|
|
1512 1500 99% 0.09K 36 42 144K kmalloc-cg-96
|
|
576 552 95% 0.25K 18 32 144K kmalloc-rnd-10-256
|
|
288 280 97% 0.50K 9 32 144K kmalloc-rnd-05-512
|
|
493 476 96% 0.27K 17 29 136K tw_sock_TCP
|
|
8 8 100% 16.00K 4 2 128K zio_buf_comb_16384
|
|
224 224 100% 0.56K 8 28 128K kioctx
|
|
32 32 100% 4.00K 4 8 128K memdup_user-4k
|
|
128 120 93% 1.00K 4 32 128K kmalloc-rnd-15-1k
|
|
512 504 98% 0.25K 16 32 128K kmalloc-rnd-15-256
|
|
32 32 100% 4.00K 4 8 128K kmalloc-rnd-14-4k
|
|
128 108 84% 1.00K 4 32 128K kmalloc-rnd-14-1k
|
|
256 252 98% 0.50K 8 32 128K kmalloc-rnd-12-512
|
|
128 120 93% 1.00K 4 32 128K kmalloc-rnd-08-1k
|
|
512 504 98% 0.25K 16 32 128K kmalloc-rnd-07-256
|
|
16 16 100% 8.00K 4 4 128K kmalloc-rnd-05-8k
|
|
128 120 93% 1.00K 4 32 128K kmalloc-rnd-04-1k
|
|
32 32 100% 4.00K 4 8 128K kmalloc-4k
|
|
512 504 98% 0.25K 16 32 128K kmalloc-256
|
|
672 660 98% 0.19K 32 21 128K kmalloc-192
|
|
992 972 97% 0.12K 31 32 124K kmalloc-rnd-13-128
|
|
3968 3900 98% 0.03K 31 128 124K kmalloc-rnd-02-32
|
|
780 780 100% 0.15K 30 26 120K ext4_groupinfo_4k
|
|
480 473 98% 0.25K 15 32 120K kmem_cache
|
|
609 600 98% 0.19K 29 21 116K names_cache
|
|
609 600 98% 0.19K 29 21 116K kmalloc-rnd-15-192
|
|
609 601 98% 0.19K 29 21 116K kmalloc-rnd-07-192
|
|
609 600 98% 0.19K 29 21 116K kmalloc-rnd-06-192
|
|
224 224 100% 0.50K 7 32 112K memdup_user-512
|
|
1176 1140 96% 0.09K 28 42 112K kmalloc-rcl-96
|
|
224 196 87% 0.50K 7 32 112K kmalloc-rnd-09-512
|
|
224 224 100% 0.50K 7 32 112K kmalloc-rnd-04-512
|
|
224 224 100% 0.50K 7 32 112K kmalloc-rnd-02-512
|
|
224 224 100% 0.50K 7 32 112K kmalloc-rnd-01-512
|
|
546 540 98% 0.19K 26 21 104K bio-136
|
|
546 540 98% 0.19K 26 21 104K jbd2_transaction_s
|
|
416 392 94% 0.25K 13 32 104K key_jar
|
|
546 540 98% 0.19K 26 21 104K kmalloc-rnd-12-192
|
|
416 392 94% 0.25K 13 32 104K kmalloc-rnd-11-256
|
|
546 540 98% 0.19K 26 21 104K kmalloc-rnd-10-192
|
|
84 72 85% 1.12K 3 28 96K nfs_inode_cache
|
|
45 36 80% 2.12K 3 15 96K MPTCPv6
|
|
288 280 97% 0.32K 12 24 96K request_sock_TCP
|
|
156 140 89% 0.61K 6 26 96K hugetlbfs_inode_cache
|
|
126 112 88% 0.75K 6 21 96K dax_cache
|
|
96 96 100% 1.00K 3 32 96K memdup_user-1k
|
|
57 48 84% 1.62K 3 19 96K bdev_cache
|
|
12288 7020 57% 0.01K 24 512 96K kmalloc-rnd-14-8
|
|
24 24 100% 4.00K 3 8 96K kmalloc-rnd-12-4k
|
|
1536 1500 97% 0.06K 24 64 96K kmalloc-rnd-02-64
|
|
384 364 94% 0.25K 12 32 96K kmalloc-rnd-01-256
|
|
483 480 99% 0.19K 23 21 92K memdup_user-192
|
|
483 480 99% 0.19K 23 21 92K kmalloc-rnd-14-192
|
|
483 480 99% 0.19K 23 21 92K kmalloc-rnd-09-192
|
|
483 480 99% 0.19K 23 21 92K kmalloc-rnd-08-192
|
|
483 480 99% 0.19K 23 21 92K kmalloc-rnd-05-192
|
|
483 480 99% 0.19K 23 21 92K kmalloc-rnd-03-192
|
|
275 252 91% 0.31K 11 25 88K bio-264
|
|
1122 1080 96% 0.08K 22 51 88K sigqueue
|
|
1408 1380 98% 0.06K 22 64 88K kmalloc-rnd-14-64
|
|
672 660 98% 0.12K 21 32 84K kmalloc-rcl-128
|
|
672 648 96% 0.12K 21 32 84K kmalloc-rnd-10-128
|
|
125 112 89% 0.62K 5 25 80K netfs_request
|
|
320 296 92% 0.25K 10 32 80K io_kiocb
|
|
680 660 97% 0.12K 20 34 80K jbd2_journal_head
|
|
480 480 100% 0.16K 20 24 80K ext4_allocation_context
|
|
115 112 97% 0.69K 5 23 80K uts_namespace
|
|
320 308 96% 0.25K 10 32 80K kmalloc-cg-256
|
|
1280 1260 98% 0.06K 20 64 80K kmalloc-rnd-11-64
|
|
840 840 100% 0.09K 20 42 80K kmalloc-rnd-10-96
|
|
320 308 96% 0.25K 10 32 80K kmalloc-rnd-06-256
|
|
420 420 100% 0.19K 20 21 80K kmalloc-rnd-04-192
|
|
420 420 100% 0.19K 20 21 80K kmalloc-rnd-02-192
|
|
420 420 100% 0.19K 20 21 80K kmalloc-rnd-01-192
|
|
437 420 96% 0.17K 19 23 76K fuse_request
|
|
969 960 99% 0.08K 19 51 76K Acpi-State
|
|
2432 2400 98% 0.03K 19 128 76K kmalloc-rnd-12-32
|
|
798 780 97% 0.09K 19 42 76K kmalloc-rnd-05-96
|
|
261 252 96% 0.27K 9 29 72K tw_sock_TCPv6
|
|
3060 3000 98% 0.02K 18 170 72K lsm_file_cache
|
|
1152 1140 98% 0.06K 18 64 72K kmalloc-rnd-09-64
|
|
544 540 99% 0.12K 17 32 68K kmalloc-rnd-15-128
|
|
544 540 99% 0.12K 17 32 68K kmalloc-rnd-11-128
|
|
544 540 99% 0.12K 17 32 68K kmalloc-rnd-08-128
|
|
544 540 99% 0.12K 17 32 68K kmalloc-rnd-07-128
|
|
544 540 99% 0.12K 17 32 68K kmalloc-rnd-06-128
|
|
544 540 99% 0.12K 17 32 68K kmalloc-rnd-04-128
|
|
46 24 52% 1.38K 2 23 64K PINGv6
|
|
20 12 60% 3.16K 2 10 64K kcopyd_job
|
|
32 24 75% 2.00K 2 16 64K MPTCP
|
|
10 8 80% 6.19K 2 5 64K net_namespace
|
|
672 660 98% 0.09K 16 42 64K kmalloc-rnd-15-96
|
|
256 252 98% 0.25K 8 32 64K kmalloc-rnd-14-256
|
|
256 252 98% 0.25K 8 32 64K kmalloc-rnd-12-256
|
|
8 8 100% 8.00K 2 4 64K kmalloc-rnd-09-8k
|
|
256 252 98% 0.25K 8 32 64K kmalloc-rnd-09-256
|
|
8 8 100% 8.00K 2 4 64K kmalloc-rnd-08-8k
|
|
1024 1021 99% 0.06K 16 64 64K kmalloc-rnd-08-64
|
|
672 660 98% 0.09K 16 42 64K kmalloc-rnd-06-96
|
|
64 60 93% 1.00K 2 32 64K kmalloc-rnd-05-1k
|
|
1024 966 94% 0.06K 16 64 64K kmalloc-rnd-05-64
|
|
8 8 100% 8.00K 2 4 64K kmalloc-rnd-04-8k
|
|
16 12 75% 4.00K 2 8 64K kmalloc-rnd-04-4k
|
|
8 8 100% 8.00K 2 4 64K kmalloc-rnd-03-8k
|
|
1024 1020 99% 0.06K 16 64 64K kmalloc-rnd-01-64
|
|
510 480 94% 0.12K 15 34 60K seq_file
|
|
480 480 100% 0.12K 15 32 60K kmalloc-rnd-14-128
|
|
480 480 100% 0.12K 15 32 60K kmalloc-rnd-12-128
|
|
480 480 100% 0.12K 15 32 60K kmalloc-rnd-05-128
|
|
480 480 100% 0.12K 15 32 60K kmalloc-rnd-02-128
|
|
480 480 100% 0.12K 15 32 60K kmalloc-rnd-01-128
|
|
480 473 98% 0.12K 15 32 60K kmem_cache_node
|
|
224 224 100% 0.25K 7 32 56K ip6_dst_cache
|
|
504 480 95% 0.11K 14 36 56K ext4_prealloc_space
|
|
224 224 100% 0.25K 7 32 56K kmalloc-rnd-08-256
|
|
896 840 93% 0.06K 14 64 56K kmalloc-rnd-07-64
|
|
507 480 94% 0.10K 13 39 52K Acpi-ParseExt
|
|
3328 3180 95% 0.02K 13 256 52K kmalloc-rnd-12-16
|
|
546 540 98% 0.09K 13 42 52K kmalloc-rnd-11-96
|
|
546 540 98% 0.09K 13 42 52K kmalloc-rnd-08-96
|
|
546 540 98% 0.09K 13 42 52K kmalloc-rnd-07-96
|
|
1664 1620 97% 0.03K 13 128 52K kmalloc-rnd-06-32
|
|
192 168 87% 0.25K 6 32 48K memdup_user-256
|
|
504 480 95% 0.09K 12 42 48K kmalloc-rnd-12-96
|
|
384 360 93% 0.12K 12 32 48K kmalloc-rnd-09-128
|
|
504 480 95% 0.09K 12 42 48K kmalloc-rnd-09-96
|
|
1536 1500 97% 0.03K 12 128 48K kmalloc-rnd-07-32
|
|
768 720 93% 0.06K 12 64 48K kmalloc-rnd-04-64
|
|
504 480 95% 0.09K 12 42 48K kmalloc-rnd-04-96
|
|
504 480 95% 0.09K 12 42 48K kmalloc-rnd-03-96
|
|
192 168 87% 0.25K 6 32 48K kmalloc-rnd-02-256
|
|
384 360 93% 0.12K 12 32 48K kmalloc-128
|
|
504 480 95% 0.09K 12 42 48K kmalloc-96
|
|
704 660 93% 0.06K 11 64 44K pidfs_attr_cache
|
|
1408 1380 98% 0.03K 11 128 44K kmalloc-cg-32
|
|
704 660 93% 0.06K 11 64 44K kmalloc-rcl-64
|
|
704 660 93% 0.06K 11 64 44K kmalloc-rnd-15-64
|
|
1408 1377 97% 0.03K 11 128 44K kmalloc-rnd-10-32
|
|
1408 1380 98% 0.03K 11 128 44K kmalloc-rnd-09-32
|
|
320 300 93% 0.12K 10 32 40K scsi_sense_cache
|
|
640 600 93% 0.06K 10 64 40K ext4_io_end
|
|
730 660 90% 0.05K 10 73 40K mb_cache_entry
|
|
1020 960 94% 0.04K 10 102 40K fsnotify_inode_mark_connector
|
|
640 579 90% 0.06K 10 64 40K kmalloc-rnd-12-64
|
|
420 420 100% 0.09K 10 42 40K kmalloc-rnd-02-96
|
|
1280 900 70% 0.03K 10 128 40K kmalloc-rnd-01-32
|
|
189 180 95% 0.19K 9 21 36K bio-176
|
|
378 360 95% 0.09K 9 42 36K memdup_user-96
|
|
504 480 95% 0.07K 9 56 36K nsproxy
|
|
576 540 93% 0.06K 9 64 36K kmalloc-rnd-13-64
|
|
576 540 93% 0.06K 9 64 36K kmalloc-rnd-06-64
|
|
50 28 56% 0.62K 2 25 32K kvm_gmem_inode_cache
|
|
34 28 82% 0.94K 1 34 32K mqueue_inode_cache
|
|
30 24 80% 1.06K 1 30 32K PING
|
|
4 4 100% 8.00K 1 4 32K memdup_user-8k
|
|
512 480 93% 0.06K 8 64 32K memdup_user-64
|
|
15 12 80% 2.06K 1 15 32K dmaengine-unmap-256
|
|
30 12 40% 1.06K 1 30 32K dmaengine-unmap-128
|
|
4 4 100% 8.00K 1 4 32K kmalloc-8k
|
|
512 480 93% 0.06K 8 64 32K kmalloc-64
|
|
896 780 87% 0.03K 7 128 28K kmalloc-rnd-08-32
|
|
1792 1560 87% 0.02K 7 256 28K kmalloc-rnd-03-16
|
|
438 420 95% 0.05K 6 73 24K ip_fib_alias
|
|
75 56 74% 0.31K 3 25 24K bio-280
|
|
210 180 85% 0.09K 5 42 20K abd_t
|
|
425 420 98% 0.05K 5 85 20K ip_fib_trie
|
|
510 480 94% 0.04K 5 102 20K pde_opener
|
|
640 540 84% 0.03K 5 128 20K kmalloc-rnd-13-32
|
|
640 540 84% 0.03K 5 128 20K kmalloc-rnd-05-32
|
|
2560 2100 82% 0.01K 5 512 20K kmalloc-rnd-03-8
|
|
68 60 88% 0.23K 2 34 16K arc_buf_hdr_t_full
|
|
42 28 66% 0.38K 2 21 16K bio-328
|
|
36 28 77% 0.44K 1 36 16K bio-392
|
|
36 28 77% 0.44K 1 36 16K bio-408
|
|
36 28 77% 0.44K 1 36 16K bio-424
|
|
512 420 82% 0.03K 4 128 16K ext4_io_end_vec
|
|
512 480 93% 0.03K 4 128 16K memdup_user-32
|
|
1024 900 87% 0.02K 4 256 16K kmalloc-cg-16
|
|
512 480 93% 0.03K 4 128 16K kmalloc-rnd-15-32
|
|
512 480 93% 0.03K 4 128 16K kmalloc-rnd-11-32
|
|
512 480 93% 0.03K 4 128 16K kmalloc-rnd-04-32
|
|
512 480 93% 0.03K 4 128 16K kmalloc-rnd-03-32
|
|
512 480 93% 0.03K 4 128 16K kmalloc-32
|
|
75 60 80% 0.16K 3 25 12K dm_bufio_buffer-16-1
|
|
768 720 93% 0.02K 3 256 12K ep_head
|
|
1536 1315 85% 0.01K 3 512 12K kmalloc-cg-8
|
|
63 60 95% 0.19K 3 21 12K kmalloc-rcl-192
|
|
768 558 72% 0.02K 3 256 12K kmalloc-rnd-13-16
|
|
1536 1440 93% 0.01K 3 512 12K kmalloc-rnd-12-8
|
|
768 540 70% 0.02K 3 256 12K kmalloc-rnd-09-16
|
|
768 660 85% 0.02K 3 256 12K kmalloc-rnd-08-16
|
|
768 600 78% 0.02K 3 256 12K kmalloc-rnd-06-16
|
|
256 240 93% 0.03K 2 128 8K pending_reservation
|
|
512 480 93% 0.02K 2 256 8K memdup_user-16
|
|
28 28 100% 0.28K 1 28 8K numa_policy
|
|
72 60 83% 0.11K 2 36 8K kmalloc_buckets
|
|
512 480 93% 0.02K 2 256 8K kmalloc-rnd-15-16
|
|
1024 660 64% 0.01K 2 512 8K kmalloc-rnd-15-8
|
|
512 480 93% 0.02K 2 256 8K kmalloc-rnd-11-16
|
|
512 480 93% 0.02K 2 256 8K kmalloc-rnd-10-16
|
|
512 480 93% 0.02K 2 256 8K kmalloc-rnd-07-16
|
|
1024 900 87% 0.01K 2 512 8K kmalloc-rnd-07-8
|
|
512 480 93% 0.02K 2 256 8K kmalloc-rnd-05-16
|
|
512 420 82% 0.02K 2 256 8K kmalloc-rnd-02-16
|
|
512 480 93% 0.02K 2 256 8K kmalloc-rnd-01-16
|
|
512 480 93% 0.02K 2 256 8K kmalloc-16
|
|
256 60 23% 0.02K 1 256 4K jbd2_revoke_table_s
|
|
512 480 93% 0.01K 1 512 4K memdup_user-8
|
|
512 480 93% 0.01K 1 512 4K kmalloc-rnd-13-8
|
|
512 480 93% 0.01K 1 512 4K kmalloc-rnd-11-8
|
|
512 480 93% 0.01K 1 512 4K kmalloc-rnd-10-8
|
|
512 480 93% 0.01K 1 512 4K kmalloc-rnd-09-8
|
|
512 480 93% 0.01K 1 512 4K kmalloc-rnd-08-8
|
|
512 480 93% 0.01K 1 512 4K kmalloc-rnd-06-8
|
|
512 480 93% 0.01K 1 512 4K kmalloc-rnd-05-8
|
|
256 180 70% 0.02K 1 256 4K kmalloc-rnd-04-16
|
|
512 360 70% 0.01K 1 512 4K kmalloc-rnd-04-8
|
|
512 420 82% 0.01K 1 512 4K kmalloc-rnd-02-8
|
|
512 480 93% 0.01K 1 512 4K kmalloc-rnd-01-8
|
|
512 480 93% 0.01K 1 512 4K kmalloc-8
|
|
0 0 0% 2.08K 0 15 0K nfs4_xattr_cache_cache
|
|
0 0 0% 0.21K 0 37 0K nfs_direct_cache
|
|
0 0 0% 0.23K 0 35 0K nf_conntrack_expect
|
|
0 0 0% 0.09K 0 46 0K zfs_znode_hold_cache
|
|
0 0 0% 1.08K 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 20 0K zil_lwb_cache
|
|
0 0 0% 0.37K 0 21 0K dbuf_dirty_record_t
|
|
0 0 0% 0.36K 0 22 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.91K 0 35 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.12K 0 28 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% 0.98K 0 32 0K btrfs_inode
|
|
0 0 0% 0.27K 0 30 0K fsverity_info
|
|
0 0 0% 0.12K 0 32 0K fscrypt_inode_info
|
|
0 0 0% 0.39K 0 20 0K request_sock_subflow_v6
|
|
0 0 0% 0.18K 0 22 0K ip6-frags
|
|
0 0 0% 0.32K 0 24 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.75K 0 21 0K fat_inode_cache
|
|
0 0 0% 0.04K 0 102 0K fat_cache
|
|
0 0 0% 0.69K 0 23 0K squashfs_inode_cache
|
|
0 0 0% 0.19K 0 21 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.62K 0 25 0K dio
|
|
0 0 0% 0.01K 0 512 0K zs_handle
|
|
0 0 0% 0.56K 0 28 0K pid_namespace
|
|
0 0 0% 0.20K 0 20 0K ip4-frags
|
|
0 0 0% 0.39K 0 20 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% 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 21 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.78K 0 20 0K x86_lbr
|
|
0 0 0% 0.36K 0 22 0K task_delay_info
|
|
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% 0.34K 0 23 0K apparmor_auditcache
|
|
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 21 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.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 0
|
|
pgmigrate_fail 0
|
|
compact_migrate_scanned 0
|
|
compact_free_scanned 0
|
|
compact_isolated 0
|
|
compact_stall 0
|
|
compact_fail 0
|
|
compact_success 0
|
|
compact_daemon_wake 0
|
|
compact_daemon_migrate_scanned 0
|
|
compact_daemon_free_scanned 0
|
|
|
|
###############################################################################
|
|
# 6. KERNEL TUNABLES / SYSCTL
|
|
###############################################################################
|
|
|
|
--- vm.* tunables
|
|
$ sysctl -a 2>/dev/null | grep -E '^vm\.(dirty_(ratio|background_ratio|bytes|background_bytes|expire_centisecs|writeback_centisecs)|swappiness|vfs_cache_pressure|min_free_kbytes|watermark_scale_factor|overcommit_memory|overcommit_ratio|nr_hugepages|nr_overcommit_hugepages|zone_reclaim_mode|compact_unevictable_allowed|stat_interval|admin_reserve_kbytes|user_reserve_kbytes)'
|
|
vm.admin_reserve_kbytes = 8192
|
|
vm.compact_unevictable_allowed = 1
|
|
vm.dirty_background_bytes = 0
|
|
vm.dirty_background_ratio = 5
|
|
vm.dirty_bytes = 0
|
|
vm.dirty_expire_centisecs = 3000
|
|
vm.dirty_ratio = 40
|
|
vm.dirty_writeback_centisecs = 500
|
|
vm.min_free_kbytes = 67584
|
|
vm.nr_hugepages = 0
|
|
vm.nr_hugepages_mempolicy = 0
|
|
vm.nr_overcommit_hugepages = 0
|
|
vm.overcommit_memory = 0
|
|
vm.overcommit_ratio = 50
|
|
vm.stat_interval = 1
|
|
vm.swappiness = 10
|
|
vm.user_reserve_kbytes = 131072
|
|
vm.vfs_cache_pressure = 100
|
|
vm.vfs_cache_pressure_denom = 100
|
|
vm.watermark_scale_factor = 10
|
|
vm.zone_reclaim_mode = 0
|
|
|
|
--- fs.* tunables
|
|
$ sysctl -a 2>/dev/null | grep -E '^fs\.(file-max|file-nr|aio-max-nr|aio-nr|nr_open|pipe-max-size|epoll/max_user_watches|lease-break-time|mqueue|max_user_ns)'
|
|
fs.aio-max-nr = 1048576
|
|
fs.aio-nr = 0
|
|
fs.file-max = 9223372036854775807
|
|
fs.file-nr = 2253 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_sys_info =
|
|
kernel.hung_task_timeout_secs = 120
|
|
kernel.hung_task_warnings = 10
|
|
kernel.nmi_watchdog = 1
|
|
kernel.numa_balancing = 0
|
|
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 = 231058
|
|
kernel.watchdog = 1
|
|
kernel.watchdog_cpumask = 0-7
|
|
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_ecn_option = 2
|
|
net.ipv4.tcp_ecn_option_beacon = 3
|
|
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 = 2048
|
|
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:48 .
|
|
drwxr-xr-x 111 root root 4096 Jul 27 21:49 ..
|
|
-rw-r--r-- 1 root root 499 Jul 26 15:48 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 32
|
|
drwxr-xr-x 2 root root 4096 Jul 26 11:29 .
|
|
drwxr-xr-x 111 root root 4096 Jul 27 21:49 ..
|
|
-rw-r--r-- 1 root root 18 Jul 19 16:29 blacklist.conf
|
|
-rw-r--r-- 1 root root 53 Jul 19 17:07 block-nouveau.conf
|
|
-rw-r--r-- 1 root root 127 Nov 1 2025 dkms.conf
|
|
-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 Jul 26 15:48 tuned.conf
|
|
-rw-r--r-- 1 root root 35 Feb 10 14:47 zfs.conf
|
|
|
|
--- udev rules.d
|
|
total 8
|
|
drwxr-xr-x 2 root root 4096 Feb 10 14:47 .
|
|
drwxr-xr-x 4 root root 4096 Jul 19 15:04 ..
|
|
lrwxrwxrwx 1 root root 9 Feb 10 14:47 60-bridge-network-interface.rules -> /dev/null
|
|
|
|
--- modprobe.d files
|
|
--- /etc/modprobe.d/blacklist.conf ---
|
|
blacklist nouveau
|
|
--- /etc/modprobe.d/block-nouveau.conf ---
|
|
blacklist nouveau
|
|
blacklist nova
|
|
blacklist nova_core
|
|
--- /etc/modprobe.d/dkms.conf ---
|
|
# modprobe information used for DKMS modules
|
|
#
|
|
# This is a stub file, should be edited when needed,
|
|
# used by default by DKMS.
|
|
--- /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=3331325952
|
|
|
|
--- module params: kvm_intel
|
|
$ for p in /sys/module/kvm_intel/parameters/*; do
|
|
[ -e "$p" ] && printf ' %s = %s\n' "$(basename "$p")" "$(cat "$p" 2>/dev/null)"
|
|
done
|
|
allow_smaller_maxphyaddr = N
|
|
dump_invalid_vmcs = N
|
|
emulate_invalid_guest_state = Y
|
|
enable_apicv = N
|
|
enable_device_posted_irqs = N
|
|
enable_ipiv = N
|
|
enable_mediated_pmu = N
|
|
enable_shadow_vmcs = Y
|
|
enlightened_vmcs = N
|
|
ept = Y
|
|
eptad = Y
|
|
error_on_inconsistent_vmcs_config = Y
|
|
fasteoi = Y
|
|
flexpriority = Y
|
|
mbec = N
|
|
nested = Y
|
|
ple_gap = 128
|
|
ple_window = 4096
|
|
ple_window_grow = 2
|
|
ple_window_max = 4294967295
|
|
ple_window_shrink = 0
|
|
pml = Y
|
|
preemption_timer = Y
|
|
sgx = N
|
|
tdx = N
|
|
unrestricted_guest = Y
|
|
vmentry_l1d_flush = cond
|
|
vnmi = Y
|
|
vpid = Y
|
|
warn_on_missed_cc = N
|
|
|
|
--- 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: 7.0.14-6-pve)
|
|
|
|
--- pveversion -v
|
|
$ pveversion -v
|
|
proxmox-ve: 9.2.0 (running kernel: 7.0.14-6-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-7.0.14-5-pve-signed: 7.0.14-5
|
|
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: 46398.16
|
|
REGEX/SECOND: 1716683
|
|
HD SIZE: 93.93 GB (/dev/mapper/pve-root)
|
|
BUFFERED READS: 2873.82 MB/sec
|
|
AVERAGE SEEK TIME: 0.04 ms
|
|
FSYNCS/SECOND: 262.64
|
|
DNS EXT: 25.86 ms
|
|
[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 vztmpl,backup,import,iso
|
|
|
|
lvmthin: local-lvm
|
|
thinpool data
|
|
vgname pve
|
|
content images,rootdir
|
|
|
|
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, 23 Feb 2026 22%3A30%3A46 -0600:
|
|
|
|
|
|
|
|
|
|
|
|
--- 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
|
|
pfv-tsys3 cpu=0.0327912914930789 mem=3481255936 maxmem=33351712768 maxdisk=100861726720 status=online ssl_fingerprint=null
|
|
|
|
###############################################################################
|
|
# 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 fq master vmbr0 state UP mode DEFAULT group default qlen 1000
|
|
link/ether a4:4c:c8:08:d1:b8 brd ff:ff:ff:ff:ff:ff promiscuity 1 allmulti 1 minmtu 68 maxmtu 9000
|
|
bridge_slave state forwarding priority 32 cost 5 hairpin off guard off root_block off fastleave off learning on flood on port_id 0x8001 port_no 0x1 designated_port 32769 designated_cost 0 designated_bridge 8000.a4:4c:c8:8:d1:b8 designated_root 8000.a4:4c:c8:8:d1:b8 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 parentbus pci parentdev 0000:00:1f.6
|
|
altname enxa44cc808d1b8
|
|
3: enx8cae4ccda774: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq master datanet state UP mode DEFAULT group default qlen 1000
|
|
link/ether 8c:ae:4c:cd:a7:74 brd ff:ff:ff:ff:ff:ff promiscuity 1 allmulti 1 minmtu 0 maxmtu 1500
|
|
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.8c:ae:4c:cd:a7:74 designated_root 8000.8c:ae:4c:cd:a7: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 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 parentbus usb parentdev 2-1:2.0
|
|
4: 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
|
|
5: vmbr0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000
|
|
link/ether a4:4c:c8:08:d1:b8 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.a4:4c:c8:8:d1:b8 designated_root 8000.a4:4c:c8:8:d1:b8 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 20.11 fdb_n_learned 94 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 15.9us 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
|
|
6: datanet: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000
|
|
link/ether 8c:ae:4c:cd:a7: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.8c:ae:4c:cd:a7:74 designated_root 8000.8c:ae:4c:cd:a7: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 150.38 fdb_n_learned 5 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
|
|
11: tap313i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq master fwbr313i0 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether d6:29:b8:3f:86:b4 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.7e:8e:3f:c6:9c:54 designated_root 8000.7e:8e:3f:c6:9c:54 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
|
|
12: fwbr313i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000
|
|
link/ether 7e:8e:3f:c6:9c:54 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.7e:8e:3f:c6:9c:54 designated_root 8000.7e:8e:3f:c6:9c:54 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 20.11 fdb_n_learned 70 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 14 mcast_querier_ipv4_other_timer 15.9us 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
|
|
13: fwpr313p0@fwln313i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master vmbr0 state UP mode DEFAULT group default qlen 1000
|
|
link/ether 52:5b:9c:f2:99:71 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.a4:4c:c8:8:d1:b8 designated_root 8000.a4:4c:c8:8:d1:b8 hold_timer 0.00 message_age_timer 0.00 forward_delay_timer 0.00 topology_change_ack 0 config_pending 0 proxy_arp off proxy_arp_wifi off mcast_router 1 mcast_fast_leave off mcast_flood on bcast_flood on mcast_to_unicast off neigh_suppress off neigh_vlan_suppress off group_fwd_mask 0 group_fwd_mask_str 0x0 vlan_tunnel off isolated off locked off mab off addrgenmode eui64 numtxqueues 8 numrxqueues 8 gso_max_size 65536 gso_max_segs 65535 tso_max_size 524280 tso_max_segs 65535 gro_max_size 65536 gso_ipv4_max_size 65536 gro_ipv4_max_size 65536
|
|
14: fwln313i0@fwpr313p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master fwbr313i0 state UP mode DEFAULT group default qlen 1000
|
|
link/ether 7e:8e:3f:c6:9c:54 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.7e:8e:3f:c6:9c:54 designated_root 8000.7e:8e:3f:c6:9c:54 hold_timer 0.00 message_age_timer 0.00 forward_delay_timer 0.00 topology_change_ack 0 config_pending 0 proxy_arp off proxy_arp_wifi off mcast_router 1 mcast_fast_leave off mcast_flood on bcast_flood on mcast_to_unicast off neigh_suppress off neigh_vlan_suppress off group_fwd_mask 0 group_fwd_mask_str 0x0 vlan_tunnel off isolated off locked off mab off addrgenmode eui64 numtxqueues 8 numrxqueues 8 gso_max_size 65536 gso_max_segs 65535 tso_max_size 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 fq master vmbr0 state UP mode DEFAULT group default qlen 1000\ link/ether a4:4c:c8:08:d1:b8 brd ff:ff:ff:ff:ff:ff\ altname enxa44cc808d1b8
|
|
3: enx8cae4ccda774: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq master datanet state UP mode DEFAULT group default qlen 1000\ link/ether 8c:ae:4c:cd:a7:74 brd ff:ff:ff:ff:ff:ff
|
|
4: tailscale0: <POINTOPOINT,MULTICAST,NOARP,UP,LOWER_UP> mtu 1280 qdisc fq state UNKNOWN mode DEFAULT group default qlen 500\ link/none
|
|
5: vmbr0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000\ link/ether a4:4c:c8:08:d1:b8 brd ff:ff:ff:ff:ff:ff
|
|
6: datanet: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000\ link/ether 8c:ae:4c:cd:a7:74 brd ff:ff:ff:ff:ff:ff
|
|
11: tap313i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq master fwbr313i0 state UNKNOWN mode DEFAULT group default qlen 1000\ link/ether d6:29:b8:3f:86:b4 brd ff:ff:ff:ff:ff:ff
|
|
12: fwbr313i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000\ link/ether 7e:8e:3f:c6:9c:54 brd ff:ff:ff:ff:ff:ff
|
|
13: fwpr313p0@fwln313i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master vmbr0 state UP mode DEFAULT group default qlen 1000\ link/ether 52:5b:9c:f2:99:71 brd ff:ff:ff:ff:ff:ff
|
|
14: fwln313i0@fwpr313p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master fwbr313i0 state UP mode DEFAULT group default qlen 1000\ link/ether 7e:8e:3f:c6:9c:54 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
|
|
4: tailscale0 inet 100.66.186.10/32 scope global tailscale0\ valid_lft forever preferred_lft forever
|
|
5: vmbr0 inet 192.168.2.5/22 brd 192.168.3.255 scope global dynamic vmbr0\ valid_lft 535sec preferred_lft 535sec
|
|
6: datanet inet 10.100.100.3/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
|
|
4: tailscale0 inet6 fd7a:115c:a1e0::cc01:baa2/128 scope global \ valid_lft forever preferred_lft forever
|
|
4: tailscale0 inet6 fe80::283e:a746:8afd:90cd/64 scope link stable-privacy proto kernel_ll \ valid_lft forever preferred_lft forever
|
|
5: vmbr0 inet6 fe80::a64c:c8ff:fe08:d1b8/64 scope link proto kernel_ll \ valid_lft forever preferred_lft forever
|
|
6: datanet inet6 fe80::8eae:4cff:fecd:a774/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 fq master vmbr0 state UP group default qlen 1000
|
|
link/ether a4:4c:c8:08:d1:b8 brd ff:ff:ff:ff:ff:ff
|
|
altname enxa44cc808d1b8
|
|
3: enx8cae4ccda774: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq master datanet state UP group default qlen 1000
|
|
link/ether 8c:ae:4c:cd:a7:74 brd ff:ff:ff:ff:ff:ff
|
|
4: tailscale0: <POINTOPOINT,MULTICAST,NOARP,UP,LOWER_UP> mtu 1280 qdisc fq state UNKNOWN group default qlen 500
|
|
link/none
|
|
inet 100.66.186.10/32 scope global tailscale0
|
|
valid_lft forever preferred_lft forever
|
|
inet6 fd7a:115c:a1e0::cc01:baa2/128 scope global
|
|
valid_lft forever preferred_lft forever
|
|
inet6 fe80::283e:a746:8afd:90cd/64 scope link stable-privacy proto kernel_ll
|
|
valid_lft forever preferred_lft forever
|
|
5: vmbr0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
|
|
link/ether a4:4c:c8:08:d1:b8 brd ff:ff:ff:ff:ff:ff
|
|
inet 192.168.2.5/22 brd 192.168.3.255 scope global dynamic vmbr0
|
|
valid_lft 535sec preferred_lft 535sec
|
|
inet6 fe80::a64c:c8ff:fe08:d1b8/64 scope link proto kernel_ll
|
|
valid_lft forever preferred_lft forever
|
|
6: datanet: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
|
|
link/ether 8c:ae:4c:cd:a7:74 brd ff:ff:ff:ff:ff:ff
|
|
inet 10.100.100.3/24 scope global datanet
|
|
valid_lft forever preferred_lft forever
|
|
inet6 fe80::8eae:4cff:fecd:a774/64 scope link proto kernel_ll
|
|
valid_lft forever preferred_lft forever
|
|
11: tap313i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq master fwbr313i0 state UNKNOWN group default qlen 1000
|
|
link/ether d6:29:b8:3f:86:b4 brd ff:ff:ff:ff:ff:ff
|
|
12: fwbr313i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
|
|
link/ether 7e:8e:3f:c6:9c:54 brd ff:ff:ff:ff:ff:ff
|
|
13: fwpr313p0@fwln313i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master vmbr0 state UP group default qlen 1000
|
|
link/ether 52:5b:9c:f2:99:71 brd ff:ff:ff:ff:ff:ff
|
|
14: fwln313i0@fwpr313p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master fwbr313i0 state UP group default qlen 1000
|
|
link/ether 7e:8e:3f:c6:9c:54 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.3
|
|
192.168.0.0/22 dev vmbr0 proto kernel scope link src 192.168.2.5
|
|
|
|
--- 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
|
|
19374387 171479 0 0 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
19374387 171479 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 fq master vmbr0 state UP mode DEFAULT group default qlen 1000
|
|
link/ether a4:4c:c8:08:d1:b8 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
452069327 2463096 0 1649 0 1156907
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
179913956 667682 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 2
|
|
altname enxa44cc808d1b8
|
|
3: enx8cae4ccda774: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq master datanet state UP mode DEFAULT group default qlen 1000
|
|
link/ether 8c:ae:4c:cd:a7:74 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
413825700 1210070 0 1647 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
1442272934 1687198 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 2
|
|
4: 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
|
|
35021352 137901 0 0 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
64374880 148592 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 0
|
|
5: vmbr0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000
|
|
link/ether a4:4c:c8:08:d1:b8 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
248602136 1825797 0 0 0 952417
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
113673630 327464 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 2
|
|
6: datanet: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000
|
|
link/ether 8c:ae:4c:cd:a7:74 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
413441290 1207523 0 5 0 41698
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
1441853438 1685553 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 2
|
|
11: tap313i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq master fwbr313i0 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether d6:29:b8:3f:86:b4 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
58354054 288877 0 0 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
259986960 1706491 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 0
|
|
12: fwbr313i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000
|
|
link/ether 7e:8e:3f:c6:9c:54 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
123588739 1332678 0 1930 0 892897
|
|
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
|
|
13: fwpr313p0@fwln313i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master vmbr0 state UP mode DEFAULT group default qlen 1000
|
|
link/ether 52:5b:9c:f2:99:71 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
58745980 290451 0 1574 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
259988534 1706491 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 2
|
|
14: fwln313i0@fwpr313p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master fwbr313i0 state UP mode DEFAULT group default qlen 1000
|
|
link/ether 7e:8e:3f:c6:9c:54 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
259988534 1706491 0 1574 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
58745980 290451 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 2
|
|
|
|
--- ip neigh
|
|
$ ip neigh
|
|
10.100.100.4 dev datanet lladdr 8c:ae:4c:cd:a9:26 REACHABLE
|
|
192.168.3.99 dev vmbr0 lladdr 00:a0:de:a2:81:87 STALE
|
|
192.168.1.166 dev vmbr0 lladdr 00:00:c0:34:0c:dc STALE
|
|
192.168.2.44 dev vmbr0 lladdr bc:24:11:e6:03:2d DELAY
|
|
192.168.3.55 dev vmbr0 lladdr 54:e4:bd:d3:da:78 STALE
|
|
192.168.3.250 dev vmbr0 lladdr 00:15:5d:64:e8:1e DELAY
|
|
192.168.3.173 dev vmbr0 lladdr 96:86:dd:1b:81:5a STALE
|
|
192.168.3.153 dev vmbr0 lladdr c6:39:21:93:cd:e5 STALE
|
|
10.100.100.5 dev datanet lladdr 00:1b:78:5c:e9:ce REACHABLE
|
|
192.168.3.254 dev vmbr0 lladdr 6c:4b:b4:10:40:61 REACHABLE
|
|
192.168.3.32 dev vmbr0 lladdr a0:4a:5e:ca:46:f3 STALE
|
|
192.168.3.78 dev vmbr0 lladdr bc:24:11:1a:8f:6f DELAY
|
|
192.168.1.119 dev vmbr0 lladdr 68:db:f5:1c:e8:8f STALE
|
|
192.168.3.12 dev vmbr0 lladdr 02:5a:39:38:3e:9f STALE
|
|
192.168.3.16 dev vmbr0 lladdr bc:24:11:8a:69:04 DELAY
|
|
192.168.0.1 dev vmbr0 lladdr a0:d0:dc:38:3b:41 STALE
|
|
192.168.0.21 dev vmbr0 lladdr ca:fe:0f:0e:b0:75 STALE
|
|
10.100.100.9 dev datanet lladdr 9c:69:d3:6a:5b:6c STALE
|
|
fe80::eb49:b5fa:c882:b02c dev vmbr0 lladdr bc:24:11:ee:7e:7b STALE
|
|
fe80::36bd:c8ff:fe2d:18c5 dev vmbr0 lladdr 34:bd:c8:2d:18:c5 STALE
|
|
fe80::ec58:8902:551a:c823 dev vmbr0 lladdr bc:24:11:1e:61:cf STALE
|
|
fe80::966:b4b8:282d:dff8 dev vmbr0 lladdr bc:24:11:27:4f:1c STALE
|
|
fe80::b40f:d2ff:fe8b:6aec dev vmbr0 lladdr b6:0f:d2:8b:6a:ec STALE
|
|
fe80::afa2:9f93:a83a:8815 dev vmbr0 lladdr bc:24:11:eb:f0:0f STALE
|
|
fe80::ef5a:24f4:f260:2b1e dev vmbr0 lladdr bc:24:11:44:73:92 STALE
|
|
fe80::466:5100:c752:a95d dev vmbr0 lladdr ca:c3:35:a4:7f:c4 STALE
|
|
fe80::238a:7296:ce20:940f dev vmbr0 lladdr bc:24:11:8a:69:04 STALE
|
|
fe80::109b:d06f:f2be:1dc4 dev vmbr0 lladdr 16:bc:55:38:d3:7f STALE
|
|
fe80::bb7f:ace0:50d5:690b dev vmbr0 lladdr bc:24:11:40:25:f8 STALE
|
|
fe80::5ee7:53ff:fecf:45fa dev vmbr0 lladdr 5c:e7:53:cf:45:fa STALE
|
|
fe80::562b:57ff:fe4b:7c72 dev vmbr0 lladdr 54:2b:57:4b:7c:72 STALE
|
|
fe80::1175:ecfd:44b2:57cb dev vmbr0 lladdr bc:24:11:38:c0:58 STALE
|
|
fe80::be24:11ff:feee:2bb6 dev vmbr0 lladdr bc:24:11:ee:2b:b6 STALE
|
|
fe80::be24:11ff:fee6:32d dev vmbr0 lladdr bc:24:11:e6:03:2d STALE
|
|
fe80::4924:f822:d560:bc2f dev vmbr0 lladdr bc:24:11:f6:74:e8 STALE
|
|
fe80::7f67:9446:ea86:eb01 dev vmbr0 lladdr 68:ec:8a:0e:36:69 router STALE
|
|
fe80::be24:11ff:feee:67e2 dev vmbr0 lladdr bc:24:11:ee:67:e2 STALE
|
|
fe80::be5d:167b:45a7:5d73 dev vmbr0 lladdr bc:24:11:96:f7:b9 STALE
|
|
fe80::c0e:c2d8:9069:af43 dev vmbr0 lladdr 5a:cc:23:39:ec:f7 STALE
|
|
fe80::be24:11ff:febb:6af dev vmbr0 lladdr bc:24:11:bb:06:af STALE
|
|
fe80::be24:11ff:fea3:8761 dev vmbr0 lladdr bc:24:11:a3:87:61 STALE
|
|
fe80::21b:78ff:fe5c:e9ce dev datanet lladdr 00:1b:78:5c:e9:ce STALE
|
|
fe80::eae9:e541:ea1f:9987 dev vmbr0 lladdr 9c:c8:e9:63:4b:95 STALE
|
|
fe80::6e4b:b4ff:fe10:4061 dev vmbr0 lladdr 6c:4b:b4:10:40:61 router STALE
|
|
fe80::5ee7:53ff:fead:95c dev vmbr0 lladdr 5c:e7:53:ad:09:5c STALE
|
|
fe80::907a:3764:9b08:16f3 dev vmbr0 lladdr bc:24:11:94:71:07 STALE
|
|
fe80::10e8:fff4:c9c7:c57b dev vmbr0 lladdr ba:71:00:a6:a3:12 STALE
|
|
fe80::6ae7:a88a:4305:7761 dev vmbr0 lladdr e8:4e:06:af:b8:92 STALE
|
|
fe80::1d:8fb:68fc:746 dev vmbr0 lladdr 74:29:59:27:3a:b7 STALE
|
|
fe80::54f2:477f:64f3:562c dev vmbr0 lladdr bc:24:11:5c:96:1e STALE
|
|
fe80::b6f4:eaa:36af:1d47 dev vmbr0 lladdr f0:6e:0b:cf:c7:55 STALE
|
|
fe80::6bea:ca7:4c8c:182f dev vmbr0 lladdr bc:24:11:80:0d:16 STALE
|
|
fe80::be24:11ff:fe86:ea1a dev vmbr0 lladdr bc:24:11:86:ea:1a STALE
|
|
fe80::ae76:5582:7949:6783 dev vmbr0 lladdr 2c:54:91:2a:0d:5b STALE
|
|
fe80::436f:cf31:df06:ba90 dev vmbr0 lladdr bc:24:11:5e:dc:44 STALE
|
|
fe80::a311:54:4085:c6b8 dev vmbr0 lladdr bc:24:11:32:d0:36 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: 19374387 171479 0 0 0 0 0 0 19374387 171479 0 0 0 0 0 0
|
|
nic0: 452069327 2463096 0 1649 0 0 0 1156907 179913956 667682 0 0 0 0 0 0
|
|
enx8cae4ccda774: 413825700 1210070 0 1647 0 0 0 0 1442273168 1687199 0 0 0 0 0 0
|
|
tailscale0: 35021352 137901 0 0 0 0 0 0 64374880 148592 0 0 0 0 0 0
|
|
vmbr0: 248602136 1825797 0 0 0 0 0 952417 113673630 327464 0 0 0 0 0 0
|
|
datanet: 413441290 1207523 0 5 0 0 0 41698 1441853438 1685553 0 0 0 0 0 0
|
|
tap313i0: 58354054 288877 0 0 0 0 0 0 259986960 1706491 0 0 0 0 0 0
|
|
fwbr313i0: 123588739 1332678 0 1930 0 0 0 892897 0 0 0 0 0 0 0 0
|
|
fwpr313p0: 58745980 290451 0 1574 0 0 0 0 259988534 1706491 0 0 0 0 0 0
|
|
fwln313i0: 259988534 1706491 0 1574 0 0 0 0 58745980 290451 0 0 0 0 0 0
|
|
|
|
--- ip -6 route (brief)
|
|
$ ip -6 route
|
|
fd7a:115c:a1e0::cc01:baa2 dev tailscale0 proto kernel metric 256 pref medium
|
|
fe80::/64 dev tailscale0 proto kernel metric 256 pref medium
|
|
fe80::/64 dev vmbr0 proto kernel metric 256 pref medium
|
|
fe80::/64 dev 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
|
|
datanet speed=0 duplex=unknown mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
enx8cae4ccda774 speed=0 duplex=unknown mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
fwbr313i0 speed=10000 duplex=unknown mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
fwln313i0 speed=10000 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
fwpr313p0 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
|
|
tap313i0 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: 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: Unknown!
|
|
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: off
|
|
tx-scatter-gather: off [requested on]
|
|
tx-scatter-gather-fraglist: off [requested on]
|
|
tcp-segmentation-offload: off
|
|
tx-tcp-segmentation: off [requested on]
|
|
tx-tcp-ecn-segmentation: off [requested on]
|
|
tx-tcp-mangleid-segmentation: off [requested on]
|
|
tx-tcp6-segmentation: off [requested on]
|
|
tx-tcp-accecn-segmentation: off [requested on]
|
|
generic-segmentation-offload: off [requested 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 [requested on]
|
|
rx-vlan-filter: off [fixed]
|
|
vlan-challenged: off [fixed]
|
|
tx-gso-robust: off [requested on]
|
|
tx-fcoe-segmentation: off [requested on]
|
|
tx-gre-segmentation: on
|
|
tx-gre-csum-segmentation: on
|
|
tx-ipxip4-segmentation: on
|
|
tx-ipxip6-segmentation: on
|
|
tx-udp_tnl-segmentation: on
|
|
tx-udp_tnl-csum-segmentation: on
|
|
tx-gso-partial: on
|
|
tx-tunnel-remcsum-segmentation: on
|
|
tx-sctp-segmentation: off [requested on]
|
|
tx-esp-segmentation: on
|
|
tx-udp-segmentation: off [requested on]
|
|
tx-gso-list: off [requested on]
|
|
tx-nocache-copy: off
|
|
loopback: off [fixed]
|
|
rx-fcs: off [fixed]
|
|
rx-all: off [fixed]
|
|
tx-vlan-stag-hw-insert: on
|
|
rx-vlan-stag-hw-parse: off [fixed]
|
|
rx-vlan-stag-filter: off [fixed]
|
|
l2-fwd-offload: off [fixed]
|
|
hw-tc-offload: off [fixed]
|
|
esp-hw-offload: off [fixed]
|
|
esp-tx-csum-hw-offload: off [fixed]
|
|
rx-udp_tunnel-port-offload: off [fixed]
|
|
tls-hw-tx-offload: off [fixed]
|
|
tls-hw-rx-offload: off [fixed]
|
|
rx-gro-hw: off [fixed]
|
|
tls-hw-record: off [fixed]
|
|
rx-gro-list: off
|
|
macsec-hw-offload: off [fixed]
|
|
rx-udp-gro-forwarding: off
|
|
hsr-tag-ins-offload: off [fixed]
|
|
hsr-tag-rm-offload: off [fixed]
|
|
hsr-fwd-offload: off [fixed]
|
|
hsr-dup-offload: off [fixed]
|
|
[private flags --show-priv-flags]
|
|
netlink error: Operation not supported
|
|
[ntuple/RSS -n]
|
|
Cannot get RX rings: Operation not supported
|
|
rxclass: Cannot get RX class rule count: Operation not supported
|
|
RX classification rule retrieval failed
|
|
[SFP/DOM transceiver -m]
|
|
netlink error: Operation not supported
|
|
[statistics -S (key error/drop counters only)]
|
|
[statistics -S (throughput counters)]
|
|
|
|
----- ethtool: enx8cae4ccda774 -----
|
|
[driver/version/firmware/bus-info -i]
|
|
driver: cdc_ncm
|
|
version: 7.0.14-6-pve
|
|
firmware-version: CDC NCM (NO ZLP)
|
|
expansion-rom-version:
|
|
bus-info: usb-0000:00:14.0-1
|
|
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 enx8cae4ccda774:
|
|
Supported ports: [ ]
|
|
Supported link modes: Not reported
|
|
Supported pause frame use: No
|
|
Supports auto-negotiation: No
|
|
Supported FEC modes: Not reported
|
|
Advertised link modes: Not reported
|
|
Advertised pause frame use: No
|
|
Advertised auto-negotiation: No
|
|
Advertised FEC modes: Not reported
|
|
Speed: Unknown!
|
|
Duplex: Unknown! (255)
|
|
Auto-negotiation: off
|
|
Port: Twisted Pair
|
|
PHYAD: 0
|
|
Transceiver: internal
|
|
MDI-X: Unknown
|
|
Current message level: 0x00000007 (7)
|
|
drv probe link
|
|
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 enx8cae4ccda774:
|
|
rx-checksumming: off [fixed]
|
|
tx-checksumming: off
|
|
tx-checksum-ipv4: off [fixed]
|
|
tx-checksum-ip-generic: off [fixed]
|
|
tx-checksum-ipv6: off [fixed]
|
|
tx-checksum-fcoe-crc: off [fixed]
|
|
tx-checksum-sctp: off [fixed]
|
|
scatter-gather: off
|
|
tx-scatter-gather: off [fixed]
|
|
tx-scatter-gather-fraglist: off [fixed]
|
|
tcp-segmentation-offload: off
|
|
tx-tcp-segmentation: off [fixed]
|
|
tx-tcp-ecn-segmentation: off [fixed]
|
|
tx-tcp-mangleid-segmentation: off [fixed]
|
|
tx-tcp6-segmentation: off [fixed]
|
|
tx-tcp-accecn-segmentation: off [fixed]
|
|
generic-segmentation-offload: off [requested on]
|
|
generic-receive-offload: on
|
|
large-receive-offload: off [fixed]
|
|
rx-vlan-offload: off [fixed]
|
|
tx-vlan-offload: off [fixed]
|
|
ntuple-filters: off [fixed]
|
|
receive-hashing: off [fixed]
|
|
highdma: 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 [fixed]
|
|
tx-udp_tnl-csum-segmentation: off [fixed]
|
|
tx-gso-partial: off [fixed]
|
|
tx-tunnel-remcsum-segmentation: off [fixed]
|
|
tx-sctp-segmentation: off [fixed]
|
|
tx-esp-segmentation: off [fixed]
|
|
tx-udp-segmentation: off [fixed]
|
|
tx-gso-list: off [fixed]
|
|
tx-nocache-copy: off
|
|
loopback: off [fixed]
|
|
rx-fcs: off [fixed]
|
|
rx-all: off [fixed]
|
|
tx-vlan-stag-hw-insert: off [fixed]
|
|
rx-vlan-stag-hw-parse: off [fixed]
|
|
rx-vlan-stag-filter: off [fixed]
|
|
l2-fwd-offload: off [fixed]
|
|
hw-tc-offload: off [fixed]
|
|
esp-hw-offload: off [fixed]
|
|
esp-tx-csum-hw-offload: off [fixed]
|
|
rx-udp_tunnel-port-offload: off [fixed]
|
|
tls-hw-tx-offload: off [fixed]
|
|
tls-hw-rx-offload: off [fixed]
|
|
rx-gro-hw: off [fixed]
|
|
tls-hw-record: off [fixed]
|
|
rx-gro-list: off
|
|
macsec-hw-offload: off [fixed]
|
|
rx-udp-gro-forwarding: off
|
|
hsr-tag-ins-offload: off [fixed]
|
|
hsr-tag-rm-offload: off [fixed]
|
|
hsr-fwd-offload: off [fixed]
|
|
hsr-dup-offload: off [fixed]
|
|
[private flags --show-priv-flags]
|
|
netlink error: Operation not supported
|
|
[ntuple/RSS -n]
|
|
Cannot get RX rings: Operation not supported
|
|
rxclass: Cannot get RX class rule count: Operation not supported
|
|
RX classification rule retrieval failed
|
|
[SFP/DOM transceiver -m]
|
|
netlink error: Operation not supported
|
|
[statistics -S (key error/drop counters only)]
|
|
[statistics -S (throughput counters)]
|
|
|
|
----- ethtool: fwbr313i0 -----
|
|
[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 fwbr313i0:
|
|
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 fwbr313i0:
|
|
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: fwln313i0 -----
|
|
[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 fwln313i0:
|
|
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 fwln313i0:
|
|
Pre-set maximums:
|
|
RX: 8
|
|
TX: 8
|
|
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 fwln313i0:
|
|
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: fwpr313p0 -----
|
|
[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 fwpr313p0:
|
|
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 fwpr313p0:
|
|
Pre-set maximums:
|
|
RX: 8
|
|
TX: 8
|
|
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 fwpr313p0:
|
|
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: e1000e
|
|
version: 7.0.14-6-pve
|
|
firmware-version: 0.8-3
|
|
expansion-rom-version:
|
|
bus-info: 0000:00:1f.6
|
|
supports-statistics: yes
|
|
supports-test: yes
|
|
supports-eeprom-access: yes
|
|
supports-register-dump: yes
|
|
supports-priv-flags: yes
|
|
[settings - speed/duplex/autoneg/port]
|
|
Settings for nic0:
|
|
Supported ports: [ TP ]
|
|
Supported link modes: 10baseT/Half 10baseT/Full
|
|
100baseT/Half 100baseT/Full
|
|
1000baseT/Full
|
|
Supported pause frame use: Symmetric Receive-only
|
|
Supports auto-negotiation: Yes
|
|
Supported FEC modes: Not reported
|
|
Advertised link modes: 10baseT/Half 10baseT/Full
|
|
100baseT/Half 100baseT/Full
|
|
1000baseT/Full
|
|
Advertised pause frame use: Symmetric Receive-only
|
|
Advertised auto-negotiation: Yes
|
|
Advertised FEC modes: Not reported
|
|
Link partner advertised link modes: 10baseT/Half 10baseT/Full
|
|
100baseT/Half 100baseT/Full
|
|
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: on (auto)
|
|
Supports Wake-on: pumbg
|
|
Wake-on: g
|
|
Current message level: 0x00000007 (7)
|
|
drv probe link
|
|
Link detected: yes
|
|
[channels -l (RX/TX/combined queue counts)]
|
|
netlink error: Operation not supported
|
|
[coalesce -c (interrupt moderation)]
|
|
Coalesce parameters for nic0:
|
|
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: 3
|
|
rx-frames: n/a
|
|
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)]
|
|
Ring parameters for nic0:
|
|
Pre-set maximums:
|
|
RX: 4096
|
|
RX Mini: n/a
|
|
RX Jumbo: n/a
|
|
TX: 4096
|
|
TX push buff len: n/a
|
|
Current hardware settings:
|
|
RX: 256
|
|
RX Mini: n/a
|
|
RX Jumbo: n/a
|
|
TX: 256
|
|
RX Buf Len: n/a
|
|
CQE Size: n/a
|
|
TX Push: off
|
|
RX Push: off
|
|
TX push buff len: n/a
|
|
TCP data split: n/a
|
|
[pause / flow-control -a]
|
|
Pause parameters for nic0:
|
|
Autonegotiate: on
|
|
RX: off
|
|
TX: off
|
|
RX negotiated: off
|
|
TX negotiated: off
|
|
|
|
[offload features -k]
|
|
Features for nic0:
|
|
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: off [fixed]
|
|
scatter-gather: on
|
|
tx-scatter-gather: on
|
|
tx-scatter-gather-fraglist: off [fixed]
|
|
tcp-segmentation-offload: off
|
|
tx-tcp-segmentation: off [fixed]
|
|
tx-tcp-ecn-segmentation: off [fixed]
|
|
tx-tcp-mangleid-segmentation: off [fixed]
|
|
tx-tcp6-segmentation: off [fixed]
|
|
tx-tcp-accecn-segmentation: off [fixed]
|
|
generic-segmentation-offload: on
|
|
generic-receive-offload: on
|
|
large-receive-offload: off [fixed]
|
|
rx-vlan-offload: on
|
|
tx-vlan-offload: on
|
|
ntuple-filters: off [fixed]
|
|
receive-hashing: on
|
|
highdma: on [fixed]
|
|
rx-vlan-filter: off [fixed]
|
|
vlan-challenged: off [fixed]
|
|
tx-gso-robust: off [fixed]
|
|
tx-fcoe-segmentation: off [fixed]
|
|
tx-gre-segmentation: off [fixed]
|
|
tx-gre-csum-segmentation: off [fixed]
|
|
tx-ipxip4-segmentation: off [fixed]
|
|
tx-ipxip6-segmentation: off [fixed]
|
|
tx-udp_tnl-segmentation: off [fixed]
|
|
tx-udp_tnl-csum-segmentation: off [fixed]
|
|
tx-gso-partial: off [fixed]
|
|
tx-tunnel-remcsum-segmentation: off [fixed]
|
|
tx-sctp-segmentation: off [fixed]
|
|
tx-esp-segmentation: off [fixed]
|
|
tx-udp-segmentation: off [fixed]
|
|
tx-gso-list: off [fixed]
|
|
tx-nocache-copy: off
|
|
loopback: off [fixed]
|
|
rx-fcs: off
|
|
rx-all: off
|
|
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]
|
|
Private flags for nic0:
|
|
s0ix-enabled: off
|
|
disable-k1 : off
|
|
[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_errors: 0
|
|
tx_errors: 0
|
|
tx_dropped: 0
|
|
rx_length_errors: 0
|
|
rx_over_errors: 0
|
|
rx_crc_errors: 0
|
|
rx_frame_errors: 0
|
|
rx_no_buffer_count: 0
|
|
rx_missed_errors: 0
|
|
tx_aborted_errors: 0
|
|
tx_carrier_errors: 0
|
|
tx_fifo_errors: 0
|
|
tx_heartbeat_errors: 0
|
|
tx_window_errors: 0
|
|
rx_long_length_errors: 0
|
|
rx_short_length_errors: 0
|
|
rx_align_errors: 0
|
|
rx_csum_offload_errors: 0
|
|
dropped_smbus: 0
|
|
uncorr_ecc_errors: 0
|
|
corr_ecc_errors: 0
|
|
[statistics -S (throughput counters)]
|
|
rx_packets: 2463097
|
|
tx_packets: 667682
|
|
rx_bytes: 452069391
|
|
tx_bytes: 179913956
|
|
rx_broadcast: 470405
|
|
tx_broadcast: 144
|
|
rx_multicast: 1156907
|
|
tx_multicast: 10099
|
|
|
|
----- ethtool: tap313i0 -----
|
|
[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 tap313i0:
|
|
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 tap313i0:
|
|
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 tap313i0:
|
|
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 tap313i0:
|
|
rx-checksumming: off [fixed]
|
|
tx-checksumming: on
|
|
tx-checksum-ipv4: off [fixed]
|
|
tx-checksum-ip-generic: on
|
|
tx-checksum-ipv6: off [fixed]
|
|
tx-checksum-fcoe-crc: off [fixed]
|
|
tx-checksum-sctp: off [fixed]
|
|
scatter-gather: on
|
|
tx-scatter-gather: on
|
|
tx-scatter-gather-fraglist: on
|
|
tcp-segmentation-offload: on
|
|
tx-tcp-segmentation: on
|
|
tx-tcp-ecn-segmentation: on
|
|
tx-tcp-mangleid-segmentation: off
|
|
tx-tcp6-segmentation: on
|
|
tx-tcp-accecn-segmentation: off [fixed]
|
|
generic-segmentation-offload: on
|
|
generic-receive-offload: on
|
|
large-receive-offload: off [fixed]
|
|
rx-vlan-offload: off [fixed]
|
|
tx-vlan-offload: on
|
|
ntuple-filters: off [fixed]
|
|
receive-hashing: off [fixed]
|
|
highdma: off [fixed]
|
|
rx-vlan-filter: off [fixed]
|
|
vlan-challenged: off [fixed]
|
|
tx-gso-robust: off [fixed]
|
|
tx-fcoe-segmentation: off [fixed]
|
|
tx-gre-segmentation: off [fixed]
|
|
tx-gre-csum-segmentation: off [fixed]
|
|
tx-ipxip4-segmentation: off [fixed]
|
|
tx-ipxip6-segmentation: off [fixed]
|
|
tx-udp_tnl-segmentation: off
|
|
tx-udp_tnl-csum-segmentation: off
|
|
tx-gso-partial: off [fixed]
|
|
tx-tunnel-remcsum-segmentation: off [fixed]
|
|
tx-sctp-segmentation: off [fixed]
|
|
tx-esp-segmentation: off [fixed]
|
|
tx-udp-segmentation: on
|
|
tx-gso-list: off [fixed]
|
|
tx-nocache-copy: off
|
|
loopback: off [fixed]
|
|
rx-fcs: off [fixed]
|
|
rx-all: off [fixed]
|
|
tx-vlan-stag-hw-insert: on
|
|
rx-vlan-stag-hw-parse: off [fixed]
|
|
rx-vlan-stag-filter: off [fixed]
|
|
l2-fwd-offload: off [fixed]
|
|
hw-tc-offload: off [fixed]
|
|
esp-hw-offload: off [fixed]
|
|
esp-tx-csum-hw-offload: off [fixed]
|
|
rx-udp_tunnel-port-offload: off [fixed]
|
|
tls-hw-tx-offload: off [fixed]
|
|
tls-hw-rx-offload: off [fixed]
|
|
rx-gro-hw: off [fixed]
|
|
tls-hw-record: off [fixed]
|
|
rx-gro-list: off
|
|
macsec-hw-offload: off [fixed]
|
|
rx-udp-gro-forwarding: off
|
|
hsr-tag-ins-offload: off [fixed]
|
|
hsr-tag-rm-offload: off [fixed]
|
|
hsr-fwd-offload: off [fixed]
|
|
hsr-dup-offload: off [fixed]
|
|
[private flags --show-priv-flags]
|
|
netlink error: Operation not supported
|
|
[ntuple/RSS -n]
|
|
Cannot get RX rings: Operation not supported
|
|
rxclass: Cannot get RX class rule count: Operation not supported
|
|
RX classification rule retrieval failed
|
|
[SFP/DOM transceiver -m]
|
|
netlink error: Operation not supported
|
|
[statistics -S (key error/drop counters only)]
|
|
[statistics -S (throughput counters)]
|
|
|
|
----- ethtool: vmbr0 -----
|
|
[driver/version/firmware/bus-info -i]
|
|
driver: bridge
|
|
version: 2.3
|
|
firmware-version: N/A
|
|
expansion-rom-version:
|
|
bus-info: N/A
|
|
supports-statistics: no
|
|
supports-test: no
|
|
supports-eeprom-access: no
|
|
supports-register-dump: no
|
|
supports-priv-flags: no
|
|
[settings - speed/duplex/autoneg/port]
|
|
Settings for vmbr0:
|
|
Supported ports: [ ]
|
|
Supported link modes: Not reported
|
|
Supported pause frame use: No
|
|
Supports auto-negotiation: No
|
|
Supported FEC modes: Not reported
|
|
Advertised link modes: Not reported
|
|
Advertised pause frame use: No
|
|
Advertised auto-negotiation: No
|
|
Advertised FEC modes: Not reported
|
|
Speed: 10000Mb/s
|
|
Duplex: Unknown! (255)
|
|
Auto-negotiation: off
|
|
Port: Other
|
|
PHYAD: 0
|
|
Transceiver: internal
|
|
Link detected: yes
|
|
[channels -l (RX/TX/combined queue counts)]
|
|
netlink error: Operation not supported
|
|
[coalesce -c (interrupt moderation)]
|
|
netlink error: Operation not supported
|
|
[ring -g (descriptor counts)]
|
|
netlink error: Operation not supported
|
|
[pause / flow-control -a]
|
|
netlink error: Operation not supported
|
|
[offload features -k]
|
|
Features for vmbr0:
|
|
rx-checksumming: off [fixed]
|
|
tx-checksumming: on
|
|
tx-checksum-ipv4: off [fixed]
|
|
tx-checksum-ip-generic: on
|
|
tx-checksum-ipv6: off [fixed]
|
|
tx-checksum-fcoe-crc: off [fixed]
|
|
tx-checksum-sctp: off [fixed]
|
|
scatter-gather: on
|
|
tx-scatter-gather: on
|
|
tx-scatter-gather-fraglist: on
|
|
tcp-segmentation-offload: on
|
|
tx-tcp-segmentation: on
|
|
tx-tcp-ecn-segmentation: on
|
|
tx-tcp-mangleid-segmentation: on
|
|
tx-tcp6-segmentation: on
|
|
tx-tcp-accecn-segmentation: on
|
|
generic-segmentation-offload: on
|
|
generic-receive-offload: on
|
|
large-receive-offload: off [fixed]
|
|
rx-vlan-offload: off [fixed]
|
|
tx-vlan-offload: on
|
|
ntuple-filters: off [fixed]
|
|
receive-hashing: off [fixed]
|
|
highdma: on
|
|
rx-vlan-filter: off [fixed]
|
|
vlan-challenged: off [fixed]
|
|
tx-gso-robust: off [requested on]
|
|
tx-fcoe-segmentation: off [requested on]
|
|
tx-gre-segmentation: on
|
|
tx-gre-csum-segmentation: on
|
|
tx-ipxip4-segmentation: on
|
|
tx-ipxip6-segmentation: on
|
|
tx-udp_tnl-segmentation: on
|
|
tx-udp_tnl-csum-segmentation: on
|
|
tx-gso-partial: on
|
|
tx-tunnel-remcsum-segmentation: on
|
|
tx-sctp-segmentation: on
|
|
tx-esp-segmentation: on
|
|
tx-udp-segmentation: on
|
|
tx-gso-list: on
|
|
tx-nocache-copy: off
|
|
loopback: off [fixed]
|
|
rx-fcs: off [fixed]
|
|
rx-all: off [fixed]
|
|
tx-vlan-stag-hw-insert: on
|
|
rx-vlan-stag-hw-parse: off [fixed]
|
|
rx-vlan-stag-filter: off [fixed]
|
|
l2-fwd-offload: off [fixed]
|
|
hw-tc-offload: off [fixed]
|
|
esp-hw-offload: off [fixed]
|
|
esp-tx-csum-hw-offload: off [fixed]
|
|
rx-udp_tunnel-port-offload: off [fixed]
|
|
tls-hw-tx-offload: off [fixed]
|
|
tls-hw-rx-offload: off [fixed]
|
|
rx-gro-hw: off [fixed]
|
|
tls-hw-record: off [fixed]
|
|
rx-gro-list: off
|
|
macsec-hw-offload: off [fixed]
|
|
rx-udp-gro-forwarding: off
|
|
hsr-tag-ins-offload: off [fixed]
|
|
hsr-tag-rm-offload: off [fixed]
|
|
hsr-fwd-offload: off [fixed]
|
|
hsr-dup-offload: off [fixed]
|
|
[private flags --show-priv-flags]
|
|
netlink error: Operation not supported
|
|
[ntuple/RSS -n]
|
|
Cannot get RX rings: Operation not supported
|
|
rxclass: Cannot get RX class rule count: Operation not supported
|
|
RX classification rule retrieval failed
|
|
[SFP/DOM transceiver -m]
|
|
netlink error: Operation not supported
|
|
[statistics -S (key error/drop counters only)]
|
|
[statistics -S (throughput counters)]
|
|
|
|
###############################################################################
|
|
# 11. NETWORK: BRIDGES / BONDS / VLANS
|
|
###############################################################################
|
|
|
|
--- bridge link
|
|
$ bridge link
|
|
2: nic0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master vmbr0 state forwarding priority 32 cost 5
|
|
3: enx8cae4ccda774: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master datanet state forwarding priority 32 cost 100
|
|
11: tap313i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 master fwbr313i0 state forwarding priority 32 cost 2
|
|
13: fwpr313p0@fwln313i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master vmbr0 state forwarding priority 32 cost 2
|
|
14: fwln313i0@fwpr313p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master fwbr313i0 state forwarding priority 32 cost 2
|
|
|
|
--- bridge -d link
|
|
$ bridge -d link
|
|
2: nic0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master vmbr0 state forwarding priority 32 cost 5
|
|
hairpin off guard off root_block off fastleave off learning on flood on mcast_flood on bcast_flood on mcast_router 1 mcast_to_unicast off neigh_suppress off neigh_vlan_suppress off vlan_tunnel off isolated off locked off mab off mcast_n_groups 42 mcast_max_groups 0
|
|
3: enx8cae4ccda774: <BROADCAST,MULTICAST,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
|
|
11: tap313i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 master fwbr313i0 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
|
|
13: fwpr313p0@fwln313i0: <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 0 mcast_max_groups 0
|
|
14: fwln313i0@fwpr313p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master fwbr313i0 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 38 mcast_max_groups 0
|
|
|
|
--- bridge vlan
|
|
$ bridge vlan
|
|
port vlan-id
|
|
nic0 1 PVID Egress Untagged
|
|
enx8cae4ccda774 1 PVID Egress Untagged
|
|
vmbr0 1 PVID Egress Untagged
|
|
datanet 1 PVID Egress Untagged
|
|
tap313i0 1 PVID Egress Untagged
|
|
fwbr313i0 1 PVID Egress Untagged
|
|
fwpr313p0 1 PVID Egress Untagged
|
|
fwln313i0 1 PVID Egress Untagged
|
|
|
|
--- bridge vlan show
|
|
$ bridge vlan show
|
|
port vlan-id
|
|
nic0 1 PVID Egress Untagged
|
|
enx8cae4ccda774 1 PVID Egress Untagged
|
|
vmbr0 1 PVID Egress Untagged
|
|
datanet 1 PVID Egress Untagged
|
|
tap313i0 1 PVID Egress Untagged
|
|
fwbr313i0 1 PVID Egress Untagged
|
|
fwpr313p0 1 PVID Egress Untagged
|
|
fwln313i0 1 PVID Egress Untagged
|
|
|
|
--- brctl show
|
|
$ brctl show
|
|
bridge name bridge id STP enabled interfaces
|
|
datanet 8000.8cae4ccda774 no enx8cae4ccda774
|
|
fwbr313i0 8000.7e8e3fc69c54 no fwln313i0
|
|
tap313i0
|
|
vmbr0 8000.a44cc808d1b8 no fwpr313p0
|
|
nic0
|
|
|
|
--- bonding state
|
|
[missing: /proc/net/bonding/bond*]
|
|
|
|
--- 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 ---
|
|
auto lo
|
|
iface lo inet loopback
|
|
|
|
iface nic0 inet manual
|
|
|
|
iface enx8cae4ccda774 inet manual
|
|
|
|
### Mgmt network
|
|
|
|
auto vmbr0
|
|
iface vmbr0 inet dhcp
|
|
bridge-ports nic0
|
|
bridge-stp off
|
|
bridge-fd 0
|
|
|
|
|
|
### Data network
|
|
|
|
auto datanet
|
|
iface datanet inet static
|
|
address 10.100.100.3
|
|
netmask 255.255.255.0
|
|
bridge-ports enx8cae4ccda774
|
|
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
|
|
|
|
###############################################################################
|
|
# 12. NETWORK: IRQ / RPS / XPS / aRFS / SOFTNET
|
|
###############################################################################
|
|
|
|
--- /proc/interrupts
|
|
$ cat /proc/interrupts
|
|
CPU0 CPU1 CPU2 CPU3 CPU4 CPU5 CPU6 CPU7
|
|
0: 61 0 0 0 0 0 0 0 IR-IO-APIC 2-edge timer
|
|
1: 6 0 0 0 0 0 0 0 IR-IO-APIC 1-edge i8042
|
|
8: 0 0 0 0 0 0 0 0 IR-IO-APIC 8-edge rtc0
|
|
9: 0 21008 0 0 0 0 0 0 IR-IO-APIC 9-fasteoi acpi
|
|
12: 0 0 0 0 0 0 0 7501 IR-IO-APIC 12-edge i8042
|
|
16: 0 0 0 0 0 23 0 0 IR-IO-APIC 16-fasteoi i801_smbus
|
|
17: 0 0 207 0 0 0 0 0 IR-IO-APIC 17-fasteoi snd_hda_intel:card1
|
|
31: 0 0 0 0 0 0 0 0 IR-IO-APIC 31-edge smo8800
|
|
120: 0 0 0 0 0 0 0 0 DMAR-MSI 0-edge dmar0
|
|
121: 0 0 0 1 0 0 0 0 IR-PCI-MSI-0000:00:01.0 0-edge PCIe PME, aerdrv, PCIe bwctrl
|
|
122: 0 0 0 0 1 0 0 0 IR-PCI-MSI-0000:00:1c.0 0-edge PCIe PME, aerdrv, PCIe bwctrl
|
|
123: 0 0 0 0 0 0 0 0 IR-PCI-MSI-0000:00:1c.4 0-edge PCIe PME, aerdrv, pciehp, PCIe bwctrl
|
|
124: 0 0 0 0 0 0 1 0 IR-PCI-MSI-0000:00:1d.0 0-edge PCIe PME, aerdrv, PCIe bwctrl
|
|
125: 0 0 6 0 0 0 0 0 IR-PCI-MSI-0000:02:00.0 0-edge rtsx_pci
|
|
126: 0 0 0 0 0 0 0 0 IR-PCI-MSI-0000:00:17.0 0-edge ahci[0000:00:17.0]
|
|
127: 0 0 0 0 2543466 0 0 0 IR-PCI-MSI-0000:00:1f.6 0-edge nic0
|
|
128: 0 0 0 0 0 0 923237 0 IR-PCI-MSI-0000:00:14.0 0-edge xhci_hcd
|
|
136: 0 0 0 0 0 0 5013 0 IR-PCI-MSIX-0000:04:00.0 0-edge nvme0q0
|
|
137: 0 0 0 0 0 37027 0 0 IR-PCI-MSIX-0000:04:00.0 1-edge nvme0q1
|
|
138: 0 0 0 10339 0 0 0 0 IR-PCI-MSIX-0000:04:00.0 2-edge nvme0q2
|
|
139: 0 0 0 0 0 0 0 9614 IR-PCI-MSIX-0000:04:00.0 3-edge nvme0q3
|
|
140: 0 0 86243 0 0 0 0 0 IR-PCI-MSIX-0000:04:00.0 4-edge nvme0q4
|
|
141: 0 0 0 0 0 0 9626 0 IR-PCI-MSIX-0000:04:00.0 5-edge nvme0q5
|
|
142: 9716 0 0 0 0 0 0 0 IR-PCI-MSIX-0000:04:00.0 6-edge nvme0q6
|
|
143: 0 0 0 0 55673 0 0 0 IR-PCI-MSIX-0000:04:00.0 7-edge nvme0q7
|
|
144: 52 0 0 0 0 0 0 0 IR-PCI-MSI-0000:00:16.0 0-edge mei_me
|
|
145: 0 316 0 0 0 0 0 0 IR-PCI-MSI-0000:00:1f.3 0-edge snd_hda_intel:card0
|
|
NMI: 43 40 41 41 54 37 41 40 Non-maskable interrupts
|
|
LOC: 3719622 3690805 3691556 3735750 7124890 3548399 4151979 3611688 Local timer interrupts
|
|
SPU: 0 0 0 0 0 0 0 0 Spurious interrupts
|
|
PMI: 43 40 41 41 54 37 41 40 Performance monitoring interrupts
|
|
IWI: 146 93 113 234 425 247 321 535 IRQ work interrupts
|
|
RTR: 6 0 0 0 0 0 0 0 APIC ICR read retries
|
|
RES: 65674 54746 53691 59017 58044 50610 52448 58149 Rescheduling interrupts
|
|
CAL: 233843 195882 191907 178523 193253 178300 190519 180360 Function call interrupts
|
|
TLB: 9220 9737 9557 9489 9687 9723 10380 9799 TLB shootdowns
|
|
TRM: 0 0 0 0 0 0 0 0 Thermal event interrupts
|
|
THR: 0 0 0 0 0 0 0 0 Threshold APIC interrupts
|
|
DFR: 0 0 0 0 0 0 0 0 Deferred Error APIC interrupts
|
|
MCE: 0 0 0 0 0 0 0 0 Machine check exceptions
|
|
MCP: 151 152 152 152 152 152 152 152 Machine check polls
|
|
ERR: 3
|
|
MIS: 0
|
|
PIN: 0 0 0 0 0 0 0 0 Posted-interrupt notification event
|
|
NPI: 0 0 0 0 0 0 0 0 Nested posted-interrupt event
|
|
PIW: 0 0 0 0 0 0 0 0 Posted-interrupt wakeup event
|
|
VPMI: 0 0 0 0 0 0 0 0 Perf Guest Mediated PMI
|
|
|
|
--- 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) ===
|
|
127
|
|
|
|
--- 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/datanet/queues/rx-0/rps_cpus = 00
|
|
/sys/class/net/enx8cae4ccda774/queues/rx-0/rps_cpus = 00
|
|
/sys/class/net/fwbr313i0/queues/rx-0/rps_cpus = 00
|
|
/sys/class/net/fwln313i0/queues/rx-0/rps_cpus = 00
|
|
/sys/class/net/fwpr313p0/queues/rx-0/rps_cpus = 00
|
|
/sys/class/net/lo/queues/rx-0/rps_cpus = 00
|
|
/sys/class/net/nic0/queues/rx-0/rps_cpus = 00
|
|
/sys/class/net/tailscale0/queues/rx-0/rps_cpus = 00
|
|
/sys/class/net/tap313i0/queues/rx-0/rps_cpus = 00
|
|
/sys/class/net/vmbr0/queues/rx-0/rps_cpus = 00
|
|
|
|
--- 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/enx8cae4ccda774/queues/tx-0/xps_cpus: No such file or directory
|
|
cat: /sys/class/net/fwbr313i0/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/nic0/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/tap313i0/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/datanet/queues/tx-0/xps_cpus =
|
|
/sys/class/net/enx8cae4ccda774/queues/tx-0/xps_cpus =
|
|
/sys/class/net/fwbr313i0/queues/tx-0/xps_cpus =
|
|
/sys/class/net/fwln313i0/queues/tx-0/xps_cpus = 00
|
|
/sys/class/net/fwpr313p0/queues/tx-0/xps_cpus = 00
|
|
/sys/class/net/lo/queues/tx-0/xps_cpus =
|
|
/sys/class/net/nic0/queues/tx-0/xps_cpus =
|
|
/sys/class/net/tailscale0/queues/tx-0/xps_cpus =
|
|
/sys/class/net/tap313i0/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/datanet/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/enx8cae4ccda774/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/fwbr313i0/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/fwln313i0/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/fwpr313p0/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/tailscale0/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/tap313i0/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
|
|
000141a2 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
|
|
00017fe5 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000001 00000000 00000000
|
|
00016a61 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000002 00000000 00000000
|
|
00014da1 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000003 00000000 00000000
|
|
0074a2ad 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000004 00000000 00000000
|
|
00026c37 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000005 00000000 00000000
|
|
0026d55c 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000006 00000000 00000000
|
|
0001a370 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000007 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=000141a2 dropped=00000000 time_squeezed=00000000 cpu_collision=00000000 rps_received=00000000 flow_limit=00000000
|
|
cpu1 total=00017fe5 dropped=00000000 time_squeezed=00000000 cpu_collision=00000000 rps_received=00000000 flow_limit=00000000
|
|
cpu2 total=00016a61 dropped=00000000 time_squeezed=00000000 cpu_collision=00000000 rps_received=00000000 flow_limit=00000000
|
|
cpu3 total=00014da1 dropped=00000000 time_squeezed=00000000 cpu_collision=00000000 rps_received=00000000 flow_limit=00000000
|
|
cpu4 total=0074a2ad dropped=00000000 time_squeezed=00000000 cpu_collision=00000000 rps_received=00000000 flow_limit=00000000
|
|
cpu5 total=00026c37 dropped=00000000 time_squeezed=00000000 cpu_collision=00000000 rps_received=00000000 flow_limit=00000000
|
|
cpu6 total=0026d55c dropped=00000000 time_squeezed=00000000 cpu_collision=00000000 rps_received=00000000 flow_limit=00000000
|
|
cpu7 total=0001a370 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 9673 0.0
|
|
TcpRetransSegs 9550 0.0
|
|
TcpInErrs 6 0.0
|
|
Ip6ReasmFails 0 0.0
|
|
Ip6FragFails 0 0.0
|
|
TcpExtSyncookiesFailed 1 0.0
|
|
TcpExtEmbryonicRsts 0 0.0
|
|
TcpExtLockDroppedIcmps 0 0.0
|
|
TcpExtListenOverflows 0 0.0
|
|
TcpExtListenDrops 0 0.0
|
|
TcpExtTCPLossUndo 6 0.0
|
|
TcpExtTCPLostRetransmit 628 0.0
|
|
TcpExtTCPRenoFailures 0 0.0
|
|
TcpExtTCPSackFailures 0 0.0
|
|
TcpExtTCPLossFailures 3 0.0
|
|
TcpExtTCPFastRetrans 337 0.0
|
|
TcpExtTCPSlowStartRetrans 161 0.0
|
|
TcpExtTCPLossProbes 7932 0.0
|
|
TcpExtTCPLossProbeRecovery 27 0.0
|
|
TcpExtTCPRenoRecoveryFail 0 0.0
|
|
TcpExtTCPSackRecoveryFail 26 0.0
|
|
TcpExtTCPAbortOnData 184 0.0
|
|
TcpExtTCPAbortOnClose 0 0.0
|
|
TcpExtTCPAbortOnMemory 0 0.0
|
|
TcpExtTCPAbortOnTimeout 12 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 1031 0.0
|
|
TcpExtTCPMTUPFail 0 0.0
|
|
TcpExtTCPZeroWindowDrop 0 0.0
|
|
TcpExtTCPRcvQDrop 0 0.0
|
|
TcpExtTCPMigrateReqFailure 0 0.0
|
|
TcpExtTCPAODroppedIcmps 0 0.0
|
|
MPTcpExtMPCapableSYNTXDrop 0 0.0
|
|
MPTcpExtMPTCPRetrans 0 0.0
|
|
MPTcpExtMPJoinSynAckHMacFailure 0 0.0
|
|
MPTcpExtMPJoinAckHMacFailure 0 0.0
|
|
MPTcpExtAddAddrTxDrop 0 0.0
|
|
MPTcpExtEchoAddTxDrop 0 0.0
|
|
MPTcpExtAddAddrDrop 0 0.0
|
|
MPTcpExtRmAddrDrop 0 0.0
|
|
MPTcpExtRmAddrTxDrop 0 0.0
|
|
MPTcpExtMPFailTx 0 0.0
|
|
MPTcpExtMPFailRx 0 0.0
|
|
MPTcpExtFallbackFailed 0 0.0
|
|
|
|
###############################################################################
|
|
# 13. NETWORK: SOCKET / TCP STATE
|
|
###############################################################################
|
|
|
|
--- ss -s
|
|
$ ss -s
|
|
Total: 317
|
|
TCP: 124 (estab 14, closed 99, orphaned 0, timewait 99)
|
|
|
|
Transport Total IP IPv6
|
|
RAW 0 0 0
|
|
UDP 7 4 3
|
|
TCP 25 19 6
|
|
INET 32 23 9
|
|
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.2.5:48370 209.177.156.94:443 timer:(keepalive,3.777sec,0)
|
|
skmem:(r0,rb765349,t0,tb130560,f0,w0,o0,bl0,d0)
|
|
0 0 192.168.2.5:57288 199.165.136.101:443 timer:(keepalive,16sec,0)
|
|
skmem:(r0,rb763788,t0,tb130560,f0,w0,o0,bl0,d0)
|
|
0 0 10.100.100.3:716 10.100.100.4:2049 timer:(keepalive,56sec,0)
|
|
skmem:(r0,rb1188254,t0,tb2885376,f0,w0,o0,bl0,d22)
|
|
0 0 10.100.100.3:749 10.100.100.4:2049 timer:(keepalive,6.555sec,0)
|
|
skmem:(r0,rb4814986,t0,tb626688,f0,w0,o0,bl0,d21)
|
|
0 0 10.100.100.3:752 10.100.100.4:2049 timer:(keepalive,16sec,0)
|
|
skmem:(r0,rb1519260,t0,tb1710336,f0,w0,o0,bl0,d19)
|
|
0 0 10.100.100.3:891 10.100.100.4:2049 timer:(keepalive,45sec,0)
|
|
skmem:(r0,rb2183494,t0,tb1292544,f0,w0,o0,bl0,d18)
|
|
0 0 192.168.2.5:39620 9.9.9.9:443 timer:(keepalive,28sec,0)
|
|
skmem:(r0,rb87380,t0,tb130560,f0,w0,o0,bl0,d2)
|
|
0 0 192.168.2.5:49616 152.53.37.179:443 timer:(keepalive,8.665sec,0)
|
|
skmem:(r0,rb87380,t0,tb130560,f0,w0,o0,bl0,d0)
|
|
0 0 192.168.2.5:59622 192.200.0.107:443 timer:(keepalive,6.906sec,0)
|
|
skmem:(r0,rb102886,t0,tb130560,f0,w0,o0,bl0,d0)
|
|
0 0 10.100.100.3:676 10.100.100.5:2049 timer:(keepalive,20sec,0)
|
|
skmem:(r0,rb936772,t0,tb130560,f0,w0,o0,bl0,d0)
|
|
0 0 10.100.100.3:843 10.100.100.5:2049 timer:(keepalive,1min20sec,0)
|
|
skmem:(r0,rb934034,t0,tb130560,f0,w0,o0,bl0,d1)
|
|
0 0 10.100.100.3:959 10.100.100.5:2049 timer:(keepalive,9.440sec,0)
|
|
skmem:(r0,rb940980,t0,tb130560,f0,w0,o0,bl0,d0)
|
|
0 0 10.100.100.3:985 10.100.100.5:2049 timer:(keepalive,9.698sec,0)
|
|
skmem:(r0,rb932576,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.2.5:48370 209.177.156.94:https
|
|
bbr wscale:7,12 rto:215 rtt:14.968/3.386 ato:40 mss:1448 pmtu:1500 rcvmss:1448 advmss:1448 cwnd:26 bytes_sent:217408 bytes_retrans:187 bytes_acked:217222 bytes_received:202821 segs_out:2782 segs_in:2761 data_segs_out:1169 data_segs_in:1198 bbr:(bw:3.01Mbps,mrtt:12.875,pacing_gain:2.88672,cwnd_gain:2.88672) send 20.1Mbps lastsnd:1820 lastrcv:1807 lastack:1806 pacing_rate 20.6Mbps delivery_rate 3.01Mbps delivered:1170 app_limited busy:9632ms retrans:0/1 dsack_dups:1 rcv_rtt:293072 rcv_space:48027 rcv_ssthresh:540446 minrtt:11.434 snd_wnd:198144 rcv_wnd:540672
|
|
ESTAB 0 0 192.168.2.5:57288 199.165.136.101:https
|
|
bbr wscale:10,12 rto:267 rtt:66.769/20.503 ato:40 mss:1448 pmtu:1500 rcvmss:1448 advmss:1448 cwnd:30 bytes_sent:1636272 bytes_acked:1636273 bytes_received:321037 segs_out:6606 segs_in:5033 data_segs_out:3276 data_segs_in:3266 bbr:(bw:2.05Mbps,mrtt:42.61,pacing_gain:2.88672,cwnd_gain:2.88672) send 5.2Mbps lastsnd:2430 lastrcv:2099 lastack:2099 pacing_rate 7.03Mbps delivery_rate 2.05Mbps delivered:3277 app_limited busy:218673ms rcv_rtt:164268 rcv_space:47982 rcv_ssthresh:56169 minrtt:42.61 snd_wnd:86016 rcv_wnd:57344
|
|
ESTAB 0 0 10.100.100.3:716 10.100.100.4:nfs
|
|
bbr wscale:9,12 rto:208 rtt:7.888/10.027 ato:40 mss:1448 pmtu:1500 rcvmss:1448 advmss:1448 cwnd:116 ssthresh:158 bytes_sent:330732256 bytes_retrans:2612156 bytes_acked:328120101 bytes_received:84822248 segs_out:316580 segs_in:218193 data_segs_out:241465 data_segs_in:123010 bbr:(bw:187Mbps,mrtt:1.611,pacing_gain:1.25,cwnd_gain:2) send 170Mbps lastsnd:226 lastrcv:96 lastack:96 pacing_rate 232Mbps delivery_rate 187Mbps delivered:241349 app_limited busy:359071ms retrans:0/2052 dsack_dups:1935 rcv_rtt:8.795 rcv_space:252732 rcv_ssthresh:788437 minrtt:0.706 snd_wnd:492544 rcv_wnd:790528 rehash:10
|
|
ESTAB 0 0 10.100.100.3:kerberos-adm 10.100.100.4:nfs
|
|
bbr wscale:9,12 rto:209 rtt:8.6/11.441 ato:40 mss:1448 pmtu:1500 rcvmss:1448 advmss:1448 cwnd:94 ssthresh:156 bytes_sent:331950068 bytes_retrans:2650924 bytes_acked:329299145 bytes_received:82428088 segs_out:319372 segs_in:215628 data_segs_out:242307 data_segs_in:121336 bbr:(bw:145Mbps,mrtt:1.645,pacing_gain:1.25,cwnd_gain:2) send 127Mbps lastsnd:93 lastrcv:330 lastack:50 pacing_rate 179Mbps delivery_rate 90.9Mbps delivered:242172 app_limited busy:362737ms retrans:0/2080 dsack_dups:1944 rcv_rtt:2.125 rcv_space:402728 rcv_ssthresh:3196814 minrtt:0.515 snd_wnd:611840 rcv_wnd:3198976 rehash:12
|
|
ESTAB 0 0 10.100.100.3:752 10.100.100.4:nfs
|
|
bbr wscale:9,12 rto:210 rtt:9.345/12.309 ato:40 mss:1448 pmtu:1500 rcvmss:752 advmss:1448 cwnd:66 ssthresh:142 bytes_sent:329167940 bytes_retrans:2594452 bytes_acked:326573489 bytes_received:83516904 segs_out:316013 segs_in:217421 data_segs_out:240387 data_segs_in:122098 bbr:(bw:102Mbps,mrtt:1.612,pacing_gain:1.25,cwnd_gain:2) send 81.8Mbps lastsnd:327 lastrcv:254 lastack:254 pacing_rate 126Mbps delivery_rate 84.5Mbps delivered:240256 app_limited busy:361892ms retrans:0/2049 dsack_dups:1917 rcv_rtt:2.72 rcv_space:320808 rcv_ssthresh:771499 minrtt:0.538 snd_wnd:555008 rcv_wnd:1011712 rehash:14
|
|
ESTAB 0 0 10.100.100.3:891 10.100.100.4:nfs
|
|
bbr wscale:9,12 rto:206 rtt:5.445/4.545 ato:40 mss:1448 pmtu:1500 rcvmss:1448 advmss:1448 cwnd:84 ssthresh:154 bytes_sent:329350012 bytes_retrans:2588032 bytes_acked:326761981 bytes_received:85764212 segs_out:318166 segs_in:218704 data_segs_out:240423 data_segs_in:123659 bbr:(bw:129Mbps,mrtt:1.685,pacing_gain:1.25,cwnd_gain:2) send 179Mbps lastsnd:606 lastrcv:581 lastack:581 pacing_rate 159Mbps delivery_rate 125Mbps delivered:240331 app_limited busy:357080ms rwnd_limited:9ms(0.0%) retrans:0/2038 dsack_dups:1945 rcv_rtt:1 rcv_space:401420 rcv_ssthresh:1449976 minrtt:0.724 snd_wnd:669696 rcv_wnd:1449984 rehash:9
|
|
ESTAB 0 0 100.66.186.10:ssh 100.101.187.119:37430
|
|
bbr wscale:7,12 rto:207 rtt:6.342/10.618 ato:40 mss:1228 pmtu:1280 rcvmss:1228 advmss:1228 cwnd:26 bytes_sent:5797 bytes_acked:5797 bytes_received:3889 segs_out:23 segs_in:21 data_segs_out:16 data_segs_in:13 bbr:(bw:22.9Mbps,mrtt:0.727,pacing_gain:2.88672,cwnd_gain:2.88672) send 40.3Mbps lastsnd:1593 lastrcv:1593 lastack:1592 pacing_rate 301Mbps delivery_rate 22.9Mbps delivered:17 app_limited busy:66ms rcv_rtt:7 rcv_space:12280 rcv_ssthresh:58024 minrtt:0.727 snd_wnd:77312 rcv_wnd:61440
|
|
ESTAB 0 0 192.168.2.5:39620 9.9.9.9:https
|
|
bbr wscale:11,12 rto:212 rtt:11.432/2.295 ato:40 mss:1448 pmtu:1500 rcvmss:1448 advmss:1448 cwnd:19 bytes_sent:1007 bytes_acked:1008 bytes_received:4686 segs_out:18 segs_in:18 data_segs_out:11 data_segs_in:10 bbr:(bw:3.77Mbps,mrtt:10.42,pacing_gain:2.88672,cwnd_gain:2.88672) send 19.3Mbps lastsnd:1869 lastrcv:1858 lastack:1858 pacing_rate 31.8Mbps delivery_rate 3.77Mbps delivered:12 app_limited busy:49ms reord_seen:2 rcv_space:14480 rcv_ssthresh:61101 minrtt:10.42 snd_wnd:45056 rcv_wnd:61440
|
|
ESTAB 0 0 192.168.2.5:49616 152.53.37.179:https
|
|
bbr wscale:11,12 rto:254 rtt:53.584/11.249 ato:40 mss:1448 pmtu:1500 rcvmss:1448 advmss:1448 cwnd:18 bytes_sent:607137 bytes_acked:607138 bytes_received:23307 segs_out:2601 segs_in:2525 data_segs_out:650 data_segs_in:505 bbr:(bw:912kbps,mrtt:47.478,pacing_gain:2.88672,cwnd_gain:2.88672) send 3.89Mbps lastsnd:52495 lastrcv:52517 lastack:6303 pacing_rate 2.61Mbps delivery_rate 912kbps delivered:651 app_limited busy:24726ms retrans:0/2 rcv_space:14480 rcv_ssthresh:56640 minrtt:46.376 snd_wnd:55296 rcv_wnd:57344 rehash:2
|
|
ESTAB 0 0 192.168.2.5:59622 192.200.0.107:https
|
|
bbr wscale:10,12 rto:345 rtt:143.083/6.789 ato:40 mss:1448 pmtu:1500 rcvmss:1448 advmss:1448 cwnd:24 bytes_sent:6112 bytes_acked:6113 bytes_received:87856 segs_out:1159 segs_in:1165 data_segs_out:21 data_segs_in:613 bbr:(bw:498kbps,mrtt:138.897,pacing_gain:2.88672,cwnd_gain:2.88672) send 1.94Mbps lastsnd:2491775 lastrcv:1487 lastack:1487 pacing_rate 2.37Mbps delivery_rate 498kbps delivered:22 app_limited busy:2047ms rcv_rtt:450.5 rcv_space:19758 rcv_ssthresh:67685 minrtt:138.897 snd_wnd:78848 rcv_wnd:69632
|
|
ESTAB 0 0 10.100.100.3:676 10.100.100.5:nfs
|
|
bbr wscale:12,12 rto:202 rtt:1.667/0.131 ato:40 mss:1448 pmtu:1500 rcvmss:536 advmss:1448 cwnd:40 bytes_sent:693212 bytes_acked:693213 bytes_received:758368 segs_out:8160 segs_in:4114 data_segs_out:4104 data_segs_in:4104 bbr:(bw:15.8Mbps,mrtt:0.734,pacing_gain:2.88672,cwnd_gain:2.88672) send 278Mbps lastsnd:584 lastrcv:582 lastack:582 pacing_rate 152Mbps delivery_rate 15.8Mbps delivered:4105 app_limited busy:8568ms rcv_rtt:229274 rcv_space:44956 rcv_ssthresh:467906 minrtt:0.734 snd_wnd:131072 rcv_wnd:471040
|
|
ESTAB 0 0 10.100.100.3:843 10.100.100.5:nfs
|
|
bbr wscale:12,12 rto:202 rtt:1.694/0.163 ato:40 mss:1448 pmtu:1500 rcvmss:536 advmss:1448 cwnd:48 bytes_sent:693088 bytes_acked:693089 bytes_received:759712 segs_out:8175 segs_in:4110 data_segs_out:4103 data_segs_in:4104 bbr:(bw:11.1Mbps,mrtt:1.039,pacing_gain:2.88672,cwnd_gain:2.88672) send 328Mbps lastsnd:586 lastrcv:584 lastack:584 pacing_rate 180Mbps delivery_rate 11.1Mbps delivered:4104 app_limited busy:8509ms rcv_rtt:133428 rcv_space:44896 rcv_ssthresh:466537 minrtt:1.039 snd_wnd:131072 rcv_wnd:466944
|
|
ESTAB 0 0 10.100.100.3:959 10.100.100.5:nfs
|
|
bbr wscale:12,12 rto:202 rtt:1.689/0.128 ato:40 mss:1448 pmtu:1500 rcvmss:536 advmss:1448 cwnd:48 bytes_sent:693524 bytes_retrans:176 bytes_acked:693349 bytes_received:762308 segs_out:8162 segs_in:4114 data_segs_out:4105 data_segs_in:4104 bbr:(bw:10.5Mbps,mrtt:1.102,pacing_gain:2.88672,cwnd_gain:2.88672) send 329Mbps lastsnd:621 lastrcv:620 lastack:620 pacing_rate 171Mbps delivery_rate 10.5Mbps delivered:4105 app_limited busy:8804ms retrans:0/1 rcv_rtt:229518 rcv_space:45048 rcv_ssthresh:470010 minrtt:1.102 snd_wnd:131072 rcv_wnd:471040
|
|
ESTAB 0 0 10.100.100.3:985 10.100.100.5:nfs
|
|
bbr wscale:12,12 rto:202 rtt:1.786/0.239 ato:40 mss:1448 pmtu:1500 rcvmss:536 advmss:1448 cwnd:48 bytes_sent:693392 bytes_retrans:168 bytes_acked:693225 bytes_received:760616 segs_out:8170 segs_in:4110 data_segs_out:4105 data_segs_in:4104 bbr:(bw:13.6Mbps,mrtt:0.849,pacing_gain:2.88672,cwnd_gain:2.88672) send 311Mbps lastsnd:580 lastrcv:578 lastack:578 pacing_rate 167Mbps delivery_rate 13.6Mbps delivered:4105 app_limited busy:8781ms retrans:0/1 rcv_rtt:239804 rcv_space:44864 rcv_ssthresh:465808 minrtt:0.849 snd_wnd:131072 rcv_wnd:466944
|
|
|
|
--- /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 75906 13624 9673 14 14 1450450 2044525 9550 6 505 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 75906 13624 9673 14 14 1450450 2044525 9550 6 505 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
|
|
nvme0n1 476.9G disk PM961 NVMe SAMSUNG 512GB S33YNX0J331581 live 0 512B 2T
|
|
├─nvme0n1p1 1007K part 0 512B 2T
|
|
├─nvme0n1p2 1G part vfat 0 512B 2T
|
|
└─nvme0n1p3 475.9G part LVM2_member 0 512B 2T
|
|
├─pve-swap 8G lvm [SWAP] swap running 0 512B 2T
|
|
├─pve-root 96G lvm / ext4 running 0 512B 2T
|
|
├─pve-data_tmeta 3.6G lvm running 0 512B 2T
|
|
│ └─pve-data-tpool 348.8G lvm running 0 512B 2T
|
|
│ └─pve-data 348.8G lvm running 0 512B 2T
|
|
└─pve-data_tdata 348.8G lvm running 0 512B 2T
|
|
└─pve-data-tpool 348.8G lvm running 0 512B 2T
|
|
└─pve-data 348.8G lvm running 0 512B 2T
|
|
|
|
--- lsblk -t
|
|
$ lsblk -t
|
|
NAME ALIGNMENT MIN-IO OPT-IO PHY-SEC LOG-SEC ROTA SCHED RQ-SIZE RA WSAME
|
|
nvme0n1 0 512 0 512 512 0 none 1023 4096 0B
|
|
├─nvme0n1p1 0 512 0 512 512 0 none 1023 4096 0B
|
|
├─nvme0n1p2 0 512 0 512 512 0 none 1023 4096 0B
|
|
└─nvme0n1p3 0 512 0 512 512 0 none 1023 4096 0B
|
|
├─pve-swap 0 512 0 512 512 0 4096 0B
|
|
├─pve-root 0 512 0 512 512 0 4096 0B
|
|
├─pve-data_tmeta 0 512 0 512 512 0 4096 0B
|
|
│ └─pve-data-tpool 0 65536 65536 512 512 0 4096 0B
|
|
│ └─pve-data 0 65536 65536 512 512 0 4096 0B
|
|
└─pve-data_tdata 0 512 0 512 512 0 4096 0B
|
|
└─pve-data-tpool 0 65536 65536 512 512 0 4096 0B
|
|
└─pve-data 0 65536 65536 512 512 0 4096 0B
|
|
|
|
--- lsblk -O (everything, capped)
|
|
$ lsblk -O
|
|
ALIGNMENT ID-LINK ID DISC-ALN DAX DISC-GRAN DISK-SEQ DISC-MAX DISC-ZERO FSAVAIL FSROOTS FSSIZE FSTYPE FSUSED FSUSE% FSVER GROUP HCTL HOTPLUG KNAME LABEL LOG-SEC MAJ:MIN MAJ MIN MIN-IO MODE MODEL MQ NAME OPT-IO OWNER PARTFLAGS PARTLABEL PARTN PARTTYPE PARTTYPENAME PARTUUID PATH PHY-SEC PKNAME PTTYPE PTUUID RA RAND REV RM RO ROTA RQ-SIZE SCHED SERIAL SIZE START STATE SUBSYSTEMS MOUNTPOINT MOUNTPOINTS TRAN TYPE UUID VENDOR WSAME WWN ZONED ZONE-SZ ZONE-WGRAN ZONE-APP ZONE-NR ZONE-OMAX ZONE-AMAX
|
|
0 nvme-eui.002538b371bb881e eui.002538b371bb881e 0 0 512B 9 2T 0 disk 0 nvme0n1 512 259:0 259 0 512 brw-rw---- PM961 NVMe SAMSUNG 512GB 7 nvme0n1 0 root /dev/nvme0n1 512 gpt 5dcb08dd-a082-4398-aa09-8c45c9218f2d 4096 0 CXY74D1Q 0 0 0 1023 none S33YNX0J331581 476.9G live block:nvme:pci nvme disk 0B eui.002538b371bb881e none 0B 0B 0B 0 0 0
|
|
0 nvme-eui.002538b371bb881e-part1 eui.002538b371bb881e-part1 0 0 512B 9 2T 0 disk 0 nvme0n1p1 512 259:1 259 1 512 brw-rw---- 7 ├─nvme0n1p1 0 root 1 21686148-6449-6e6f-744e-656564454649 BIOS boot 021588b1-f7d9-4a9e-9bea-e427c3c74e8e /dev/nvme0n1p1 512 nvme0n1 gpt 5dcb08dd-a082-4398-aa09-8c45c9218f2d 4096 0 0 0 0 1023 none 1007K 34 block:nvme:pci nvme part 0B eui.002538b371bb881e none 0B 0B 0B 0 0 0
|
|
0 nvme-eui.002538b371bb881e-part2 eui.002538b371bb881e-part2 0 0 512B 9 2T 0 vfat FAT32 disk 0 nvme0n1p2 512 259:2 259 2 512 brw-rw---- 7 ├─nvme0n1p2 0 root 2 c12a7328-f81f-11d2-ba4b-00a0c93ec93b EFI System 938ec087-5bc4-4bb0-817c-befc7f43df92 /dev/nvme0n1p2 512 nvme0n1 gpt 5dcb08dd-a082-4398-aa09-8c45c9218f2d 4096 0 0 0 0 1023 none 1G 2048 block:nvme:pci nvme part 4C0C-136D 0B eui.002538b371bb881e none 0B 0B 0B 0 0 0
|
|
0 nvme-eui.002538b371bb881e-part3 eui.002538b371bb881e-part3 0 0 512B 9 2T 0 LVM2_member LVM2 001 disk 0 nvme0n1p3 512 259:3 259 3 512 brw-rw---- 7 └─nvme0n1p3 0 root 3 e6d6d379-f507-44c2-a23c-238f2a3df928 Linux LVM ea9a8942-d5fd-461f-aaf8-846efb564142 /dev/nvme0n1p3 512 nvme0n1 gpt 5dcb08dd-a082-4398-aa09-8c45c9218f2d 4096 0 0 0 0 1023 none 475.9G 2099200 block:nvme:pci nvme part cKvIrR-Ztxl-i4Xe-fDPq-Yeui-NO3n-mj19Qz 0B eui.002538b371bb881e none 0B 0B 0B 0 0 0
|
|
0 dm-name-pve-swap name-pve-swap 0 0 512B 10 2T 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 nvme0n1p3 4096 0 0 0 0 8G running block [SWAP] [SWAP] lvm 53b8f49e-0591-4df6-9e97-afd8e5c02735 0B none 0B 0B 0B 0 0 0
|
|
0 dm-name-pve-root name-pve-root 0 0 512B 11 2T 0 67.6G / 93.9G ext4 21.5G 23% 1.0 disk 0 dm-1 512 252:1 252 1 512 brw-rw---- 1 ├─pve-root 0 root /dev/mapper/pve-root 512 nvme0n1p3 4096 0 0 0 0 96G running block / / lvm 1d0d11c1-7e0f-4e90-9adb-6c049dc744cf 0B none 0B 0B 0B 0 0 0
|
|
0 0 0 512B 12 2T 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 nvme0n1p3 4096 0 0 0 0 3.6G running block lvm 0B none 0B 0B 0B 0 0 0
|
|
0 0 0 512B 14 2T 0 disk 0 dm-4 512 252:4 252 4 65536 brw-rw---- 1 │ └─pve-data-tpool 65536 root /dev/mapper/pve-data-tpool 512 dm-2 4096 0 0 0 0 348.8G running block lvm 0B none 0B 0B 0B 0 0 0
|
|
0 0 0 512B 15 2T 0 disk 0 dm-5 512 252:5 252 5 65536 brw-rw---- 1 │ └─pve-data 65536 root /dev/mapper/pve-data 512 dm-4 4096 0 0 1 0 348.8G running block lvm 0B none 0B 0B 0B 0 0 0
|
|
0 0 0 512B 13 2T 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 nvme0n1p3 4096 0 0 0 0 348.8G running block lvm 0B none 0B 0B 0B 0 0 0
|
|
0 0 0 512B 14 2T 0 disk 0 dm-4 512 252:4 252 4 65536 brw-rw---- 1 └─pve-data-tpool 65536 root /dev/mapper/pve-data-tpool 512 dm-3 4096 0 0 0 0 348.8G running block lvm 0B none 0B 0B 0B 0 0 0
|
|
0 0 0 512B 15 2T 0 disk 0 dm-5 512 252:5 252 5 65536 brw-rw---- 1 └─pve-data 65536 root /dev/mapper/pve-data 512 dm-4 4096 0 0 1 0 348.8G running block lvm 0B none 0B 0B 0B 0 0 0
|
|
|
|
--- blkid
|
|
$ blkid
|
|
/dev/mapper/pve-root: UUID="1d0d11c1-7e0f-4e90-9adb-6c049dc744cf" BLOCK_SIZE="4096" TYPE="ext4"
|
|
/dev/nvme0n1p3: UUID="cKvIrR-Ztxl-i4Xe-fDPq-Yeui-NO3n-mj19Qz" TYPE="LVM2_member" PARTUUID="ea9a8942-d5fd-461f-aaf8-846efb564142"
|
|
/dev/nvme0n1p2: UUID="4C0C-136D" BLOCK_SIZE="512" TYPE="vfat" PARTUUID="938ec087-5bc4-4bb0-817c-befc7f43df92"
|
|
/dev/mapper/pve-swap: UUID="53b8f49e-0591-4df6-9e97-afd8e5c02735" TYPE="swap"
|
|
/dev/nvme0n1p1: PARTUUID="021588b1-f7d9-4a9e-9bea-e427c3c74e8e"
|
|
|
|
--- /proc/partitions
|
|
$ cat /proc/partitions
|
|
major minor #blocks name
|
|
|
|
259 0 500107608 nvme0n1
|
|
259 1 1007 nvme0n1p1
|
|
259 2 1048576 nvme0n1p2
|
|
259 3 499057991 nvme0n1p3
|
|
252 0 8388608 dm-0
|
|
252 1 100663296 dm-1
|
|
252 2 3731456 dm-2
|
|
252 3 365760512 dm-3
|
|
252 4 365760512 dm-4
|
|
252 5 365760512 dm-5
|
|
|
|
--- fdisk -l
|
|
$ fdisk -l
|
|
Disk /dev/nvme0n1: 476.94 GiB, 512110190592 bytes, 1000215216 sectors
|
|
Disk model: PM961 NVMe SAMSUNG 512GB
|
|
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: 5DCB08DD-A082-4398-AA09-8C45C9218F2D
|
|
|
|
Device Start End Sectors Size Type
|
|
/dev/nvme0n1p1 34 2047 2014 1007K BIOS boot
|
|
/dev/nvme0n1p2 2048 2099199 2097152 1G EFI System
|
|
/dev/nvme0n1p3 2099200 1000215182 998115983 475.9G 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 = 0
|
|
nr_requests = 1023
|
|
read_ahead_kb = 4096
|
|
max_sectors_kb = 128
|
|
max_hw_sectors_kb = 128
|
|
logical_block_size = 512
|
|
physical_block_size = 512
|
|
discard_granularity = 512
|
|
discard_max_hw_bytes = 2199023255040
|
|
rq_affinity = 1
|
|
nomerges = 0
|
|
wbt_lat_usec = 2000
|
|
write_cache = write back
|
|
stable_writes = 0
|
|
io_poll = 0
|
|
io_poll_delay = -1
|
|
fua = 1
|
|
add_random = 0
|
|
zoned = none
|
|
dma_alignment = 3
|
|
iostats = 1
|
|
model = PM961 NVMe SAMSUNG 512GB
|
|
serial = S33YNX0J331581
|
|
transport = pcie
|
|
queue_count = 8
|
|
|
|
--- df -h (filesystem usage)
|
|
$ df -h
|
|
Filesystem Size Used Avail Use% Mounted on
|
|
udev 15G 0 15G 0% /dev
|
|
tmpfs 3.2G 2.4M 3.2G 1% /run
|
|
/dev/mapper/pve-root 94G 22G 68G 25% /
|
|
tmpfs 16G 34M 16G 1% /dev/shm
|
|
tmpfs 5.0M 0 5.0M 0% /run/lock
|
|
tmpfs 1.0M 0 1.0M 0% /run/credentials/systemd-journald.service
|
|
tmpfs 16G 24K 16G 1% /tmp
|
|
/dev/fuse 128M 20K 128M 1% /etc/pve
|
|
tmpfs 1.0M 0 1.0M 0% /run/credentials/getty@tty1.service
|
|
pfv-tsys4-nfs-stor:/mnt/tsys4/D5 1.8T 236G 1.5T 14% /mnt/pve/D5
|
|
pfv-tsys5-nfs-stor:/mnt/pfv-tsys5/S4 458G 2.0M 435G 1% /mnt/pve/S4
|
|
pfv-tsys4-nfs-stor:/mnt/tsys4/D2 2.7T 187G 2.4T 8% /mnt/pve/D2
|
|
pfv-tsys5-nfs-stor:/mnt/pfv-tsys5/S2 916G 6.9G 863G 1% /mnt/pve/S2
|
|
pfv-tsys5-nfs-stor:/mnt/pfv-tsys5/ssd 234G 122G 101G 55% /mnt/pve/T5-SSD
|
|
pfv-tsys5-nfs-stor:/mnt/pfv-tsys5/S3 916G 7.0G 863G 1% /mnt/pve/S3
|
|
pfv-tsys4-nfs-stor:/mnt/tsys4/D3 469G 2.0M 445G 1% /mnt/pve/D3
|
|
tmpfs 3.2G 4.0K 3.2G 1% /run/user/0
|
|
|
|
--- df -i (inode usage)
|
|
$ df -i
|
|
Filesystem Inodes IUsed IFree IUse% Mounted on
|
|
udev 3696860 584 3696276 1% /dev
|
|
tmpfs 4071254 1046 4070208 1% /run
|
|
/dev/mapper/pve-root 6291456 126648 6164808 3% /
|
|
tmpfs 4071254 79 4071175 1% /dev/shm
|
|
tmpfs 4071254 16 4071238 1% /run/lock
|
|
tmpfs 1024 1 1023 1% /run/credentials/systemd-journald.service
|
|
tmpfs 1048576 14 1048562 1% /tmp
|
|
/dev/fuse 262144 36 262108 1% /etc/pve
|
|
tmpfs 1024 1 1023 1% /run/credentials/getty@tty1.service
|
|
pfv-tsys4-nfs-stor:/mnt/tsys4/D5 122101760 64 122101696 1% /mnt/pve/D5
|
|
pfv-tsys5-nfs-stor:/mnt/pfv-tsys5/S4 30531584 13 30531571 1% /mnt/pve/S4
|
|
pfv-tsys4-nfs-stor:/mnt/tsys4/D2 183148544 54 183148490 1% /mnt/pve/D2
|
|
pfv-tsys5-nfs-stor:/mnt/pfv-tsys5/S2 61054976 19 61054957 1% /mnt/pve/S2
|
|
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 19 61054957 1% /mnt/pve/S3
|
|
pfv-tsys4-nfs-stor:/mnt/tsys4/D3 31260672 13 31260659 1% /mnt/pve/D3
|
|
tmpfs 814250 26 814224 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=14787440k,nr_inodes=3696860,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=3257004k,mode=755,inode64)
|
|
/dev/mapper/pve-root on / type ext4 (rw,relatime,errors=remount-ro)
|
|
securityfs on /sys/kernel/security type securityfs (rw,nosuid,nodev,noexec,relatime)
|
|
tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev,inode64)
|
|
cgroup2 on /sys/fs/cgroup type cgroup2 (rw,nosuid,nodev,noexec,relatime,nsdelegate,memory_recursiveprot)
|
|
none on /sys/fs/pstore type pstore (rw,nosuid,nodev,noexec,relatime)
|
|
bpf on /sys/fs/bpf type bpf (rw,nosuid,nodev,noexec,relatime,mode=700)
|
|
systemd-1 on /proc/sys/fs/binfmt_misc type autofs (rw,relatime,fd=37,pgrp=1,timeout=0,minproto=5,maxproto=5,direct,pipe_ino=9619)
|
|
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)
|
|
hugetlbfs on /dev/hugepages type hugetlbfs (rw,nosuid,nodev,relatime,pagesize=2M)
|
|
debugfs on /sys/kernel/debug type debugfs (rw,nosuid,nodev,noexec,relatime)
|
|
tracefs on /sys/kernel/tracing type tracefs (rw,nosuid,nodev,noexec,relatime)
|
|
tmpfs on /run/credentials/systemd-journald.service type tmpfs (ro,nosuid,nodev,noexec,relatime,nosymfollow,size=1024k,nr_inodes=1024,mode=700,inode64,noswap)
|
|
fusectl on /sys/fs/fuse/connections type fusectl (rw,nosuid,nodev,noexec,relatime)
|
|
configfs on /sys/kernel/config type configfs (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)
|
|
lxcfs on /var/lib/lxcfs type fuse.lxcfs (rw,nosuid,nodev,relatime,user_id=0,group_id=0,allow_other)
|
|
sunrpc on /run/rpc_pipefs type rpc_pipefs (rw,relatime)
|
|
/dev/fuse on /etc/pve type fuse (rw,nosuid,nodev,relatime,user_id=0,group_id=0,default_permissions,allow_other)
|
|
tmpfs on /run/credentials/getty@tty1.service type tmpfs (ro,nosuid,nodev,noexec,relatime,nosymfollow,size=1024k,nr_inodes=1024,mode=700,inode64,noswap)
|
|
pfv-tsys4-nfs-stor:/mnt/tsys4/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.3,local_lock=none,addr=10.100.100.4)
|
|
pfv-tsys5-nfs-stor:/mnt/pfv-tsys5/S4 on /mnt/pve/S4 type nfs4 (rw,noatime,vers=4.2,rsize=1048576,wsize=1048576,namlen=255,hard,fatal_neterrors=none,proto=tcp,nconnect=4,timeo=600,retrans=2,sec=sys,clientaddr=10.100.100.3,local_lock=none,addr=10.100.100.5)
|
|
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.3,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.3,local_lock=none,addr=10.100.100.5)
|
|
pfv-tsys5-nfs-stor:/mnt/pfv-tsys5/ssd on /mnt/pve/T5-SSD type nfs4 (rw,noatime,vers=4.2,rsize=1048576,wsize=1048576,namlen=255,hard,fatal_neterrors=none,proto=tcp,nconnect=4,timeo=600,retrans=2,sec=sys,clientaddr=10.100.100.3,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.3,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.3,local_lock=none,addr=10.100.100.4)
|
|
tmpfs on /run/user/0 type tmpfs (rw,nosuid,nodev,relatime,size=3257000k,nr_inodes=814250,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/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.3,local_lock=none,addr=10.100.100.4
|
|
├─/mnt/pve/S4 pfv-tsys5-nfs-stor:/mnt/pfv-tsys5/S4 nfs4 rw,noatime,vers=4.2,rsize=1048576,wsize=1048576,namlen=255,hard,fatal_neterrors=none,proto=tcp,nconnect=4,timeo=600,retrans=2,sec=sys,clientaddr=10.100.100.3,local_lock=none,addr=10.100.100.5
|
|
├─/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.3,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.3,local_lock=none,addr=10.100.100.5
|
|
├─/mnt/pve/T5-SSD pfv-tsys5-nfs-stor:/mnt/pfv-tsys5/ssd nfs4 rw,noatime,vers=4.2,rsize=1048576,wsize=1048576,namlen=255,hard,fatal_neterrors=none,proto=tcp,nconnect=4,timeo=600,retrans=2,sec=sys,clientaddr=10.100.100.3,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.3,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.3,local_lock=none,addr=10.100.100.4
|
|
|
|
--- /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: 18983140
|
|
Block size: 4096
|
|
Reserved GDT blocks: 1024
|
|
Last mount time: Mon Jul 27 08:07:08 2026
|
|
Last write time: Mon Jul 27 21:08:18 2026
|
|
Mount count: 31
|
|
Maximum mount count: -1
|
|
Last checked: Tue Feb 10 08:46:24 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/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.3,local_lock=none,addr=10.100.100.4
|
|
|
|
/mnt/pve/S4 from pfv-tsys5-nfs-stor:/mnt/pfv-tsys5/S4
|
|
Flags: rw,noatime,vers=4.2,rsize=1048576,wsize=1048576,namlen=255,hard,fatal_neterrors=none,proto=tcp,nconnect=4,timeo=600,retrans=2,sec=sys,clientaddr=10.100.100.3,local_lock=none,addr=10.100.100.5
|
|
|
|
/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.3,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.3,local_lock=none,addr=10.100.100.5
|
|
|
|
/mnt/pve/T5-SSD from pfv-tsys5-nfs-stor:/mnt/pfv-tsys5/ssd
|
|
Flags: rw,noatime,vers=4.2,rsize=1048576,wsize=1048576,namlen=255,hard,fatal_neterrors=none,proto=tcp,nconnect=4,timeo=600,retrans=2,sec=sys,clientaddr=10.100.100.3,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.3,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.3,local_lock=none,addr=10.100.100.4
|
|
|
|
|
|
--- nfsstat -c (client stats)
|
|
$ nfsstat -c
|
|
Client rpc stats:
|
|
calls retrans authrefrsh
|
|
313620 4 315496
|
|
|
|
Client nfs v4:
|
|
null read write commit open
|
|
2 0% 4411 1% 246317 78% 22706 7% 0 0%
|
|
open_conf open_noat open_dgrd close setattr
|
|
0 0% 3 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% 58 0% 9502 3% 69 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% 30340 9% 0 0% 0 0%
|
|
server_caps delegreturn getacl setacl fs_locations
|
|
64 0% 2 0% 0 0% 0 0% 0 0%
|
|
rel_lkowner secinfo fsid_present exchange_id create_session
|
|
0 0% 0 0% 0 0% 4 0% 2 0%
|
|
destroy_session sequence get_lease_time reclaim_comp layoutget
|
|
0 0% 372 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% 8 0% 0 0% 0 0%
|
|
allocate deallocate layoutstats clone
|
|
0 0% 0 0% 93 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
|
|
313620 4 315496
|
|
|
|
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% 4411 1% 246317 78% 22706 7% 0 0%
|
|
open_conf open_noat open_dgrd close setattr
|
|
0 0% 3 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% 58 0% 9502 3% 69 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% 30340 9% 0 0% 0 0%
|
|
server_caps delegreturn getacl setacl fs_locations
|
|
64 0% 2 0% 0 0% 0 0% 0 0%
|
|
rel_lkowner secinfo fsid_present exchange_id create_session
|
|
0 0% 0 0% 0 0% 4 0% 2 0%
|
|
destroy_session sequence get_lease_time reclaim_comp layoutget
|
|
0 0% 372 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% 8 0% 0 0% 0 0%
|
|
allocate deallocate layoutstats clone
|
|
0 0% 0 0% 93 0% 0 0%
|
|
|
|
|
|
--- showmount -e (exports)
|
|
$ showmount -e
|
|
clnt_create: RPC: Timed out
|
|
[exit=1 / not installed or not permitted]
|
|
|
|
--- /proc/net/rpc/nfs
|
|
$ cat /proc/net/rpc/nfs
|
|
net 0 0 0 0
|
|
rpc 314901 4 316783
|
|
proc4 71 2 4411 247347 22786 0 0 3 0 0 0 32 0 0 0 0 0 0 58 9542 69 8 0 0 0 0 0 32 30473 0 0 64 2 0 0 0 0 0 0 4 2 0 372 0 2 0 0 0 0 8 0 0 0 8 0 0 0 0 93 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 195178496 2541422592 6.77%
|
|
D3 nfs active 491133952 2048 466110464 0.00%
|
|
D5 nfs active 1921726464 246711296 1577322496 12.84%
|
|
S2 nfs active 960304128 7176192 904272896 0.75%
|
|
S3 nfs active 960304128 7307264 904142848 0.76%
|
|
S4 nfs active 479597568 2048 455159808 0.00%
|
|
T5-SSD nfs active 245023744 126919680 105585664 51.80%
|
|
local dir active 98497780 22565108 70883124 22.91%
|
|
local-lvm lvmthin active 365760512 0 365760512 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: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: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:705/vm-705-disk-0.qcow2 qcow2 images 34359738368 705
|
|
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: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: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
|
|
D5:906/vm-906-disk-0.qcow2 qcow2 images 34359738368 906
|
|
--- pvesm config D5 ---
|
|
--- storage: S2 ---
|
|
Volid Format Type Size VMID
|
|
S2:102/vm-102-disk-0.qcow2 qcow2 images 34359738368 102
|
|
S2:706/vm-706-disk-0.qcow2 qcow2 images 34359738368 706
|
|
S2:905/vm-905-disk-0.qcow2 qcow2 images 34359738368 905
|
|
--- pvesm config S2 ---
|
|
--- storage: S3 ---
|
|
Volid Format Type Size VMID
|
|
S3:102/vm-102-disk-0.qcow2 qcow2 images 34359738368 102
|
|
S3:106/vm-106-disk-0.qcow2 qcow2 images 34359738368 106
|
|
S3:905/vm-905-disk-0.qcow2 qcow2 images 34359738368 905
|
|
--- pvesm config S3 ---
|
|
--- storage: S4 ---
|
|
Volid Format Type Size VMID
|
|
--- pvesm config S4 ---
|
|
--- storage: T5-SSD ---
|
|
Volid Format Type Size VMID
|
|
T5-SSD:5111/vm-5111-disk-0.qcow2 qcow2 images 309237645312 5111
|
|
--- pvesm config T5-SSD ---
|
|
--- storage: local ---
|
|
Volid Format Type Size VMID
|
|
local:iso/debian-13.3.0-amd64-netinst.iso iso iso 790626304
|
|
local:iso/kali-linux-2025.4-installer-amd64.iso iso iso 4733116416
|
|
local:iso/proxmox-datacenter-manager_1.0-2.iso iso iso 1480003584
|
|
local:iso/ubuntu-24.04.4-live-server-amd64.iso iso iso 3405469696
|
|
local:iso/UCS_5.2-4-amd64.iso iso iso 1677721600
|
|
--- 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/nvme0n1p3 pve lvm2 a-- <475.94g 16.00g <475.94g cKvIrR-Ztxl-i4Xe-fDPq-Yeui-NO3n-mj19Qz
|
|
|
|
--- vgs
|
|
$ vgs -v
|
|
VG Attr Ext #PV #LV #SN VSize VFree VG UUID VProfile
|
|
pve wz--n- 4.00m 1 3 0 <475.94g 16.00g kGxYVD-Atfy-5IID-SYXE-BLU0-NxcG-Ycy1o5
|
|
|
|
--- 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-aotz-- 374538764288B 0.00 0.48 thin,pool private 0.00 0.48
|
|
root pve -wi-ao---- 103079215104B linear public
|
|
swap pve -wi-ao---- 8589934592B linear public
|
|
|
|
--- pvdisplay
|
|
$ pvdisplay
|
|
--- Physical volume ---
|
|
PV Name /dev/nvme0n1p3
|
|
VG Name pve
|
|
PV Size <475.94 GiB / not usable <1.32 MiB
|
|
Allocatable yes
|
|
PE Size 4.00 MiB
|
|
Total PE 121840
|
|
Free PE 4097
|
|
Allocated PE 117743
|
|
PV UUID cKvIrR-Ztxl-i4Xe-fDPq-Yeui-NO3n-mj19Qz
|
|
|
|
|
|
--- vgdisplay
|
|
$ vgdisplay
|
|
--- Volume group ---
|
|
VG Name pve
|
|
System ID
|
|
Format lvm2
|
|
Metadata Areas 1
|
|
Metadata Sequence No 22
|
|
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 <475.94 GiB
|
|
PE Size 4.00 MiB
|
|
Total PE 121840
|
|
Alloc PE / Size 117743 / 459.93 GiB
|
|
Free PE / Size 4097 / 16.00 GiB
|
|
VG UUID kGxYVD-Atfy-5IID-SYXE-BLU0-NxcG-Ycy1o5
|
|
|
|
|
|
--- lvdisplay
|
|
$ lvdisplay
|
|
--- Logical volume ---
|
|
LV Name data
|
|
VG Name pve
|
|
LV UUID D2Wv3d-P0WV-9ckp-nbiS-j1IZ-d5pD-zpCZGZ
|
|
LV Write Access read/write (activated read only)
|
|
LV Creation host, time proxmox, 2026-02-10 08:45:50 -0600
|
|
LV Pool metadata data_tmeta
|
|
LV Pool data data_tdata
|
|
LV Status available
|
|
# open 0
|
|
LV Size <348.82 GiB
|
|
Allocated pool data 0.00%
|
|
Allocated metadata 0.48%
|
|
Current LE 89297
|
|
Segments 1
|
|
Allocation inherit
|
|
Read ahead sectors auto
|
|
- currently set to 8192
|
|
Block device 252:5
|
|
|
|
--- Logical volume ---
|
|
LV Path /dev/pve/swap
|
|
LV Name swap
|
|
VG Name pve
|
|
LV UUID TEVciR-7CUL-MckT-Ayys-2t08-yfYj-o3xVWd
|
|
LV Write Access read/write
|
|
LV Creation host, time proxmox, 2026-02-10 08:45:49 -0600
|
|
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 ED2gZO-8xfQ-l8IN-VcTi-zECT-6L5r-cpFMhx
|
|
LV Write Access read/write
|
|
LV Creation host, time proxmox, 2026-02-10 08:45:49 -0600
|
|
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.4.3-pve1
|
|
|
|
--- zpool version
|
|
$ zpool version
|
|
zfs-2.4.3-pve1
|
|
zfs-kmod-2.4.3-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
|
|
21 1 0x01 148 40256 4606019848 49647462110895
|
|
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 1042241024
|
|
c_min 4 1042241024
|
|
c_max 4 3331325952
|
|
size 4 1920
|
|
compressed_size 4 0
|
|
uncompressed_size 4 0
|
|
overhead_size 4 0
|
|
hdr_size 4 1920
|
|
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_ndev 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 33351712768
|
|
memory_free_bytes 4 30031388672
|
|
memory_available_bytes 3 28813828608
|
|
arc_no_grow 4 0
|
|
arc_tempreserve 4 0
|
|
arc_loaned_bytes 4 0
|
|
arc_prune 4 0
|
|
arc_meta_used 4 1920
|
|
arc_dnode_limit 4 333132595
|
|
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 1217560064
|
|
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
|
|
17 1 0x01 13 3536 4594351598 49647463240001
|
|
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
|
|
16 1 0x01 8 2176 4594350644 49647464404675
|
|
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
|
|
14 1 0x01 20 5440 4594230654 49647466563770
|
|
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_batches_limit = 5
|
|
zfs_arc_evict_batch_limit = 10
|
|
zfs_arc_eviction_pct = 200
|
|
zfs_arc_evict_threads = 3
|
|
zfs_arc_grow_retry = 0
|
|
zfs_arc_lotsfree_percent = 10
|
|
zfs_arc_max = 3331325952
|
|
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_async_free_zio_wait_interval = 2000
|
|
zfs_dbuf_state_index = 0
|
|
zfs_dio_enabled = 1
|
|
zfs_dio_strict = 0
|
|
zfs_dio_write_verify_events_per_second = 20
|
|
zfs_dirty_data_max = 3335171276
|
|
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_direct_write_verify = 1
|
|
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_raidz_impl = cycle [fastest] original scalar sse2 ssse3 avx2
|
|
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_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 Mon Jul 27 21:54:33 2026
|
|
Linux 7.0.14-6-pve 2.4.3-pve1
|
|
Machine: pfv-tsys3 (x86_64) 2.4.3-pve1
|
|
|
|
ARC status:
|
|
Total memory size: 31.1 GiB
|
|
Min target size: 3.1 % 994.0 MiB
|
|
Max target size: 10.0 % 3.1 GiB
|
|
Target size (adaptive): < 0.1 % 994.0 MiB
|
|
Current size: < 0.1 % 1.9 KiB
|
|
Free memory size: 28.0 GiB
|
|
Available memory size: 26.9 GiB
|
|
|
|
ARC structural breakdown (current size): 1.9 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 % 1.9 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 13
|
|
brt_zap_default_ibs 13
|
|
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 2097152
|
|
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_perf_bias 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_flush_txg_time 600
|
|
spa_load_print_vdev_tree 0
|
|
spa_load_verify_data 1
|
|
spa_load_verify_metadata 1
|
|
spa_load_verify_shift 4
|
|
spa_note_txg_time 600
|
|
spa_num_allocators 4
|
|
spa_slop_shift 5
|
|
spa_upgrade_errlog_limit 0
|
|
vdev_file_logical_ashift 9
|
|
vdev_file_physical_ashift 9
|
|
vdev_raidz_outlier_check_interval_ms 1000
|
|
vdev_raidz_outlier_insensitivity 50
|
|
vdev_read_sit_out_secs 600
|
|
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_batches_limit 5
|
|
zfs_arc_evict_threads 3
|
|
zfs_arc_eviction_pct 200
|
|
zfs_arc_grow_retry 0
|
|
zfs_arc_lotsfree_percent 10
|
|
zfs_arc_max 3331325952
|
|
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_async_free_zio_wait_interval 2000
|
|
zfs_bclone_enabled 1
|
|
zfs_bclone_wait_dirty 1
|
|
zfs_blake3_impl cycle [fastest] generic sse2 sse41 avx2
|
|
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 333517127
|
|
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_delete_dentry 0
|
|
zfs_delete_inode 0
|
|
zfs_dio_enabled 1
|
|
zfs_dio_strict 0
|
|
zfs_dio_write_verify_events_per_second 20
|
|
zfs_dirty_data_max 3335171276
|
|
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 avx2
|
|
zfs_free_bpobj_enabled 1
|
|
zfs_free_leak_on_eio 0
|
|
zfs_free_min_time_ms 500
|
|
zfs_history_output_max 1048576
|
|
zfs_immediate_write_sz 32768
|
|
zfs_import_defer_txgs 5
|
|
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 250000
|
|
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 1500
|
|
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 750
|
|
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 avx2
|
|
zfs_sha512_impl cycle [fastest] generic x64 avx avx2
|
|
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_default_ms_count 200
|
|
zfs_vdev_default_ms_shift 29
|
|
zfs_vdev_direct_write_verify 1
|
|
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_raidz_impl cycle [fastest] original scalar sse2 ssse3 avx2
|
|
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_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 6670342552
|
|
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
|
|
zil_special_is_slog 1
|
|
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_free scale,32 null fixed,1,1 null
|
|
zio_taskq_read fixed,1,8 null scale null
|
|
zio_taskq_write sync null scale null
|
|
zio_taskq_write_tpq 16
|
|
zstd_abort_size 131072
|
|
zstd_earlyabort_pass 1
|
|
zvol_blk_mq_blocks_per_thread 8
|
|
zvol_blk_mq_queue_depth 128
|
|
zvol_enforce_quotas 1
|
|
zvol_inhibit_dev 0
|
|
zvol_major 230
|
|
zvol_max_discard_blocks 16384
|
|
zvol_num_taskqs 0
|
|
zvol_open_timeout_ms 1000
|
|
zvol_prefetch_bytes 131072
|
|
zvol_request_sync 0
|
|
zvol_threads 0
|
|
zvol_use_blk_mq 0
|
|
zvol_volmode 1
|
|
|
|
ZIL committed transactions: 0
|
|
Commit requests: 0
|
|
Flushes to stable storage: 0
|
|
Transactions to SLOG storage pool: 0 Bytes 0
|
|
Transactions to non-SLOG storage pool: 0 Bytes 0
|
|
|
|
|
|
--- zpool events -v (recent)
|
|
$ zpool events -v
|
|
TIME CLASS
|
|
|
|
--- zpool history (last 30 events)
|
|
$ zpool history -il 2>/dev/null | tail -n 30
|
|
|
|
###############################################################################
|
|
# 20. STORAGE: DRIVE HEALTH
|
|
###############################################################################
|
|
|
|
--- nvme list
|
|
$ nvme list
|
|
Node Generic SN Model Namespace Usage Format FW Rev
|
|
--------------------- --------------------- -------------------- ---------------------------------------- ---------- -------------------------- ---------------- --------
|
|
/dev/nvme0n1 /dev/ng0n1 S33YNX0J331581 PM961 NVMe SAMSUNG 512GB 0x1 128.17 GB / 512.11 GB 512 B + 0 B CXY74D1Q
|
|
|
|
--- 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
|
|
--- /dev/nvme0n1 smart-log ---
|
|
Smart Log for NVME device:nvme0n1 namespace-id:ffffffff
|
|
critical_warning : 0
|
|
temperature : 91 °F (306 K)
|
|
available_spare : 100%
|
|
available_spare_threshold : 50%
|
|
percentage_used : 16%
|
|
endurance group critical warning summary: 0
|
|
Data Units Read : 60525452 (30.99 TB)
|
|
Data Units Written : 114495630 (58.62 TB)
|
|
host_read_commands : 1177421051
|
|
host_write_commands : 2670391443
|
|
controller_busy_time : 25285
|
|
power_cycles : 1515
|
|
power_on_hours : 11244
|
|
unsafe_shutdowns : 78
|
|
media_errors : 0
|
|
num_err_log_entries : 37237
|
|
Warning Temperature Time : 0
|
|
Critical Composite Temperature Time : 0
|
|
Temperature Sensor 1 : 91 °F (306 K)
|
|
Temperature Sensor 2 : 96 °F (309 K)
|
|
Thermal Management T1 Trans Count : 0
|
|
Thermal Management T2 Trans Count : 0
|
|
Thermal Management T1 Total Time : 0
|
|
Thermal Management T2 Total Time : 0
|
|
--- /dev/nvme0n1 error-log (first 5) ---
|
|
Error Log Entries for device:nvme0n1 entries:64
|
|
.................
|
|
Entry[ 0]
|
|
.................
|
|
error_count : 37237
|
|
sqid : 0
|
|
cmdid : 0x18
|
|
status_field : 0x2002 (Invalid Field in Command: A reserved coded value or an unsupported value in a defined field)
|
|
phase_tag : 0
|
|
parm_err_loc : 0xffff
|
|
lba : 0
|
|
nsid : 0
|
|
vs : 0
|
|
trtype : 0 (The transport type is not indicated or the error is not transport related)
|
|
csi : 0
|
|
opcode : 0
|
|
cs : 0
|
|
trtype_spec_info: 0
|
|
log_page_version: 0
|
|
.................
|
|
Entry[ 1]
|
|
.................
|
|
error_count : 37236
|
|
sqid : 0
|
|
cmdid : 0xc
|
|
status_field : 0x2002 (Invalid Field in Command: A reserved coded value or an unsupported value in a defined field)
|
|
phase_tag : 0
|
|
parm_err_loc : 0xffff
|
|
lba : 0
|
|
nsid : 0
|
|
vs : 0
|
|
trtype : 0 (The transport type is not indicated or the error is not transport related)
|
|
csi : 0
|
|
opcode : 0
|
|
cs : 0
|
|
trtype_spec_info: 0
|
|
log_page_version: 0
|
|
.................
|
|
Entry[ 2]
|
|
.................
|
|
error_count : 37235
|
|
sqid : 0
|
|
cmdid : 0x1c
|
|
status_field : 0x2002 (Invalid Field in Command: A reserved coded value or an unsupported value in a defined field)
|
|
phase_tag : 0
|
|
parm_err_loc : 0xffff
|
|
lba : 0
|
|
nsid : 0
|
|
vs : 0
|
|
trtype : 0 (The transport type is not indicated or the error is not transport related)
|
|
csi : 0
|
|
opcode : 0
|
|
cs : 0
|
|
trtype_spec_info: 0
|
|
log_page_version: 0
|
|
.................
|
|
Entry[ 3]
|
|
.................
|
|
error_count : 37234
|
|
sqid : 0
|
|
cmdid : 0x18
|
|
status_field : 0x2002 (Invalid Field in Command: A reserved coded value or an unsupported value in a defined field)
|
|
phase_tag : 0
|
|
parm_err_loc : 0xffff
|
|
lba : 0
|
|
nsid : 0
|
|
vs : 0
|
|
trtype : 0 (The transport type is not indicated or the error is not transport related)
|
|
csi : 0
|
|
opcode : 0
|
|
cs : 0
|
|
trtype_spec_info: 0
|
|
log_page_version: 0
|
|
.................
|
|
Entry[ 4]
|
|
.................
|
|
error_count : 37233
|
|
sqid : 0
|
|
cmdid : 0
|
|
status_field : 0x2002 (Invalid Field in Command: A reserved coded value or an unsupported value in a defined field)
|
|
--- /dev/nvme0n1p1 smart-log ---
|
|
Smart Log for NVME device:nvme0n1p1 namespace-id:ffffffff
|
|
critical_warning : 0
|
|
temperature : 91 °F (306 K)
|
|
available_spare : 100%
|
|
available_spare_threshold : 50%
|
|
percentage_used : 16%
|
|
endurance group critical warning summary: 0
|
|
Data Units Read : 60525452 (30.99 TB)
|
|
Data Units Written : 114495630 (58.62 TB)
|
|
host_read_commands : 1177421051
|
|
host_write_commands : 2670391443
|
|
controller_busy_time : 25285
|
|
power_cycles : 1515
|
|
power_on_hours : 11244
|
|
unsafe_shutdowns : 78
|
|
media_errors : 0
|
|
num_err_log_entries : 37237
|
|
Warning Temperature Time : 0
|
|
Critical Composite Temperature Time : 0
|
|
Temperature Sensor 1 : 91 °F (306 K)
|
|
Temperature Sensor 2 : 96 °F (309 K)
|
|
Thermal Management T1 Trans Count : 0
|
|
Thermal Management T2 Trans Count : 0
|
|
Thermal Management T1 Total Time : 0
|
|
Thermal Management T2 Total Time : 0
|
|
--- /dev/nvme0n1p1 error-log (first 5) ---
|
|
Error Log Entries for device:nvme0n1p1 entries:64
|
|
.................
|
|
Entry[ 0]
|
|
.................
|
|
error_count : 37237
|
|
sqid : 0
|
|
cmdid : 0x18
|
|
status_field : 0x2002 (Invalid Field in Command: A reserved coded value or an unsupported value in a defined field)
|
|
phase_tag : 0
|
|
parm_err_loc : 0xffff
|
|
lba : 0
|
|
nsid : 0
|
|
vs : 0
|
|
trtype : 0 (The transport type is not indicated or the error is not transport related)
|
|
csi : 0
|
|
opcode : 0
|
|
cs : 0
|
|
trtype_spec_info: 0
|
|
log_page_version: 0
|
|
.................
|
|
Entry[ 1]
|
|
.................
|
|
error_count : 37236
|
|
sqid : 0
|
|
cmdid : 0xc
|
|
status_field : 0x2002 (Invalid Field in Command: A reserved coded value or an unsupported value in a defined field)
|
|
phase_tag : 0
|
|
parm_err_loc : 0xffff
|
|
lba : 0
|
|
nsid : 0
|
|
vs : 0
|
|
trtype : 0 (The transport type is not indicated or the error is not transport related)
|
|
csi : 0
|
|
opcode : 0
|
|
cs : 0
|
|
trtype_spec_info: 0
|
|
log_page_version: 0
|
|
.................
|
|
Entry[ 2]
|
|
.................
|
|
error_count : 37235
|
|
sqid : 0
|
|
cmdid : 0x1c
|
|
status_field : 0x2002 (Invalid Field in Command: A reserved coded value or an unsupported value in a defined field)
|
|
phase_tag : 0
|
|
parm_err_loc : 0xffff
|
|
lba : 0
|
|
nsid : 0
|
|
vs : 0
|
|
trtype : 0 (The transport type is not indicated or the error is not transport related)
|
|
csi : 0
|
|
opcode : 0
|
|
cs : 0
|
|
trtype_spec_info: 0
|
|
log_page_version: 0
|
|
.................
|
|
Entry[ 3]
|
|
.................
|
|
error_count : 37234
|
|
sqid : 0
|
|
cmdid : 0x18
|
|
status_field : 0x2002 (Invalid Field in Command: A reserved coded value or an unsupported value in a defined field)
|
|
phase_tag : 0
|
|
parm_err_loc : 0xffff
|
|
lba : 0
|
|
nsid : 0
|
|
vs : 0
|
|
trtype : 0 (The transport type is not indicated or the error is not transport related)
|
|
csi : 0
|
|
opcode : 0
|
|
cs : 0
|
|
trtype_spec_info: 0
|
|
log_page_version: 0
|
|
.................
|
|
Entry[ 4]
|
|
.................
|
|
error_count : 37233
|
|
sqid : 0
|
|
cmdid : 0
|
|
status_field : 0x2002 (Invalid Field in Command: A reserved coded value or an unsupported value in a defined field)
|
|
--- /dev/nvme0n1p2 smart-log ---
|
|
Smart Log for NVME device:nvme0n1p2 namespace-id:ffffffff
|
|
critical_warning : 0
|
|
temperature : 91 °F (306 K)
|
|
available_spare : 100%
|
|
available_spare_threshold : 50%
|
|
percentage_used : 16%
|
|
endurance group critical warning summary: 0
|
|
Data Units Read : 60525452 (30.99 TB)
|
|
Data Units Written : 114495630 (58.62 TB)
|
|
host_read_commands : 1177421051
|
|
host_write_commands : 2670391443
|
|
controller_busy_time : 25285
|
|
power_cycles : 1515
|
|
power_on_hours : 11244
|
|
unsafe_shutdowns : 78
|
|
media_errors : 0
|
|
num_err_log_entries : 37237
|
|
Warning Temperature Time : 0
|
|
Critical Composite Temperature Time : 0
|
|
Temperature Sensor 1 : 91 °F (306 K)
|
|
Temperature Sensor 2 : 96 °F (309 K)
|
|
Thermal Management T1 Trans Count : 0
|
|
Thermal Management T2 Trans Count : 0
|
|
Thermal Management T1 Total Time : 0
|
|
Thermal Management T2 Total Time : 0
|
|
--- /dev/nvme0n1p2 error-log (first 5) ---
|
|
Error Log Entries for device:nvme0n1p2 entries:64
|
|
.................
|
|
Entry[ 0]
|
|
.................
|
|
error_count : 37237
|
|
sqid : 0
|
|
cmdid : 0x18
|
|
status_field : 0x2002 (Invalid Field in Command: A reserved coded value or an unsupported value in a defined field)
|
|
phase_tag : 0
|
|
parm_err_loc : 0xffff
|
|
lba : 0
|
|
nsid : 0
|
|
vs : 0
|
|
trtype : 0 (The transport type is not indicated or the error is not transport related)
|
|
csi : 0
|
|
opcode : 0
|
|
cs : 0
|
|
trtype_spec_info: 0
|
|
log_page_version: 0
|
|
.................
|
|
Entry[ 1]
|
|
.................
|
|
error_count : 37236
|
|
sqid : 0
|
|
cmdid : 0xc
|
|
status_field : 0x2002 (Invalid Field in Command: A reserved coded value or an unsupported value in a defined field)
|
|
phase_tag : 0
|
|
parm_err_loc : 0xffff
|
|
lba : 0
|
|
nsid : 0
|
|
vs : 0
|
|
trtype : 0 (The transport type is not indicated or the error is not transport related)
|
|
csi : 0
|
|
opcode : 0
|
|
cs : 0
|
|
trtype_spec_info: 0
|
|
log_page_version: 0
|
|
.................
|
|
Entry[ 2]
|
|
.................
|
|
error_count : 37235
|
|
sqid : 0
|
|
cmdid : 0x1c
|
|
status_field : 0x2002 (Invalid Field in Command: A reserved coded value or an unsupported value in a defined field)
|
|
phase_tag : 0
|
|
parm_err_loc : 0xffff
|
|
lba : 0
|
|
nsid : 0
|
|
vs : 0
|
|
trtype : 0 (The transport type is not indicated or the error is not transport related)
|
|
csi : 0
|
|
opcode : 0
|
|
cs : 0
|
|
trtype_spec_info: 0
|
|
log_page_version: 0
|
|
.................
|
|
Entry[ 3]
|
|
.................
|
|
error_count : 37234
|
|
sqid : 0
|
|
cmdid : 0x18
|
|
status_field : 0x2002 (Invalid Field in Command: A reserved coded value or an unsupported value in a defined field)
|
|
phase_tag : 0
|
|
parm_err_loc : 0xffff
|
|
lba : 0
|
|
nsid : 0
|
|
vs : 0
|
|
trtype : 0 (The transport type is not indicated or the error is not transport related)
|
|
csi : 0
|
|
opcode : 0
|
|
cs : 0
|
|
trtype_spec_info: 0
|
|
log_page_version: 0
|
|
.................
|
|
Entry[ 4]
|
|
.................
|
|
error_count : 37233
|
|
sqid : 0
|
|
cmdid : 0
|
|
status_field : 0x2002 (Invalid Field in Command: A reserved coded value or an unsupported value in a defined field)
|
|
--- /dev/nvme0n1p3 smart-log ---
|
|
Smart Log for NVME device:nvme0n1p3 namespace-id:ffffffff
|
|
critical_warning : 0
|
|
temperature : 91 °F (306 K)
|
|
available_spare : 100%
|
|
available_spare_threshold : 50%
|
|
percentage_used : 16%
|
|
endurance group critical warning summary: 0
|
|
Data Units Read : 60525452 (30.99 TB)
|
|
Data Units Written : 114495630 (58.62 TB)
|
|
host_read_commands : 1177421051
|
|
host_write_commands : 2670391443
|
|
controller_busy_time : 25285
|
|
power_cycles : 1515
|
|
power_on_hours : 11244
|
|
unsafe_shutdowns : 78
|
|
media_errors : 0
|
|
num_err_log_entries : 37237
|
|
Warning Temperature Time : 0
|
|
Critical Composite Temperature Time : 0
|
|
Temperature Sensor 1 : 91 °F (306 K)
|
|
Temperature Sensor 2 : 96 °F (309 K)
|
|
Thermal Management T1 Trans Count : 0
|
|
Thermal Management T2 Trans Count : 0
|
|
Thermal Management T1 Total Time : 0
|
|
Thermal Management T2 Total Time : 0
|
|
--- /dev/nvme0n1p3 error-log (first 5) ---
|
|
Error Log Entries for device:nvme0n1p3 entries:64
|
|
.................
|
|
Entry[ 0]
|
|
.................
|
|
error_count : 37237
|
|
sqid : 0
|
|
cmdid : 0x18
|
|
status_field : 0x2002 (Invalid Field in Command: A reserved coded value or an unsupported value in a defined field)
|
|
phase_tag : 0
|
|
parm_err_loc : 0xffff
|
|
lba : 0
|
|
nsid : 0
|
|
vs : 0
|
|
trtype : 0 (The transport type is not indicated or the error is not transport related)
|
|
csi : 0
|
|
opcode : 0
|
|
cs : 0
|
|
trtype_spec_info: 0
|
|
log_page_version: 0
|
|
.................
|
|
Entry[ 1]
|
|
.................
|
|
error_count : 37236
|
|
sqid : 0
|
|
cmdid : 0xc
|
|
status_field : 0x2002 (Invalid Field in Command: A reserved coded value or an unsupported value in a defined field)
|
|
phase_tag : 0
|
|
parm_err_loc : 0xffff
|
|
lba : 0
|
|
nsid : 0
|
|
vs : 0
|
|
trtype : 0 (The transport type is not indicated or the error is not transport related)
|
|
csi : 0
|
|
opcode : 0
|
|
cs : 0
|
|
trtype_spec_info: 0
|
|
log_page_version: 0
|
|
.................
|
|
Entry[ 2]
|
|
.................
|
|
error_count : 37235
|
|
sqid : 0
|
|
cmdid : 0x1c
|
|
status_field : 0x2002 (Invalid Field in Command: A reserved coded value or an unsupported value in a defined field)
|
|
phase_tag : 0
|
|
parm_err_loc : 0xffff
|
|
lba : 0
|
|
nsid : 0
|
|
vs : 0
|
|
trtype : 0 (The transport type is not indicated or the error is not transport related)
|
|
csi : 0
|
|
opcode : 0
|
|
cs : 0
|
|
trtype_spec_info: 0
|
|
log_page_version: 0
|
|
.................
|
|
Entry[ 3]
|
|
.................
|
|
error_count : 37234
|
|
sqid : 0
|
|
cmdid : 0x18
|
|
status_field : 0x2002 (Invalid Field in Command: A reserved coded value or an unsupported value in a defined field)
|
|
phase_tag : 0
|
|
parm_err_loc : 0xffff
|
|
lba : 0
|
|
nsid : 0
|
|
vs : 0
|
|
trtype : 0 (The transport type is not indicated or the error is not transport related)
|
|
csi : 0
|
|
opcode : 0
|
|
cs : 0
|
|
trtype_spec_info: 0
|
|
log_page_version: 0
|
|
.................
|
|
Entry[ 4]
|
|
.................
|
|
error_count : 37233
|
|
sqid : 0
|
|
cmdid : 0
|
|
status_field : 0x2002 (Invalid Field in Command: A reserved coded value or an unsupported value in a defined field)
|
|
|
|
--- 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
|
|
--- /dev/nvme0n1 id-ctrl (filtered) ---
|
|
vid : 0x144d
|
|
sn : S33YNX0J331581
|
|
mn : PM961 NVMe SAMSUNG 512GB
|
|
fr : CXY74D1Q
|
|
rab : 2
|
|
mdts : 0
|
|
cntlid : 0x2
|
|
ver : 0x10200
|
|
frmw : 0x16
|
|
lpa : 0x2
|
|
elpe : 63
|
|
apsta : 0x1
|
|
hmpre : 0
|
|
hmmin : 0
|
|
tnvmcap : 512110190592
|
|
mntmt : 0
|
|
hmminds : 0
|
|
fna : 0x1
|
|
awun : 255
|
|
awupf : 0
|
|
acwu : 0
|
|
mnan : 0
|
|
mnsudmq : 0
|
|
--- /dev/nvme0n1p1 id-ctrl (filtered) ---
|
|
vid : 0x144d
|
|
sn : S33YNX0J331581
|
|
mn : PM961 NVMe SAMSUNG 512GB
|
|
fr : CXY74D1Q
|
|
rab : 2
|
|
mdts : 0
|
|
cntlid : 0x2
|
|
ver : 0x10200
|
|
frmw : 0x16
|
|
lpa : 0x2
|
|
elpe : 63
|
|
apsta : 0x1
|
|
hmpre : 0
|
|
hmmin : 0
|
|
tnvmcap : 512110190592
|
|
mntmt : 0
|
|
hmminds : 0
|
|
fna : 0x1
|
|
awun : 255
|
|
awupf : 0
|
|
acwu : 0
|
|
mnan : 0
|
|
mnsudmq : 0
|
|
--- /dev/nvme0n1p2 id-ctrl (filtered) ---
|
|
vid : 0x144d
|
|
sn : S33YNX0J331581
|
|
mn : PM961 NVMe SAMSUNG 512GB
|
|
fr : CXY74D1Q
|
|
rab : 2
|
|
mdts : 0
|
|
cntlid : 0x2
|
|
ver : 0x10200
|
|
frmw : 0x16
|
|
lpa : 0x2
|
|
elpe : 63
|
|
apsta : 0x1
|
|
hmpre : 0
|
|
hmmin : 0
|
|
tnvmcap : 512110190592
|
|
mntmt : 0
|
|
hmminds : 0
|
|
fna : 0x1
|
|
awun : 255
|
|
awupf : 0
|
|
acwu : 0
|
|
mnan : 0
|
|
mnsudmq : 0
|
|
--- /dev/nvme0n1p3 id-ctrl (filtered) ---
|
|
vid : 0x144d
|
|
sn : S33YNX0J331581
|
|
mn : PM961 NVMe SAMSUNG 512GB
|
|
fr : CXY74D1Q
|
|
rab : 2
|
|
mdts : 0
|
|
cntlid : 0x2
|
|
ver : 0x10200
|
|
frmw : 0x16
|
|
lpa : 0x2
|
|
elpe : 63
|
|
apsta : 0x1
|
|
hmpre : 0
|
|
hmmin : 0
|
|
tnvmcap : 512110190592
|
|
mntmt : 0
|
|
hmminds : 0
|
|
fna : 0x1
|
|
awun : 255
|
|
awupf : 0
|
|
acwu : 0
|
|
mnan : 0
|
|
mnsudmq : 0
|
|
|
|
--- 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
|
|
|
|
###############################################################################
|
|
# 21. STORAGE: HBA / RAID CONTROLLERS
|
|
###############################################################################
|
|
|
|
###############################################################################
|
|
# 22. VIRTUAL MACHINES (qm)
|
|
###############################################################################
|
|
|
|
--- qm list
|
|
$ qm list
|
|
VMID NAME STATUS MEM(MB) BOOTDISK(GB) PID
|
|
313 pfv-k8s-wnode-tsys3 running 28000 32.00 12964
|
|
3000 KNELTemplate stopped 2048 32.00 0
|
|
|
|
--- 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 313 ---
|
|
agent: 1
|
|
balloon: 0
|
|
boot: order=scsi0;ide2;net0
|
|
cores: 8
|
|
cpu: host
|
|
ide2: local:iso/debian-13.3.0-amd64-netinst.iso,media=cdrom,size=754M
|
|
memory: 28000
|
|
meta: creation-qemu=10.1.2,ctime=1771904766
|
|
name: pfv-k8s-wnode-tsys3
|
|
net0: virtio=BC:24:11:EE:7E:7B,bridge=vmbr0,firewall=1
|
|
numa: 0
|
|
onboot: 1
|
|
ostype: l26
|
|
scsi0: D5:313/vm-313-disk-0.qcow2,cache=writethrough,iothread=1,size=32G
|
|
scsihw: virtio-scsi-single
|
|
smbios1: uuid=c63c1b9a-91b7-47ea-bee1-76b7283e65fc
|
|
sockets: 1
|
|
vmgenid: 7fc80de6-4573-4d56-acda-b68daeb5f0ea
|
|
|
|
--- VM 3000 ---
|
|
agent: 1
|
|
balloon: 0
|
|
boot: order=scsi0;ide2;net0
|
|
cores: 2
|
|
cpu: host
|
|
ide2: local:iso/debian-13.3.0-amd64-netinst.iso,media=cdrom,size=754M
|
|
memory: 2048
|
|
meta: creation-qemu=10.1.2,ctime=1771904766
|
|
name: KNELTemplate
|
|
net0: virtio=BC:24:11:1E:3D:4F,bridge=vmbr0,firewall=1
|
|
numa: 0
|
|
onboot: 1
|
|
ostype: l26
|
|
scsi0: D2:3000/base-3000-disk-0.qcow2,cache=writethrough,iothread=1,size=32G
|
|
scsihw: virtio-scsi-single
|
|
smbios1: uuid=4249d816-e44e-4cc4-82d4-2b4531381f94
|
|
sockets: 1
|
|
template: 1
|
|
vmgenid: 32cdda57-cd8a-428f-9ad8-67be8f2e1d30
|
|
|
|
|
|
--- 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 313 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" : 94057,
|
|
"rx-dropped" : 0,
|
|
"rx-errs" : 0,
|
|
"rx-packets" : 1073,
|
|
"tx-bytes" : 94057,
|
|
"tx-dropped" : 0,
|
|
"tx-errs" : 0,
|
|
"tx-packets" : 1073
|
|
}
|
|
},
|
|
{
|
|
"hardware-address" : "bc:24:11:ee:7e:7b",
|
|
"ip-addresses" : [
|
|
{
|
|
"ip-address" : "192.168.2.30",
|
|
"ip-address-type" : "ipv4",
|
|
"prefix" : 22
|
|
},
|
|
{
|
|
"ip-address" : "2600:1700:1d1:eb00::c",
|
|
"ip-address-type" : "ipv6",
|
|
"prefix" : 128
|
|
},
|
|
--- VM 3000 runtime ---
|
|
|
|
--- /etc/pve/qemu-server
|
|
lrwxr-xr-x 1 root www-data 27 Dec 31 1969 /etc/pve/qemu-server -> nodes/pfv-tsys3/qemu-server
|
|
|
|
--- /etc/pve/firewall
|
|
total 0
|
|
drwxr-xr-x 2 root www-data 0 Feb 10 14:49 .
|
|
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-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
|
|
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.
|
|
|
|
35 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
|
|
cron.service enabled enabled
|
|
e2scrub_reap.service enabled enabled
|
|
getty@.service enabled enabled
|
|
grub-common.service enabled enabled
|
|
keyboard-setup.service enabled enabled
|
|
ksmtuned.service enabled enabled
|
|
lldpd.service enabled enabled
|
|
lvm2-monitor.service enabled enabled
|
|
lxc-monitord.service enabled enabled
|
|
lxc-net.service enabled enabled
|
|
lxc.service enabled enabled
|
|
lxcfs.service enabled enabled
|
|
netavark-dhcp-proxy.service enabled enabled
|
|
netavark-firewalld-reload.service enabled enabled
|
|
networking.service enabled enabled
|
|
nfs-blkmap.service enabled enabled
|
|
nvmefc-boot-connections.service enabled enabled
|
|
nvmf-autoconnect.service enabled enabled
|
|
open-iscsi.service enabled enabled
|
|
perfopt-cpu-performance.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-lxc-syscalld.service enabled enabled
|
|
pve-query-machine-capabilities.service enabled enabled
|
|
pve-sdn-commit.service enabled enabled
|
|
pvebanner.service enabled enabled
|
|
pvedaemon.service enabled enabled
|
|
pvefw-logger.service enabled enabled
|
|
pvenetcommit.service enabled enabled
|
|
pveproxy.service enabled enabled
|
|
pvescheduler.service enabled enabled
|
|
pvestatd.service enabled enabled
|
|
qmeventd.service enabled enabled
|
|
rbdmap.service enabled enabled
|
|
rpcbind.service enabled enabled
|
|
rrdcached.service enabled enabled
|
|
smartmontools.service enabled enabled
|
|
spiceproxy.service enabled enabled
|
|
ssh.service enabled enabled
|
|
sshd-keygen.service enabled enabled
|
|
sysstat.service enabled enabled
|
|
systemd-pstore.service enabled enabled
|
|
tailscaled.service enabled enabled
|
|
tuned.service enabled enabled
|
|
wtmpdb-update-boot.service enabled enabled
|
|
zfs-import-cache.service enabled enabled
|
|
zfs-mount.service enabled enabled
|
|
zfs-share.service enabled enabled
|
|
zfs-volume-wait.service enabled enabled
|
|
zfs-zed.service enabled enabled
|
|
system-xfs_scrub.slice enabled enabled
|
|
dm-event.socket enabled enabled
|
|
iscsid.socket enabled enabled
|
|
lvm2-lvmpolld.socket enabled enabled
|
|
netavark-dhcp-proxy.socket enabled enabled
|
|
rpcbind.socket enabled enabled
|
|
rrdcached.socket enabled enabled
|
|
uuidd.socket enabled enabled
|
|
ceph-fuse.target enabled enabled
|
|
ceph.target enabled enabled
|
|
nfs-client.target enabled enabled
|
|
remote-fs.target enabled enabled
|
|
zfs-import.target enabled enabled
|
|
zfs-volumes.target enabled enabled
|
|
zfs.target enabled enabled
|
|
apt-daily-upgrade.timer enabled enabled
|
|
apt-daily.timer enabled enabled
|
|
beszel-agent-update.timer enabled enabled
|
|
dpkg-db-backup.timer enabled enabled
|
|
e2scrub_all.timer enabled enabled
|
|
fstrim.timer enabled enabled
|
|
logrotate.timer enabled enabled
|
|
man-db.timer enabled enabled
|
|
pve-daily-update.timer enabled enabled
|
|
sysstat-collect.timer enabled enabled
|
|
sysstat-rotate.timer enabled enabled
|
|
sysstat-summary.timer enabled enabled
|
|
xfs_scrub_all.timer enabled enabled
|
|
|
|
88 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 Mon 2026-07-27 08:07:53 CDT; 13h ago
|
|
Invocation: ac409597aebf43f982e992212e67fd1e
|
|
Process: 1042 ExecStart=/usr/bin/pmxcfs (code=exited, status=0/SUCCESS)
|
|
Main PID: 1056 (pmxcfs)
|
|
Tasks: 6 (limit: 34658)
|
|
Memory: 50.4M (peak: 69.1M)
|
|
CPU: 23.657s
|
|
CGroup: /system.slice/pve-cluster.service
|
|
└─1056 /usr/bin/pmxcfs
|
|
|
|
Jul 27 08:07:52 pfv-tsys3 systemd[1]: Starting pve-cluster.service - The Proxmox VE cluster filesystem...
|
|
Jul 27 08:07:52 pfv-tsys3 pmxcfs[1042]: [main] notice: resolved node name 'pfv-tsys3' to '192.168.100.2' for default node IP address
|
|
Jul 27 08:07:52 pfv-tsys3 pmxcfs[1042]: [main] notice: resolved node name 'pfv-tsys3' to '192.168.100.2' for default node IP address
|
|
Jul 27 08:07:53 pfv-tsys3 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 Mon 2026-07-27 08:07:54 CDT; 13h ago
|
|
Invocation: f0b8476041234413a75386ee4b7a6a69
|
|
Process: 1233 ExecStart=/usr/bin/pvedaemon start (code=exited, status=0/SUCCESS)
|
|
Main PID: 1273 (pvedaemon)
|
|
Tasks: 4 (limit: 34658)
|
|
Memory: 187.8M (peak: 444.7M)
|
|
CPU: 42.190s
|
|
CGroup: /system.slice/pvedaemon.service
|
|
├─ 1273 pvedaemon
|
|
├─158724 "pvedaemon worker"
|
|
├─159182 "pvedaemon worker"
|
|
└─159427 "pvedaemon worker"
|
|
|
|
Jul 27 17:43:59 pfv-tsys3 pvedaemon[1273]: worker 1275 finished
|
|
Jul 27 17:43:59 pfv-tsys3 pvedaemon[1273]: starting 1 worker(s)
|
|
Jul 27 17:43:59 pfv-tsys3 pvedaemon[1273]: worker 159182 started
|
|
Jul 27 17:44:45 pfv-tsys3 pvedaemon[1274]: worker exit
|
|
Jul 27 17:44:45 pfv-tsys3 pvedaemon[1273]: worker 1274 finished
|
|
Jul 27 17:44:45 pfv-tsys3 pvedaemon[1273]: starting 1 worker(s)
|
|
Jul 27 17:44:45 pfv-tsys3 pvedaemon[1273]: worker 159427 started
|
|
Jul 27 17:48:38 pfv-tsys3 pvedaemon[159182]: <root@pam> successful auth for user 'root@pam'
|
|
Jul 27 18:04:38 pfv-tsys3 pvedaemon[159427]: <root@pam> successful auth for user 'root@pam'
|
|
Jul 27 18:19:38 pfv-tsys3 pvedaemon[158724]: <root@pam> successful auth for user 'root@pam'
|
|
|
|
● pveproxy.service - PVE API Proxy Server
|
|
Loaded: loaded (/usr/lib/systemd/system/pveproxy.service; enabled; preset: enabled)
|
|
Active: active (running) since Mon 2026-07-27 08:07:56 CDT; 13h ago
|
|
Invocation: d457b473e1ae4d1093c1a3a425bd6b3f
|
|
Process: 1278 ExecStartPre=/usr/bin/pvecm updatecerts --silent (code=exited, status=0/SUCCESS)
|
|
Process: 1281 ExecStart=/usr/bin/pveproxy start (code=exited, status=0/SUCCESS)
|
|
Process: 1286 ExecStartPost=sh -c [ ! -e /var/log/pveam.log ] && /usr/bin/pveupdate (code=exited, status=1/FAILURE)
|
|
Main PID: 1282 (pveproxy)
|
|
Tasks: 4 (limit: 34658)
|
|
Memory: 243.3M (peak: 338.9M)
|
|
CPU: 1min 19.150s
|
|
CGroup: /system.slice/pveproxy.service
|
|
├─ 1282 pveproxy
|
|
├─158416 "pveproxy worker"
|
|
├─159016 "pveproxy worker"
|
|
└─160849 "pveproxy worker"
|
|
|
|
Jul 27 17:41:23 pfv-tsys3 pveproxy[1282]: worker 158416 started
|
|
Jul 27 17:43:23 pfv-tsys3 pveproxy[1282]: worker 131678 finished
|
|
Jul 27 17:43:23 pfv-tsys3 pveproxy[1282]: starting 1 worker(s)
|
|
Jul 27 17:43:23 pfv-tsys3 pveproxy[1282]: worker 159016 started
|
|
Jul 27 17:43:26 pfv-tsys3 pveproxy[159015]: got inotify poll request in wrong process - disabling inotify
|
|
Jul 27 17:49:35 pfv-tsys3 pveproxy[132544]: worker exit
|
|
Jul 27 17:49:35 pfv-tsys3 pveproxy[1282]: worker 132544 finished
|
|
Jul 27 17:49:35 pfv-tsys3 pveproxy[1282]: starting 1 worker(s)
|
|
Jul 27 17:49:35 pfv-tsys3 pveproxy[1282]: worker 160849 started
|
|
Jul 27 18:39:41 pfv-tsys3 pveproxy[159015]: worker exit
|
|
|
|
● pve-firewall.service - Proxmox VE firewall
|
|
Loaded: loaded (/usr/lib/systemd/system/pve-firewall.service; enabled; preset: enabled)
|
|
Active: active (running) since Mon 2026-07-27 08:07:54 CDT; 13h ago
|
|
Invocation: bf8ed8edcbd94c97b721beed87d00117
|
|
Process: 1231 ExecStartPre=/usr/bin/update-alternatives --set ebtables /usr/sbin/ebtables-legacy (code=exited, status=0/SUCCESS)
|
|
Process: 1236 ExecStartPre=/usr/bin/update-alternatives --set iptables /usr/sbin/iptables-legacy (code=exited, status=0/SUCCESS)
|
|
Process: 1241 ExecStartPre=/usr/bin/update-alternatives --set ip6tables /usr/sbin/ip6tables-legacy (code=exited, status=0/SUCCESS)
|
|
Process: 1244 ExecStart=/usr/sbin/pve-firewall start (code=exited, status=0/SUCCESS)
|
|
Main PID: 1250 (pve-firewall)
|
|
Tasks: 1 (limit: 34658)
|
|
Memory: 107.4M (peak: 124.6M)
|
|
CPU: 5min 56.174s
|
|
CGroup: /system.slice/pve-firewall.service
|
|
└─1250 pve-firewall
|
|
|
|
Jul 27 08:07:53 pfv-tsys3 systemd[1]: Starting pve-firewall.service - Proxmox VE firewall...
|
|
Jul 27 08:07:54 pfv-tsys3 pve-firewall[1250]: starting server
|
|
Jul 27 08:07:54 pfv-tsys3 systemd[1]: Started pve-firewall.service - Proxmox VE firewall.
|
|
|
|
○ pve-ha-crm.service - PVE Cluster HA Resource Manager Daemon
|
|
Loaded: loaded (/usr/lib/systemd/system/pve-ha-crm.service; disabled; preset: enabled)
|
|
Active: inactive (dead)
|
|
|
|
○ pve-ha-lrm.service - PVE Local HA Resource Manager Daemon
|
|
Loaded: loaded (/usr/lib/systemd/system/pve-ha-lrm.service; disabled; preset: enabled)
|
|
Active: inactive (dead)
|
|
|
|
● pvestatd.service - PVE Status Daemon
|
|
Loaded: loaded (/usr/lib/systemd/system/pvestatd.service; enabled; preset: enabled)
|
|
Active: active (running) since Mon 2026-07-27 08:07:54 CDT; 13h ago
|
|
Invocation: 2bf2897be20a406d99175ad6d520c7b7
|
|
Process: 1234 ExecStart=/usr/bin/pvestatd start (code=exited, status=0/SUCCESS)
|
|
Main PID: 1248 (pvestatd)
|
|
Tasks: 1 (limit: 34658)
|
|
Memory: 129.5M (peak: 221.9M)
|
|
CPU: 13min 28.815s
|
|
CGroup: /system.slice/pvestatd.service
|
|
└─1248 pvestatd
|
|
|
|
Jul 27 13:04:58 pfv-tsys3 pvestatd[1248]: storage 'S2' is not online
|
|
Jul 27 13:04:58 pfv-tsys3 pvestatd[1248]: status update time (12.537 seconds)
|
|
Jul 27 13:05:18 pfv-tsys3 pvestatd[1248]: storage 'S4' is not online
|
|
Jul 27 13:05:28 pfv-tsys3 pvestatd[1248]: storage 'T5-SSD' is not online
|
|
Jul 27 13:05:32 pfv-tsys3 pvestatd[1248]: storage 'S2' is not online
|
|
Jul 27 13:05:38 pfv-tsys3 pvestatd[1248]: storage 'S3' is not online
|
|
Jul 27 13:05:38 pfv-tsys3 pvestatd[1248]: status update time (29.684 seconds)
|
|
Jul 27 13:05:44 pfv-tsys3 pvestatd[1248]: storage 'S4' is not online
|
|
Jul 27 13:05:48 pfv-tsys3 pvestatd[1248]: status update time (10.581 seconds)
|
|
Jul 27 14:03:58 pfv-tsys3 pvestatd[1248]: auth key pair too old, rotating..
|
|
|
|
--- 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 Mon 2026-07-27 08:07:10 CDT; 13h ago
|
|
Invocation: dcfba09a5f7e48abbb9b2375dc0baa12
|
|
TriggeredBy: ● rpcbind.socket
|
|
Docs: man:rpcbind(8)
|
|
Main PID: 621 (rpcbind)
|
|
Tasks: 1 (limit: 34658)
|
|
Memory: 616K (peak: 1.7M)
|
|
CPU: 63ms
|
|
CGroup: /system.slice/rpcbind.service
|
|
└─621 /usr/sbin/rpcbind -f -w
|
|
|
|
Jul 27 08:07:10 pfv-tsys3 systemd[1]: Starting rpcbind.service - RPC bind portmap service...
|
|
Jul 27 08:07:10 pfv-tsys3 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 Mon 2026-07-27 08:07:10 CDT; 13h ago
|
|
Invocation: dcd4275798ad4e6394f2ef839b5356e8
|
|
Docs: man:zfs(8)
|
|
Process: 537 ExecStart=/usr/sbin/zfs mount -a (code=exited, status=0/SUCCESS)
|
|
Main PID: 537 (code=exited, status=0/SUCCESS)
|
|
Mem peak: 2M
|
|
CPU: 10ms
|
|
|
|
Jul 27 08:07:10 pfv-tsys3 systemd[1]: Starting zfs-mount.service - Mount ZFS filesystems...
|
|
Jul 27 08:07:10 pfv-tsys3 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 Mon 2026-07-27 08:07:10 CDT; 13h ago
|
|
Invocation: 91c563bf48c345dc81b37fb25f0a76c6
|
|
Docs: man:smartd(8)
|
|
man:smartd.conf(5)
|
|
Main PID: 701 (smartd)
|
|
Status: "Next check of 1 device will start at 22:07:10"
|
|
Tasks: 1 (limit: 34658)
|
|
Memory: 3M (peak: 4.4M)
|
|
CPU: 47ms
|
|
CGroup: /system.slice/smartmontools.service
|
|
└─701 /usr/sbin/smartd -n -q never
|
|
|
|
Jul 27 08:07:10 pfv-tsys3 smartd[701]: Drive: DEVICESCAN, implied '-a' Directive on line 18 of file /etc/smartd.conf
|
|
Jul 27 08:07:10 pfv-tsys3 smartd[701]: Configuration file /etc/smartd.conf was parsed, found DEVICESCAN, scanning devices
|
|
Jul 27 08:07:10 pfv-tsys3 smartd[701]: Device: /dev/nvme0, opened
|
|
Jul 27 08:07:10 pfv-tsys3 smartd[701]: Device: /dev/nvme0, PM961 NVMe SAMSUNG 512GB, S/N:S33YNX0J331581, FW:CXY74D1Q, 512 GB
|
|
Jul 27 08:07:10 pfv-tsys3 smartd[701]: Device: /dev/nvme0, is SMART capable. Adding to "monitor" list.
|
|
Jul 27 08:07:10 pfv-tsys3 smartd[701]: Device: /dev/nvme0, state read from /var/lib/smartmontools/smartd.PM961_NVMe_SAMSUNG_512GB-S33YNX0J331581.nvme.state
|
|
Jul 27 08:07:10 pfv-tsys3 smartd[701]: Monitoring 0 ATA/SATA, 0 SCSI/SAS and 1 NVMe devices
|
|
Jul 27 08:07:10 pfv-tsys3 smartd[701]: Device: /dev/nvme0, NVMe error count increased from 37236 to 37237 (0 new, 1 ignored, 0 unknown)
|
|
Jul 27 08:07:10 pfv-tsys3 smartd[701]: Device: /dev/nvme0, state written to /var/lib/smartmontools/smartd.PM961_NVMe_SAMSUNG_512GB-S33YNX0J331581.nvme.state
|
|
Jul 27 08:07:10 pfv-tsys3 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 22:00:00 CDT 5min Mon 2026-07-27 21:50:08 CDT 4min 35s ago sysstat-collect.timer sysstat-collect.service
|
|
Tue 2026-07-28 00:00:00 CDT 2h 5min Mon 2026-07-27 00:00:25 CDT - dpkg-db-backup.timer dpkg-db-backup.service
|
|
Tue 2026-07-28 00:00:00 CDT 2h 5min - - sysstat-rotate.timer sysstat-rotate.service
|
|
Tue 2026-07-28 00:07:00 CDT 2h 12min - - sysstat-summary.timer sysstat-summary.service
|
|
Tue 2026-07-28 00:19:04 CDT 2h 24min Mon 2026-07-27 00:01:25 CDT - logrotate.timer logrotate.service
|
|
Tue 2026-07-28 01:18:03 CDT 3h 23min Mon 2026-07-27 01:06:18 CDT - beszel-agent-update.timer beszel-agent-update.service
|
|
Tue 2026-07-28 01:25:33 CDT 3h 30min Mon 2026-07-27 01:28:55 CDT - pve-daily-update.timer pve-daily-update.service
|
|
Tue 2026-07-28 06:21:48 CDT 8h Mon 2026-07-27 06:45:25 CDT - apt-daily-upgrade.timer apt-daily-upgrade.service
|
|
Tue 2026-07-28 08:22:08 CDT 10h Mon 2026-07-27 08:22:08 CDT 13h ago systemd-tmpfiles-clean.timer systemd-tmpfiles-clean.service
|
|
Tue 2026-07-28 10:19:55 CDT 12h Mon 2026-07-27 08:04:25 CDT - man-db.timer man-db.service
|
|
Tue 2026-07-28 14:10:34 CDT 16h Mon 2026-07-27 19:56:08 CDT 1h 58min ago apt-daily.timer apt-daily.service
|
|
Sun 2026-08-02 03:10:06 CDT 5 days Sun 2026-07-26 03:10:33 CDT - e2scrub_all.timer e2scrub_all.service
|
|
Sun 2026-08-02 03:10:27 CDT 5 days Sun 2026-07-26 03:11:25 CDT - xfs_scrub_all.timer xfs_scrub_all.service
|
|
Mon 2026-08-03 00:18:43 CDT 6 days Mon 2026-07-27 01:36:25 CDT - fstrim.timer fstrim.service
|
|
|
|
14 timers listed.
|
|
|
|
--- /etc/cron.d
|
|
total 24
|
|
drwxr-xr-x 2 root root 4096 Jul 27 08:04 .
|
|
drwxr-xr-x 111 root root 4096 Jul 27 21:53 ..
|
|
-rw-r--r-- 1 root root 188 Jul 30 2025 e2scrub_all
|
|
-rw-r--r-- 1 root root 102 Jun 13 2025 .placeholder
|
|
-rw-r--r-- 1 root root 400 Jan 15 2024 sysstat
|
|
lrwxrwxrwx 1 root root 20 Feb 10 14:49 vzdump -> /etc/pve/vzdump.cron
|
|
-rw-r--r-- 1 root root 377 Aug 26 2025 zfsutils-linux
|
|
|
|
--- /etc/cron.daily
|
|
total 32
|
|
drwxr-xr-x 2 root root 4096 Jul 27 08:04 .
|
|
drwxr-xr-x 111 root root 4096 Jul 27 21:53 ..
|
|
-rwxr-xr-x 1 root root 1478 Jun 24 2025 apt-compat
|
|
-rwxr-xr-x 1 root root 123 May 27 2025 dpkg
|
|
-rwxr-xr-x 1 root root 377 Jul 14 2024 logrotate
|
|
-rwxr-xr-x 1 root root 1395 May 2 2025 man-db
|
|
-rw-r--r-- 1 root root 102 Jun 13 2025 .placeholder
|
|
-rwxr-xr-x 1 root root 526 Jan 15 2024 sysstat
|
|
|
|
--- /etc/cron.hourly
|
|
total 12
|
|
drwxr-xr-x 2 root root 4096 Feb 10 14:47 .
|
|
drwxr-xr-x 111 root root 4096 Jul 27 21:53 ..
|
|
-rw-r--r-- 1 root root 102 Jun 13 2025 .placeholder
|
|
|
|
--- /etc/cron.weekly
|
|
total 16
|
|
drwxr-xr-x 2 root root 4096 Feb 10 14:47 .
|
|
drwxr-xr-x 111 root root 4096 Jul 27 21:53 ..
|
|
-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
|
|
0.45 0.19 0.08 1/309 235190
|
|
|
|
--- vmstat 1 3
|
|
$ vmstat 1 3
|
|
procs -----------memory---------- ---swap-- -----io---- -system-- -------cpu-------
|
|
r b swpd free buff cache si so bi bo in cs us sy id wa st gu
|
|
0 0 0 28942384 22828 520864 0 0 246 21 790 1 0 0 98 1 0 0
|
|
0 2 0 28942372 22828 521044 0 0 0 0 1103 1228 0 0 93 7 0 0
|
|
1 0 0 29004296 22828 521052 0 0 0 0 1212 1596 0 1 98 0 0 0
|
|
|
|
--- mpstat 1 3 (per-cpu)
|
|
$ mpstat 1 3
|
|
Linux 7.0.14-6-pve (pfv-tsys3) 07/27/2026 _x86_64_ (8 CPU)
|
|
|
|
09:54:45 PM CPU %usr %nice %sys %iowait %irq %soft %steal %guest %gnice %idle
|
|
09:54:46 PM all 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.12 0.00 99.88
|
|
09:54:47 PM all 0.13 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 99.87
|
|
09:54:48 PM all 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 100.00
|
|
Average: all 0.04 0.00 0.00 0.00 0.00 0.00 0.00 0.04 0.00 99.92
|
|
|
|
--- iostat -xz 1 3
|
|
$ iostat -xz 1 3
|
|
Linux 7.0.14-6-pve (pfv-tsys3) 07/27/2026 _x86_64_ (8 CPU)
|
|
|
|
avg-cpu: %user %nice %system %iowait %steal %idle
|
|
0.28 0.00 0.31 1.19 0.00 98.21
|
|
|
|
Device r/s rkB/s rrqm/s %rrqm r_await rareq-sz w/s wkB/s wrqm/s %wrqm w_await wareq-sz d/s dkB/s drqm/s %drqm d_await dareq-sz f/s f_await aqu-sz %util
|
|
dm-0 0.00 0.06 0.00 0.00 0.11 15.84 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
|
|
dm-1 1.84 199.34 0.00 0.00 0.17 108.58 2.65 21.24 0.00 0.00 3.27 8.02 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.01 0.66
|
|
dm-2 0.00 0.04 0.00 0.00 0.37 66.37 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
|
|
nvme0n1 3.50 246.35 0.13 3.65 0.90 70.48 1.88 21.24 0.80 29.79 2.73 11.31 0.00 0.00 0.00 0.00 0.00 0.00 0.14 1.44 0.01 0.25
|
|
|
|
|
|
avg-cpu: %user %nice %system %iowait %steal %idle
|
|
0.12 0.00 0.25 0.00 0.00 99.62
|
|
|
|
Device r/s rkB/s rrqm/s %rrqm r_await rareq-sz w/s wkB/s wrqm/s %wrqm w_await wareq-sz d/s dkB/s drqm/s %drqm d_await dareq-sz f/s f_await aqu-sz %util
|
|
|
|
|
|
avg-cpu: %user %nice %system %iowait %steal %idle
|
|
1.01 0.00 1.63 0.00 0.00 97.36
|
|
|
|
Device r/s rkB/s rrqm/s %rrqm r_await rareq-sz w/s wkB/s wrqm/s %wrqm w_await wareq-sz d/s dkB/s drqm/s %drqm d_await dareq-sz f/s f_await aqu-sz %util
|
|
nvme0n1 4.00 512.00 0.00 0.00 1.75 128.00 0.00 0.00 5.00 100.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.01 0.80
|
|
|
|
|
|
|
|
--- sar -dp 1 2
|
|
$ sar -dp 1 2
|
|
Linux 7.0.14-6-pve (pfv-tsys3) 07/27/2026 _x86_64_ (8 CPU)
|
|
|
|
09:54:50 PM tps rkB/s wkB/s dkB/s areq-sz aqu-sz await %util DEV
|
|
09:54:51 PM 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 nvme0n1
|
|
09:54:51 PM 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 pve-swap
|
|
09:54:51 PM 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 pve-root
|
|
09:54:51 PM 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 pve-data_tmeta
|
|
|
|
09:54:51 PM tps rkB/s wkB/s dkB/s areq-sz aqu-sz await %util DEV
|
|
09:54:52 PM 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 nvme0n1
|
|
09:54:52 PM 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 pve-swap
|
|
09:54:52 PM 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 pve-root
|
|
09:54:52 PM 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 pve-data_tmeta
|
|
|
|
Average: tps rkB/s wkB/s dkB/s areq-sz aqu-sz await %util DEV
|
|
Average: 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 nvme0n1
|
|
Average: 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 pve-swap
|
|
Average: 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 pve-root
|
|
Average: 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 pve-data_tmeta
|
|
|
|
--- sar -n DEV 1 2
|
|
$ sar -n DEV 1 2
|
|
Linux 7.0.14-6-pve (pfv-tsys3) 07/27/2026 _x86_64_ (8 CPU)
|
|
|
|
09:54:52 PM IFACE rxpck/s txpck/s rxkB/s txkB/s rxcmp/s txcmp/s rxmcst/s %ifutil
|
|
09:54:53 PM lo 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
|
|
09:54:53 PM nic0 16.00 5.00 1.98 0.83 0.00 0.00 5.00 0.00
|
|
09:54:53 PM enx8cae4ccda774 2.00 0.00 0.09 0.00 0.00 0.00 0.00 0.00
|
|
09:54:53 PM tailscale0 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
|
|
09:54:53 PM vmbr0 11.00 2.00 0.95 0.31 0.00 0.00 3.00 0.00
|
|
09:54:53 PM datanet 1.00 0.00 0.04 0.00 0.00 0.00 1.00 0.00
|
|
09:54:53 PM tap313i0 3.00 12.00 0.50 1.30 0.00 0.00 0.00 0.00
|
|
09:54:53 PM fwbr313i0 9.00 0.00 0.67 0.00 0.00 0.00 3.00 0.00
|
|
09:54:53 PM fwpr313p0 3.00 12.00 0.50 1.30 0.00 0.00 0.00 0.00
|
|
09:54:53 PM fwln313i0 12.00 3.00 1.30 0.50 0.00 0.00 0.00 0.00
|
|
|
|
09:54:53 PM IFACE rxpck/s txpck/s rxkB/s txkB/s rxcmp/s txcmp/s rxmcst/s %ifutil
|
|
09:54:54 PM lo 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
|
|
09:54:54 PM nic0 25.00 6.00 3.57 0.51 0.00 0.00 12.00 0.00
|
|
09:54:54 PM enx8cae4ccda774 15.00 20.00 1.13 25.71 0.00 0.00 0.00 0.00
|
|
09:54:54 PM tailscale0 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
|
|
09:54:54 PM vmbr0 19.00 3.00 2.48 0.27 0.00 0.00 8.00 0.00
|
|
09:54:54 PM datanet 15.00 20.00 1.13 25.71 0.00 0.00 0.00 0.00
|
|
09:54:54 PM tap313i0 3.00 18.00 0.17 2.58 0.00 0.00 0.00 0.00
|
|
09:54:54 PM fwbr313i0 16.00 0.00 2.25 0.00 0.00 0.00 8.00 0.00
|
|
09:54:54 PM fwpr313p0 3.00 18.00 0.17 2.58 0.00 0.00 0.00 0.00
|
|
09:54:54 PM fwln313i0 18.00 3.00 2.58 0.17 0.00 0.00 0.00 0.00
|
|
|
|
Average: IFACE rxpck/s txpck/s rxkB/s txkB/s rxcmp/s txcmp/s rxmcst/s %ifutil
|
|
Average: lo 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
|
|
Average: nic0 20.50 5.50 2.78 0.67 0.00 0.00 8.50 0.00
|
|
Average: enx8cae4ccda774 8.50 10.00 0.61 12.86 0.00 0.00 0.00 0.00
|
|
Average: tailscale0 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
|
|
Average: vmbr0 15.00 2.50 1.72 0.29 0.00 0.00 5.50 0.00
|
|
Average: datanet 8.00 10.00 0.59 12.86 0.00 0.00 0.50 0.00
|
|
Average: tap313i0 3.00 15.00 0.33 1.94 0.00 0.00 0.00 0.00
|
|
Average: fwbr313i0 12.50 0.00 1.46 0.00 0.00 0.00 5.50 0.00
|
|
Average: fwpr313p0 3.00 15.00 0.33 1.94 0.00 0.00 0.00 0.00
|
|
Average: fwln313i0 15.00 3.00 1.94 0.33 0.00 0.00 0.00 0.00
|
|
|
|
--- sar -n NFS,NFSD 1 2
|
|
$ sar -n NFS,NFSD 1 2
|
|
Linux 7.0.14-6-pve (pfv-tsys3) 07/27/2026 _x86_64_ (8 CPU)
|
|
|
|
09:54:54 PM call/s retrans/s read/s write/s access/s getatt/s
|
|
09:54:55 PM 0.00 0.00 0.00 0.00 0.00 0.00
|
|
|
|
09:54:54 PM scall/s badcall/s packet/s udp/s tcp/s hit/s miss/s sread/s swrite/s saccess/s sgetatt/s
|
|
09:54:55 PM 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
|
|
|
|
09:54:55 PM call/s retrans/s read/s write/s access/s getatt/s
|
|
09:54:56 PM 37.00 0.00 0.00 34.00 0.00 0.00
|
|
|
|
09:54:55 PM scall/s badcall/s packet/s udp/s tcp/s hit/s miss/s sread/s swrite/s saccess/s sgetatt/s
|
|
09:54:56 PM 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
|
|
|
|
Average: call/s retrans/s read/s write/s access/s getatt/s
|
|
Average: 18.50 0.00 0.00 17.00 0.00 0.00
|
|
|
|
Average: scall/s badcall/s packet/s udp/s tcp/s hit/s miss/s sread/s swrite/s saccess/s sgetatt/s
|
|
Average: 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00 0.00
|
|
|
|
--- sar -n SOCK 1 1
|
|
$ sar -n SOCK 1 1
|
|
Linux 7.0.14-6-pve (pfv-tsys3) 07/27/2026 _x86_64_ (8 CPU)
|
|
|
|
09:54:56 PM totsck tcpsck udpsck rawsck ip-frag tcp-tw
|
|
09:54:57 PM 316 18 4 0 0 127
|
|
Average: 316 18 4 0 0 127
|
|
|
|
--- sar -n TCP,ETCP 1 2
|
|
$ sar -n TCP,ETCP 1 2
|
|
Linux 7.0.14-6-pve (pfv-tsys3) 07/27/2026 _x86_64_ (8 CPU)
|
|
|
|
09:54:57 PM active/s passive/s iseg/s oseg/s
|
|
09:54:58 PM 0.00 0.00 2.00 2.00
|
|
|
|
09:54:57 PM atmptf/s estres/s retrans/s isegerr/s orsts/s
|
|
09:54:58 PM 0.00 0.00 0.00 0.00 0.00
|
|
|
|
09:54:58 PM active/s passive/s iseg/s oseg/s
|
|
09:54:59 PM 0.00 0.00 2.00 1.00
|
|
|
|
09:54:58 PM atmptf/s estres/s retrans/s isegerr/s orsts/s
|
|
09:54:59 PM 0.00 0.00 0.00 0.00 0.00
|
|
|
|
Average: active/s passive/s iseg/s oseg/s
|
|
Average: 0.00 0.00 2.00 1.50
|
|
|
|
Average: atmptf/s estres/s retrans/s isegerr/s orsts/s
|
|
Average: 0.00 0.00 0.00 0.00 0.00
|
|
|
|
--- pidstat -d 1 2 (top disk)
|
|
$ pidstat -d 1 2
|
|
Linux 7.0.14-6-pve (pfv-tsys3) 07/27/2026 _x86_64_ (8 CPU)
|
|
|
|
09:54:59 PM UID PID kB_rd/s kB_wr/s kB_ccwr/s iodelay Command
|
|
09:55:00 PM 0 1248 506.93 0.00 0.00 0 pvestatd
|
|
09:55:00 PM 33 159016 0.00 3.96 0.00 0 pveproxy worker
|
|
|
|
09:55:00 PM UID PID kB_rd/s kB_wr/s kB_ccwr/s iodelay Command
|
|
09:55:01 PM 0 353 0.00 356.00 0.00 0 systemd-journal
|
|
09:55:01 PM 0 714 0.00 0.00 4.00 0 tailscaled
|
|
09:55:01 PM 0 1228 716.00 0.00 0.00 0 cron
|
|
09:55:01 PM 0 12964 0.00 4.00 0.00 0 kvm
|
|
|
|
Average: UID PID kB_rd/s kB_wr/s kB_ccwr/s iodelay Command
|
|
Average: 0 353 0.00 177.11 0.00 0 systemd-journal
|
|
Average: 0 714 0.00 0.00 1.99 0 tailscaled
|
|
Average: 0 1228 356.22 0.00 0.00 0 cron
|
|
Average: 0 1248 254.73 0.00 0.00 0 pvestatd
|
|
Average: 0 12964 0.00 1.99 0.00 0 kvm
|
|
Average: 33 159016 0.00 1.99 0.00 0 pveproxy worker
|
|
|
|
--- pidstat -u 1 2 (top cpu)
|
|
$ pidstat -u 1 2
|
|
Linux 7.0.14-6-pve (pfv-tsys3) 07/27/2026 _x86_64_ (8 CPU)
|
|
|
|
09:55:01 PM UID PID %usr %system %guest %wait %CPU CPU Command
|
|
09:55:02 PM 0 235312 0.00 0.99 0.00 0.00 0.99 0 pidstat
|
|
|
|
09:55:02 PM UID PID %usr %system %guest %wait %CPU CPU Command
|
|
09:55:03 PM 0 12964 1.00 1.00 0.00 0.00 2.00 2 kvm
|
|
|
|
Average: UID PID %usr %system %guest %wait %CPU CPU Command
|
|
Average: 0 12964 0.50 0.50 0.00 0.00 1.00 - kvm
|
|
Average: 0 235312 0.00 0.50 0.00 0.00 0.50 - pidstat
|
|
|
|
--- top (single snapshot, top 30)
|
|
$ top -b -n 1
|
|
top - 21:55:04 up 13:47, 1 user, load average: 0.32, 0.18, 0.07
|
|
Tasks: 240 total, 1 running, 239 sleeping, 0 stopped, 0 zombie
|
|
%Cpu(s): 1.1 us, 1.1 sy, 0.0 ni, 97.8 id, 0.0 wa, 0.0 hi, 0.0 si, 0.0 st
|
|
MiB Mem : 31806.7 total, 28630.6 free, 3055.1 used, 532.4 buff/cache
|
|
MiB Swap: 8192.0 total, 8192.0 free, 0.0 used. 28751.6 avail Mem
|
|
|
|
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
|
|
1 root 20 0 24844 15444 10668 S 0.0 0.0 0:06.99 systemd
|
|
2 root 20 0 0 0 0 S 0.0 0.0 0:00.00 kthreadd
|
|
3 root 20 0 0 0 0 S 0.0 0.0 0:00.00 pool_wo+
|
|
4 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
5 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
6 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
7 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
8 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
10 root 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.09 ksoftir+
|
|
15 root 20 0 0 0 0 I 0.0 0.0 0:12.83 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.09 migrati+
|
|
19 root 20 0 0 0 0 S 0.0 0.0 0:00.00 kprobe-+
|
|
20 root -51 0 0 0 0 S 0.0 0.0 0:00.00 idle_in+
|
|
21 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/0
|
|
22 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/1
|
|
23 root -51 0 0 0 0 S 0.0 0.0 0:00.00 idle_in+
|
|
24 root rt 0 0 0 0 S 0.0 0.0 0:00.07 migrati+
|
|
25 root 20 0 0 0 0 S 0.0 0.0 0:00.05 ksoftir+
|
|
27 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
28 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/2
|
|
29 root -51 0 0 0 0 S 0.0 0.0 0:00.00 idle_in+
|
|
30 root rt 0 0 0 0 S 0.0 0.0 0:00.08 migrati+
|
|
31 root 20 0 0 0 0 S 0.0 0.0 0:00.04 ksoftir+
|
|
33 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
34 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/3
|
|
35 root -51 0 0 0 0 S 0.0 0.0 0:00.00 idle_in+
|
|
36 root rt 0 0 0 0 S 0.0 0.0 0:00.09 migrati+
|
|
37 root 20 0 0 0 0 S 0.0 0.0 0:00.03 ksoftir+
|
|
39 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
40 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/4
|
|
41 root -51 0 0 0 0 S 0.0 0.0 0:00.00 idle_in+
|
|
42 root rt 0 0 0 0 S 0.0 0.0 0:00.09 migrati+
|
|
43 root 20 0 0 0 0 S 0.0 0.0 0:00.24 ksoftir+
|
|
45 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
46 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/5
|
|
47 root -51 0 0 0 0 S 0.0 0.0 0:00.00 idle_in+
|
|
48 root rt 0 0 0 0 S 0.0 0.0 0:00.09 migrati+
|
|
49 root 20 0 0 0 0 S 0.0 0.0 0:00.07 ksoftir+
|
|
51 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
52 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/6
|
|
53 root -51 0 0 0 0 S 0.0 0.0 0:00.00 idle_in+
|
|
54 root rt 0 0 0 0 S 0.0 0.0 0:00.09 migrati+
|
|
55 root 20 0 0 0 0 S 0.0 0.0 0:00.45 ksoftir+
|
|
57 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
58 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/7
|
|
59 root -51 0 0 0 0 S 0.0 0.0 0:00.00 idle_in+
|
|
60 root rt 0 0 0 0 S 0.0 0.0 0:00.09 migrati+
|
|
61 root 20 0 0 0 0 S 0.0 0.0 0:00.03 ksoftir+
|
|
63 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
64 root 20 0 0 0 0 S 0.0 0.0 0:00.00 kdevtmp+
|
|
65 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
66 root 20 0 0 0 0 I 0.0 0.0 0:00.00 rcu_tas+
|
|
67 root 20 0 0 0 0 I 0.0 0.0 0:00.00 rcu_tas+
|
|
68 root 20 0 0 0 0 S 0.0 0.0 0:00.00 kauditd
|
|
69 root 20 0 0 0 0 S 0.0 0.0 0:00.02 khungta+
|
|
70 root 20 0 0 0 0 S 0.0 0.0 0:00.00 oom_rea+
|
|
71 root 20 0 0 0 0 I 0.0 0.0 0:03.15 kworker+
|
|
72 root 20 0 0 0 0 I 0.0 0.0 0:02.81 kworker+
|
|
73 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
74 root 20 0 0 0 0 S 0.0 0.0 0:01.19 kcompac+
|
|
75 root 25 5 0 0 0 S 0.0 0.0 0:00.00 ksmd
|
|
76 root 39 19 0 0 0 S 0.0 0.0 0:00.19 khugepa+
|
|
77 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
78 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
79 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
80 root -51 0 0 0 0 S 0.0 0.0 0:03.13 irq/9-a+
|
|
83 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
85 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
86 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
87 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
88 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
89 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
90 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
92 root -51 0 0 0 0 S 0.0 0.0 0:00.00 watchdo+
|
|
93 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
94 root 20 0 0 0 0 S 0.0 0.0 0:00.00 kswapd0
|
|
95 root 20 0 0 0 0 S 0.0 0.0 0:00.00 ecryptf+
|
|
97 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
98 root -51 0 0 0 0 S 0.0 0.0 0:00.00 irq/121+
|
|
99 root -51 0 0 0 0 S 0.0 0.0 0:00.00 irq/122+
|
|
100 root -51 0 0 0 0 S 0.0 0.0 0:00.00 irq/123+
|
|
101 root -51 0 0 0 0 S 0.0 0.0 0:00.00 irq/123+
|
|
102 root -51 0 0 0 0 S 0.0 0.0 0:00.00 irq/124+
|
|
103 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
104 root 20 0 0 0 0 I 0.0 0.0 0:03.02 kworker+
|
|
106 root 20 0 0 0 0 S 0.0 0.0 0:00.65 hwrng
|
|
107 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
108 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
109 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
113 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
124 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
191 root 20 0 0 0 0 S 0.0 0.0 0:00.00 scsi_eh+
|
|
192 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
193 root 20 0 0 0 0 S 0.0 0.0 0:00.00 scsi_eh+
|
|
194 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
195 root 20 0 0 0 0 S 0.0 0.0 0:00.00 scsi_eh+
|
|
196 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
197 root 20 0 0 0 0 S 0.0 0.0 0:00.00 scsi_eh+
|
|
198 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
199 root 20 0 0 0 0 S 0.0 0.0 0:00.00 scsi_eh+
|
|
200 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
201 root 20 0 0 0 0 I 0.0 0.0 0:03.00 kworker+
|
|
202 root 20 0 0 0 0 I 0.0 0.0 0:02.86 kworker+
|
|
212 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 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+
|
|
215 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
222 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
223 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
231 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
235 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
236 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
258 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
259 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
260 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
261 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
297 root 0 -20 0 0 0 I 0.0 0.0 0:00.03 kworker+
|
|
300 root 20 0 0 0 0 S 0.0 0.0 0:00.76 jbd2/dm+
|
|
301 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
332 root -2 0 0 0 0 S 0.0 0.0 0:00.00 psimon
|
|
345 root 0 -20 0 0 0 I 0.0 0.0 0:00.03 kworker+
|
|
353 root 20 0 51208 32164 30696 S 0.0 0.1 0:02.02 systemd+
|
|
366 root 20 0 77296 22300 9124 S 0.0 0.1 0:02.13 dmeventd
|
|
369 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
377 root 20 0 37400 10904 7968 S 0.0 0.0 0:00.36 systemd+
|
|
378 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 spl_sys+
|
|
379 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 spl_del+
|
|
380 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 spl_dyn+
|
|
381 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 spl_kme+
|
|
402 root 0 -20 0 0 0 I 0.0 0.0 0:00.02 kworker+
|
|
404 root -2 0 0 0 0 S 0.0 0.0 0:00.00 psimon
|
|
413 root 0 -20 0 0 0 I 0.0 0.0 0:00.04 kworker+
|
|
416 root 0 -20 0 0 0 I 0.0 0.0 0:00.05 kworker+
|
|
477 root -51 0 0 0 0 S 0.0 0.0 0:00.00 irq/31-+
|
|
481 root -51 0 0 0 0 S 0.0 0.0 0:00.00 irq/144+
|
|
484 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 zvol_tq+
|
|
485 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 zvol_tq+
|
|
486 root 20 0 0 0 0 S 0.0 0.0 0:00.00 arc_pru+
|
|
487 root 20 0 0 0 0 S 0.0 0.0 0:00.00 arc_evi+
|
|
488 root 20 0 0 0 0 S 0.0 0.0 0:00.00 arc_evi+
|
|
489 root 20 0 0 0 0 S 0.0 0.0 0:00.00 arc_evi+
|
|
490 root 20 0 0 0 0 S 0.0 0.0 0:00.00 arc_flu+
|
|
491 root 20 0 0 0 0 S 0.0 0.0 0:00.56 arc_evi+
|
|
492 root 39 19 0 0 0 S 0.0 0.0 0:00.62 arc_reap
|
|
493 root 20 0 0 0 0 S 0.0 0.0 0:00.00 dbu_evi+
|
|
494 root 39 19 0 0 0 S 0.0 0.0 0:00.54 dbuf_ev+
|
|
495 root 39 19 0 0 0 S 0.0 0.0 0:00.00 z_vdev_+
|
|
519 root 20 0 0 0 0 S 0.0 0.0 0:00.61 l2arc_f+
|
|
573 root 20 0 79620 2320 2112 S 0.0 0.0 0:05.37 pvefw-l+
|
|
621 _rpc 20 0 6568 3840 3428 S 0.0 0.0 0:00.05 rpcbind
|
|
688 _chrony 20 0 19940 5580 4812 S 0.0 0.0 0:00.12 chronyd
|
|
689 message+ 20 0 8476 5288 4364 S 0.0 0.0 0:06.08 dbus-da+
|
|
695 root 20 0 276136 3436 3148 S 0.0 0.0 0:00.00 pve-lxc+
|
|
700 root 20 0 478580 7968 6876 S 0.0 0.0 0:06.25 rrdcach+
|
|
701 root 20 0 9856 5896 4752 S 0.0 0.0 0:00.04 smartd
|
|
707 root 20 0 5748 1972 1800 S 0.0 0.0 0:00.00 qmeventd
|
|
708 root 20 0 19096 9296 7948 S 0.0 0.0 0:02.70 systemd+
|
|
714 root 20 0 1421776 107144 25996 S 0.0 0.3 2:25.85 tailsca+
|
|
727 root 20 0 104420 6388 5240 S 0.0 0.0 0:00.00 zed
|
|
730 root 20 0 7216 2236 1888 S 0.0 0.0 0:00.72 ksmtuned
|
|
740 root 20 0 159036 2540 2176 S 0.0 0.0 0:00.00 lxcfs
|
|
790 _chrony 20 0 11612 2248 1616 S 0.0 0.0 0:00.00 chronyd
|
|
805 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
856 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
857 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
870 root 20 0 5264 1640 1416 S 0.0 0.0 0:00.00 blkmapd
|
|
920 root 0 -20 0 0 0 I 0.0 0.0 0:00.04 kworker+
|
|
923 root 20 0 5984 3376 2532 S 0.0 0.0 0:00.30 dhclient
|
|
1034 beszel 20 0 2231316 16788 10036 S 0.0 0.1 0:12.85 beszel-+
|
|
1035 _lldpd 20 0 21376 6664 5496 S 0.0 0.0 0:00.05 lldpd
|
|
1036 root 20 0 5520 2732 2480 S 0.0 0.0 0:00.00 lxc-mon+
|
|
1046 root 20 0 266312 32432 15232 S 0.0 0.1 0:07.28 tuned
|
|
1055 _lldpd 20 0 21376 2824 1720 S 0.0 0.0 0:00.65 lldpd
|
|
1056 root 20 0 461300 54116 38908 S 0.0 0.2 0:23.63 pmxcfs
|
|
1061 root 20 0 11776 7740 6508 S 0.0 0.0 0:00.11 sshd
|
|
1088 root 20 0 8168 2776 2540 S 0.0 0.0 0:00.01 agetty
|
|
1130 polkitd 20 0 306704 8228 7136 S 0.0 0.0 0:01.12 polkitd
|
|
1220 root 20 0 43984 4724 4088 S 0.0 0.0 0:00.14 master
|
|
1222 postfix 20 0 44524 7660 6964 S 0.0 0.0 0:00.02 qmgr
|
|
1228 root 20 0 6864 2872 2620 S 0.0 0.0 0:00.09 cron
|
|
1229 root 20 0 13584 6188 5292 S 0.0 0.0 0:03.31 proxmox+
|
|
1248 root 20 0 191656 123400 13700 S 0.0 0.4 6:31.49 pvestatd
|
|
1250 root 20 0 186432 112508 7020 S 0.0 0.3 2:17.11 pve-fir+
|
|
1273 root 20 0 230028 153496 3280 S 0.0 0.5 0:00.54 pvedaem+
|
|
1282 www-data 20 0 231392 154900 3392 S 0.0 0.5 0:00.57 pveproxy
|
|
1290 www-data 20 0 99316 55452 3388 S 0.0 0.2 0:00.47 spicepr+
|
|
1291 www-data 20 0 99448 56112 3892 S 0.0 0.2 0:01.06 spicepr+
|
|
1307 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
1432 root 20 0 209860 126456 3388 S 0.0 0.4 0:03.83 pvesche+
|
|
1531 root 0 -20 0 0 0 I 0.0 0.0 0:00.04 kworker+
|
|
1677 root 0 -20 0 0 0 I 0.0 0.0 0:00.04 kworker+
|
|
2144 root 20 0 0 0 0 I 0.0 0.0 0:00.00 NFSv4 c+
|
|
2678 root 20 0 0 0 0 I 0.0 0.0 0:02.90 kworker+
|
|
2679 root 20 0 0 0 0 I 0.0 0.0 0:02.97 kworker+
|
|
12964 root 20 0 28.5g 1.3g 14084 S 0.0 4.2 12:44.42 kvm
|
|
13037 root 20 0 0 0 0 S 0.0 0.0 0:00.00 kvm-pit+
|
|
13109 root 20 0 0 0 0 I 0.0 0.0 0:02.07 kworker+
|
|
35686 root 20 0 0 0 0 I 0.0 0.0 0:01.64 kworker+
|
|
64951 root 20 0 0 0 0 I 0.0 0.0 0:02.17 kworker+
|
|
75967 root 20 0 0 0 0 I 0.0 0.0 0:01.22 kworker+
|
|
96281 root 20 0 0 0 0 I 0.0 0.0 0:03.47 kworker+
|
|
107161 root 20 0 0 0 0 I 0.0 0.0 0:01.63 kworker+
|
|
128647 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
152163 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
158416 www-data 20 0 247396 174200 13688 S 0.0 0.5 0:06.65 pveprox+
|
|
158724 root 20 0 238996 163760 11732 S 0.0 0.5 0:03.44 pvedaem+
|
|
159016 www-data 20 0 247580 174244 13600 S 0.0 0.5 0:06.59 pveprox+
|
|
159182 root 20 0 238872 163756 11732 S 0.0 0.5 0:03.18 pvedaem+
|
|
159427 root 20 0 238888 163512 11532 S 0.0 0.5 0:02.86 pvedaem+
|
|
160849 www-data 20 0 280652 212232 19020 S 0.0 0.7 0:06.41 pveprox+
|
|
169824 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
172758 root 20 0 0 0 0 I 0.0 0.0 0:00.52 kworker+
|
|
202188 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
205148 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
208080 root 20 0 0 0 0 I 0.0 0.0 0:00.24 kworker+
|
|
213970 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
219840 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
222780 root 20 0 0 0 0 I 0.0 0.0 0:00.09 kworker+
|
|
225181 postfix 20 0 44472 7552 6872 S 0.0 0.0 0:00.00 pickup
|
|
225733 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
228669 root 20 0 0 0 0 I 0.0 0.0 0:00.04 kworker+
|
|
231624 root 20 0 0 0 0 I 0.0 0.0 0:00.03 kworker+
|
|
231753 root 20 0 22220 12596 10216 S 0.0 0.0 0:00.26 systemd
|
|
231755 root 20 0 24404 3784 1988 S 0.0 0.0 0:00.00 (sd-pam)
|
|
231756 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
231761 root -2 0 0 0 0 S 0.0 0.0 0:00.00 psimon
|
|
231792 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
231802 root 20 0 19652 11768 10000 S 0.0 0.0 0:00.01 sshd-se+
|
|
231804 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
231810 root 20 0 19908 7448 5404 S 0.0 0.0 0:00.00 sshd-se+
|
|
231811 root 20 0 7316 3832 3300 S 0.0 0.0 0:00.36 bash
|
|
234101 root 20 0 0 0 0 I 0.0 0.0 0:00.01 kworker+
|
|
235216 root 20 0 5580 2152 2036 S 0.0 0.0 0:00.00 sleep
|
|
235313 root 20 0 7316 2488 1956 S 0.0 0.0 0:00.00 bash
|
|
235314 root 20 0 5588 2048 1936 S 0.0 0.0 0:00.00 head
|
|
235315 root 20 0 10424 5404 3316 R 0.0 0.0 0:00.00 top
|
|
|
|
--- 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
|
|
21:55:05 0 0 0 0 0 0 0 1.9K 994M 26.9G
|
|
21:55:06 0 0 0 0 0 0 0 1.9K 994M 26.9G
|
|
|
|
--- /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:
|
|
enx8cae4ccda774:
|
|
tailscale0:
|
|
vmbr0:
|
|
datanet:
|
|
tap313i0:
|
|
fwbr313i0:
|
|
fwpr313p0:
|
|
fwln313i0:
|
|
--- t0 ---
|
|
Inter-| Receive | Transmit
|
|
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
|
|
lo: 19381267 171529 0 0 0 0 0 0 19381267 171529 0 0 0 0 0 0
|
|
nic0: 454125223 2475129 0 1657 0 0 0 1162623 180518940 670675 0 0 0 0 0 0
|
|
enx8cae4ccda774: 418344323 1218342 0 1655 0 0 0 0 1450134089 1697365 0 0 0 0 0 0
|
|
tailscale0: 35041687 138028 0 0 0 0 0 0 64406413 148677 0 0 0 0 0 0
|
|
vmbr0: 249710855 1834887 0 0 0 0 0 957113 113957823 328916 0 0 0 0 0 0
|
|
datanet: 417959545 1215787 0 5 0 0 0 41876 1449712064 1695710 0 0 0 0 0 0
|
|
tap313i0: 58654057 290370 0 0 0 0 0 0 261269956 1715445 0 0 0 0 0 0
|
|
fwbr313i0: 124213346 1339772 0 1941 0 0 0 897593 0 0 0 0 0 0 0 0
|
|
fwpr313p0: 59047975 291952 0 1582 0 0 0 0 261271538 1715445 0 0 0 0 0 0
|
|
fwln313i0: 261271538 1715445 0 1582 0 0 0 0 59047975 291952 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: 19381267 171529 0 0 0 0 0 0 19381267 171529 0 0 0 0 0 0
|
|
nic0: 454136798 2475167 0 1657 0 0 0 1162630 180524875 670693 0 0 0 0 0 0
|
|
enx8cae4ccda774: 418355621 1218426 0 1655 0 0 0 0 1450340465 1697537 0 0 0 0 0 0
|
|
tailscale0: 35041687 138028 0 0 0 0 0 0 64406413 148677 0 0 0 0 0 0
|
|
vmbr0: 249721746 1834925 0 0 0 0 0 957120 113963668 328934 0 0 0 0 0 0
|
|
datanet: 417970843 1215871 0 5 0 0 0 41877 1449918440 1695882 0 0 0 0 0 0
|
|
tap313i0: 58654057 290370 0 0 0 0 0 0 261271917 1715455 0 0 0 0 0 0
|
|
fwbr313i0: 124215167 1339782 0 1941 0 0 0 897600 0 0 0 0 0 0 0 0
|
|
fwpr313p0: 59047975 291952 0 1582 0 0 0 0 261273499 1715455 0 0 0 0 0 0
|
|
fwln313i0: 261273499 1715455 0 1582 0 0 0 0 59047975 291952 0 0 0 0 0 0
|
|
|
|
###############################################################################
|
|
# 27. DNS / NTP / TIME
|
|
###############################################################################
|
|
|
|
--- /etc/resolv.conf
|
|
--- /etc/resolv.conf ---
|
|
domain knel.net
|
|
search knel.net
|
|
nameserver 100.100.100.100
|
|
|
|
--- /etc/hosts
|
|
--- /etc/hosts ---
|
|
127.0.0.1 localhost.localdomain localhost
|
|
192.168.100.2 pfv-tsys3.knel.net pfv-tsys3
|
|
|
|
# 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: Mon 2026-07-27 21:55:07 CDT
|
|
Universal time: Tue 2026-07-28 02:55:07 UTC
|
|
RTC time: Tue 2026-07-28 02:55:07
|
|
Time zone: America/Chicago (CDT, -0500)
|
|
System clock synchronized: yes
|
|
NTP service: active
|
|
RTC in local TZ: no
|
|
|
|
--- chronyc tracking
|
|
$ chronyc tracking
|
|
Reference ID : 2D4F0D23 (ns1.smatwebdesign.com)
|
|
Stratum : 3
|
|
Ref time (UTC) : Tue Jul 28 02:53:56 2026
|
|
System time : 0.001008389 seconds fast of NTP time
|
|
Last offset : +0.000699616 seconds
|
|
RMS offset : 0.001266414 seconds
|
|
Frequency : 5.855 ppm slow
|
|
Residual freq : +0.001 ppm
|
|
Skew : 0.014 ppm
|
|
Root delay : 0.045951311 seconds
|
|
Root dispersion : 0.001154992 seconds
|
|
Update interval : 3107.0 seconds
|
|
Leap status : Normal
|
|
|
|
--- chronyc sources
|
|
$ chronyc sources
|
|
MS Name/IP address Stratum Poll Reach LastRx Last sample
|
|
===============================================================================
|
|
^+ ntp.sfo.icanbwell.com 2 10 377 675 -5425us[-4729us] +/- 37ms
|
|
^* ns1.smatwebdesign.com 2 10 377 70 -4053us[-3353us] +/- 25ms
|
|
^+ ntp.maxhost.io 2 10 377 782 +15ms[ +16ms] +/- 54ms
|
|
^- ip216-250-115-174.pbiaas> 2 10 337 390 +18ms[ +19ms] +/- 144ms
|
|
|
|
--- 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 Mon Jul 27 21:55:08 2026
|
|
*mangle
|
|
:PREROUTING ACCEPT [2826643:707443342]
|
|
:INPUT ACCEPT [1889127:593816552]
|
|
:FORWARD ACCEPT [0:0]
|
|
:OUTPUT ACCEPT [1802112:1591805177]
|
|
:POSTROUTING ACCEPT [1802112:1591805177]
|
|
-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 Mon Jul 27 21:55:08 2026
|
|
# Generated by iptables-save v1.8.11 on Mon Jul 27 21:55:08 2026
|
|
*raw
|
|
:PREROUTING ACCEPT [2826819:707480834]
|
|
:OUTPUT ACCEPT [1802174:1591809387]
|
|
COMMIT
|
|
# Completed on Mon Jul 27 21:55:08 2026
|
|
# Generated by iptables-save v1.8.11 on Mon Jul 27 21:55:08 2026
|
|
*nat
|
|
:PREROUTING ACCEPT [943914:116433324]
|
|
:INPUT ACCEPT [42566:10755602]
|
|
:OUTPUT ACCEPT [102775:6781673]
|
|
:POSTROUTING ACCEPT [102775:6781673]
|
|
:ts-postrouting - [0:0]
|
|
-A POSTROUTING -j ts-postrouting
|
|
-A ts-postrouting -m mark --mark 0x40000/0xff0000 -j MASQUERADE
|
|
COMMIT
|
|
# Completed on Mon Jul 27 21:55:08 2026
|
|
# Generated by iptables-save v1.8.11 on Mon Jul 27 21:55:08 2026
|
|
*filter
|
|
:INPUT ACCEPT [1547665:504485539]
|
|
:FORWARD ACCEPT [0:0]
|
|
:OUTPUT ACCEPT [1802228:1591817088]
|
|
: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.66.186.10/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 Mon Jul 27 21:55:08 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 (688)
|
|
/usr/sbin/chronyd (790)
|
|
/usr/sbin/dhclient (923) /{,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
|
|
12964 root 1359380 29892088 1.6 4.1 kvm
|
|
160849 www-data 212232 280652 0.0 0.6 pveproxy worker
|
|
159016 www-data 174244 247580 0.0 0.5 pveproxy worker
|
|
158416 www-data 174200 247396 0.0 0.5 pveproxy worker
|
|
158724 root 163760 238996 0.0 0.5 pvedaemon worke
|
|
159182 root 163756 238872 0.0 0.5 pvedaemon worke
|
|
159427 root 163512 238888 0.0 0.5 pvedaemon worke
|
|
1282 www-data 154900 231392 0.0 0.4 pveproxy
|
|
1273 root 153496 230028 0.0 0.4 pvedaemon
|
|
1432 root 126456 209860 0.0 0.3 pvescheduler
|
|
|
|
--- top 10 CPU hogs
|
|
$ ps -eo pid,user,pcpu,pmem,rss,comm --sort=-pcpu | head -n 11
|
|
PID USER %CPU %MEM RSS COMMAND
|
|
235349 root 5.0 0.0 7932 systemd-timedat
|
|
12964 root 1.6 4.1 1359380 kvm
|
|
1248 root 0.7 0.3 123400 pvestatd
|
|
714 root 0.2 0.3 107144 tailscaled
|
|
1250 root 0.2 0.3 112508 pve-firewall
|
|
231811 root 0.1 0.0 3832 bash
|
|
231753 root 0.0 0.0 12596 systemd
|
|
1056 root 0.0 0.1 54116 pmxcfs
|
|
158416 www-data 0.0 0.5 174200 pveproxy worker
|
|
159016 www-data 0.0 0.5 174244 pveproxy worker
|
|
|
|
--- 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=174 systemd
|
|
12964 fd=140 kvm
|
|
1220 fd=94 master
|
|
689 fd=54 dbus-daemon
|
|
|
|
--- 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 128M Mar 30 05:39 /var/log/journal/289f28e06a34426b800c8a3e665f3843/system@fd7c48f99f404a0d8fe3a1f48380d645-000000000017b01a-00064e1f72436721.journal
|
|
-rw-r-----+ 1 root systemd-journal 128M Mar 28 20:13 /var/log/journal/289f28e06a34426b800c8a3e665f3843/system@fd7c48f99f404a0d8fe3a1f48380d645-0000000000127e8a-00064e036ad4670e.journal
|
|
-rw-r-----+ 1 root systemd-journal 128M Mar 27 10:47 /var/log/journal/289f28e06a34426b800c8a3e665f3843/system@fd7c48f99f404a0d8fe3a1f48380d645-00000000000d4c98-00064de75196aec3.journal
|
|
-rw-r-----+ 1 root systemd-journal 128M Mar 26 01:16 /var/log/journal/289f28e06a34426b800c8a3e665f3843/system@fd7c48f99f404a0d8fe3a1f48380d645-0000000000087da6-00064d3dd61a4af3.journal
|
|
-rw-r-----+ 1 root systemd-journal 64M Mar 17 15:04 /var/log/journal/289f28e06a34426b800c8a3e665f3843/system@fd7c48f99f404a0d8fe3a1f48380d645-000000000006ea65-00064c2914c2a3f9.journal
|
|
-rw-r-----+ 1 root systemd-journal 56M Mar 3 19:53 /var/log/journal/289f28e06a34426b800c8a3e665f3843/system@fd7c48f99f404a0d8fe3a1f48380d645-000000000005e23c-00064b6a0170420a.journal
|
|
-rw-r-----+ 1 root systemd-journal 48M May 6 21:32 /var/log/journal/289f28e06a34426b800c8a3e665f3843/system@fd7c48f99f404a0d8fe3a1f48380d645-00000000001dde2f-00064eccc1ac4a57.journal
|
|
-rw-r-----+ 1 root systemd-journal 48M Feb 22 07:55 /var/log/journal/289f28e06a34426b800c8a3e665f3843/system@fd7c48f99f404a0d8fe3a1f48380d645-000000000004ceb2-00064b5a94994f38.journal
|
|
-rw-r-----+ 1 root systemd-journal 48M Feb 21 13:31 /var/log/journal/289f28e06a34426b800c8a3e665f3843/system@fd7c48f99f404a0d8fe3a1f48380d645-000000000003bb25-00064b4b28aff7a6.journal
|
|
-rw-r-----+ 1 root systemd-journal 48M Feb 20 19:07 /var/log/journal/289f28e06a34426b800c8a3e665f3843/system@fd7c48f99f404a0d8fe3a1f48380d645-000000000002a7ac-00064b3bb99d678f.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
|
|
[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)"
|
|
datanet : mtu=1500
|
|
enx8cae4ccda774 : mtu=1500
|
|
fwbr313i0 : mtu=1500
|
|
fwln313i0 : mtu=1500
|
|
fwpr313p0 : mtu=1500
|
|
nic0 : mtu=1500
|
|
tap313i0 : 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=0 EPP=performance (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=1920 bytes ARC max=3331325952 bytes RAM total=33351712768 bytes
|
|
ARC max is 9% 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 313: ide-disk
|
|
VM 3000: ide-disk
|
|
[exit=1]
|
|
|
|
|
|
--- [J] NFS client mount option red flags
|
|
$ if ! command -v nfsstat >/dev/null 2>&1; then
|
|
echo " nfsstat not available"
|
|
else
|
|
nfsstat -m 2>/dev/null | awk '
|
|
/^.*:/ {mp=$0; next}
|
|
/Flags:/ {
|
|
gsub(/Flags:|,/,"",$0)
|
|
line=$0
|
|
if (line !~ /noatime/) print " "mp" : missing noatime"
|
|
if (line !~ /nconnect/) print " "mp" : missing nconnect (kernel >=5.3)"
|
|
if (line !~ /rsize=1048576/) print " "mp" : rsize<1M"
|
|
if (line !~ /wsize=1048576/) print " "mp" : wsize<1M"
|
|
if (line ~ /sync/) print " "mp" : sync mount (slow)"
|
|
}
|
|
'
|
|
fi
|
|
|
|
|
|
--- [K] Softnet / NIC drops (non-zero)
|
|
$ awk 'NR<=32 && ($2+0 > 0 || $4+0 > 0) {printf " cpu%d: dropped=%d time_squeezed=%d\n", NR-1, $2, $4}' /proc/net/softnet_stat
|
|
echo " (also check ethtool -S sections above for rx_dropped/rx_missed_errors)"
|
|
(also check ethtool -S sections above for rx_dropped/rx_missed_errors)
|
|
|
|
|
|
--- [L] Failed systemd services
|
|
$ failed=$(systemctl --failed --no-legend 2>/dev/null | head -n 10)
|
|
if [ -n "$failed" ]; then
|
|
echo "$failed" | sed 's/^/ /'
|
|
else
|
|
echo " no failed services"
|
|
fi
|
|
no failed services
|
|
|
|
|
|
--- [M] Filesystem usage > 80%
|
|
$ df -h 2>/dev/null | awk 'NR>1 && $5+0 > 80 {print " "$0}'
|
|
|
|
|
|
--- [N] SMART / NVMe health warnings
|
|
$ if command -v nvme >/dev/null 2>&1; then
|
|
for n in /dev/nvme[0-9]*; do
|
|
[ -b "$n" ] || continue
|
|
crit=$(nvme smart-log "$n" 2>/dev/null | grep -iE 'critical_warning|media_and_data_integrity|available_spare' | head -n 5)
|
|
[ -n "$crit" ] && echo " $n: $crit" | tr '\n' ' '
|
|
done
|
|
fi
|
|
if command -v smartctl >/dev/null 2>&1; then
|
|
for d in $(ls /sys/block/ 2>/dev/null | grep -E '^sd'); do
|
|
dev="/dev/$d"
|
|
[ -b "$dev" ] || continue
|
|
chk=$(smartctl -H "$dev" 2>/dev/null | grep -iE 'result|health|passed|failed')
|
|
echo "$chk" | grep -qi fail && echo " $dev: $chk"
|
|
done
|
|
fi
|
|
echo " (see section 20 for full smartctl/nvme output)"
|
|
/dev/nvme0n1: critical_warning : 0 available_spare : 100% available_spare_threshold : 50% /dev/nvme0n1p1: critical_warning : 0 available_spare : 100% available_spare_threshold : 50% /dev/nvme0n1p2: critical_warning : 0 available_spare : 100% available_spare_threshold : 50% /dev/nvme0n1p3: critical_warning : 0 available_spare : 100% available_spare_threshold : 50% (see section 20 for full smartctl/nvme output)
|
|
|
|
###############################################################################
|
|
# Collection complete: pfv-tsys3
|
|
# Output: /root/pfv-tsys3.log
|
|
# Size: 749925 bytes / 11653 lines
|
|
# Elapsed: 277 seconds
|
|
###############################################################################
|