Performance optimization engagement for a 7-host Proxmox R&D cluster.
Captures the accumulated work across host tuning, network analysis,
fleet assessment, and kubernetes architecture planning.
Contents:
- Host-side tunings (scripts/): CPU governor, swappiness, BBR, NFS
nconnect, tuned profiles -- complete on 5 of 7 hosts
- Validation + benchmarking scripts: iperf matrix, bond/NFS fixes
- Collected host data (returned-logs/): check.sh output from all 7
hosts + iperf results, including newly-validated pfv-tsys9
- AGENTS.md: operating context for AI agents
- PROJECT.md: board-ready fleet assessment with VM placement and
storage redundancy analysis (40 VMs across 7 hosts)
- K8S.md: kubernetes architecture deep-dive covering cnode/wnode
distribution, StorageClass design, and ETL/HPC workload planning
💘 Generated with Crush
Assisted-by: Crush:glm-5.2
17560 lines
1023 KiB
Plaintext
17560 lines
1023 KiB
Plaintext
###############################################################################
|
|
# Proxmox VE host performance assessment (READ-ONLY)
|
|
# Host: pfv-tsys5 (pfv-tsys5.knel.net)
|
|
# FQDN: pfv-tsys5.knel.net
|
|
# All IPs: 100.87.135.12 192.168.0.20 10.100.100.5 fd7a:115c:a1e0::da3b:870c
|
|
# Collected: 2026-07-26T21:25:59Z (UTC)
|
|
# Kernel: 6.17.2-1-pve
|
|
# Machine: x86_64 GNU/Linux
|
|
# Caller: root (uid=0)
|
|
# Script: check.sh - strictly READ-ONLY
|
|
###############################################################################
|
|
|
|
###############################################################################
|
|
# 1. TOOL AVAILABILITY MATRIX
|
|
###############################################################################
|
|
|
|
--- command presence + path + version
|
|
$ # Each line: name | present? | path | version
|
|
printf '%-22s %-8s %-30s %s\n' "TOOL" "PRESENT" "PATH" "VERSION/NOTE"
|
|
printf '%-22s %-8s %-30s %s\n' "----" "-------" "----" "------------"
|
|
for t in \
|
|
pveversion pvecm qm pct pvesm pvesh pveperf proxmox-backup-client \
|
|
ip ss ethtool bridge brctl nmcli \
|
|
tcpdump mtr nstat netstat nicstat ifstat \
|
|
dmidecode lscpu lshw hwinfo inxi lspci lsusb numactl numastat \
|
|
cpupower turbostat x86_energy_perf_policy rdmsr \
|
|
tuned-adm irqbalance \
|
|
zpool zfs zdb arcstat arc_summary \
|
|
lsblk blkid blockdev findmnt smartctl nvme hdparm \
|
|
storcli storcli64 MegaCli MegaCli64 tw-cli arcconf \
|
|
sas2ircu sas3ircu hpssacli ssacli perccli \
|
|
multipath pvs vgs lvs lvdisplay \
|
|
xfs_info dumpe2fs btrfs \
|
|
fio iperf iperf3 sysbench bonnie++ iozone \
|
|
iostat mpstat pidstat sar vmstat \
|
|
top htop atop glances dstat nethogs iftop iotop smem pmap slabtop \
|
|
perf strace lsof fatrace \
|
|
dig host nslookup \
|
|
chronyc ntpq timedatectl \
|
|
nft iptables iptables-save ipset ufw \
|
|
jq bc awk smartctl nvme \
|
|
apt dpkg
|
|
do
|
|
p="$(command -v "$t" 2>/dev/null)"
|
|
if [ -n "$p" ]; then
|
|
v=""
|
|
case "$t" in
|
|
zpool|zfs) v="$(timeout 3 "$t" version 2>/dev/null | head -n 2 | tr '\n' ' ')" ;;
|
|
iperf3|fio|sysbench|smartctl|nvme|tuned-adm|ethtool|cpupower)
|
|
v="$(timeout 3 "$t" --version 2>&1 | head -n 1)" ;;
|
|
pveversion) v="$(timeout 3 "$t" 2>/dev/null)" ;;
|
|
storcli64|storcli|MegaCli64|MegaCli|arcconf|sas2ircu|sas3ircu|ssacli|hpssacli)
|
|
v="(storage HBA CLI - present)" ;;
|
|
esac
|
|
printf '%-22s %-8s %-30s %s\n' "$t" "yes" "$p" "$v"
|
|
else
|
|
printf '%-22s %-8s %-30s %s\n' "$t" "no" "-" "-"
|
|
fi
|
|
done
|
|
TOOL PRESENT PATH VERSION/NOTE
|
|
---- ------- ---- ------------
|
|
pveversion yes /usr/bin/pveversion pve-manager/9.2.5/20242970da7fbcef (running kernel: 6.17.2-1-pve)
|
|
pvecm yes /usr/bin/pvecm
|
|
qm yes /usr/sbin/qm
|
|
pct yes /usr/sbin/pct
|
|
pvesm yes /usr/sbin/pvesm
|
|
pvesh yes /usr/bin/pvesh
|
|
pveperf yes /usr/bin/pveperf
|
|
proxmox-backup-client yes /usr/bin/proxmox-backup-client
|
|
ip yes /usr/sbin/ip
|
|
ss yes /usr/bin/ss
|
|
ethtool yes /usr/sbin/ethtool ethtool version 6.14.2
|
|
bridge yes /usr/sbin/bridge
|
|
brctl yes /usr/sbin/brctl
|
|
nmcli no - -
|
|
tcpdump yes /usr/bin/tcpdump
|
|
mtr no - -
|
|
nstat yes /usr/bin/nstat
|
|
netstat 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 no - -
|
|
numastat no - -
|
|
cpupower yes /usr/bin/cpupower cpupower 6.12
|
|
turbostat yes /usr/sbin/turbostat
|
|
x86_energy_perf_policy yes /usr/sbin/x86_energy_perf_policy
|
|
rdmsr no - -
|
|
tuned-adm yes /usr/sbin/tuned-adm tuned-adm 2.25.1
|
|
irqbalance no - -
|
|
zpool yes /usr/sbin/zpool zfs-2.4.3-pve1 zfs-kmod-2.3.4-pve1
|
|
zfs yes /usr/sbin/zfs zfs-2.4.3-pve1 zfs-kmod-2.3.4-pve1
|
|
zdb yes /usr/sbin/zdb
|
|
arcstat yes /usr/sbin/arcstat
|
|
arc_summary yes /usr/sbin/arc_summary
|
|
lsblk yes /usr/bin/lsblk
|
|
blkid yes /usr/sbin/blkid
|
|
blockdev yes /usr/sbin/blockdev
|
|
findmnt yes /usr/bin/findmnt
|
|
smartctl yes /usr/sbin/smartctl smartctl 7.5 2025-04-30 r5714 [x86_64-linux-6.17.2-1-pve] (local build)
|
|
nvme no - -
|
|
hdparm yes /usr/sbin/hdparm
|
|
storcli no - -
|
|
storcli64 no - -
|
|
MegaCli no - -
|
|
MegaCli64 no - -
|
|
tw-cli no - -
|
|
arcconf no - -
|
|
sas2ircu no - -
|
|
sas3ircu no - -
|
|
hpssacli no - -
|
|
ssacli no - -
|
|
perccli no - -
|
|
multipath no - -
|
|
pvs yes /usr/sbin/pvs
|
|
vgs yes /usr/sbin/vgs
|
|
lvs yes /usr/sbin/lvs
|
|
lvdisplay yes /usr/sbin/lvdisplay
|
|
xfs_info yes /usr/sbin/xfs_info
|
|
dumpe2fs yes /usr/sbin/dumpe2fs
|
|
btrfs yes /usr/bin/btrfs
|
|
fio no - -
|
|
iperf no - -
|
|
iperf3 yes /usr/bin/iperf3 iperf 3.18 (cJSON 1.7.15)
|
|
sysbench no - -
|
|
bonnie++ no - -
|
|
iozone no - -
|
|
iostat no - -
|
|
mpstat no - -
|
|
pidstat no - -
|
|
sar no - -
|
|
vmstat yes /usr/bin/vmstat
|
|
top yes /usr/bin/top
|
|
htop yes /usr/bin/htop
|
|
atop no - -
|
|
glances yes /usr/bin/glances
|
|
dstat no - -
|
|
nethogs no - -
|
|
iftop no - -
|
|
iotop no - -
|
|
smem no - -
|
|
pmap yes /usr/bin/pmap
|
|
slabtop yes /usr/bin/slabtop
|
|
perf yes /usr/bin/perf
|
|
strace yes /usr/bin/strace
|
|
lsof yes /usr/bin/lsof
|
|
fatrace no - -
|
|
dig yes /usr/bin/dig
|
|
host yes /usr/bin/host
|
|
nslookup yes /usr/bin/nslookup
|
|
chronyc yes /usr/bin/chronyc
|
|
ntpq no - -
|
|
timedatectl yes /usr/bin/timedatectl
|
|
nft yes /usr/sbin/nft
|
|
iptables yes /usr/sbin/iptables
|
|
iptables-save yes /usr/sbin/iptables-save
|
|
ipset yes /usr/sbin/ipset
|
|
ufw no - -
|
|
jq no - -
|
|
bc yes /usr/bin/bc
|
|
awk yes /usr/bin/awk
|
|
smartctl yes /usr/sbin/smartctl smartctl 7.5 2025-04-30 r5714 [x86_64-linux-6.17.2-1-pve] (local build)
|
|
nvme no - -
|
|
apt yes /usr/bin/apt
|
|
dpkg yes /usr/bin/dpkg
|
|
|
|
--- Debian packages relevant to perf/storage/net
|
|
$ dpkg -l 2>/dev/null | awk '/^ii/ && ($2 ~ /^(proxmox-|pve-|zfs|zfsutils|nfs|nfs-kernel-server|nfs-common|open-iscsi|ceph|tuned|irqbalance|sysstat|smartmontools|nvme-cli|ethtool|bridge-utils|ifenslave|fio|iperf3|sysbench|glances|htop|atop|lm-sensors|numactl|cpufrequtils|linux-image-|pve-kernel|qemu|libvirt|corosync|pacemaker)/) {print $2" "$3}' | head -n 80
|
|
bridge-utils 1.7.1-4+b1
|
|
ceph-common 19.2.3-pve2
|
|
ceph-fuse 19.2.3-pve2
|
|
corosync 3.1.10-pve3
|
|
ethtool 1:6.14.2-1
|
|
glances 4.3.1+dfsg-1
|
|
htop 3.4.1-5
|
|
ifenslave 2.14
|
|
iperf3 3.18-2+deb13u2
|
|
nfs-common 1:2.8.3-1
|
|
nfs-kernel-server 1:2.8.3-1
|
|
open-iscsi 2.1.11-1+deb13u2
|
|
proxmox-archive-keyring 4.0
|
|
proxmox-backup-client 4.2.3-1
|
|
proxmox-backup-file-restore 4.2.3-1
|
|
proxmox-backup-restore-image 1.0.0
|
|
proxmox-default-kernel 2.1.0
|
|
proxmox-enterprise-support-keyring 1.0
|
|
proxmox-firewall 1.2.3
|
|
proxmox-kernel-6.17 6.17.13-19
|
|
proxmox-kernel-6.17.13-19-pve-signed 6.17.13-19
|
|
proxmox-kernel-6.17.2-1-pve-signed 6.17.2-1
|
|
proxmox-kernel-7.0 7.0.14-6
|
|
proxmox-kernel-7.0.14-6-pve-signed 7.0.14-6
|
|
proxmox-kernel-helper 9.2.0
|
|
proxmox-mail-forward 1.0.3
|
|
proxmox-mini-journalreader 1.7
|
|
proxmox-offline-mirror-docs 0.7.4
|
|
proxmox-offline-mirror-helper 0.7.4
|
|
proxmox-termproxy 2.1.0
|
|
proxmox-ve 9.2.0
|
|
proxmox-websocket-tunnel 1.0.0
|
|
proxmox-widget-toolkit 5.2.6
|
|
pve-cluster 9.1.6
|
|
pve-container 6.1.12
|
|
pve-docs 9.2.3
|
|
pve-edk2-firmware 4.2025.05-2
|
|
pve-edk2-firmware-legacy 4.2025.05-2
|
|
pve-edk2-firmware-ovmf 4.2025.05-2
|
|
pve-esxi-import-tools 1.0.1
|
|
pve-firewall 6.0.5
|
|
pve-firmware 3.18-5
|
|
pve-ha-manager 5.2.4
|
|
pve-i18n 3.9.0
|
|
pve-lxc-syscalld 2.0.2
|
|
pve-manager 9.2.5
|
|
pve-nvidia-vgpu-helper 0.3.1
|
|
pve-qemu-kvm 11.0.2-2
|
|
pve-xtermjs 6.0.0-2
|
|
pve-yew-mobile-gui 0.7.0
|
|
pve-yew-mobile-i18n 3.9.0
|
|
qemu-server 9.2.1
|
|
smartmontools 7.5-pve2
|
|
tuned 2.25.1-1
|
|
zfs-initramfs 2.4.3-pve1
|
|
zfs-zed 2.4.3-pve1
|
|
zfsutils-linux 2.4.3-pve1
|
|
|
|
--- kernel modules available (relevant to perf)
|
|
$ for m in kvm_intel kvm_amd \
|
|
ixgbe i40e i40iw ice igb igc mlx4_en mlx5_core mlx4_core bnx2x bnx2 tg3 be2net qed qede virtio_net \
|
|
nvme nvme-tcp nvme-fabrics sd_mod sr_mod \
|
|
zfs spl znvpair zcommon zunicode zavl icp zlua \
|
|
megaraid_sas mpt3sas hpsa aacraid smartpqi isci \
|
|
dm_multipath multipath \
|
|
tcp_dctcp tcp_bbr tcp_cubic tcp_htcp \
|
|
8021q bonding bridge br_netfilter \
|
|
vhost_net vhost_scsi target_core_mod \
|
|
nfsv4 nfsv3 rpcsec_gss_krb5
|
|
do
|
|
modinfo "$m" >/dev/null 2>&1 && printf 'available : %s (%s)\n' "$m" "$(modinfo -F version "$m" 2>/dev/null || echo built-in)"
|
|
done
|
|
available : kvm_intel ()
|
|
available : kvm_amd ()
|
|
available : ixgbe ()
|
|
available : i40e ()
|
|
available : i40iw ()
|
|
available : ice ()
|
|
available : igb ()
|
|
available : igc ()
|
|
available : mlx4_en (4.0-0)
|
|
available : mlx5_core ()
|
|
available : mlx4_core (4.0-0)
|
|
available : bnx2x ()
|
|
available : bnx2 ()
|
|
available : tg3 ()
|
|
available : be2net ()
|
|
available : qed ()
|
|
available : qede ()
|
|
available : virtio_net ()
|
|
available : nvme (1.0)
|
|
available : nvme-tcp ()
|
|
available : nvme-fabrics ()
|
|
available : sd_mod ()
|
|
available : sr_mod ()
|
|
available : zfs (2.3.4-pve1)
|
|
available : spl (2.3.4-pve1)
|
|
available : znvpair (2.3.4-pve1)
|
|
available : zcommon (2.3.4-pve1)
|
|
available : zunicode (2.3.4-pve1)
|
|
available : zavl (2.3.4-pve1)
|
|
available : icp (2.3.4-pve1)
|
|
available : zlua (2.3.4-pve1)
|
|
available : megaraid_sas (07.734.00.00-rc1)
|
|
available : mpt3sas (52.100.00.00)
|
|
available : hpsa (3.4.20-200)
|
|
available : aacraid (1.2.1[50983]-custom)
|
|
available : smartpqi (2.1.34-035)
|
|
available : isci (1.2.0)
|
|
available : dm_multipath ()
|
|
available : tcp_dctcp ()
|
|
available : tcp_bbr ()
|
|
available : tcp_cubic (2.3)
|
|
available : tcp_htcp ()
|
|
available : 8021q (1.8)
|
|
available : bonding ()
|
|
available : bridge (2.3)
|
|
available : br_netfilter ()
|
|
available : vhost_net (0.0.1)
|
|
available : vhost_scsi ()
|
|
available : target_core_mod ()
|
|
available : nfsv4 ()
|
|
available : nfsv3 ()
|
|
available : rpcsec_gss_krb5 ()
|
|
|
|
--- currently loaded modules (filtered)
|
|
$ lsmod | awk 'NR==1 || $1 ~ /^(kvm|virtio|vhost|ixgb|i40e|ice|igb|mlx|bnx|tg3|be2|qed|nvme|zfs|spl|z|dm_|megaraid|mpt|hpsa|aacraid|smartpqi|8021q|bonding|bridge|nfsv|tcp_|rpc|sunrpc|loop)/{print}'
|
|
Module Size Used by
|
|
tcp_bbr 20480 11
|
|
tcp_diag 12288 0
|
|
rpcsec_gss_krb5 28672 0
|
|
nfsv4 1175552 1
|
|
bonding 245760 0
|
|
sunrpc 786432 44 nfsd,nfsv4,auth_rpcgss,lockd,rpcsec_gss_krb5,nfs_acl,nfs
|
|
kvm_intel 532480 106
|
|
kvm 1376256 73 kvm_intel
|
|
zfs 6344704 6
|
|
spl 151552 1 zfs
|
|
vhost_net 32768 18
|
|
vhost 69632 1 vhost_net
|
|
vhost_iotlb 16384 1 vhost
|
|
dm_thin_pool 94208 3
|
|
dm_persistent_data 114688 1 dm_thin_pool
|
|
dm_bio_prison 24576 1 dm_thin_pool
|
|
dm_bufio 53248 1 dm_persistent_data
|
|
mptsas 69632 7
|
|
mptscsih 49152 1 mptsas
|
|
mptbase 110592 2 mptsas,mptscsih
|
|
tg3 217088 0
|
|
|
|
###############################################################################
|
|
# 2. OS / DISTRO / UPTIME
|
|
###############################################################################
|
|
|
|
--- os-release
|
|
--- /etc/os-release ---
|
|
PRETTY_NAME="Debian GNU/Linux 13 (trixie)"
|
|
NAME="Debian GNU/Linux"
|
|
VERSION_ID="13"
|
|
VERSION="13 (trixie)"
|
|
VERSION_CODENAME=trixie
|
|
DEBIAN_VERSION_FULL=13.6
|
|
ID=debian
|
|
HOME_URL="https://www.debian.org/"
|
|
SUPPORT_URL="https://www.debian.org/support"
|
|
BUG_REPORT_URL="https://bugs.debian.org/"
|
|
|
|
--- debian version
|
|
$ cat /etc/debian_version
|
|
13.6
|
|
|
|
--- uptime
|
|
$ uptime
|
|
16:26:03 up 1 day, 21:10, 2 users, load average: 0.43, 0.51, 0.73
|
|
|
|
--- uptime raw (since boot)
|
|
$ cat /proc/uptime
|
|
162642.46 1134445.76
|
|
|
|
--- last reboot
|
|
$ last -x reboot
|
|
reboot system boot 6.17.2-1-pve Fri Jul 24 19:15 - still running
|
|
reboot system boot 6.17.2-1-pve Fri Jul 24 19:03 - 19:13 (00:10)
|
|
shutdown system down 6.17.2-1-pve Fri Jul 24 19:13 - 19:15 (00:01)
|
|
reboot system boot 6.17.2-1-pve Fri Jul 24 16:23 - 18:41 (02:17)
|
|
shutdown system down 6.17.2-1-pve Fri Jul 24 18:41 - 19:03 (00:21)
|
|
reboot system boot 6.17.2-1-pve Tue Apr 7 12:15 - 10:41 (107+22:26)
|
|
shutdown system down 6.17.2-1-pve Fri Jul 24 10:41 - 16:23 (05:41)
|
|
reboot system boot 6.17.2-1-pve Sat Apr 4 10:28 - crash
|
|
reboot system boot 6.17.2-1-pve Mon Mar 30 10:27 - 10:23 (4+23:56)
|
|
shutdown system down 6.17.2-1-pve Sat Apr 4 10:23 - 10:28 (00:04)
|
|
reboot system boot 6.17.2-1-pve Wed Mar 18 14:50 - crash
|
|
reboot system boot 6.17.2-1-pve Thu Mar 5 11:12 - 14:45 (13+02:32)
|
|
shutdown system down 6.17.2-1-pve Wed Mar 18 14:45 - 14:50 (00:05)
|
|
reboot system boot 6.17.2-1-pve Thu Feb 26 09:24 - 20:50 (5+11:26)
|
|
shutdown system down 6.17.2-1-pve Tue Mar 3 20:50 - 11:12 (1+14:21)
|
|
reboot system boot 6.17.2-1-pve Thu Feb 26 09:05 - 09:22 (00:17)
|
|
shutdown system down 6.17.2-1-pve Thu Feb 26 09:22 - 09:24 (00:01)
|
|
|
|
wtmpdb begins Thu Feb 26 09:05:33 2026
|
|
|
|
--- last logins
|
|
$ last
|
|
root pts/0 100.87.49.37 Sun Jul 26 12:24 - 12:25 (00:00)
|
|
root pts/0 100.87.49.37 Sat Jul 25 19:41 - 19:48 (00:06)
|
|
root pts/0 100.87.49.37 Sat Jul 25 11:24 - 11:35 (00:10)
|
|
root pts/0 100.87.49.37 Sat Jul 25 11:14 - 11:17 (00:02)
|
|
root pts/0 100.87.49.37 Sat Jul 25 10:38 - 10:41 (00:03)
|
|
root pts/0 100.87.49.37 Sat Jul 25 01:09 - 01:19 (00:10)
|
|
root pts/0 100.87.49.37 Fri Jul 24 22:54 - 23:25 (00:31)
|
|
root pts/0 100.87.49.37 Fri Jul 24 22:28 - 22:47 (00:18)
|
|
root pts/0 100.87.49.37 Fri Jul 24 22:17 - 22:18 (00:00)
|
|
root pts/0 100.87.49.37 Fri Jul 24 22:07 - 22:15 (00:08)
|
|
reboot system boot 6.17.2-1-pve Fri Jul 24 19:15 - still running
|
|
root pts/0 100.87.49.37 Fri Jul 24 19:13 - 19:13 (00:00)
|
|
root tty1 Fri Jul 24 19:10 - 19:10 (00:00)
|
|
reboot system boot 6.17.2-1-pve Fri Jul 24 19:03 - 19:13 (00:10)
|
|
root pts/0 100.87.49.37 Fri Jul 24 18:22 - 18:33 (00:10)
|
|
root pts/0 100.87.49.37 Fri Jul 24 18:20 - 18:22 (00:01)
|
|
root tty1 Fri Jul 24 16:29 - 18:22 (01:52)
|
|
reboot system boot 6.17.2-1-pve Fri Jul 24 16:23 - 18:41 (02:17)
|
|
root pts/0 100.87.49.37 Fri Jul 24 10:41 - 10:41 (00:00)
|
|
root pts/0 100.87.49.37 Thu Jul 23 10:38 - 10:48 (00:09)
|
|
root pts/1 100.87.49.37 Mon Jul 20 12:28 - 12:28 (00:00)
|
|
root pts/0 100.109.70.137 Mon Jul 20 12:26 - 17:18 (04:52)
|
|
root pts/0 100.87.49.37 Mon Jul 20 11:29 - 11:29 (00:00)
|
|
root pts/0 100.87.49.37 Mon Jul 20 11:13 - 11:13 (00:00)
|
|
root pts/0 100.87.49.37 Mon Jul 20 10:52 - 10:53 (00:00)
|
|
root pts/0 100.87.49.37 Sun Jul 19 17:52 - 18:02 (00:10)
|
|
root pts/0 100.87.49.37 Sun Jul 19 17:51 - 17:52 (00:01)
|
|
root pts/0 100.87.49.37 Sun Jul 19 15:54 - 15:56 (00:01)
|
|
root pts/0 100.87.49.37 Sun Jul 19 15:49 - 15:52 (00:02)
|
|
root pts/2 Mon Jul 13 21:10 - 21:10 (00:00)
|
|
root pts/1 Mon Jul 13 21:10 - 21:10 (00:00)
|
|
root pts/0 Mon Jul 13 21:09 - 21:10 (00:01)
|
|
root pts/1 Sat Jul 11 12:45 - 12:45 (00:00)
|
|
root pts/0 Sat Jul 11 12:44 - 12:45 (00:00)
|
|
root pts/5 Fri Jun 26 11:37 - 11:38 (00:00)
|
|
root pts/4 Fri Jun 26 11:37 - 11:38 (00:01)
|
|
root pts/3 Fri Jun 26 11:37 - 11:38 (00:01)
|
|
root pts/2 Fri Jun 26 11:36 - 11:38 (00:01)
|
|
root pts/1 Fri Jun 26 11:35 - 11:38 (00:02)
|
|
root pts/0 Fri Jun 26 11:35 - 11:38 (00:02)
|
|
root pts/0 100.118.91.16 Fri Apr 10 17:33 - 17:40 (00:07)
|
|
root pts/0 100.118.91.16 Fri Apr 10 14:28 - 14:57 (00:28)
|
|
root pts/0 100.118.91.16 Tue Apr 7 20:04 - 20:08 (00:04)
|
|
root pts/0 100.118.91.16 Tue Apr 7 12:22 - 12:24 (00:02)
|
|
reboot system boot 6.17.2-1-pve Tue Apr 7 12:15 - 10:41 (107+22:26)
|
|
root pts/0 100.109.70.137 Mon Apr 6 10:35 - crash
|
|
root pts/0 100.118.91.16 Mon Apr 6 09:44 - 09:51 (00:06)
|
|
root pts/0 Mon Apr 6 08:44 - 08:52 (00:07)
|
|
root pts/0 100.118.91.16 Mon Apr 6 08:44 - 08:52 (00:07)
|
|
root pts/1 100.118.91.16 Mon Apr 6 08:22 - 08:32 (00:10)
|
|
root pts/0 100.118.91.16 Mon Apr 6 08:19 - 08:32 (00:13)
|
|
reboot system boot 6.17.2-1-pve Sat Apr 4 10:28 - crash
|
|
root pts/1 100.118.91.16 Sat Apr 4 10:23 - 10:23 (00:00)
|
|
root pts/1 100.118.91.16 Sat Apr 4 09:11 - 09:19 (00:07)
|
|
root pts/0 100.109.70.137 Sat Apr 4 01:34 - 10:23 (08:49)
|
|
root pts/1 100.109.70.137 Thu Apr 2 23:57 - 18:01 (18:03)
|
|
root pts/0 100.109.70.137 Thu Apr 2 23:57 - 17:04 (17:07)
|
|
root pts/0 100.118.91.16 Mon Mar 30 10:46 - 10:49 (00:02)
|
|
reboot system boot 6.17.2-1-pve Mon Mar 30 10:27 - 10:23 (4+23:56)
|
|
root pts/5 100.109.70.137 Fri Mar 20 11:08 - crash
|
|
reboot system boot 6.17.2-1-pve Wed Mar 18 14:50 - crash
|
|
root pts/0 100.70.77.93 Wed Mar 18 14:23 - 14:45 (00:21)
|
|
root pts/1 100.109.70.137 Thu Mar 5 11:19 - 10:26 (23:06)
|
|
root pts/0 100.109.70.137 Thu Mar 5 11:17 - 10:25 (23:08)
|
|
reboot system boot 6.17.2-1-pve Thu Mar 5 11:12 - 14:45 (13+02:32)
|
|
root pts/3 100.78.152.116 Tue Mar 3 11:01 - 13:20 (02:19)
|
|
root pts/2 100.109.70.137 Thu Feb 26 22:08 - 19:49 (4+21:40)
|
|
root pts/1 100.109.70.137 Thu Feb 26 22:06 - 19:49 (4+21:42)
|
|
root pts/1 100.78.152.116 Thu Feb 26 18:21 - 18:46 (00:24)
|
|
root pts/0 100.109.70.137 Thu Feb 26 09:58 - 19:49 (5+09:50)
|
|
root pts/1 100.78.152.116 Thu Feb 26 09:41 - 09:52 (00:11)
|
|
root pts/0 192.168.3.16 Thu Feb 26 09:26 - 09:41 (00:14)
|
|
root tty1 Thu Feb 26 09:26 - 09:26 (00:00)
|
|
reboot system boot 6.17.2-1-pve Thu Feb 26 09:24 - 20:50 (5+11:26)
|
|
root tty1 Thu Feb 26 09:16 - 09:22 (00:06)
|
|
reboot system boot 6.17.2-1-pve Thu Feb 26 09:05 - 09:22 (00:17)
|
|
|
|
wtmpdb begins Thu Feb 26 09:05:33 2026
|
|
|
|
--- uname
|
|
$ uname -a
|
|
Linux pfv-tsys5 6.17.2-1-pve #1 SMP PREEMPT_DYNAMIC PMX 6.17.2-1 (2025-10-21T11:55Z) x86_64 GNU/Linux
|
|
|
|
--- /proc/cmdline (boot args)
|
|
$ cat /proc/cmdline
|
|
BOOT_IMAGE=/boot/vmlinuz-6.17.2-1-pve root=/dev/mapper/pve-root ro quiet
|
|
|
|
###############################################################################
|
|
# 3. HARDWARE INVENTORY
|
|
###############################################################################
|
|
|
|
--- dmidecode -t system
|
|
$ dmidecode -t system
|
|
# dmidecode 3.6
|
|
Getting SMBIOS data from sysfs.
|
|
SMBIOS 2.5 present.
|
|
|
|
Handle 0x0100, DMI type 1, 27 bytes
|
|
System Information
|
|
Manufacturer: Dell Inc.
|
|
Product Name: Precision WorkStation T7500
|
|
Version: Not Specified
|
|
Serial Number: 4YXDYR1
|
|
UUID: 44454c4c-5900-1058-8044-b4c04f595231
|
|
Wake-up Type: Power Switch
|
|
SKU Number: Not Specified
|
|
Family: Not Specified
|
|
|
|
Handle 0x0F00, DMI type 15, 33 bytes
|
|
System Event Log
|
|
Area Length: 2049 bytes
|
|
Header Start Offset: 0x0000
|
|
Header Length: 16 bytes
|
|
Data Start Offset: 0x0010
|
|
Access Method: Memory-mapped physical 32-bit address
|
|
Access Address: 0xFFE01000
|
|
Status: Valid, Not Full
|
|
Change Token: 0x00000034
|
|
Header Format: Type 1
|
|
Supported Log Type Descriptors: 5
|
|
Descriptor 1: POST error
|
|
Data Format 1: POST results bitmap
|
|
Descriptor 2: System limit exceeded
|
|
Data Format 2: System management
|
|
Descriptor 3: Log area reset/cleared
|
|
Data Format 3: None
|
|
Descriptor 4: Multi-bit ECC memory error
|
|
Data Format 4: Handle
|
|
Descriptor 5: Single-bit ECC memory error
|
|
Data Format 5: Handle
|
|
|
|
Handle 0x2000, DMI type 32, 11 bytes
|
|
System Boot Information
|
|
Status: Firmware-detected hardware failure
|
|
|
|
|
|
--- dmidecode -t baseboard
|
|
$ dmidecode -t baseboard
|
|
# dmidecode 3.6
|
|
Getting SMBIOS data from sysfs.
|
|
SMBIOS 2.5 present.
|
|
|
|
Handle 0x0200, DMI type 2, 8 bytes
|
|
Base Board Information
|
|
Manufacturer: Dell Inc.
|
|
Product Name: 06FW8P
|
|
Version: A02
|
|
Serial Number: ..CN722001A400R6.
|
|
|
|
Handle 0x0A02, DMI type 10, 6 bytes
|
|
On Board Device Information
|
|
Type: Ethernet
|
|
Status: Enabled
|
|
Description: Intel Pro 1000 MT Network Connection
|
|
|
|
Handle 0x0A03, DMI type 10, 6 bytes
|
|
On Board Device Information
|
|
Type: Sound
|
|
Status: Enabled
|
|
Description: Intel(R) High Definition Audio Controller
|
|
|
|
Handle 0x0A05, DMI type 10, 6 bytes
|
|
On Board Device Information
|
|
Type: Other
|
|
Status: Enabled
|
|
Description: IEEE-1394
|
|
|
|
Handle 0x0A08, DMI type 10, 6 bytes
|
|
On Board Device Information
|
|
Type: SAS Controller
|
|
Status: Enabled
|
|
Description: SAS 6/iR
|
|
|
|
|
|
--- dmidecode -t bios
|
|
$ dmidecode -t bios
|
|
# dmidecode 3.6
|
|
Getting SMBIOS data from sysfs.
|
|
SMBIOS 2.5 present.
|
|
|
|
Handle 0x0000, DMI type 0, 24 bytes
|
|
BIOS Information
|
|
Vendor: Dell Inc.
|
|
Version: A10
|
|
Release Date: 04/20/2011
|
|
Address: 0xF0000
|
|
Runtime Size: 64 kB
|
|
ROM Size: 2 MB
|
|
Characteristics:
|
|
PCI is supported
|
|
PNP is supported
|
|
APM is supported
|
|
BIOS is upgradeable
|
|
BIOS shadowing is allowed
|
|
ESCD support is available
|
|
Boot from CD is supported
|
|
Selectable boot is supported
|
|
EDD is supported
|
|
Japanese floppy for Toshiba 1.2 MB is supported (int 13h)
|
|
3.5"/720 kB 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
|
|
BIOS boot specification is supported
|
|
Function key-initiated network boot is supported
|
|
Targeted content distribution is supported
|
|
BIOS Revision: 0.0
|
|
|
|
Handle 0x0D00, DMI type 13, 22 bytes
|
|
BIOS Language Information
|
|
Language Description Format: Long
|
|
Installable Languages: 1
|
|
en|US|iso8859-1
|
|
Currently Installed Language: en|US|iso8859-1
|
|
|
|
|
|
--- dmidecode -t chassis
|
|
$ dmidecode -t chassis
|
|
# dmidecode 3.6
|
|
Getting SMBIOS data from sysfs.
|
|
SMBIOS 2.5 present.
|
|
|
|
Handle 0x0300, DMI type 3, 13 bytes
|
|
Chassis Information
|
|
Manufacturer: Dell Inc.
|
|
Type: Tower
|
|
Lock: Not Present
|
|
Version: Not Specified
|
|
Serial Number: 4YXDYR1
|
|
Asset Tag:
|
|
Boot-up State: Safe
|
|
Power Supply State: Safe
|
|
Thermal State: Safe
|
|
Security Status: None
|
|
|
|
|
|
--- dmidecode -t processor
|
|
$ dmidecode -t processor
|
|
# dmidecode 3.6
|
|
Getting SMBIOS data from sysfs.
|
|
SMBIOS 2.5 present.
|
|
|
|
Handle 0x0400, DMI type 4, 40 bytes
|
|
Processor Information
|
|
Socket Designation: CPU1
|
|
Type: Central Processor
|
|
Family: Xeon
|
|
Manufacturer: Intel
|
|
ID: C2 06 02 00 FF FB EB BF
|
|
Signature: Type 0, Family 6, Model 44, Stepping 2
|
|
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: Not Specified
|
|
Voltage: Unknown
|
|
External Clock: 5860 MHz
|
|
Max Speed: 3800 MHz
|
|
Current Speed: 2400 MHz
|
|
Status: Populated, Enabled
|
|
Upgrade: Socket LGA771
|
|
L1 Cache Handle: 0x0700
|
|
L2 Cache Handle: 0x0701
|
|
L3 Cache Handle: 0x0704
|
|
Serial Number: Not Specified
|
|
Asset Tag: Not Specified
|
|
Part Number: Not Specified
|
|
Core Count: 4
|
|
Core Enabled: 4
|
|
Thread Count: 2
|
|
Characteristics:
|
|
64-bit capable
|
|
|
|
Handle 0x0401, DMI type 4, 40 bytes
|
|
Processor Information
|
|
Socket Designation: CPU2
|
|
Type: Central Processor
|
|
Family: Xeon
|
|
Manufacturer: Intel
|
|
ID: 00 00 00 00 00 00 00 00
|
|
Signature: Type 0, Family 0, Model 0, Stepping 0
|
|
Flags: None
|
|
Version: Not Specified
|
|
Voltage: Unknown
|
|
External Clock: 100 MHz
|
|
Max Speed: 3800 MHz
|
|
Current Speed: Unknown
|
|
Status: Unpopulated
|
|
Upgrade: Socket LGA771
|
|
L1 Cache Handle: 0x0702
|
|
L2 Cache Handle: 0x0703
|
|
L3 Cache Handle: 0x0705
|
|
Serial Number: Not Specified
|
|
Asset Tag: Not Specified
|
|
Part Number: Not Specified
|
|
Core Count: 1
|
|
Core Enabled: 1
|
|
Thread Count: 1
|
|
Characteristics: None
|
|
|
|
|
|
--- dmidecode -t memory
|
|
$ dmidecode -t memory
|
|
# dmidecode 3.6
|
|
Getting SMBIOS data from sysfs.
|
|
SMBIOS 2.5 present.
|
|
|
|
Handle 0x1000, DMI type 16, 15 bytes
|
|
Physical Memory Array
|
|
Location: System Board Or Motherboard
|
|
Use: System Memory
|
|
Error Correction Type: Multi-bit ECC
|
|
Maximum Capacity: 96 GB
|
|
Error Information Handle: Not Provided
|
|
Number Of Devices: 6
|
|
|
|
Handle 0x1100, DMI type 17, 27 bytes
|
|
Memory Device
|
|
Array Handle: 0x1000
|
|
Error Information Handle: No Error
|
|
Total Width: 72 bits
|
|
Data Width: 64 bits
|
|
Size: 16 GB
|
|
Form Factor: DIMM
|
|
Set: None
|
|
Locator: DIMM 1
|
|
Bank Locator: Not Specified
|
|
Type: DDR3
|
|
Type Detail: Registered (Buffered)
|
|
Speed: 1600 MT/s
|
|
Manufacturer: 80AD04B380AD
|
|
Serial Number: C01C0087
|
|
Asset Tag: 01154431
|
|
Part Number: HMT42GR7BFR4A-PB
|
|
|
|
Handle 0x1101, DMI type 17, 27 bytes
|
|
Memory Device
|
|
Array Handle: 0x1000
|
|
Error Information Handle: No Error
|
|
Total Width: 72 bits
|
|
Data Width: 64 bits
|
|
Size: 16 GB
|
|
Form Factor: DIMM
|
|
Set: None
|
|
Locator: DIMM 2
|
|
Bank Locator: Not Specified
|
|
Type: DDR3
|
|
Type Detail: Registered (Buffered)
|
|
Speed: 1600 MT/s
|
|
Manufacturer: 80AD04B380AD
|
|
Serial Number: C01C12BB
|
|
Asset Tag: 01154431
|
|
Part Number: HMT42GR7BFR4A-PB
|
|
|
|
Handle 0x1102, DMI type 17, 27 bytes
|
|
Memory Device
|
|
Array Handle: 0x1000
|
|
Error Information Handle: No Error
|
|
Total Width: 72 bits
|
|
Data Width: 64 bits
|
|
Size: 16 GB
|
|
Form Factor: DIMM
|
|
Set: None
|
|
Locator: DIMM 3
|
|
Bank Locator: Not Specified
|
|
Type: DDR3
|
|
Type Detail: Registered (Buffered)
|
|
Speed: 1600 MT/s
|
|
Manufacturer: 80AD04B380AD
|
|
Serial Number: C01C12C9
|
|
Asset Tag: 01154431
|
|
Part Number: HMT42GR7BFR4A-PB
|
|
|
|
Handle 0x1103, DMI type 17, 27 bytes
|
|
Memory Device
|
|
Array Handle: 0x1000
|
|
Error Information Handle: No Error
|
|
Total Width: 72 bits
|
|
Data Width: 64 bits
|
|
Size: 16 GB
|
|
Form Factor: DIMM
|
|
Set: None
|
|
Locator: DIMM 4
|
|
Bank Locator: Not Specified
|
|
Type: DDR3
|
|
Type Detail: Registered (Buffered)
|
|
Speed: 1600 MT/s
|
|
Manufacturer: 80AD04B380AD
|
|
Serial Number: C01C12A3
|
|
Asset Tag: 01154431
|
|
Part Number: HMT42GR7BFR4A-PB
|
|
|
|
Handle 0x1104, DMI type 17, 27 bytes
|
|
Memory Device
|
|
Array Handle: 0x1000
|
|
Error Information Handle: No Error
|
|
Total Width: 72 bits
|
|
Data Width: 64 bits
|
|
Size: 16 GB
|
|
Form Factor: DIMM
|
|
Set: None
|
|
Locator: DIMM 5
|
|
Bank Locator: Not Specified
|
|
Type: DDR3
|
|
Type Detail: Registered (Buffered)
|
|
Speed: 1600 MT/s
|
|
Manufacturer: 80AD04B380AD
|
|
Serial Number: C01C138D
|
|
Asset Tag: 01154431
|
|
Part Number: HMT42GR7BFR4A-PB
|
|
|
|
Handle 0x1105, DMI type 17, 27 bytes
|
|
Memory Device
|
|
Array Handle: 0x1000
|
|
Error Information Handle: No Error
|
|
Total Width: 72 bits
|
|
Data Width: 64 bits
|
|
Size: 16 GB
|
|
Form Factor: DIMM
|
|
Set: None
|
|
Locator: DIMM 6
|
|
Bank Locator: Not Specified
|
|
Type: DDR3
|
|
Type Detail: Registered (Buffered)
|
|
Speed: 1600 MT/s
|
|
Manufacturer: 80AD04B380AD
|
|
Serial Number: C01C0039
|
|
Asset Tag: 01154431
|
|
Part Number: HMT42GR7BFR4A-PB
|
|
|
|
|
|
--- dmidecode -t cache
|
|
$ dmidecode -t cache
|
|
# dmidecode 3.6
|
|
Getting SMBIOS data from sysfs.
|
|
SMBIOS 2.5 present.
|
|
|
|
Handle 0x0700, DMI type 7, 19 bytes
|
|
Cache Information
|
|
Socket Designation: Not Specified
|
|
Configuration: Enabled, Not Socketed, Level 1
|
|
Operational Mode: Write Back
|
|
Location: Internal
|
|
Installed Size: 256 kB
|
|
Maximum Size: 256 kB
|
|
Supported SRAM Types:
|
|
Other
|
|
Installed SRAM Type: Other
|
|
Speed: Unknown
|
|
Error Correction Type: None
|
|
System Type: Unified
|
|
Associativity: 16-way Set-associative
|
|
|
|
Handle 0x0701, DMI type 7, 19 bytes
|
|
Cache Information
|
|
Socket Designation: Not Specified
|
|
Configuration: Enabled, Not Socketed, Level 2
|
|
Operational Mode: Varies With Memory Address
|
|
Location: Internal
|
|
Installed Size: 1 MB
|
|
Maximum Size: 1 MB
|
|
Supported SRAM Types:
|
|
Other
|
|
Installed SRAM Type: Other
|
|
Speed: Unknown
|
|
Error Correction Type: Single-bit ECC
|
|
System Type: Unified
|
|
Associativity: 16-way Set-associative
|
|
|
|
Handle 0x0704, DMI type 7, 19 bytes
|
|
Cache Information
|
|
Socket Designation: Not Specified
|
|
Configuration: Enabled, Not Socketed, Level 3
|
|
Operational Mode: Varies With Memory Address
|
|
Location: Internal
|
|
Installed Size: 12 MB
|
|
Maximum Size: 12 MB
|
|
Supported SRAM Types:
|
|
Other
|
|
Installed SRAM Type: Other
|
|
Speed: Unknown
|
|
Error Correction Type: Single-bit ECC
|
|
System Type: Unified
|
|
Associativity: <OUT OF SPEC>
|
|
|
|
Handle 0x0702, DMI type 7, 19 bytes
|
|
Cache Information
|
|
Socket Designation: Not Specified
|
|
Configuration: Enabled, Not Socketed, Level 1
|
|
Operational Mode: Write Back
|
|
Location: Internal
|
|
Installed Size: 256 kB
|
|
Maximum Size: 256 kB
|
|
Supported SRAM Types:
|
|
Other
|
|
Installed SRAM Type: Other
|
|
Speed: Unknown
|
|
Error Correction Type: None
|
|
System Type: Unified
|
|
Associativity: 16-way Set-associative
|
|
|
|
Handle 0x0703, DMI type 7, 19 bytes
|
|
Cache Information
|
|
Socket Designation: Not Specified
|
|
Configuration: Enabled, Not Socketed, Level 2
|
|
Operational Mode: Varies With Memory Address
|
|
Location: Internal
|
|
Installed Size: 1 MB
|
|
Maximum Size: 1 MB
|
|
Supported SRAM Types:
|
|
Other
|
|
Installed SRAM Type: Other
|
|
Speed: Unknown
|
|
Error Correction Type: Single-bit ECC
|
|
System Type: Unified
|
|
Associativity: 16-way Set-associative
|
|
|
|
Handle 0x0705, DMI type 7, 19 bytes
|
|
Cache Information
|
|
Socket Designation: Not Specified
|
|
Configuration: Enabled, Not Socketed, Level 3
|
|
Operational Mode: Varies With Memory Address
|
|
Location: Internal
|
|
Installed Size: 12 MB
|
|
Maximum Size: 12 MB
|
|
Supported SRAM Types:
|
|
Other
|
|
Installed SRAM Type: Other
|
|
Speed: Unknown
|
|
Error Correction Type: Single-bit ECC
|
|
System Type: Unified
|
|
Associativity: <OUT OF SPEC>
|
|
|
|
|
|
--- dmidecode -t connector
|
|
$ dmidecode -t connector
|
|
# dmidecode 3.6
|
|
Getting SMBIOS data from sysfs.
|
|
SMBIOS 2.5 present.
|
|
|
|
Handle 0x0800, DMI type 8, 9 bytes
|
|
Port Connector Information
|
|
Internal Reference Designator: PARALLEL
|
|
Internal Connector Type: None
|
|
External Reference Designator: Not Specified
|
|
External Connector Type: DB-25 female
|
|
Port Type: Parallel Port PS/2
|
|
|
|
Handle 0x0801, DMI type 8, 9 bytes
|
|
Port Connector Information
|
|
Internal Reference Designator: SERIAL1
|
|
Internal Connector Type: None
|
|
External Reference Designator: Not Specified
|
|
External Connector Type: DB-9 male
|
|
Port Type: Serial Port 16550A Compatible
|
|
|
|
Handle 0x0803, DMI type 8, 9 bytes
|
|
Port Connector Information
|
|
Internal Reference Designator: KYBD
|
|
Internal Connector Type: None
|
|
External Reference Designator: Not Specified
|
|
External Connector Type: PS/2
|
|
Port Type: Keyboard Port
|
|
|
|
Handle 0x0804, DMI type 8, 9 bytes
|
|
Port Connector Information
|
|
Internal Reference Designator: MOUSE
|
|
Internal Connector Type: None
|
|
External Reference Designator: Not Specified
|
|
External Connector Type: PS/2
|
|
Port Type: Mouse Port
|
|
|
|
Handle 0x0805, DMI type 8, 9 bytes
|
|
Port Connector Information
|
|
Internal Reference Designator: USB1
|
|
Internal Connector Type: None
|
|
External Reference Designator: Not Specified
|
|
External Connector Type: Access Bus (USB)
|
|
Port Type: USB
|
|
|
|
Handle 0x0806, DMI type 8, 9 bytes
|
|
Port Connector Information
|
|
Internal Reference Designator: USB2
|
|
Internal Connector Type: None
|
|
External Reference Designator: Not Specified
|
|
External Connector Type: Access Bus (USB)
|
|
Port Type: USB
|
|
|
|
Handle 0x0807, DMI type 8, 9 bytes
|
|
Port Connector Information
|
|
Internal Reference Designator: USB3
|
|
Internal Connector Type: None
|
|
External Reference Designator: Not Specified
|
|
External Connector Type: Access Bus (USB)
|
|
Port Type: USB
|
|
|
|
Handle 0x0808, DMI type 8, 9 bytes
|
|
Port Connector Information
|
|
Internal Reference Designator: USB4
|
|
Internal Connector Type: None
|
|
External Reference Designator: Not Specified
|
|
External Connector Type: Access Bus (USB)
|
|
Port Type: USB
|
|
|
|
Handle 0x0809, DMI type 8, 9 bytes
|
|
Port Connector Information
|
|
Internal Reference Designator: USB5
|
|
Internal Connector Type: None
|
|
External Reference Designator: Not Specified
|
|
External Connector Type: Access Bus (USB)
|
|
Port Type: USB
|
|
|
|
Handle 0x080A, DMI type 8, 9 bytes
|
|
Port Connector Information
|
|
Internal Reference Designator: USB6
|
|
Internal Connector Type: None
|
|
External Reference Designator: Not Specified
|
|
External Connector Type: Access Bus (USB)
|
|
Port Type: USB
|
|
|
|
Handle 0x080B, DMI type 8, 9 bytes
|
|
Port Connector Information
|
|
Internal Reference Designator: USB7
|
|
Internal Connector Type: None
|
|
External Reference Designator: Not Specified
|
|
External Connector Type: Access Bus (USB)
|
|
Port Type: USB
|
|
|
|
Handle 0x080C, DMI type 8, 9 bytes
|
|
Port Connector Information
|
|
Internal Reference Designator: USB8
|
|
Internal Connector Type: None
|
|
External Reference Designator: Not Specified
|
|
External Connector Type: Access Bus (USB)
|
|
Port Type: USB
|
|
|
|
Handle 0x080D, DMI type 8, 9 bytes
|
|
Port Connector Information
|
|
Internal Reference Designator: ENET
|
|
Internal Connector Type: None
|
|
External Reference Designator: Not Specified
|
|
External Connector Type: RJ-45
|
|
Port Type: Network Port
|
|
|
|
Handle 0x080E, DMI type 8, 9 bytes
|
|
Port Connector Information
|
|
Internal Reference Designator: MIC
|
|
Internal Connector Type: None
|
|
External Reference Designator: Not Specified
|
|
External Connector Type: Mini Jack (headphones)
|
|
Port Type: Audio Port
|
|
|
|
Handle 0x080F, DMI type 8, 9 bytes
|
|
Port Connector Information
|
|
Internal Reference Designator: LINE-OUT
|
|
Internal Connector Type: None
|
|
External Reference Designator: Not Specified
|
|
External Connector Type: Mini Jack (headphones)
|
|
Port Type: Audio Port
|
|
|
|
Handle 0x0810, DMI type 8, 9 bytes
|
|
Port Connector Information
|
|
Internal Reference Designator: LINE-IN
|
|
Internal Connector Type: None
|
|
External Reference Designator: Not Specified
|
|
External Connector Type: Mini Jack (headphones)
|
|
Port Type: Audio Port
|
|
|
|
Handle 0x0811, DMI type 8, 9 bytes
|
|
Port Connector Information
|
|
Internal Reference Designator: HP-OUT
|
|
Internal Connector Type: None
|
|
External Reference Designator: Not Specified
|
|
External Connector Type: Mini Jack (headphones)
|
|
Port Type: Audio Port
|
|
|
|
Handle 0x0814, DMI type 8, 9 bytes
|
|
Port Connector Information
|
|
Internal Reference Designator: IEEE-1394 Front
|
|
Internal Connector Type: None
|
|
External Reference Designator: Not Specified
|
|
External Connector Type: IEEE 1394
|
|
Port Type: Firewire (IEEE P1394)
|
|
|
|
Handle 0x0815, DMI type 8, 9 bytes
|
|
Port Connector Information
|
|
Internal Reference Designator: IEEE-1394 Back
|
|
Internal Connector Type: None
|
|
External Reference Designator: Not Specified
|
|
External Connector Type: IEEE 1394
|
|
Port Type: Firewire (IEEE P1394)
|
|
|
|
|
|
--- dmidecode -t slot
|
|
$ dmidecode -t slot
|
|
# dmidecode 3.6
|
|
Getting SMBIOS data from sysfs.
|
|
SMBIOS 2.5 present.
|
|
|
|
Handle 0x0901, DMI type 9, 13 bytes
|
|
System Slot Information
|
|
Designation: SLOT1
|
|
Type: PCI Express
|
|
Data Bus Width: 8x or x8
|
|
Current Usage: In Use
|
|
Length: Long
|
|
ID: 1
|
|
Characteristics:
|
|
3.3 V is provided
|
|
PME signal is supported
|
|
|
|
Handle 0x0902, DMI type 9, 13 bytes
|
|
System Slot Information
|
|
Designation: SLOT2
|
|
Type: PCI Express
|
|
Data Bus Width: 16x or x16
|
|
Current Usage: In Use
|
|
Length: Long
|
|
ID: 2
|
|
Characteristics:
|
|
3.3 V is provided
|
|
PME signal is supported
|
|
|
|
Handle 0x0903, DMI type 9, 13 bytes
|
|
System Slot Information
|
|
Designation: SLOT3
|
|
Type: PCI Express
|
|
Data Bus Width: 8x or x8
|
|
Current Usage: In Use
|
|
Length: Long
|
|
ID: 3
|
|
Characteristics:
|
|
3.3 V is provided
|
|
PME signal is supported
|
|
|
|
Handle 0x0904, DMI type 9, 13 bytes
|
|
System Slot Information
|
|
Designation: SLOT4
|
|
Type: PCI Express
|
|
Data Bus Width: 16x or x16
|
|
Current Usage: Available
|
|
Length: Long
|
|
ID: 4
|
|
Characteristics:
|
|
3.3 V is provided
|
|
PME signal is supported
|
|
|
|
Handle 0x0905, DMI type 9, 13 bytes
|
|
System Slot Information
|
|
Designation: SLOT5
|
|
Type: PCI
|
|
Data Bus Width: 32 bit
|
|
Current Usage: Available
|
|
Length: Long
|
|
ID: 5
|
|
Characteristics:
|
|
5.0 V is provided
|
|
3.3 V is provided
|
|
PME signal is supported
|
|
|
|
Handle 0x0906, DMI type 9, 13 bytes
|
|
System Slot Information
|
|
Designation: SLOT6
|
|
Type: PCI Express
|
|
Data Bus Width: 4x or x4
|
|
Current Usage: In Use
|
|
Length: Long
|
|
ID: 6
|
|
Characteristics:
|
|
3.3 V is provided
|
|
PME signal is supported
|
|
|
|
Handle 0x0907, DMI type 9, 13 bytes
|
|
System Slot Information
|
|
Designation: SLOT7
|
|
Type: PCI-X
|
|
Data Bus Width: 64 bit
|
|
Current Usage: Available
|
|
Length: Long
|
|
ID: 7
|
|
Characteristics:
|
|
3.3 V is provided
|
|
PME signal is supported
|
|
|
|
|
|
--- lscpu
|
|
$ lscpu
|
|
Architecture: x86_64
|
|
CPU op-mode(s): 32-bit, 64-bit
|
|
Address sizes: 40 bits physical, 48 bits virtual
|
|
Byte Order: Little Endian
|
|
CPU(s): 8
|
|
On-line CPU(s) list: 0-7
|
|
Vendor ID: GenuineIntel
|
|
Model name: Intel(R) Xeon(R) CPU E5620 @ 2.40GHz
|
|
CPU family: 6
|
|
Model: 44
|
|
Thread(s) per core: 2
|
|
Core(s) per socket: 4
|
|
Socket(s): 1
|
|
Stepping: 2
|
|
BogoMIPS: 4787.97
|
|
Flags: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 cx16 xtpr pdcm pcid dca sse4_1 sse4_2 popcnt aes lahf_lm epb pti ssbd ibrs ibpb stibp tpr_shadow flexpriority ept vpid dtherm ida arat vnmi flush_l1d
|
|
Virtualization: VT-x
|
|
L1d cache: 128 KiB (4 instances)
|
|
L1i cache: 128 KiB (4 instances)
|
|
L2 cache: 1 MiB (4 instances)
|
|
L3 cache: 12 MiB (1 instance)
|
|
NUMA node(s): 1
|
|
NUMA node0 CPU(s): 0-7
|
|
Vulnerability Gather data sampling: Not affected
|
|
Vulnerability Ghostwrite: Not affected
|
|
Vulnerability Indirect target selection: Not affected
|
|
Vulnerability Itlb multihit: KVM: Mitigation: Split huge pages
|
|
Vulnerability L1tf: Mitigation; PTE Inversion; VMX conditional cache flushes, SMT vulnerable
|
|
Vulnerability Mds: Vulnerable: Clear CPU buffers attempted, no microcode; SMT vulnerable
|
|
Vulnerability Meltdown: Mitigation; PTI
|
|
Vulnerability Mmio stale data: Not affected
|
|
Vulnerability Old microcode: Not affected
|
|
Vulnerability Reg file data sampling: Not affected
|
|
Vulnerability Retbleed: Not affected
|
|
Vulnerability Spec rstack overflow: Not affected
|
|
Vulnerability Spec store bypass: Mitigation; Speculative Store Bypass disabled via prctl
|
|
Vulnerability Spectre v1: Mitigation; usercopy/swapgs barriers and __user pointer sanitization
|
|
Vulnerability Spectre v2: Mitigation; Retpolines; IBPB conditional; IBRS_FW; STIBP conditional; RSB filling; PBRSB-eIBRS Not affected; BHI Not affected
|
|
Vulnerability Srbds: Not affected
|
|
Vulnerability Tsa: Not affected
|
|
Vulnerability Tsx async abort: Not affected
|
|
Vulnerability Vmscape: Not affected
|
|
|
|
--- lscpu cache
|
|
$ lscpu -C
|
|
NAME ONE-SIZE ALL-SIZE WAYS TYPE LEVEL SETS PHY-LINE COHERENCY-SIZE
|
|
L1d 32K 128K 8 Data 1 64 1 64
|
|
L1i 32K 128K 4 Instruction 1 128 1 64
|
|
L2 256K 1M 8 Unified 2 512 1 64
|
|
L3 12M 12M 16 Unified 3 12288 1 64
|
|
|
|
--- numactl --hardware
|
|
$ numactl --hardware
|
|
/root/check.sh: line 45: numactl: command not found
|
|
[exit=127 / not installed or not permitted]
|
|
|
|
--- numactl --show
|
|
$ numactl --show
|
|
/root/check.sh: line 45: numactl: command not found
|
|
[exit=127 / not installed or not permitted]
|
|
|
|
--- lspci -nnvv (verbose)
|
|
$ lspci -nnvv
|
|
00:00.0 Host bridge [0600]: Intel Corporation 5520 I/O Hub to ESI Port [8086:3406] (rev 22)
|
|
Subsystem: Dell Device [1028:026d]
|
|
Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
|
|
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Interrupt: pin A routed to IRQ 11
|
|
IOMMU group: 7
|
|
Capabilities: [60] MSI: Enable- Count=1/2 Maskable+ 64bit-
|
|
Address: 00000000 Data: 0000
|
|
Masking: 00000000 Pending: 00000000
|
|
Capabilities: [90] Express (v2) Root Port (Slot-), IntMsgNum 0
|
|
DevCap: MaxPayload 128 bytes, PhantFunc 0
|
|
ExtTag+ RBE+ TEE-IO-
|
|
DevCtl: CorrErr- NonFatalErr- FatalErr- UnsupReq-
|
|
RlxdOrd- ExtTag+ PhantFunc- AuxPwr- NoSnoop-
|
|
MaxPayload 128 bytes, MaxReadReq 128 bytes
|
|
DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
|
|
LnkCap: Port #0, Speed 2.5GT/s, Width x4, ASPM L0s, Exit Latency L0s <512ns
|
|
ClockPM- Surprise+ LLActRep+ BwNot+ ASPMOptComp-
|
|
LnkCtl: ASPM Disabled; RCB 64 bytes, LnkDisable- CommClk-
|
|
ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
|
|
LnkSta: Speed 2.5GT/s, Width x4
|
|
TrErr- Train- SlotClk+ DLActive+ BWMgmt- ABWMgmt-
|
|
RootCap: CRSVisible-
|
|
RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna- CRSVisible-
|
|
RootSta: PME ReqID 0000, PMEStatus- PMEPending-
|
|
DevCap2: Completion Timeout: Range BCD, TimeoutDis+ NROPrPrP- LTR-
|
|
10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
|
|
EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
|
|
FRS- LN System CLS Not Supported, TPHComp- ExtTPHComp- ARIFwd+
|
|
AtomicOpsCap: Routing- 32bit- 64bit- 128bitCAS-
|
|
DevCtl2: Completion Timeout: 260ms to 900ms, TimeoutDis- ARIFwd-
|
|
AtomicOpsCtl: ReqEn- EgressBlck-
|
|
IDOReq- IDOCompl- LTR- EmergencyPowerReductionReq-
|
|
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
|
|
LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-
|
|
Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
|
|
Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot
|
|
LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete- EqualizationPhase1-
|
|
EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
|
|
Retimer- 2Retimers- CrosslinkRes: unsupported
|
|
Capabilities: [e0] Power Management version 3
|
|
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
|
|
Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
|
|
Capabilities: [100 v1] Advanced Error Reporting
|
|
UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
UEMsk: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
UESvrt: DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
CESta: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr- CorrIntErr- HeaderOF-
|
|
CEMsk: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+ CorrIntErr- HeaderOF-
|
|
AERCap: First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
|
|
MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
|
|
HeaderLog: 00000000 00000000 00000000 00000000
|
|
RootCmd: CERptEn- NFERptEn- FERptEn-
|
|
RootSta: CERcvd- MultCERcvd- UERcvd- MultUERcvd-
|
|
FirstFatal- NonFatalMsg- FatalMsg- IntMsgNum 0
|
|
ErrorSrc: ERR_COR: 0000 ERR_FATAL/NONFATAL: 0000
|
|
Capabilities: [150 v1] Access Control Services
|
|
ACSCap: SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
|
|
ACSCtl: SrcValid+ TransBlk- ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
|
|
Capabilities: [160 v0] Vendor Specific Information: ID=0002 Rev=0 Len=00c <?>
|
|
|
|
00:01.0 PCI bridge [0604]: Intel Corporation 5520/5500/X58 I/O Hub PCI Express Root Port 1 [8086:3408] (rev 22) (prog-if 00 [Normal decode])
|
|
Subsystem: Dell Device [1028:026d]
|
|
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx+
|
|
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0, Cache Line Size: 64 bytes
|
|
Interrupt: pin A routed to IRQ 26
|
|
IOMMU group: 8
|
|
Bus: primary=00, secondary=01, subordinate=02, sec-latency=0
|
|
I/O behind bridge: [disabled] [16-bit]
|
|
Memory behind bridge: f3e00000-f3efffff [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] Subsystem: Dell Device [1028:026d]
|
|
Capabilities: [60] MSI: Enable+ Count=1/2 Maskable+ 64bit-
|
|
Address: fee00218 Data: 0000
|
|
Masking: 00000002 Pending: 00000000
|
|
Capabilities: [90] Express (v2) Root Port (Slot-), IntMsgNum 0
|
|
DevCap: MaxPayload 256 bytes, PhantFunc 0
|
|
ExtTag+ RBE+ TEE-IO-
|
|
DevCtl: CorrErr- NonFatalErr- FatalErr- UnsupReq-
|
|
RlxdOrd- ExtTag+ PhantFunc- AuxPwr- NoSnoop-
|
|
MaxPayload 128 bytes, MaxReadReq 128 bytes
|
|
DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
|
|
LnkCap: Port #0, Speed 5GT/s, Width x4, ASPM L0s L1, Exit Latency L0s <512ns, L1 <4us
|
|
ClockPM- Surprise+ LLActRep+ BwNot+ ASPMOptComp-
|
|
LnkCtl: ASPM Disabled; RCB 64 bytes, LnkDisable- CommClk+
|
|
ExtSynch- ClockPM- AutWidDis- BWInt+ AutBWInt+
|
|
LnkSta: Speed 2.5GT/s, Width x4
|
|
TrErr- Train- SlotClk+ DLActive+ BWMgmt- ABWMgmt-
|
|
RootCap: CRSVisible+
|
|
RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna- CRSVisible+
|
|
RootSta: PME ReqID 0000, PMEStatus- PMEPending-
|
|
DevCap2: Completion Timeout: Range BCD, TimeoutDis+ NROPrPrP- LTR-
|
|
10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
|
|
EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
|
|
FRS- LN System CLS Not Supported, TPHComp- ExtTPHComp- ARIFwd+
|
|
AtomicOpsCap: Routing- 32bit- 64bit- 128bitCAS-
|
|
DevCtl2: Completion Timeout: 260ms to 900ms, TimeoutDis- ARIFwd-
|
|
AtomicOpsCtl: ReqEn- EgressBlck-
|
|
IDOReq- IDOCompl- LTR- EmergencyPowerReductionReq-
|
|
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
|
|
LnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-
|
|
Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
|
|
Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot
|
|
LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete- EqualizationPhase1-
|
|
EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
|
|
Retimer- 2Retimers- CrosslinkRes: unsupported
|
|
Capabilities: [e0] Power Management version 3
|
|
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
|
|
Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
|
|
Capabilities: [100 v1] Advanced Error Reporting
|
|
UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
UEMsk: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
UESvrt: DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
CESta: RxErr+ BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr- CorrIntErr- HeaderOF-
|
|
CEMsk: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+ CorrIntErr- HeaderOF-
|
|
AERCap: First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
|
|
MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
|
|
HeaderLog: 00000000 00000000 00000000 00000000
|
|
RootCmd: CERptEn- NFERptEn- FERptEn-
|
|
RootSta: CERcvd- MultCERcvd- UERcvd- MultUERcvd-
|
|
FirstFatal- NonFatalMsg- FatalMsg- IntMsgNum 0
|
|
ErrorSrc: ERR_COR: 0000 ERR_FATAL/NONFATAL: 0000
|
|
Capabilities: [150 v1] Access Control Services
|
|
ACSCap: SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
|
|
ACSCtl: SrcValid+ TransBlk- ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
|
|
Capabilities: [160 v0] Vendor Specific Information: ID=0002 Rev=0 Len=00c <?>
|
|
Kernel driver in use: pcieport
|
|
|
|
00:03.0 PCI bridge [0604]: Intel Corporation 5520/5500/X58 I/O Hub PCI Express Root Port 3 [8086:340a] (rev 22) (prog-if 00 [Normal decode])
|
|
Subsystem: Dell Device [1028:026d]
|
|
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx+
|
|
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0, Cache Line Size: 64 bytes
|
|
Interrupt: pin A routed to IRQ 27
|
|
IOMMU group: 9
|
|
Bus: primary=00, secondary=03, subordinate=03, sec-latency=0
|
|
I/O behind bridge: c000-cfff [size=4K] [16-bit]
|
|
Memory behind bridge: f4000000-f7efffff [size=63M] [32-bit]
|
|
Prefetchable memory behind bridge: e0000000-ebffffff [size=192M] [32-bit]
|
|
Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
|
|
BridgeCtl: Parity- SERR+ NoISA- VGA+ VGA16- MAbort- >Reset- FastB2B-
|
|
PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
|
|
Capabilities: [40] Subsystem: Dell Device [1028:026d]
|
|
Capabilities: [60] MSI: Enable+ Count=1/2 Maskable+ 64bit-
|
|
Address: fee00238 Data: 0000
|
|
Masking: 00000002 Pending: 00000000
|
|
Capabilities: [90] Express (v2) Root Port (Slot+), IntMsgNum 0
|
|
DevCap: MaxPayload 256 bytes, PhantFunc 0
|
|
ExtTag+ RBE+ TEE-IO-
|
|
DevCtl: CorrErr- NonFatalErr- FatalErr- UnsupReq-
|
|
RlxdOrd- ExtTag+ PhantFunc- AuxPwr- NoSnoop-
|
|
MaxPayload 128 bytes, MaxReadReq 128 bytes
|
|
DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
|
|
LnkCap: Port #0, Speed 5GT/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, Width x16
|
|
TrErr- Train- SlotClk+ DLActive+ BWMgmt- ABWMgmt-
|
|
SltCap: AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
|
|
Slot #2, PowerLimit 300W; Interlock- NoCompl-
|
|
SltCtl: Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
|
|
Control: AttnInd Off, PwrInd Off, Power- Interlock-
|
|
SltSta: Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
|
|
Changed: MRL- PresDet+ LinkState+
|
|
RootCap: CRSVisible+
|
|
RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna- CRSVisible+
|
|
RootSta: PME ReqID 0000, PMEStatus- PMEPending-
|
|
DevCap2: Completion Timeout: Range BCD, TimeoutDis+ NROPrPrP- LTR-
|
|
10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
|
|
EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
|
|
FRS- LN System CLS Not Supported, TPHComp- ExtTPHComp- ARIFwd+
|
|
AtomicOpsCap: Routing- 32bit- 64bit- 128bitCAS-
|
|
DevCtl2: Completion Timeout: 260ms to 900ms, TimeoutDis- ARIFwd-
|
|
AtomicOpsCtl: ReqEn- EgressBlck-
|
|
IDOReq- IDOCompl- LTR- EmergencyPowerReductionReq-
|
|
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
|
|
LnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-
|
|
Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
|
|
Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot
|
|
LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete- EqualizationPhase1-
|
|
EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
|
|
Retimer- 2Retimers- CrosslinkRes: unsupported
|
|
Capabilities: [e0] Power Management version 3
|
|
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
|
|
Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
|
|
Capabilities: [100 v1] Advanced Error Reporting
|
|
UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
UEMsk: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
UESvrt: DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
CESta: RxErr+ BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr- CorrIntErr- HeaderOF-
|
|
CEMsk: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+ CorrIntErr- HeaderOF-
|
|
AERCap: First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
|
|
MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
|
|
HeaderLog: 00000000 00000000 00000000 00000000
|
|
RootCmd: CERptEn- NFERptEn- FERptEn-
|
|
RootSta: CERcvd- MultCERcvd- UERcvd- MultUERcvd-
|
|
FirstFatal- NonFatalMsg- FatalMsg- IntMsgNum 0
|
|
ErrorSrc: ERR_COR: 0000 ERR_FATAL/NONFATAL: 0000
|
|
Capabilities: [150 v1] Access Control Services
|
|
ACSCap: SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
|
|
ACSCtl: SrcValid+ TransBlk- ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
|
|
Capabilities: [160 v0] Vendor Specific Information: ID=0002 Rev=0 Len=00c <?>
|
|
Kernel driver in use: pcieport
|
|
|
|
00:07.0 PCI bridge [0604]: Intel Corporation 5520/5500/X58 I/O Hub PCI Express Root Port 7 [8086:340e] (rev 22) (prog-if 00 [Normal decode])
|
|
Subsystem: Dell Device [1028:026d]
|
|
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx+
|
|
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0, Cache Line Size: 64 bytes
|
|
Interrupt: pin A routed to IRQ 28
|
|
IOMMU group: 10
|
|
Bus: primary=00, secondary=04, subordinate=04, sec-latency=0
|
|
I/O behind bridge: [disabled] [16-bit]
|
|
Memory behind bridge: f3f00000-f3ffffff [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] Subsystem: Dell Device [1028:026d]
|
|
Capabilities: [60] MSI: Enable+ Count=1/2 Maskable+ 64bit-
|
|
Address: fee00258 Data: 0000
|
|
Masking: 00000002 Pending: 00000000
|
|
Capabilities: [90] Express (v2) Root Port (Slot+), IntMsgNum 0
|
|
DevCap: MaxPayload 256 bytes, PhantFunc 0
|
|
ExtTag+ RBE+ TEE-IO-
|
|
DevCtl: CorrErr- NonFatalErr- FatalErr- UnsupReq-
|
|
RlxdOrd- ExtTag+ PhantFunc- AuxPwr- NoSnoop-
|
|
MaxPayload 128 bytes, MaxReadReq 128 bytes
|
|
DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
|
|
LnkCap: Port #0, Speed 5GT/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, Width x0
|
|
TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
|
|
SltCap: AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
|
|
Slot #4, PowerLimit 225W; Interlock- NoCompl-
|
|
SltCtl: Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
|
|
Control: AttnInd Off, PwrInd Off, Power- Interlock-
|
|
SltSta: Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet- Interlock-
|
|
Changed: MRL- PresDet+ LinkState-
|
|
RootCap: CRSVisible+
|
|
RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna- CRSVisible+
|
|
RootSta: PME ReqID 0000, PMEStatus- PMEPending-
|
|
DevCap2: Completion Timeout: Range BCD, TimeoutDis+ NROPrPrP- LTR-
|
|
10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
|
|
EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
|
|
FRS- LN System CLS Not Supported, TPHComp- ExtTPHComp- ARIFwd+
|
|
AtomicOpsCap: Routing- 32bit- 64bit- 128bitCAS-
|
|
DevCtl2: Completion Timeout: 260ms to 900ms, TimeoutDis- ARIFwd-
|
|
AtomicOpsCtl: ReqEn- EgressBlck-
|
|
IDOReq- IDOCompl- LTR- EmergencyPowerReductionReq-
|
|
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
|
|
LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-
|
|
Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
|
|
Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot
|
|
LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete- EqualizationPhase1-
|
|
EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
|
|
Retimer- 2Retimers- CrosslinkRes: unsupported
|
|
Capabilities: [e0] Power Management version 3
|
|
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
|
|
Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
|
|
Capabilities: [100 v1] Advanced Error Reporting
|
|
UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
UEMsk: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
UESvrt: DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
CESta: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr- CorrIntErr- HeaderOF-
|
|
CEMsk: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+ CorrIntErr- HeaderOF-
|
|
AERCap: First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
|
|
MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
|
|
HeaderLog: 00000000 00000000 00000000 00000000
|
|
RootCmd: CERptEn- NFERptEn- FERptEn-
|
|
RootSta: CERcvd- MultCERcvd- UERcvd- MultUERcvd-
|
|
FirstFatal- NonFatalMsg- FatalMsg- IntMsgNum 0
|
|
ErrorSrc: ERR_COR: 0000 ERR_FATAL/NONFATAL: 0000
|
|
Capabilities: [150 v1] Access Control Services
|
|
ACSCap: SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
|
|
ACSCtl: SrcValid+ TransBlk- ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
|
|
Capabilities: [160 v0] Vendor Specific Information: ID=0002 Rev=0 Len=00c <?>
|
|
Kernel driver in use: pcieport
|
|
|
|
00:14.0 PIC [0800]: Intel Corporation 7500/5520/5500/X58 I/O Hub System Management Registers [8086:342e] (rev 22) (prog-if 00 [8259])
|
|
Subsystem: Device [0028:006d]
|
|
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-
|
|
IOMMU group: 11
|
|
Capabilities: [40] Express (v2) Root Complex Integrated Endpoint, IntMsgNum 0
|
|
DevCap: MaxPayload 128 bytes, PhantFunc 0
|
|
ExtTag- RBE+ FLReset- TEE-IO-
|
|
DevCtl: CorrErr- NonFatalErr- FatalErr- UnsupReq-
|
|
RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
|
|
MaxPayload 128 bytes, MaxReadReq 128 bytes
|
|
DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
|
|
DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR-
|
|
10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
|
|
EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
|
|
FRS-
|
|
DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
|
|
AtomicOpsCtl: ReqEn-
|
|
IDOReq- IDOCompl- LTR- EmergencyPowerReductionReq-
|
|
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
|
|
Kernel driver in use: i7core_edac
|
|
Kernel modules: i7core_edac
|
|
|
|
00:14.1 PIC [0800]: Intel Corporation 7500/5520/5500/X58 I/O Hub GPIO and Scratch Pad Registers [8086:3422] (rev 22) (prog-if 00 [8259])
|
|
Subsystem: Device [0028:006d]
|
|
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-
|
|
IOMMU group: 12
|
|
Capabilities: [40] Express (v2) Root Complex Integrated Endpoint, IntMsgNum 0
|
|
DevCap: MaxPayload 128 bytes, PhantFunc 0
|
|
ExtTag- RBE+ FLReset- TEE-IO-
|
|
DevCtl: CorrErr- NonFatalErr- FatalErr- UnsupReq-
|
|
RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
|
|
MaxPayload 128 bytes, MaxReadReq 128 bytes
|
|
DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
|
|
DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR-
|
|
10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
|
|
EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
|
|
FRS-
|
|
DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
|
|
AtomicOpsCtl: ReqEn-
|
|
IDOReq- IDOCompl- LTR- EmergencyPowerReductionReq-
|
|
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
|
|
|
|
00:14.2 PIC [0800]: Intel Corporation 7500/5520/5500/X58 I/O Hub Control Status and RAS Registers [8086:3423] (rev 22) (prog-if 00 [8259])
|
|
Subsystem: Device [0028:006d]
|
|
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-
|
|
IOMMU group: 13
|
|
Capabilities: [40] Express (v2) Root Complex Integrated Endpoint, IntMsgNum 0
|
|
DevCap: MaxPayload 128 bytes, PhantFunc 0
|
|
ExtTag- RBE+ FLReset- TEE-IO-
|
|
DevCtl: CorrErr- NonFatalErr- FatalErr- UnsupReq-
|
|
RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
|
|
MaxPayload 128 bytes, MaxReadReq 128 bytes
|
|
DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
|
|
DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR-
|
|
10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
|
|
EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
|
|
FRS-
|
|
DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
|
|
AtomicOpsCtl: ReqEn-
|
|
IDOReq- IDOCompl- LTR- EmergencyPowerReductionReq-
|
|
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
|
|
|
|
00:1a.0 USB controller [0c03]: Intel Corporation 82801JI (ICH10 Family) USB UHCI Controller #4 [8086:3a37] (prog-if 00 [UHCI])
|
|
Subsystem: Dell Device [1028:026d]
|
|
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 16
|
|
IOMMU group: 14
|
|
Region 4: I/O ports at 1f20 [size=32]
|
|
Capabilities: [50] PCI Advanced Features
|
|
AFCap: TP+ FLR+
|
|
AFCtrl: FLR-
|
|
AFStatus: TP-
|
|
Kernel driver in use: uhci_hcd
|
|
Kernel modules: uhci_hcd
|
|
|
|
00:1a.1 USB controller [0c03]: Intel Corporation 82801JI (ICH10 Family) USB UHCI Controller #5 [8086:3a38] (prog-if 00 [UHCI])
|
|
Subsystem: Dell Device [1028:026d]
|
|
Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
Interrupt: pin B routed to IRQ 17
|
|
IOMMU group: 14
|
|
Region 4: I/O ports at 1f00 [size=32]
|
|
Capabilities: [50] PCI Advanced Features
|
|
AFCap: TP+ FLR+
|
|
AFCtrl: FLR-
|
|
AFStatus: TP-
|
|
Kernel driver in use: uhci_hcd
|
|
Kernel modules: uhci_hcd
|
|
|
|
00:1a.2 USB controller [0c03]: Intel Corporation 82801JI (ICH10 Family) USB UHCI Controller #6 [8086:3a39] (prog-if 00 [UHCI])
|
|
Subsystem: Dell Device [1028:026d]
|
|
Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
Interrupt: pin C routed to IRQ 22
|
|
IOMMU group: 14
|
|
Region 4: I/O ports at 1c00 [size=32]
|
|
Capabilities: [50] PCI Advanced Features
|
|
AFCap: TP+ FLR+
|
|
AFCtrl: FLR-
|
|
AFStatus: TP-
|
|
Kernel driver in use: uhci_hcd
|
|
Kernel modules: uhci_hcd
|
|
|
|
00:1a.7 USB controller [0c03]: Intel Corporation 82801JI (ICH10 Family) USB2 EHCI Controller #2 [8086:3a3c] (prog-if 20 [EHCI])
|
|
Subsystem: Dell Device [1028:026d]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
|
|
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
Interrupt: pin C routed to IRQ 22
|
|
IOMMU group: 14
|
|
Region 0: Memory at f7ffa000 (32-bit, non-prefetchable) [size=1K]
|
|
Capabilities: [50] Power Management version 2
|
|
Flags: PMEClk- DSI- D1- D2- AuxCurrent=375mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
|
|
Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
|
|
Capabilities: [58] Debug port: BAR=1 offset=00a0
|
|
Capabilities: [98] PCI Advanced Features
|
|
AFCap: TP+ FLR+
|
|
AFCtrl: FLR-
|
|
AFStatus: TP-
|
|
Kernel driver in use: ehci-pci
|
|
Kernel modules: ehci_pci
|
|
|
|
00:1b.0 Audio device [0403]: Intel Corporation 82801JI (ICH10 Family) HD Audio Controller [8086:3a3e] (prog-if 00 [HDA compatible])
|
|
Subsystem: Dell Device [1028:026d]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx+
|
|
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0, Cache Line Size: 64 bytes
|
|
Interrupt: pin A routed to IRQ 55
|
|
IOMMU group: 15
|
|
Region 0: Memory at f7ffc000 (64-bit, non-prefetchable) [size=16K]
|
|
Capabilities: [50] Power Management version 2
|
|
Flags: PMEClk- DSI- D1- D2- AuxCurrent=55mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
|
|
Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
|
|
Capabilities: [60] MSI: Enable+ Count=1/1 Maskable- 64bit+
|
|
Address: 00000000fee00338 Data: 0000
|
|
Capabilities: [70] Express (v1) Root Complex Integrated Endpoint, IntMsgNum 0
|
|
DevCap: MaxPayload 128 bytes, PhantFunc 0
|
|
ExtTag- RBE- FLReset+ TEE-IO-
|
|
DevCtl: CorrErr- NonFatalErr- FatalErr- UnsupReq-
|
|
RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop+ FLReset-
|
|
MaxPayload 128 bytes, MaxReadReq 128 bytes
|
|
DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
|
|
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-
|
|
VC1: Caps: PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
|
|
Arb: Fixed- WRR32- WRR64- WRR128- TWRR128- WRR256-
|
|
Ctrl: Enable- ID=0 ArbSelect=Fixed TC/VC=00
|
|
Status: NegoPending- InProgress-
|
|
Capabilities: [130 v1] Root Complex Link
|
|
Desc: PortNumber=0f ComponentID=00 EltType=Config
|
|
Link0: Desc: TargetPort=00 TargetComponent=00 AssocRCRB- LinkType=MemMapped LinkValid+
|
|
Addr: 00000000feda8000
|
|
Kernel driver in use: snd_hda_intel
|
|
Kernel modules: snd_hda_intel
|
|
|
|
00:1c.0 PCI bridge [0604]: Intel Corporation 82801JI (ICH10 Family) PCI Express Root Port 1 [8086:3a40] (prog-if 00 [Normal decode])
|
|
Subsystem: Dell Device [1028:026d]
|
|
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
|
|
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0, Cache Line Size: 64 bytes
|
|
Interrupt: pin A routed to IRQ 16
|
|
IOMMU group: 16
|
|
Bus: primary=00, secondary=05, subordinate=05, sec-latency=0
|
|
I/O behind bridge: b000-bfff [size=4K] [16-bit]
|
|
Memory behind bridge: f3c00000-f3dfffff [size=2M] [32-bit]
|
|
Prefetchable memory behind bridge: [disabled] [64-bit]
|
|
Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
|
|
BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16- MAbort- >Reset- FastB2B-
|
|
PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
|
|
Capabilities: [40] Express (v1) Root Port (Slot-), IntMsgNum 0
|
|
DevCap: MaxPayload 128 bytes, PhantFunc 0
|
|
ExtTag- RBE+ TEE-IO-
|
|
DevCtl: CorrErr- NonFatalErr- FatalErr- UnsupReq-
|
|
RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
|
|
MaxPayload 128 bytes, MaxReadReq 128 bytes
|
|
DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
|
|
LnkCap: Port #1, Speed 2.5GT/s, Width x4, ASPM L1, Exit Latency L1 <4us
|
|
ClockPM- Surprise- LLActRep+ BwNot- ASPMOptComp-
|
|
LnkCtl: ASPM Disabled; RCB 64 bytes, LnkDisable- CommClk-
|
|
ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
|
|
LnkSta: Speed 2.5GT/s, Width x4
|
|
TrErr- Train- SlotClk+ DLActive+ BWMgmt- ABWMgmt-
|
|
RootCap: CRSVisible-
|
|
RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna- CRSVisible-
|
|
RootSta: PME ReqID 0000, PMEStatus- PMEPending-
|
|
Capabilities: [80] MSI: Enable- Count=1/1 Maskable- 64bit-
|
|
Address: 00000000 Data: 0000
|
|
Capabilities: [90] Subsystem: Dell Device [1028:026d]
|
|
Capabilities: [a0] Power Management version 2
|
|
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
|
|
Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
|
|
Capabilities: [100 v1] Virtual Channel
|
|
Caps: LPEVC=0 RefClk=100ns PATEntryBits=1
|
|
Arb: Fixed+ WRR32- WRR64- WRR128-
|
|
Ctrl: ArbSelect=Fixed
|
|
Status: InProgress-
|
|
VC0: Caps: PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
|
|
Arb: Fixed+ WRR32- WRR64- WRR128- TWRR128- WRR256-
|
|
Ctrl: Enable+ ID=0 ArbSelect=Fixed TC/VC=01
|
|
Status: NegoPending- InProgress-
|
|
Capabilities: [180 v1] Root Complex Link
|
|
Desc: PortNumber=01 ComponentID=00 EltType=Config
|
|
Link0: Desc: TargetPort=00 TargetComponent=00 AssocRCRB- LinkType=MemMapped LinkValid+
|
|
Addr: 00000000feda8000
|
|
Kernel driver in use: pcieport
|
|
|
|
00:1c.5 PCI bridge [0604]: Intel Corporation 82801JI (ICH10 Family) PCI Express Root Port 6 [8086:3a4a] (prog-if 00 [Normal decode])
|
|
Subsystem: Dell Device [1028:026d]
|
|
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
|
|
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0, Cache Line Size: 64 bytes
|
|
Interrupt: pin B routed to IRQ 17
|
|
IOMMU group: 16
|
|
Bus: primary=00, secondary=06, subordinate=06, sec-latency=0
|
|
I/O behind bridge: [disabled] [16-bit]
|
|
Memory behind bridge: f3b00000-f3bfffff [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 (v1) Root Port (Slot-), IntMsgNum 0
|
|
DevCap: MaxPayload 128 bytes, PhantFunc 0
|
|
ExtTag- RBE+ TEE-IO-
|
|
DevCtl: CorrErr- NonFatalErr- FatalErr- UnsupReq-
|
|
RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
|
|
MaxPayload 128 bytes, MaxReadReq 128 bytes
|
|
DevSta: CorrErr+ NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
|
|
LnkCap: Port #6, Speed 2.5GT/s, Width x1, ASPM L0s L1, Exit Latency L0s <256ns, 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, Width x1
|
|
TrErr- Train- SlotClk+ DLActive+ BWMgmt- ABWMgmt-
|
|
RootCap: CRSVisible-
|
|
RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna- CRSVisible-
|
|
RootSta: PME ReqID 0000, PMEStatus- PMEPending-
|
|
Capabilities: [80] MSI: Enable- Count=1/1 Maskable- 64bit-
|
|
Address: 00000000 Data: 0000
|
|
Capabilities: [90] Subsystem: Dell Device [1028:026d]
|
|
Capabilities: [a0] Power Management version 2
|
|
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
|
|
Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
|
|
Capabilities: [100 v1] Virtual Channel
|
|
Caps: LPEVC=0 RefClk=100ns PATEntryBits=1
|
|
Arb: Fixed+ WRR32- WRR64- WRR128-
|
|
Ctrl: ArbSelect=Fixed
|
|
Status: InProgress-
|
|
VC0: Caps: PATOffset=00 MaxTimeSlots=1 RejSnoopTrans-
|
|
Arb: Fixed+ WRR32- WRR64- WRR128- TWRR128- WRR256-
|
|
Ctrl: Enable+ ID=0 ArbSelect=Fixed TC/VC=ff
|
|
Status: NegoPending- InProgress-
|
|
Capabilities: [180 v1] Root Complex Link
|
|
Desc: PortNumber=06 ComponentID=00 EltType=Config
|
|
Link0: Desc: TargetPort=00 TargetComponent=00 AssocRCRB- LinkType=MemMapped LinkValid+
|
|
Addr: 00000000feda8000
|
|
Kernel driver in use: pcieport
|
|
|
|
00:1d.0 USB controller [0c03]: Intel Corporation 82801JI (ICH10 Family) USB UHCI Controller #1 [8086:3a34] (prog-if 00 [UHCI])
|
|
Subsystem: Dell Device [1028:026d]
|
|
Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
Interrupt: pin A routed to IRQ 23
|
|
IOMMU group: 17
|
|
Region 4: I/O ports at 1f80 [size=32]
|
|
Capabilities: [50] PCI Advanced Features
|
|
AFCap: TP+ FLR+
|
|
AFCtrl: FLR-
|
|
AFStatus: TP-
|
|
Kernel driver in use: uhci_hcd
|
|
Kernel modules: uhci_hcd
|
|
|
|
00:1d.1 USB controller [0c03]: Intel Corporation 82801JI (ICH10 Family) USB UHCI Controller #2 [8086:3a35] (prog-if 00 [UHCI])
|
|
Subsystem: Dell Device [1028:026d]
|
|
Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
Interrupt: pin B routed to IRQ 17
|
|
IOMMU group: 17
|
|
Region 4: I/O ports at 1f60 [size=32]
|
|
Capabilities: [50] PCI Advanced Features
|
|
AFCap: TP+ FLR+
|
|
AFCtrl: FLR-
|
|
AFStatus: TP-
|
|
Kernel driver in use: uhci_hcd
|
|
Kernel modules: uhci_hcd
|
|
|
|
00:1d.2 USB controller [0c03]: Intel Corporation 82801JI (ICH10 Family) USB UHCI Controller #3 [8086:3a36] (prog-if 00 [UHCI])
|
|
Subsystem: Dell Device [1028:026d]
|
|
Control: I/O+ Mem- BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
Interrupt: pin C routed to IRQ 18
|
|
IOMMU group: 17
|
|
Region 4: I/O ports at 1f40 [size=32]
|
|
Capabilities: [50] PCI Advanced Features
|
|
AFCap: TP+ FLR+
|
|
AFCtrl: FLR-
|
|
AFStatus: TP-
|
|
Kernel driver in use: uhci_hcd
|
|
Kernel modules: uhci_hcd
|
|
|
|
00:1d.7 USB controller [0c03]: Intel Corporation 82801JI (ICH10 Family) USB2 EHCI Controller #1 [8086:3a3a] (prog-if 20 [EHCI])
|
|
Subsystem: Dell Device [1028:026d]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
|
|
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
Interrupt: pin A routed to IRQ 23
|
|
IOMMU group: 17
|
|
Region 0: Memory at ff980000 (32-bit, non-prefetchable) [size=1K]
|
|
Capabilities: [50] Power Management version 2
|
|
Flags: PMEClk- DSI- D1- D2- AuxCurrent=375mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
|
|
Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
|
|
Capabilities: [58] Debug port: BAR=1 offset=00a0
|
|
Capabilities: [98] PCI Advanced Features
|
|
AFCap: TP+ FLR+
|
|
AFCtrl: FLR-
|
|
AFStatus: TP-
|
|
Kernel driver in use: ehci-pci
|
|
Kernel modules: ehci_pci
|
|
|
|
00:1e.0 PCI bridge [0604]: Intel Corporation 82801 PCI Bridge [8086:244e] (rev 90) (prog-if 01 [Subtractive decode])
|
|
Subsystem: Dell Device [1028:026d]
|
|
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: 18
|
|
Bus: primary=00, secondary=07, subordinate=07, sec-latency=32
|
|
I/O behind bridge: [disabled] [16-bit]
|
|
Memory behind bridge: f3a00000-f3afffff [size=1M] [32-bit]
|
|
Prefetchable memory behind bridge: [disabled] [64-bit]
|
|
Secondary status: 66MHz- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort+ <SERR- <PERR-
|
|
BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16- MAbort- >Reset- FastB2B-
|
|
PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
|
|
Capabilities: [50] Subsystem: Dell Device [1028:026d]
|
|
|
|
00:1f.0 ISA bridge [0601]: Intel Corporation 82801JIR (ICH10R) LPC Interface Controller [8086:3a16]
|
|
Subsystem: Dell Device [1028:026d]
|
|
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: 19
|
|
Capabilities: [e0] Vendor Specific Information: Len=0c <?>
|
|
Kernel driver in use: lpc_ich
|
|
Kernel modules: lpc_ich
|
|
|
|
00:1f.2 IDE interface [0101]: Intel Corporation 82801JI (ICH10 Family) 4 port SATA IDE Controller #1 [8086:3a20] (prog-if 8f [PCI native mode controller, supports both channels switched to ISA compatibility mode, supports bus mastering])
|
|
Subsystem: Dell Device [1028:026d]
|
|
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
Interrupt: pin C routed to IRQ 20
|
|
IOMMU group: 19
|
|
Region 0: I/O ports at 1e00 [size=8]
|
|
Region 1: I/O ports at 1e10 [size=4]
|
|
Region 2: I/O ports at 1e20 [size=8]
|
|
Region 3: I/O ports at 1e30 [size=4]
|
|
Region 4: I/O ports at 1ec0 [size=16]
|
|
Region 5: I/O ports at dcc0 [size=16]
|
|
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: [b0] PCI Advanced Features
|
|
AFCap: TP+ FLR+
|
|
AFCtrl: FLR-
|
|
AFStatus: TP-
|
|
Kernel driver in use: ata_piix
|
|
Kernel modules: pata_acpi
|
|
|
|
00:1f.3 SMBus [0c05]: Intel Corporation 82801JI (ICH10 Family) SMBus Controller [8086:3a30]
|
|
Subsystem: Dell Device [1028:026d]
|
|
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 C routed to IRQ 20
|
|
IOMMU group: 19
|
|
Region 0: Memory at f7ffb000 (64-bit, non-prefetchable) [size=256]
|
|
Region 4: I/O ports at dce0 [size=32]
|
|
Kernel driver in use: i801_smbus
|
|
Kernel modules: i2c_i801
|
|
|
|
00:1f.5 IDE interface [0101]: Intel Corporation 82801JI (ICH10 Family) 2 port SATA IDE Controller #2 [8086:3a26] (prog-if 85 [PCI native mode-only controller, supports bus mastering])
|
|
Subsystem: Dell Device [1028:026d]
|
|
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
Interrupt: pin C routed to IRQ 20
|
|
IOMMU group: 19
|
|
Region 0: I/O ports at 1e40 [size=8]
|
|
Region 1: I/O ports at 1e50 [size=4]
|
|
Region 2: I/O ports at 1e60 [size=8]
|
|
Region 3: I/O ports at 1e70 [size=4]
|
|
Region 4: I/O ports at 1ed0 [size=16]
|
|
Region 5: I/O ports at dcd0 [size=16]
|
|
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: [b0] PCI Advanced Features
|
|
AFCap: TP+ FLR+
|
|
AFCtrl: FLR-
|
|
AFStatus: TP-
|
|
Kernel driver in use: ata_piix
|
|
Kernel modules: pata_acpi
|
|
|
|
01:00.0 PCI bridge [0604]: Pericom Semiconductor PCI Express to PCI-XPI7C9X130 PCI-X Bridge [12d8:e130] (rev 04) (prog-if 00 [Normal decode])
|
|
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
|
|
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0, Cache Line Size: 64 bytes
|
|
Interrupt: pin A routed to IRQ 11
|
|
IOMMU group: 20
|
|
Bus: primary=01, secondary=02, subordinate=02, sec-latency=64
|
|
I/O behind bridge: [disabled] [32-bit]
|
|
Memory behind bridge: [disabled] [32-bit]
|
|
Prefetchable memory behind bridge: [disabled] [64-bit]
|
|
Secondary status: 66MHz+ FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- <SERR- <PERR-
|
|
BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16- MAbort- >Reset- FastB2B-
|
|
PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
|
|
Capabilities: [80] PCI-X bridge device
|
|
Secondary Status: 64bit+ 133MHz+ SCD- USC- SCO- SRD- Freq=100MHz
|
|
Status: Dev=01:00.0 64bit- 133MHz- SCD- USC- SCO- SRD-
|
|
Upstream: Capacity=16 CommitmentLimit=16
|
|
Downstream: Capacity=16 CommitmentLimit=16
|
|
Capabilities: [90] Power Management version 3
|
|
Flags: PMEClk- DSI- D1- D2- AuxCurrent=55mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
|
|
Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
|
|
Capabilities: [a8] Subsystem: Device [0000:0000]
|
|
Capabilities: [b0] Express (v1) PCI-Express to PCI/PCI-X Bridge, IntMsgNum 0
|
|
DevCap: MaxPayload 512 bytes, PhantFunc 0
|
|
ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ SlotPowerLimit 0W TEE-IO-
|
|
DevCtl: CorrErr- NonFatalErr- FatalErr- UnsupReq-
|
|
RlxdOrd- ExtTag+ PhantFunc- AuxPwr- NoSnoop- BrConfRtry-
|
|
MaxPayload 128 bytes, MaxReadReq 512 bytes
|
|
DevSta: CorrErr- NonFatalErr+ FatalErr- UnsupReq- AuxPwr+ TransPend-
|
|
LnkCap: Port #0, Speed 2.5GT/s, Width x4, ASPM L0s L1, Exit Latency L0s <512ns, L1 <1us
|
|
ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp-
|
|
LnkCtl: ASPM Disabled; RCB 64 bytes, LnkDisable- CommClk+
|
|
ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
|
|
LnkSta: Speed 2.5GT/s, Width x4
|
|
TrErr- Train- SlotClk+ DLActive+ BWMgmt- ABWMgmt-
|
|
Capabilities: [f0] MSI: Enable- Count=1/1 Maskable- 64bit+
|
|
Address: 0000000000000000 Data: 0000
|
|
Capabilities: [100 v1] Advanced Error Reporting
|
|
UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
UEMsk: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
UESvrt: DLP+ SDES- TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
CESta: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr- CorrIntErr- HeaderOF-
|
|
CEMsk: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+ CorrIntErr- HeaderOF-
|
|
AERCap: First Error Pointer: 00, ECRCGenCap+ ECRCGenEn- ECRCChkCap+ ECRCChkEn-
|
|
MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
|
|
HeaderLog: 00000000 00000000 00000000 00000000
|
|
Capabilities: [150 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-
|
|
|
|
03:00.0 VGA compatible controller [0300]: NVIDIA Corporation GF100GL [Quadro 4000] [10de:06dd] (rev a3) (prog-if 00 [VGA controller])
|
|
Subsystem: NVIDIA Corporation Device [10de:0780]
|
|
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
|
|
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0, Cache Line Size: 64 bytes
|
|
Interrupt: pin A routed to IRQ 57
|
|
IOMMU group: 21
|
|
Region 0: Memory at f4000000 (32-bit, non-prefetchable) [size=32M]
|
|
Region 1: Memory at e0000000 (64-bit, prefetchable) [size=128M]
|
|
Region 3: Memory at e8000000 (64-bit, prefetchable) [size=64M]
|
|
Region 5: I/O ports at cc80 [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: 00000000fee00378 Data: 0000
|
|
Capabilities: [78] Express (v2) Endpoint, IntMsgNum 0
|
|
DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s unlimited, L1 <64us
|
|
ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset- SlotPowerLimit 300W TEE-IO-
|
|
DevCtl: CorrErr- NonFatalErr+ FatalErr+ UnsupReq-
|
|
RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
|
|
MaxPayload 128 bytes, MaxReadReq 512 bytes
|
|
DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
|
|
LnkCap: Port #0, Speed 2.5GT/s, Width x16, ASPM L0s L1, Exit Latency L0s <256ns, L1 <4us
|
|
ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp-
|
|
LnkCtl: ASPM Disabled; RCB 64 bytes, LnkDisable- CommClk+
|
|
ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
|
|
LnkSta: Speed 2.5GT/s, Width x16
|
|
TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
|
|
DevCap2: Completion Timeout: Not Supported, TimeoutDis+ NROPrPrP- LTR-
|
|
10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
|
|
EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
|
|
FRS- TPHComp- ExtTPHComp-
|
|
AtomicOpsCap: 32bit- 64bit- 128bitCAS-
|
|
DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
|
|
AtomicOpsCtl: ReqEn-
|
|
IDOReq- IDOCompl- LTR- EmergencyPowerReductionReq-
|
|
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
|
|
LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-
|
|
Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
|
|
Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot
|
|
LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete- EqualizationPhase1-
|
|
EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
|
|
Retimer- 2Retimers- CrosslinkRes: unsupported
|
|
Capabilities: [b4] Vendor Specific Information: Len=14 <?>
|
|
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=01
|
|
Status: NegoPending- InProgress-
|
|
Capabilities: [128 v1] Power Budgeting <?>
|
|
Capabilities: [600 v1] Vendor Specific Information: ID=0001 Rev=1 Len=024 <?>
|
|
Kernel driver in use: nouveau
|
|
Kernel modules: nvidiafb, nouveau
|
|
|
|
03:00.1 Audio device [0403]: NVIDIA Corporation GF100 High Definition Audio Controller [10de:0be5] (rev a1) (prog-if 00 [HDA compatible])
|
|
Subsystem: NVIDIA Corporation Device [10de:0780]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0, Cache Line Size: 64 bytes
|
|
Interrupt: pin B routed to IRQ 54
|
|
IOMMU group: 21
|
|
Region 0: Memory at f7dfc000 (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: 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) Endpoint, IntMsgNum 0
|
|
DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s <4us, L1 <64us
|
|
ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset- SlotPowerLimit 300W TEE-IO-
|
|
DevCtl: CorrErr- NonFatalErr+ FatalErr+ UnsupReq-
|
|
RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
|
|
MaxPayload 128 bytes, MaxReadReq 512 bytes
|
|
DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
|
|
LnkCap: Port #0, Speed 2.5GT/s, Width x16, ASPM L0s L1, Exit Latency L0s <256ns, L1 <4us
|
|
ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp-
|
|
LnkCtl: ASPM Disabled; RCB 64 bytes, LnkDisable- CommClk+
|
|
ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
|
|
LnkSta: Speed 2.5GT/s, Width x16
|
|
TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
|
|
DevCap2: Completion Timeout: Not Supported, TimeoutDis+ NROPrPrP- LTR-
|
|
10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
|
|
EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
|
|
FRS- 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: -6dB, EqualizationComplete- EqualizationPhase1-
|
|
EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
|
|
Retimer- 2Retimers- CrosslinkRes: unsupported
|
|
Kernel driver in use: snd_hda_intel
|
|
Kernel modules: snd_hda_intel
|
|
|
|
05:00.0 SCSI storage controller [0100]: Broadcom / LSI SAS1068E PCI-Express Fusion-MPT SAS [1000:0058] (rev 08) (prog-if 00 [Vendor specific])
|
|
Subsystem: Dell SAS 6/iR Integrated Workstations RAID Controller [1028:021d]
|
|
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0, Cache Line Size: 64 bytes
|
|
Interrupt: pin A routed to IRQ 16
|
|
IOMMU group: 16
|
|
Region 0: I/O ports at bc00 [size=256]
|
|
Region 1: Memory at f3cec000 (64-bit, non-prefetchable) [size=16K]
|
|
Region 3: Memory at f3cf0000 (64-bit, non-prefetchable) [size=64K]
|
|
Expansion ROM at f3d00000 [disabled] [size=1M]
|
|
Capabilities: [50] Power Management version 2
|
|
Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot-,D3cold-)
|
|
Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-
|
|
Capabilities: [68] Express (v1) Endpoint, IntMsgNum 0
|
|
DevCap: MaxPayload 4096 bytes, PhantFunc 0, Latency L0s <64ns, L1 <1us
|
|
ExtTag+ AttnBtn- AttnInd- PwrInd- RBE- FLReset- SlotPowerLimit 0W TEE-IO-
|
|
DevCtl: CorrErr- NonFatalErr+ FatalErr+ UnsupReq-
|
|
RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop+
|
|
MaxPayload 128 bytes, MaxReadReq 512 bytes
|
|
DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
|
|
LnkCap: Port #0, Speed 2.5GT/s, Width x8, ASPM L0s L1, Exit Latency L0s <64ns, L1 <1us
|
|
ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp-
|
|
LnkCtl: ASPM Disabled; RCB 64 bytes, LnkDisable- CommClk-
|
|
ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
|
|
LnkSta: Speed 2.5GT/s, Width x4 (downgraded)
|
|
TrErr- Train- SlotClk- DLActive- BWMgmt- ABWMgmt-
|
|
Capabilities: [98] MSI: Enable- Count=1/1 Maskable- 64bit+
|
|
Address: 0000000000000000 Data: 0000
|
|
Capabilities: [b0] MSI-X: Enable- Count=1 Masked-
|
|
Vector table: BAR=1 offset=00002000
|
|
PBA: BAR=1 offset=00003000
|
|
Capabilities: [100 v1] Advanced Error Reporting
|
|
UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
UEMsk: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
UESvrt: DLP+ SDES- TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
CESta: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr- CorrIntErr- HeaderOF-
|
|
CEMsk: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr- CorrIntErr- HeaderOF-
|
|
AERCap: First Error Pointer: 00, ECRCGenCap+ ECRCGenEn- ECRCChkCap+ ECRCChkEn-
|
|
MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
|
|
HeaderLog: 00000000 00000000 00000000 00000000
|
|
Kernel driver in use: mptsas
|
|
Kernel modules: mptsas
|
|
|
|
06:00.0 Ethernet controller [0200]: Broadcom Inc. and subsidiaries NetXtreme BCM5761 Gigabit Ethernet PCIe [14e4:1681] (rev 10)
|
|
Subsystem: Dell Device [1028:026d]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
|
|
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0, Cache Line Size: 64 bytes
|
|
Interrupt: pin A routed to IRQ 58
|
|
IOMMU group: 16
|
|
Region 0: Memory at f3be0000 (64-bit, non-prefetchable) [size=64K]
|
|
Region 2: Memory at f3bf0000 (64-bit, non-prefetchable) [size=64K]
|
|
Capabilities: [48] Power Management version 3
|
|
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-,D3hot+,D3cold+)
|
|
Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=1 PME-
|
|
Capabilities: [40] Vital Product Data
|
|
Product Name: Broadcom NetXtreme Gigabit Ethernet Controller
|
|
Read-only fields:
|
|
[PN] Part number: BCM95761
|
|
[EC] Engineering changes: 106679-15
|
|
[SN] Serial number: 0123456789
|
|
[MN] Manufacture ID: 14e4
|
|
[RV] Reserved: checksum good, 28 byte(s) reserved
|
|
Read/write fields:
|
|
[YA] Asset tag: XYZ01234567
|
|
[RW] Read-write area: 107 byte(s) free
|
|
End
|
|
Capabilities: [60] Vendor Specific Information: Len=6c <?>
|
|
Capabilities: [50] MSI: Enable+ Count=1/1 Maskable- 64bit+
|
|
Address: 00000000fee00398 Data: 0000
|
|
Capabilities: [cc] Express (v2) Endpoint, IntMsgNum 0
|
|
DevCap: MaxPayload 256 bytes, PhantFunc 0, Latency L0s <4us, L1 unlimited
|
|
ExtTag+ AttnBtn- AttnInd- PwrInd- RBE+ FLReset- SlotPowerLimit 0W TEE-IO-
|
|
DevCtl: CorrErr- NonFatalErr+ FatalErr+ UnsupReq-
|
|
RlxdOrd- ExtTag+ PhantFunc- AuxPwr- NoSnoop-
|
|
MaxPayload 128 bytes, MaxReadReq 512 bytes
|
|
DevSta: CorrErr+ NonFatalErr- FatalErr- UnsupReq- AuxPwr+ TransPend-
|
|
LnkCap: Port #0, Speed 2.5GT/s, Width x1, ASPM L0s L1, Exit Latency L0s <1us, L1 <64us
|
|
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, Width x1
|
|
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-
|
|
LnkCtl2: Target Link Speed: 2.5GT/s, EnterCompliance- SpeedDis-
|
|
Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
|
|
Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot
|
|
LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete- EqualizationPhase1-
|
|
EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
|
|
Retimer- 2Retimers- CrosslinkRes: unsupported
|
|
Capabilities: [100 v1] Advanced Error Reporting
|
|
UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
UEMsk: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
UESvrt: DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
CESta: RxErr+ BadTLP+ BadDLLP+ Rollover- Timeout+ AdvNonFatalErr- CorrIntErr- HeaderOF-
|
|
CEMsk: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+ CorrIntErr- HeaderOF-
|
|
AERCap: First Error Pointer: 00, ECRCGenCap+ ECRCGenEn- ECRCChkCap+ ECRCChkEn-
|
|
MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
|
|
HeaderLog: 00000000 00000000 00000000 00000000
|
|
Capabilities: [13c v1] 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=01
|
|
Status: NegoPending- InProgress-
|
|
Capabilities: [160 v1] Device Serial Number 18-03-73-ff-fe-43-ce-de
|
|
Capabilities: [16c v1] Power Budgeting <?>
|
|
Kernel driver in use: tg3
|
|
Kernel modules: tg3
|
|
|
|
07:0a.0 FireWire (IEEE 1394) [0c00]: Texas Instruments TSB43AB22A IEEE-1394a-2000 Controller (PHY/Link) [iOHCI-Lynx] [104c:8023] (prog-if 10 [OHCI])
|
|
Subsystem: Dell Device [1028:026d]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV+ VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx-
|
|
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=medium >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 64 (500ns min, 1000ns max), Cache Line Size: 64 bytes
|
|
Interrupt: pin A routed to IRQ 18
|
|
IOMMU group: 18
|
|
Region 0: Memory at f3afb000 (32-bit, non-prefetchable) [size=2K]
|
|
Region 1: Memory at f3afc000 (32-bit, non-prefetchable) [size=16K]
|
|
Capabilities: [44] Power Management version 2
|
|
Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=55mA PME(D0+,D1+,D2+,D3hot+,D3cold+)
|
|
Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME+
|
|
Kernel driver in use: firewire_ohci
|
|
Kernel modules: firewire_ohci
|
|
|
|
20:03.0 PCI bridge [0604]: Intel Corporation 5520/5500/X58 I/O Hub PCI Express Root Port 3 [8086:340a] (rev 22) (prog-if 00 [Normal decode])
|
|
Subsystem: Dell Device [1028:026d]
|
|
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx+
|
|
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0, Cache Line Size: 64 bytes
|
|
Interrupt: pin A routed to IRQ 29
|
|
IOMMU group: 0
|
|
Bus: primary=20, secondary=22, subordinate=22, sec-latency=0
|
|
I/O behind bridge: e000-efff [size=4K] [16-bit]
|
|
Memory behind bridge: dfd00000-dfefffff [size=2M] [32-bit]
|
|
Prefetchable memory behind bridge: [disabled] [64-bit]
|
|
Secondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-
|
|
BridgeCtl: Parity- SERR+ NoISA- VGA- VGA16- MAbort- >Reset- FastB2B-
|
|
PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
|
|
Capabilities: [40] Subsystem: Dell Device [1028:026d]
|
|
Capabilities: [60] MSI: Enable+ Count=1/2 Maskable+ 64bit-
|
|
Address: fee00018 Data: 0000
|
|
Masking: 00000002 Pending: 00000000
|
|
Capabilities: [90] Express (v2) Root Port (Slot+), IntMsgNum 0
|
|
DevCap: MaxPayload 256 bytes, PhantFunc 0
|
|
ExtTag+ RBE+ TEE-IO-
|
|
DevCtl: CorrErr- NonFatalErr- FatalErr- UnsupReq-
|
|
RlxdOrd- ExtTag+ PhantFunc- AuxPwr- NoSnoop-
|
|
MaxPayload 256 bytes, MaxReadReq 128 bytes
|
|
DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
|
|
LnkCap: Port #0, Speed 5GT/s, Width x4, ASPM L0s L1, Exit Latency L0s <512ns, L1 <64us
|
|
ClockPM- Surprise+ LLActRep+ BwNot+ ASPMOptComp-
|
|
LnkCtl: ASPM Disabled; RCB 64 bytes, LnkDisable- CommClk+
|
|
ExtSynch- ClockPM- AutWidDis- BWInt+ AutBWInt+
|
|
LnkSta: Speed 2.5GT/s, Width x4
|
|
TrErr- Train- SlotClk+ DLActive+ BWMgmt- ABWMgmt-
|
|
SltCap: AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
|
|
Slot #6, PowerLimit 25W; Interlock- NoCompl-
|
|
SltCtl: Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
|
|
Control: AttnInd Off, PwrInd Off, Power- Interlock-
|
|
SltSta: Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
|
|
Changed: MRL- PresDet+ LinkState+
|
|
RootCap: CRSVisible+
|
|
RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna- CRSVisible+
|
|
RootSta: PME ReqID 0000, PMEStatus- PMEPending-
|
|
DevCap2: Completion Timeout: Range BCD, TimeoutDis+ NROPrPrP- LTR-
|
|
10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
|
|
EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
|
|
FRS- LN System CLS Not Supported, TPHComp- ExtTPHComp- ARIFwd+
|
|
AtomicOpsCap: Routing- 32bit- 64bit- 128bitCAS-
|
|
DevCtl2: Completion Timeout: 260ms to 900ms, TimeoutDis- ARIFwd-
|
|
AtomicOpsCtl: ReqEn- EgressBlck-
|
|
IDOReq- IDOCompl- LTR- EmergencyPowerReductionReq-
|
|
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
|
|
LnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-
|
|
Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
|
|
Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot
|
|
LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete- EqualizationPhase1-
|
|
EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
|
|
Retimer- 2Retimers- CrosslinkRes: unsupported
|
|
Capabilities: [e0] Power Management version 3
|
|
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
|
|
Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
|
|
Capabilities: [100 v1] Advanced Error Reporting
|
|
UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
UEMsk: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
UESvrt: DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
CESta: RxErr+ BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr- CorrIntErr- HeaderOF-
|
|
CEMsk: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+ CorrIntErr- HeaderOF-
|
|
AERCap: First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
|
|
MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
|
|
HeaderLog: 00000000 00000000 00000000 00000000
|
|
RootCmd: CERptEn- NFERptEn- FERptEn-
|
|
RootSta: CERcvd- MultCERcvd- UERcvd- MultUERcvd-
|
|
FirstFatal- NonFatalMsg- FatalMsg- IntMsgNum 0
|
|
ErrorSrc: ERR_COR: 0000 ERR_FATAL/NONFATAL: 0000
|
|
Capabilities: [150 v1] Access Control Services
|
|
ACSCap: SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
|
|
ACSCtl: SrcValid+ TransBlk- ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
|
|
Capabilities: [160 v0] Vendor Specific Information: ID=0002 Rev=0 Len=00c <?>
|
|
Kernel driver in use: pcieport
|
|
|
|
20:07.0 PCI bridge [0604]: Intel Corporation 5520/5500/X58 I/O Hub PCI Express Root Port 7 [8086:340e] (rev 22) (prog-if 00 [Normal decode])
|
|
Subsystem: Dell Device [1028:026d]
|
|
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx+
|
|
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0, Cache Line Size: 64 bytes
|
|
Interrupt: pin A routed to IRQ 30
|
|
IOMMU group: 1
|
|
Bus: primary=20, secondary=23, subordinate=23, 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] Subsystem: Dell Device [1028:026d]
|
|
Capabilities: [60] MSI: Enable+ Count=1/2 Maskable+ 64bit-
|
|
Address: fee00038 Data: 0000
|
|
Masking: 00000002 Pending: 00000000
|
|
Capabilities: [90] Express (v2) Root Port (Slot+), IntMsgNum 0
|
|
DevCap: MaxPayload 256 bytes, PhantFunc 0
|
|
ExtTag+ RBE+ TEE-IO-
|
|
DevCtl: CorrErr- NonFatalErr- FatalErr- UnsupReq-
|
|
RlxdOrd- ExtTag+ PhantFunc- AuxPwr- NoSnoop-
|
|
MaxPayload 128 bytes, MaxReadReq 128 bytes
|
|
DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
|
|
LnkCap: Port #0, Speed 5GT/s, Width x4, ASPM L0s L1, Exit Latency L0s <512ns, L1 <64us
|
|
ClockPM- Surprise+ LLActRep+ BwNot+ ASPMOptComp-
|
|
LnkCtl: ASPM Disabled; RCB 64 bytes, LnkDisable- CommClk+
|
|
ExtSynch- ClockPM- AutWidDis- BWInt+ AutBWInt+
|
|
LnkSta: Speed 5GT/s, Width x1
|
|
TrErr- Train- SlotClk+ DLActive+ BWMgmt- ABWMgmt-
|
|
SltCap: AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
|
|
Slot #3, PowerLimit 40W; Interlock- NoCompl-
|
|
SltCtl: Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
|
|
Control: AttnInd Off, PwrInd Off, Power- Interlock-
|
|
SltSta: Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
|
|
Changed: MRL- PresDet+ LinkState+
|
|
RootCap: CRSVisible+
|
|
RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna- CRSVisible+
|
|
RootSta: PME ReqID 0000, PMEStatus- PMEPending-
|
|
DevCap2: Completion Timeout: Range BCD, TimeoutDis+ NROPrPrP- LTR-
|
|
10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
|
|
EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
|
|
FRS- LN System CLS Not Supported, TPHComp- ExtTPHComp- ARIFwd+
|
|
AtomicOpsCap: Routing- 32bit- 64bit- 128bitCAS-
|
|
DevCtl2: Completion Timeout: 260ms to 900ms, TimeoutDis- ARIFwd-
|
|
AtomicOpsCtl: ReqEn- EgressBlck-
|
|
IDOReq- IDOCompl- LTR- EmergencyPowerReductionReq-
|
|
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
|
|
LnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-
|
|
Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
|
|
Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot
|
|
LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete- EqualizationPhase1-
|
|
EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
|
|
Retimer- 2Retimers- CrosslinkRes: unsupported
|
|
Capabilities: [e0] Power Management version 3
|
|
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
|
|
Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
|
|
Capabilities: [100 v1] Advanced Error Reporting
|
|
UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
UEMsk: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
UESvrt: DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
CESta: RxErr+ BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr- CorrIntErr- HeaderOF-
|
|
CEMsk: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+ CorrIntErr- HeaderOF-
|
|
AERCap: First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
|
|
MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
|
|
HeaderLog: 00000000 00000000 00000000 00000000
|
|
RootCmd: CERptEn- NFERptEn- FERptEn-
|
|
RootSta: CERcvd- MultCERcvd- UERcvd- MultUERcvd-
|
|
FirstFatal- NonFatalMsg- FatalMsg- IntMsgNum 0
|
|
ErrorSrc: ERR_COR: 0000 ERR_FATAL/NONFATAL: 0000
|
|
Capabilities: [150 v1] Access Control Services
|
|
ACSCap: SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
|
|
ACSCtl: SrcValid+ TransBlk- ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
|
|
Capabilities: [160 v0] Vendor Specific Information: ID=0002 Rev=0 Len=00c <?>
|
|
Kernel driver in use: pcieport
|
|
|
|
20:09.0 PCI bridge [0604]: Intel Corporation 7500/5520/5500/X58 I/O Hub PCI Express Root Port 9 [8086:3410] (rev 22) (prog-if 00 [Normal decode])
|
|
Subsystem: Dell Device [1028:026d]
|
|
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR+ FastB2B- DisINTx+
|
|
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0, Cache Line Size: 64 bytes
|
|
Interrupt: pin A routed to IRQ 31
|
|
IOMMU group: 2
|
|
Bus: primary=20, secondary=24, subordinate=24, 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] Subsystem: Dell Device [1028:026d]
|
|
Capabilities: [60] MSI: Enable+ Count=1/2 Maskable+ 64bit-
|
|
Address: fee00058 Data: 0000
|
|
Masking: 00000002 Pending: 00000000
|
|
Capabilities: [90] Express (v2) Root Port (Slot+), IntMsgNum 0
|
|
DevCap: MaxPayload 256 bytes, PhantFunc 0
|
|
ExtTag+ RBE+ TEE-IO-
|
|
DevCtl: CorrErr- NonFatalErr- FatalErr- UnsupReq-
|
|
RlxdOrd- ExtTag+ PhantFunc- AuxPwr- NoSnoop-
|
|
MaxPayload 128 bytes, MaxReadReq 128 bytes
|
|
DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
|
|
LnkCap: Port #0, Speed 5GT/s, Width x4, ASPM L0s L1, Exit Latency L0s <512ns, L1 <64us
|
|
ClockPM- Surprise+ LLActRep+ BwNot+ ASPMOptComp-
|
|
LnkCtl: ASPM Disabled; RCB 64 bytes, LnkDisable- CommClk+
|
|
ExtSynch- ClockPM- AutWidDis- BWInt+ AutBWInt+
|
|
LnkSta: Speed 5GT/s, Width x1
|
|
TrErr- Train- SlotClk+ DLActive+ BWMgmt- ABWMgmt-
|
|
SltCap: AttnBtn- PwrCtrl- MRL- AttnInd- PwrInd- HotPlug- Surprise-
|
|
Slot #1, PowerLimit 40W; Interlock- NoCompl-
|
|
SltCtl: Enable: AttnBtn- PwrFlt- MRL- PresDet- CmdCplt- HPIrq- LinkChg-
|
|
Control: AttnInd Off, PwrInd Off, Power- Interlock-
|
|
SltSta: Status: AttnBtn- PowerFlt- MRL- CmdCplt- PresDet+ Interlock-
|
|
Changed: MRL- PresDet+ LinkState+
|
|
RootCap: CRSVisible+
|
|
RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna- CRSVisible+
|
|
RootSta: PME ReqID 0000, PMEStatus- PMEPending-
|
|
DevCap2: Completion Timeout: Range BCD, TimeoutDis+ NROPrPrP- LTR-
|
|
10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
|
|
EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
|
|
FRS- LN System CLS Not Supported, TPHComp- ExtTPHComp- ARIFwd+
|
|
AtomicOpsCap: Routing- 32bit- 64bit- 128bitCAS-
|
|
DevCtl2: Completion Timeout: 260ms to 900ms, TimeoutDis- ARIFwd-
|
|
AtomicOpsCtl: ReqEn- EgressBlck-
|
|
IDOReq- IDOCompl- LTR- EmergencyPowerReductionReq-
|
|
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
|
|
LnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-
|
|
Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-
|
|
Compliance Preset/De-emphasis: -6dB de-emphasis, 0dB preshoot
|
|
LnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete- EqualizationPhase1-
|
|
EqualizationPhase2- EqualizationPhase3- LinkEqualizationRequest-
|
|
Retimer- 2Retimers- CrosslinkRes: unsupported
|
|
Capabilities: [e0] Power Management version 3
|
|
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
|
|
Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-
|
|
Capabilities: [100 v1] Advanced Error Reporting
|
|
UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
UEMsk: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
UESvrt: DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
CESta: RxErr+ BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr- CorrIntErr- HeaderOF-
|
|
CEMsk: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+ CorrIntErr- HeaderOF-
|
|
AERCap: First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
|
|
MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
|
|
HeaderLog: 00000000 00000000 00000000 00000000
|
|
RootCmd: CERptEn- NFERptEn- FERptEn-
|
|
RootSta: CERcvd- MultCERcvd- UERcvd- MultUERcvd-
|
|
FirstFatal- NonFatalMsg- FatalMsg- IntMsgNum 0
|
|
ErrorSrc: ERR_COR: 0000 ERR_FATAL/NONFATAL: 0000
|
|
Capabilities: [150 v1] Access Control Services
|
|
ACSCap: SrcValid+ TransBlk+ ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
|
|
ACSCtl: SrcValid+ TransBlk- ReqRedir+ CmpltRedir+ UpstreamFwd+ EgressCtrl- DirectTrans-
|
|
Kernel driver in use: pcieport
|
|
|
|
20:14.0 PIC [0800]: Intel Corporation 7500/5520/5500/X58 I/O Hub System Management Registers [8086:342e] (rev 22) (prog-if 00 [8259])
|
|
Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
IOMMU group: 22
|
|
Capabilities: [40] Express (v2) Root Complex Integrated Endpoint, IntMsgNum 0
|
|
DevCap: MaxPayload 128 bytes, PhantFunc 0
|
|
ExtTag- RBE+ FLReset- TEE-IO-
|
|
DevCtl: CorrErr- NonFatalErr- FatalErr- UnsupReq-
|
|
RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
|
|
MaxPayload 128 bytes, MaxReadReq 128 bytes
|
|
DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
|
|
DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR-
|
|
10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
|
|
EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
|
|
FRS-
|
|
DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
|
|
AtomicOpsCtl: ReqEn-
|
|
IDOReq- IDOCompl- LTR- EmergencyPowerReductionReq-
|
|
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
|
|
Kernel modules: i7core_edac
|
|
|
|
20:14.1 PIC [0800]: Intel Corporation 7500/5520/5500/X58 I/O Hub GPIO and Scratch Pad Registers [8086:3422] (rev 22) (prog-if 00 [8259])
|
|
Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
IOMMU group: 23
|
|
Capabilities: [40] Express (v2) Root Complex Integrated Endpoint, IntMsgNum 0
|
|
DevCap: MaxPayload 128 bytes, PhantFunc 0
|
|
ExtTag- RBE+ FLReset- TEE-IO-
|
|
DevCtl: CorrErr- NonFatalErr- FatalErr- UnsupReq-
|
|
RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
|
|
MaxPayload 128 bytes, MaxReadReq 128 bytes
|
|
DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
|
|
DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR-
|
|
10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
|
|
EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
|
|
FRS-
|
|
DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
|
|
AtomicOpsCtl: ReqEn-
|
|
IDOReq- IDOCompl- LTR- EmergencyPowerReductionReq-
|
|
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
|
|
|
|
20:14.2 PIC [0800]: Intel Corporation 7500/5520/5500/X58 I/O Hub Control Status and RAS Registers [8086:3423] (rev 22) (prog-if 00 [8259])
|
|
Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
IOMMU group: 24
|
|
Capabilities: [40] Express (v2) Root Complex Integrated Endpoint, IntMsgNum 0
|
|
DevCap: MaxPayload 128 bytes, PhantFunc 0
|
|
ExtTag- RBE+ FLReset- TEE-IO-
|
|
DevCtl: CorrErr- NonFatalErr- FatalErr- UnsupReq-
|
|
RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop-
|
|
MaxPayload 128 bytes, MaxReadReq 128 bytes
|
|
DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
|
|
DevCap2: Completion Timeout: Not Supported, TimeoutDis- NROPrPrP- LTR-
|
|
10BitTagComp- 10BitTagReq- OBFF Not Supported, ExtFmt- EETLPPrefix-
|
|
EmergencyPowerReduction Not Supported, EmergencyPowerReductionInit-
|
|
FRS-
|
|
DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-
|
|
AtomicOpsCtl: ReqEn-
|
|
IDOReq- IDOCompl- LTR- EmergencyPowerReductionReq-
|
|
10BitTagReq- OBFF Disabled, EETLPPrefixBlk-
|
|
|
|
22:00.0 Ethernet controller [0200]: Intel Corporation 82571EB/82571GB Gigabit Ethernet Controller D0/D1 (copper applications) [8086:105e] (rev 06)
|
|
Subsystem: Hewlett-Packard Company NC360T PCI Express Dual Port Gigabit Server Adapter [103c:7044]
|
|
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
|
|
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0, Cache Line Size: 64 bytes
|
|
Interrupt: pin A routed to IRQ 33
|
|
IOMMU group: 3
|
|
Region 0: Memory at dfd80000 (32-bit, non-prefetchable) [size=128K]
|
|
Region 1: Memory at dfda0000 (32-bit, non-prefetchable) [size=128K]
|
|
Region 2: I/O ports at ecc0 [size=32]
|
|
Expansion ROM at dfe00000 [disabled] [size=128K]
|
|
Capabilities: [c8] Power Management version 2
|
|
Flags: PMEClk- DSI+ D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
|
|
Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=1 PME-
|
|
Capabilities: [d0] MSI: Enable+ Count=1/1 Maskable- 64bit+
|
|
Address: 00000000fee00098 Data: 0000
|
|
Capabilities: [e0] Express (v1) Endpoint, IntMsgNum 0
|
|
DevCap: MaxPayload 256 bytes, PhantFunc 0, Latency L0s <512ns, L1 <64us
|
|
ExtTag- AttnBtn- AttnInd- PwrInd- RBE- FLReset- SlotPowerLimit 0W TEE-IO-
|
|
DevCtl: CorrErr- NonFatalErr+ FatalErr+ UnsupReq-
|
|
RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop+
|
|
MaxPayload 256 bytes, MaxReadReq 512 bytes
|
|
DevSta: CorrErr- NonFatalErr+ FatalErr- UnsupReq+ AuxPwr+ TransPend-
|
|
LnkCap: Port #0, Speed 2.5GT/s, Width x4, ASPM L0s, Exit Latency L0s <4us
|
|
ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp-
|
|
LnkCtl: ASPM Disabled; RCB 64 bytes, LnkDisable- CommClk+
|
|
ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
|
|
LnkSta: Speed 2.5GT/s, Width x4
|
|
TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
|
|
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: 14, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
|
|
MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
|
|
HeaderLog: 04000001 0018000f 22020000 00000000
|
|
Capabilities: [140 v1] Device Serial Number 00-1b-78-ff-ff-5c-e9-ce
|
|
Kernel driver in use: e1000e
|
|
Kernel modules: e1000e
|
|
|
|
22:00.1 Ethernet controller [0200]: Intel Corporation 82571EB/82571GB Gigabit Ethernet Controller D0/D1 (copper applications) [8086:105e] (rev 06)
|
|
Subsystem: Hewlett-Packard Company NC360T PCI Express Dual Port Gigabit Server Adapter [103c:7044]
|
|
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
|
|
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0, Cache Line Size: 64 bytes
|
|
Interrupt: pin B routed to IRQ 45
|
|
IOMMU group: 4
|
|
Region 0: Memory at dfdc0000 (32-bit, non-prefetchable) [size=128K]
|
|
Region 1: Memory at dfde0000 (32-bit, non-prefetchable) [size=128K]
|
|
Region 2: I/O ports at ece0 [size=32]
|
|
Expansion ROM at dfd00000 [disabled] [size=128K]
|
|
Capabilities: [c8] Power Management version 2
|
|
Flags: PMEClk- DSI+ D1- D2- AuxCurrent=0mA PME(D0+,D1-,D2-,D3hot+,D3cold+)
|
|
Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=1 PME-
|
|
Capabilities: [d0] MSI: Enable+ Count=1/1 Maskable- 64bit+
|
|
Address: 00000000fee00218 Data: 0000
|
|
Capabilities: [e0] Express (v1) Endpoint, IntMsgNum 0
|
|
DevCap: MaxPayload 256 bytes, PhantFunc 0, Latency L0s <512ns, L1 <64us
|
|
ExtTag- AttnBtn- AttnInd- PwrInd- RBE- FLReset- SlotPowerLimit 0W TEE-IO-
|
|
DevCtl: CorrErr- NonFatalErr+ FatalErr+ UnsupReq-
|
|
RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop+
|
|
MaxPayload 256 bytes, MaxReadReq 512 bytes
|
|
DevSta: CorrErr- NonFatalErr+ FatalErr- UnsupReq+ AuxPwr+ TransPend-
|
|
LnkCap: Port #0, Speed 2.5GT/s, Width x4, ASPM L0s, Exit Latency L0s <4us
|
|
ClockPM- Surprise- LLActRep- BwNot- ASPMOptComp-
|
|
LnkCtl: ASPM Disabled; RCB 64 bytes, LnkDisable- CommClk+
|
|
ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
|
|
LnkSta: Speed 2.5GT/s, Width x4
|
|
TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
|
|
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: 14, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
|
|
MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
|
|
HeaderLog: 04000001 0018000f 22020000 00000000
|
|
Capabilities: [140 v1] Device Serial Number 00-1b-78-ff-ff-5c-e9-ce
|
|
Kernel driver in use: e1000e
|
|
Kernel modules: e1000e
|
|
|
|
23:00.0 USB controller [0c03]: Renesas Electronics Corp. uPD720201 USB 3.0 Host Controller [1912:0014] (rev 03) (prog-if 30 [XHCI])
|
|
Subsystem: Renesas Electronics Corp. uPD720201 USB 3.0 Host Controller [1912:0014]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
|
|
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0, Cache Line Size: 64 bytes
|
|
Interrupt: pin A routed to IRQ 34
|
|
IOMMU group: 5
|
|
Region 0: Memory at dfcfe000 (64-bit, non-prefetchable) [size=8K]
|
|
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: [70] MSI: Enable- Count=1/8 Maskable- 64bit+
|
|
Address: 0000000000000000 Data: 0000
|
|
Capabilities: [90] MSI-X: Enable+ Count=8 Masked-
|
|
Vector table: BAR=0 offset=00001000
|
|
PBA: BAR=0 offset=00001080
|
|
Capabilities: [a0] Express (v2) Endpoint, IntMsgNum 0
|
|
DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s unlimited, L1 unlimited
|
|
ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset- SlotPowerLimit 0W TEE-IO-
|
|
DevCtl: CorrErr- NonFatalErr+ FatalErr+ UnsupReq-
|
|
RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop+
|
|
MaxPayload 128 bytes, MaxReadReq 512 bytes
|
|
DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
|
|
LnkCap: Port #0, Speed 5GT/s, Width x1, ASPM L0s L1, Exit Latency L0s <4us, L1 unlimited
|
|
ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp-
|
|
LnkCtl: ASPM Disabled; RCB 64 bytes, LnkDisable- CommClk+
|
|
ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
|
|
LnkSta: Speed 5GT/s, Width x1
|
|
TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
|
|
DevCap2: Completion Timeout: Not Supported, 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-
|
|
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 v1] Advanced Error Reporting
|
|
UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
UEMsk: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
UESvrt: DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
CESta: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr- CorrIntErr- HeaderOF-
|
|
CEMsk: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+ CorrIntErr- HeaderOF-
|
|
AERCap: First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
|
|
MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
|
|
HeaderLog: 00000000 00000000 00000000 00000000
|
|
Capabilities: [150 v1] Latency Tolerance Reporting
|
|
Max snoop latency: 0ns
|
|
Max no snoop latency: 0ns
|
|
Kernel driver in use: xhci-pci-renesas
|
|
Kernel modules: xhci_pci, xhci_pci_renesas
|
|
|
|
24:00.0 USB controller [0c03]: Renesas Electronics Corp. uPD720201 USB 3.0 Host Controller [1912:0014] (rev 03) (prog-if 30 [XHCI])
|
|
Subsystem: Renesas Electronics Corp. uPD720201 USB 3.0 Host Controller [1912:0014]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx+
|
|
Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0, Cache Line Size: 64 bytes
|
|
Interrupt: pin A routed to IRQ 43
|
|
IOMMU group: 6
|
|
Region 0: Memory at dfbfe000 (64-bit, non-prefetchable) [size=8K]
|
|
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: [70] MSI: Enable- Count=1/8 Maskable- 64bit+
|
|
Address: 0000000000000000 Data: 0000
|
|
Capabilities: [90] MSI-X: Enable+ Count=8 Masked-
|
|
Vector table: BAR=0 offset=00001000
|
|
PBA: BAR=0 offset=00001080
|
|
Capabilities: [a0] Express (v2) Endpoint, IntMsgNum 0
|
|
DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s unlimited, L1 unlimited
|
|
ExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset- SlotPowerLimit 0W TEE-IO-
|
|
DevCtl: CorrErr- NonFatalErr+ FatalErr+ UnsupReq-
|
|
RlxdOrd- ExtTag- PhantFunc- AuxPwr- NoSnoop+
|
|
MaxPayload 128 bytes, MaxReadReq 512 bytes
|
|
DevSta: CorrErr- NonFatalErr- FatalErr- UnsupReq- AuxPwr- TransPend-
|
|
LnkCap: Port #0, Speed 5GT/s, Width x1, ASPM L0s L1, Exit Latency L0s <4us, L1 unlimited
|
|
ClockPM+ Surprise- LLActRep- BwNot- ASPMOptComp-
|
|
LnkCtl: ASPM Disabled; RCB 64 bytes, LnkDisable- CommClk+
|
|
ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-
|
|
LnkSta: Speed 5GT/s, Width x1
|
|
TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-
|
|
DevCap2: Completion Timeout: Not Supported, 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-
|
|
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 v1] Advanced Error Reporting
|
|
UESta: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
UEMsk: DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP-
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
UESvrt: DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+
|
|
ECRC- UnsupReq- ACSViol- UncorrIntErr- BlockedTLP- AtomicOpBlocked- TLPBlockedErr-
|
|
PoisonTLPBlocked- DMWrReqBlocked- IDECheck- MisIDETLP- PCRC_CHECK- TLPXlatBlocked-
|
|
CESta: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr- CorrIntErr- HeaderOF-
|
|
CEMsk: RxErr- BadTLP- BadDLLP- Rollover- Timeout- AdvNonFatalErr+ CorrIntErr- HeaderOF-
|
|
AERCap: First Error Pointer: 00, ECRCGenCap- ECRCGenEn- ECRCChkCap- ECRCChkEn-
|
|
MultHdrRecCap- MultHdrRecEn- TLPPfxPres- HdrLogCap-
|
|
HeaderLog: 00000000 00000000 00000000 00000000
|
|
Capabilities: [150 v1] Latency Tolerance Reporting
|
|
Max snoop latency: 0ns
|
|
Max no snoop latency: 0ns
|
|
Kernel driver in use: xhci-pci-renesas
|
|
Kernel modules: xhci_pci, xhci_pci_renesas
|
|
|
|
3f:00.0 Host bridge [0600]: Intel Corporation Xeon 5600 Series QuickPath Architecture Generic Non-core Registers [8086:2c70] (rev 02)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
IOMMU group: 25
|
|
|
|
3f:00.1 Host bridge [0600]: Intel Corporation Xeon 5600 Series QuickPath Architecture System Address Decoder [8086:2d81] (rev 02)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
IOMMU group: 25
|
|
|
|
3f:02.0 Host bridge [0600]: Intel Corporation Xeon 5600 Series QPI Link 0 [8086:2d90] (rev 02)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
IOMMU group: 26
|
|
|
|
3f:02.1 Host bridge [0600]: Intel Corporation Xeon 5600 Series QPI Physical 0 [8086:2d91] (rev 02)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
IOMMU group: 26
|
|
|
|
3f:02.2 Host bridge [0600]: Intel Corporation Xeon 5600 Series Mirror Port Link 0 [8086:2d92] (rev 02)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
IOMMU group: 26
|
|
|
|
3f:02.3 Host bridge [0600]: Intel Corporation Xeon 5600 Series Mirror Port Link 1 [8086:2d93] (rev 02)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
IOMMU group: 26
|
|
|
|
3f:02.4 Host bridge [0600]: Intel Corporation Xeon 5600 Series QPI Link 1 [8086:2d94] (rev 02)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
IOMMU group: 26
|
|
|
|
3f:02.5 Host bridge [0600]: Intel Corporation Xeon 5600 Series QPI Physical 1 [8086:2d95] (rev 02)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
IOMMU group: 26
|
|
|
|
3f:03.0 Host bridge [0600]: Intel Corporation Xeon 5600 Series Integrated Memory Controller Registers [8086:2d98] (rev 02)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
IOMMU group: 27
|
|
|
|
3f:03.1 Host bridge [0600]: Intel Corporation Xeon 5600 Series Integrated Memory Controller Target Address Decoder [8086:2d99] (rev 02)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
IOMMU group: 27
|
|
|
|
3f:03.2 Host bridge [0600]: Intel Corporation Xeon 5600 Series Integrated Memory Controller RAS Registers [8086:2d9a] (rev 02)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
IOMMU group: 27
|
|
|
|
3f:03.4 Host bridge [0600]: Intel Corporation Xeon 5600 Series Integrated Memory Controller Test Registers [8086:2d9c] (rev 02)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
IOMMU group: 27
|
|
|
|
3f:04.0 Host bridge [0600]: Intel Corporation Xeon 5600 Series Integrated Memory Controller Channel 0 Control [8086:2da0] (rev 02)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
IOMMU group: 28
|
|
|
|
3f:04.1 Host bridge [0600]: Intel Corporation Xeon 5600 Series Integrated Memory Controller Channel 0 Address [8086:2da1] (rev 02)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
IOMMU group: 28
|
|
|
|
3f:04.2 Host bridge [0600]: Intel Corporation Xeon 5600 Series Integrated Memory Controller Channel 0 Rank [8086:2da2] (rev 02)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
IOMMU group: 28
|
|
|
|
3f:04.3 Host bridge [0600]: Intel Corporation Xeon 5600 Series Integrated Memory Controller Channel 0 Thermal Control [8086:2da3] (rev 02)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
IOMMU group: 28
|
|
|
|
3f:05.0 Host bridge [0600]: Intel Corporation Xeon 5600 Series Integrated Memory Controller Channel 1 Control [8086:2da8] (rev 02)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
IOMMU group: 29
|
|
|
|
3f:05.1 Host bridge [0600]: Intel Corporation Xeon 5600 Series Integrated Memory Controller Channel 1 Address [8086:2da9] (rev 02)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
IOMMU group: 29
|
|
|
|
3f:05.2 Host bridge [0600]: Intel Corporation Xeon 5600 Series Integrated Memory Controller Channel 1 Rank [8086:2daa] (rev 02)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
IOMMU group: 29
|
|
|
|
3f:05.3 Host bridge [0600]: Intel Corporation Xeon 5600 Series Integrated Memory Controller Channel 1 Thermal Control [8086:2dab] (rev 02)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
IOMMU group: 29
|
|
|
|
3f:06.0 Host bridge [0600]: Intel Corporation Xeon 5600 Series Integrated Memory Controller Channel 2 Control [8086:2db0] (rev 02)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
IOMMU group: 30
|
|
|
|
3f:06.1 Host bridge [0600]: Intel Corporation Xeon 5600 Series Integrated Memory Controller Channel 2 Address [8086:2db1] (rev 02)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
IOMMU group: 30
|
|
|
|
3f:06.2 Host bridge [0600]: Intel Corporation Xeon 5600 Series Integrated Memory Controller Channel 2 Rank [8086:2db2] (rev 02)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
IOMMU group: 30
|
|
|
|
3f:06.3 Host bridge [0600]: Intel Corporation Xeon 5600 Series Integrated Memory Controller Channel 2 Thermal Control [8086:2db3] (rev 02)
|
|
Subsystem: Intel Corporation Device [8086:8086]
|
|
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-
|
|
Status: Cap- 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-
|
|
Latency: 0
|
|
IOMMU group: 30
|
|
|
|
|
|
--- lspci -tv (tree)
|
|
$ lspci -tv
|
|
-+-[0000:00]-+-00.0 Intel Corporation 5520 I/O Hub to ESI Port
|
|
| +-01.0-[01-02]----00.0-[02]--
|
|
| +-03.0-[03]--+-00.0 NVIDIA Corporation GF100GL [Quadro 4000]
|
|
| | \-00.1 NVIDIA Corporation GF100 High Definition Audio Controller
|
|
| +-07.0-[04]--
|
|
| +-14.0 Intel Corporation 7500/5520/5500/X58 I/O Hub System Management Registers
|
|
| +-14.1 Intel Corporation 7500/5520/5500/X58 I/O Hub GPIO and Scratch Pad Registers
|
|
| +-14.2 Intel Corporation 7500/5520/5500/X58 I/O Hub Control Status and RAS Registers
|
|
| +-1a.0 Intel Corporation 82801JI (ICH10 Family) USB UHCI Controller #4
|
|
| +-1a.1 Intel Corporation 82801JI (ICH10 Family) USB UHCI Controller #5
|
|
| +-1a.2 Intel Corporation 82801JI (ICH10 Family) USB UHCI Controller #6
|
|
| +-1a.7 Intel Corporation 82801JI (ICH10 Family) USB2 EHCI Controller #2
|
|
| +-1b.0 Intel Corporation 82801JI (ICH10 Family) HD Audio Controller
|
|
| +-1c.0-[05]----00.0 Broadcom / LSI SAS1068E PCI-Express Fusion-MPT SAS
|
|
| +-1c.5-[06]----00.0 Broadcom Inc. and subsidiaries NetXtreme BCM5761 Gigabit Ethernet PCIe
|
|
| +-1d.0 Intel Corporation 82801JI (ICH10 Family) USB UHCI Controller #1
|
|
| +-1d.1 Intel Corporation 82801JI (ICH10 Family) USB UHCI Controller #2
|
|
| +-1d.2 Intel Corporation 82801JI (ICH10 Family) USB UHCI Controller #3
|
|
| +-1d.7 Intel Corporation 82801JI (ICH10 Family) USB2 EHCI Controller #1
|
|
| +-1e.0-[07]----0a.0 Texas Instruments TSB43AB22A IEEE-1394a-2000 Controller (PHY/Link) [iOHCI-Lynx]
|
|
| +-1f.0 Intel Corporation 82801JIR (ICH10R) LPC Interface Controller
|
|
| +-1f.2 Intel Corporation 82801JI (ICH10 Family) 4 port SATA IDE Controller #1
|
|
| +-1f.3 Intel Corporation 82801JI (ICH10 Family) SMBus Controller
|
|
| \-1f.5 Intel Corporation 82801JI (ICH10 Family) 2 port SATA IDE Controller #2
|
|
+-[0000:20]-+-03.0-[22]--+-00.0 Intel Corporation 82571EB/82571GB Gigabit Ethernet Controller D0/D1 (copper applications)
|
|
| | \-00.1 Intel Corporation 82571EB/82571GB Gigabit Ethernet Controller D0/D1 (copper applications)
|
|
| +-07.0-[23]----00.0 Renesas Electronics Corp. uPD720201 USB 3.0 Host Controller
|
|
| +-09.0-[24]----00.0 Renesas Electronics Corp. uPD720201 USB 3.0 Host Controller
|
|
| +-14.0 Intel Corporation 7500/5520/5500/X58 I/O Hub System Management Registers
|
|
| +-14.1 Intel Corporation 7500/5520/5500/X58 I/O Hub GPIO and Scratch Pad Registers
|
|
| \-14.2 Intel Corporation 7500/5520/5500/X58 I/O Hub Control Status and RAS Registers
|
|
\-[0000:3f]-+-00.0 Intel Corporation Xeon 5600 Series QuickPath Architecture Generic Non-core Registers
|
|
+-00.1 Intel Corporation Xeon 5600 Series QuickPath Architecture System Address Decoder
|
|
+-02.0 Intel Corporation Xeon 5600 Series QPI Link 0
|
|
+-02.1 Intel Corporation Xeon 5600 Series QPI Physical 0
|
|
+-02.2 Intel Corporation Xeon 5600 Series Mirror Port Link 0
|
|
+-02.3 Intel Corporation Xeon 5600 Series Mirror Port Link 1
|
|
+-02.4 Intel Corporation Xeon 5600 Series QPI Link 1
|
|
+-02.5 Intel Corporation Xeon 5600 Series QPI Physical 1
|
|
+-03.0 Intel Corporation Xeon 5600 Series Integrated Memory Controller Registers
|
|
+-03.1 Intel Corporation Xeon 5600 Series Integrated Memory Controller Target Address Decoder
|
|
+-03.2 Intel Corporation Xeon 5600 Series Integrated Memory Controller RAS Registers
|
|
+-03.4 Intel Corporation Xeon 5600 Series Integrated Memory Controller Test Registers
|
|
+-04.0 Intel Corporation Xeon 5600 Series Integrated Memory Controller Channel 0 Control
|
|
+-04.1 Intel Corporation Xeon 5600 Series Integrated Memory Controller Channel 0 Address
|
|
+-04.2 Intel Corporation Xeon 5600 Series Integrated Memory Controller Channel 0 Rank
|
|
+-04.3 Intel Corporation Xeon 5600 Series Integrated Memory Controller Channel 0 Thermal Control
|
|
+-05.0 Intel Corporation Xeon 5600 Series Integrated Memory Controller Channel 1 Control
|
|
+-05.1 Intel Corporation Xeon 5600 Series Integrated Memory Controller Channel 1 Address
|
|
+-05.2 Intel Corporation Xeon 5600 Series Integrated Memory Controller Channel 1 Rank
|
|
+-05.3 Intel Corporation Xeon 5600 Series Integrated Memory Controller Channel 1 Thermal Control
|
|
+-06.0 Intel Corporation Xeon 5600 Series Integrated Memory Controller Channel 2 Control
|
|
+-06.1 Intel Corporation Xeon 5600 Series Integrated Memory Controller Channel 2 Address
|
|
+-06.2 Intel Corporation Xeon 5600 Series Integrated Memory Controller Channel 2 Rank
|
|
\-06.3 Intel Corporation Xeon 5600 Series Integrated Memory Controller Channel 2 Thermal Control
|
|
|
|
--- lspci numa nodes
|
|
$ cat /sys/bus/pci/devices/0000:00:00.0/numa_node /sys/bus/pci/devices/0000:00:01.0/numa_node /sys/bus/pci/devices/0000:00:03.0/numa_node /sys/bus/pci/devices/0000:00:07.0/numa_node /sys/bus/pci/devices/0000:00:14.0/numa_node /sys/bus/pci/devices/0000:00:14.1/numa_node /sys/bus/pci/devices/0000:00:14.2/numa_node /sys/bus/pci/devices/0000:00:1a.0/numa_node /sys/bus/pci/devices/0000:00:1a.1/numa_node /sys/bus/pci/devices/0000:00:1a.2/numa_node /sys/bus/pci/devices/0000:00:1a.7/numa_node /sys/bus/pci/devices/0000:00:1b.0/numa_node /sys/bus/pci/devices/0000:00:1c.0/numa_node /sys/bus/pci/devices/0000:00:1c.5/numa_node /sys/bus/pci/devices/0000:00:1d.0/numa_node /sys/bus/pci/devices/0000:00:1d.1/numa_node /sys/bus/pci/devices/0000:00:1d.2/numa_node /sys/bus/pci/devices/0000:00:1d.7/numa_node /sys/bus/pci/devices/0000:00:1e.0/numa_node /sys/bus/pci/devices/0000:00:1f.0/numa_node /sys/bus/pci/devices/0000:00:1f.2/numa_node /sys/bus/pci/devices/0000:00:1f.3/numa_node /sys/bus/pci/devices/0000:00:1f.5/numa_node /sys/bus/pci/devices/0000:01:00.0/numa_node /sys/bus/pci/devices/0000:03:00.0/numa_node /sys/bus/pci/devices/0000:03:00.1/numa_node /sys/bus/pci/devices/0000:05:00.0/numa_node /sys/bus/pci/devices/0000:06:00.0/numa_node /sys/bus/pci/devices/0000:07:0a.0/numa_node /sys/bus/pci/devices/0000:20:03.0/numa_node /sys/bus/pci/devices/0000:20:07.0/numa_node /sys/bus/pci/devices/0000:20:09.0/numa_node /sys/bus/pci/devices/0000:20:14.0/numa_node /sys/bus/pci/devices/0000:20:14.1/numa_node /sys/bus/pci/devices/0000:20:14.2/numa_node /sys/bus/pci/devices/0000:22:00.0/numa_node /sys/bus/pci/devices/0000:22:00.1/numa_node /sys/bus/pci/devices/0000:23:00.0/numa_node /sys/bus/pci/devices/0000:24:00.0/numa_node /sys/bus/pci/devices/0000:3f:00.0/numa_node /sys/bus/pci/devices/0000:3f:00.1/numa_node /sys/bus/pci/devices/0000:3f:02.0/numa_node /sys/bus/pci/devices/0000:3f:02.1/numa_node /sys/bus/pci/devices/0000:3f:02.2/numa_node /sys/bus/pci/devices/0000:3f:02.3/numa_node /sys/bus/pci/devices/0000:3f:02.4/numa_node /sys/bus/pci/devices/0000:3f:02.5/numa_node /sys/bus/pci/devices/0000:3f:03.0/numa_node /sys/bus/pci/devices/0000:3f:03.1/numa_node /sys/bus/pci/devices/0000:3f:03.2/numa_node /sys/bus/pci/devices/0000:3f:03.4/numa_node /sys/bus/pci/devices/0000:3f:04.0/numa_node /sys/bus/pci/devices/0000:3f:04.1/numa_node /sys/bus/pci/devices/0000:3f:04.2/numa_node /sys/bus/pci/devices/0000:3f:04.3/numa_node /sys/bus/pci/devices/0000:3f:05.0/numa_node /sys/bus/pci/devices/0000:3f:05.1/numa_node /sys/bus/pci/devices/0000:3f:05.2/numa_node /sys/bus/pci/devices/0000:3f:05.3/numa_node /sys/bus/pci/devices/0000:3f:06.0/numa_node /sys/bus/pci/devices/0000:3f:06.1/numa_node /sys/bus/pci/devices/0000:3f:06.2/numa_node /sys/bus/pci/devices/0000:3f:06.3/numa_node
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
-1
|
|
|
|
--- lsusb
|
|
$ lsusb
|
|
Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
|
|
Bus 001 Device 002: ID 1a40:0101 Terminus Technology Inc. Hub
|
|
Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
|
|
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
|
|
Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
|
|
Bus 005 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
|
|
Bus 006 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
|
|
Bus 007 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
|
|
Bus 008 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
|
|
Bus 009 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
|
|
Bus 010 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
|
|
Bus 011 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
|
|
Bus 012 Device 001: ID 1d6b:0003 Linux Foundation 3.0 root hub
|
|
Bus 012 Device 002: ID 2109:0815 VIA Labs, Inc. USB3.0 Hub
|
|
Bus 012 Device 003: ID 2109:0815 VIA Labs, Inc. USB3.0 Hub
|
|
|
|
--- lshw -short
|
|
$ lshw -short
|
|
H/W path Device Class Description
|
|
==========================================================
|
|
system Precision WorkStation T7500
|
|
/0 bus 06FW8P
|
|
/0/0 memory 64KiB BIOS
|
|
/0/400 processor Intel(R) Xeon(R) CPU E5620 @ 2.40GHz
|
|
/0/400/700 memory 256KiB L1 cache
|
|
/0/400/701 memory 1MiB L2 cache
|
|
/0/400/704 memory 12MiB L3 cache
|
|
/0/401 processor Xeon
|
|
/0/401/702 memory 256KiB L1 cache
|
|
/0/401/703 memory 1MiB L2 cache
|
|
/0/401/705 memory 12MiB L3 cache
|
|
/0/1000 memory 96GiB System Memory
|
|
/0/1000/0 memory 16GiB DIMM DDR3 1600 MHz (0.6 ns)
|
|
/0/1000/1 memory 16GiB DIMM DDR3 1600 MHz (0.6 ns)
|
|
/0/1000/2 memory 16GiB DIMM DDR3 1600 MHz (0.6 ns)
|
|
/0/1000/3 memory 16GiB DIMM DDR3 1600 MHz (0.6 ns)
|
|
/0/1000/4 memory 16GiB DIMM DDR3 1600 MHz (0.6 ns)
|
|
/0/1000/5 memory 16GiB DIMM DDR3 1600 MHz (0.6 ns)
|
|
/0/100 bridge 5520 I/O Hub to ESI Port
|
|
/0/100/1 bridge 5520/5500/X58 I/O Hub PCI Express Root Port 1
|
|
/0/100/1/0 bridge PCI Express to PCI-XPI7C9X130 PCI-X Bridge
|
|
/0/100/3 bridge 5520/5500/X58 I/O Hub PCI Express Root Port 3
|
|
/0/100/3/0 /dev/fb0 display GF100GL [Quadro 4000]
|
|
/0/100/3/0.1 card1 multimedia GF100 High Definition Audio Controller
|
|
/0/100/3/0.1/0 input10 input HDA NVidia HDMI/DP,pcm=9
|
|
/0/100/3/0.1/1 input7 input HDA NVidia HDMI/DP,pcm=3
|
|
/0/100/3/0.1/2 input8 input HDA NVidia HDMI/DP,pcm=7
|
|
/0/100/3/0.1/3 input9 input HDA NVidia HDMI/DP,pcm=8
|
|
/0/100/7 bridge 5520/5500/X58 I/O Hub PCI Express Root Port 7
|
|
/0/100/14 generic 7500/5520/5500/X58 I/O Hub System Management Registers
|
|
/0/100/14.1 generic 7500/5520/5500/X58 I/O Hub GPIO and Scratch Pad Registers
|
|
/0/100/14.2 generic 7500/5520/5500/X58 I/O Hub Control Status and RAS Registers
|
|
/0/100/1a bus 82801JI (ICH10 Family) USB UHCI Controller #4
|
|
/0/100/1a/1 usb3 bus UHCI Host Controller
|
|
/0/100/1a.1 bus 82801JI (ICH10 Family) USB UHCI Controller #5
|
|
/0/100/1a.1/1 usb4 bus UHCI Host Controller
|
|
/0/100/1a.2 bus 82801JI (ICH10 Family) USB UHCI Controller #6
|
|
/0/100/1a.2/1 usb5 bus UHCI Host Controller
|
|
/0/100/1a.7 bus 82801JI (ICH10 Family) USB2 EHCI Controller #2
|
|
/0/100/1a.7/1 usb2 bus EHCI Host Controller
|
|
/0/100/1b card0 multimedia 82801JI (ICH10 Family) HD Audio Controller
|
|
/0/100/1b/0 input11 input HDA Intel Mic
|
|
/0/100/1b/1 input12 input HDA Intel Line
|
|
/0/100/1b/2 input13 input HDA Intel Line Out
|
|
/0/100/1b/3 input14 input HDA Intel Front Headphone
|
|
/0/100/1c bridge 82801JI (ICH10 Family) PCI Express Root Port 1
|
|
/0/100/1c/0 scsi4 storage SAS1068E PCI-Express Fusion-MPT SAS
|
|
/0/100/1c/0/0.0.0 /dev/sdc disk 256GB Samsung SSD 860
|
|
/0/100/1c/0/0.0.0/1 /dev/sdc1 volume 238GiB EXT4 volume
|
|
/0/100/1c/0/0.1.0 /dev/sdd disk 2TB HITACHI HUS72402
|
|
/0/100/1c/0/0.1.0/1 /dev/sdd1 volume 1006KiB BIOS Boot partition
|
|
/0/100/1c/0/0.1.0/2 /dev/sdd2 volume 1023MiB Windows FAT volume
|
|
/0/100/1c/0/0.1.0/3 /dev/sdd3 volume 1862GiB LVM Physical Volume
|
|
/0/100/1c/0/0.2.0 /dev/sde volume 931GiB ST1000VN002-2EY1
|
|
/0/100/1c/0/0.3.0 /dev/sdf volume 931GiB ST1000VN002-2EY1
|
|
/0/100/1c.5 bridge 82801JI (ICH10 Family) PCI Express Root Port 6
|
|
/0/100/1c.5/0 nic0 network NetXtreme BCM5761 Gigabit Ethernet PCIe
|
|
/0/100/1d bus 82801JI (ICH10 Family) USB UHCI Controller #1
|
|
/0/100/1d/1 usb7 bus UHCI Host Controller
|
|
/0/100/1d.1 bus 82801JI (ICH10 Family) USB UHCI Controller #2
|
|
/0/100/1d.1/1 usb8 bus UHCI Host Controller
|
|
/0/100/1d.2 bus 82801JI (ICH10 Family) USB UHCI Controller #3
|
|
/0/100/1d.2/1 usb9 bus UHCI Host Controller
|
|
/0/100/1d.7 bus 82801JI (ICH10 Family) USB2 EHCI Controller #1
|
|
/0/100/1d.7/1 usb1 bus EHCI Host Controller
|
|
/0/100/1d.7/1/6 bus USB 2.0 Hub
|
|
/0/100/1e bridge 82801 PCI Bridge
|
|
/0/100/1e/a bus TSB43AB22A IEEE-1394a-2000 Controller (PHY/Link) [iOHCI-Lynx]
|
|
/0/100/1f bridge 82801JIR (ICH10R) LPC Interface Controller
|
|
/0/100/1f/0 system PnP device PNP0c01
|
|
/0/100/1f/1 system PnP device PNP0b00
|
|
/0/100/1f/2 printer PnP device PNP0401
|
|
/0/100/1f/3 communication PnP device PNP0501
|
|
/0/100/1f.2 scsi0 storage 82801JI (ICH10 Family) 4 port SATA IDE Controller #1
|
|
/0/100/1f.2/0 /dev/sda volume 931GiB ST1000VN002-2EY1
|
|
/0/100/1f.2/1 /dev/sdb volume 465GiB TOSHIBA DT01ACA0
|
|
/0/100/1f.3 bus 82801JI (ICH10 Family) SMBus Controller
|
|
/0/100/1f.5 storage 82801JI (ICH10 Family) 2 port SATA IDE Controller #2
|
|
/0/3 bridge 5520/5500/X58 I/O Hub PCI Express Root Port 3
|
|
/0/3/0 nic1 network 82571EB/82571GB Gigabit Ethernet Controller D0/D1 (copper applications)
|
|
/0/3/0.1 nic2 network 82571EB/82571GB Gigabit Ethernet Controller D0/D1 (copper applications)
|
|
/0/7 bridge 5520/5500/X58 I/O Hub PCI Express Root Port 7
|
|
/0/7/0 bus uPD720201 USB 3.0 Host Controller
|
|
/0/7/0/0 usb6 bus xHCI Host Controller
|
|
/0/7/0/1 usb10 bus xHCI Host Controller
|
|
/0/9 bridge 7500/5520/5500/X58 I/O Hub PCI Express Root Port 9
|
|
/0/9/0 bus uPD720201 USB 3.0 Host Controller
|
|
/0/9/0/0 usb11 bus xHCI Host Controller
|
|
/0/9/0/1 usb12 bus xHCI Host Controller
|
|
/0/9/0/1/3 bus USB3.0 Hub
|
|
/0/9/0/1/3/3 bus USB3.0 Hub
|
|
/0/14 generic 7500/5520/5500/X58 I/O Hub System Management Registers
|
|
/0/14.1 generic 7500/5520/5500/X58 I/O Hub GPIO and Scratch Pad Registers
|
|
/0/14.2 generic 7500/5520/5500/X58 I/O Hub Control Status and RAS Registers
|
|
/0/101 bridge Xeon 5600 Series QuickPath Architecture Generic Non-core Registers
|
|
/0/102 bridge Xeon 5600 Series QuickPath Architecture System Address Decoder
|
|
/0/103 bridge Xeon 5600 Series QPI Link 0
|
|
/0/104 bridge Xeon 5600 Series QPI Physical 0
|
|
/0/105 bridge Xeon 5600 Series Mirror Port Link 0
|
|
/0/106 bridge Xeon 5600 Series Mirror Port Link 1
|
|
/0/107 bridge Xeon 5600 Series QPI Link 1
|
|
/0/108 bridge Xeon 5600 Series QPI Physical 1
|
|
/0/109 bridge Xeon 5600 Series Integrated Memory Controller Registers
|
|
/0/10a bridge Xeon 5600 Series Integrated Memory Controller Target Address Decoder
|
|
/0/10b bridge Xeon 5600 Series Integrated Memory Controller RAS Registers
|
|
/0/10c bridge Xeon 5600 Series Integrated Memory Controller Test Registers
|
|
/0/10d bridge Xeon 5600 Series Integrated Memory Controller Channel 0 Control
|
|
/0/10e bridge Xeon 5600 Series Integrated Memory Controller Channel 0 Address
|
|
/0/10f bridge Xeon 5600 Series Integrated Memory Controller Channel 0 Rank
|
|
/0/110 bridge Xeon 5600 Series Integrated Memory Controller Channel 0 Thermal Control
|
|
/0/111 bridge Xeon 5600 Series Integrated Memory Controller Channel 1 Control
|
|
/0/112 bridge Xeon 5600 Series Integrated Memory Controller Channel 1 Address
|
|
/0/113 bridge Xeon 5600 Series Integrated Memory Controller Channel 1 Rank
|
|
/0/114 bridge Xeon 5600 Series Integrated Memory Controller Channel 1 Thermal Control
|
|
/0/115 bridge Xeon 5600 Series Integrated Memory Controller Channel 2 Control
|
|
/0/116 bridge Xeon 5600 Series Integrated Memory Controller Channel 2 Address
|
|
/0/117 bridge Xeon 5600 Series Integrated Memory Controller Channel 2 Rank
|
|
/0/118 bridge Xeon 5600 Series Integrated Memory Controller Channel 2 Thermal Control
|
|
/1 input0 input Power Button
|
|
/2 input1 input Power Button
|
|
/3 input5 input PC Speaker
|
|
/4 input6 input Dell WMI hotkeys
|
|
|
|
--- PCIe AER errors
|
|
[missing: /sys/bus/pci/devices/0000:00:00.0/aer_dev_correctable]
|
|
|
|
--- PCIe AER summary (errors matter for NIC/NVMe stability)
|
|
$ found=0
|
|
for d in /sys/bus/pci/devices/*; do
|
|
[ -d "$d" ] || continue
|
|
addr="$(basename "$d")"
|
|
class="$(cat "$d/class" 2>/dev/null)"
|
|
case "$class" in
|
|
0x020000|0x010802|0x010700) ;; # ethernet, nvme, raid
|
|
*) continue ;;
|
|
esac
|
|
for f in "$d"/aer_dev_*; do
|
|
[ -r "$f" ] || continue
|
|
val="$(cat "$f" 2>/dev/null)"
|
|
[ "$val" = "0" ] && continue
|
|
[ "$val" = "" ] && continue
|
|
printf '%s %s = %s\n' "$addr" "$(basename "$f")" "$val"
|
|
found=1
|
|
done
|
|
done
|
|
[ "$found" = "0" ] && echo " no AER errors on NIC/NVMe/RAID devices"
|
|
0000:06: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:06:00.0 aer_dev_fatal = Undefined 0
|
|
DLP 0
|
|
SDES 0
|
|
TLP 0
|
|
FCP 0
|
|
CmpltTO 0
|
|
CmpltAbrt 0
|
|
UnxCmplt 0
|
|
RxOF 0
|
|
MalfTLP 0
|
|
ECRC 0
|
|
UnsupReq 0
|
|
ACSViol 0
|
|
UncorrIntErr 0
|
|
BlockedTLP 0
|
|
AtomicOpBlocked 0
|
|
TLPBlockedErr 0
|
|
PoisonTLPBlocked 0
|
|
TOTAL_ERR_FATAL 0
|
|
0000:06:00.0 aer_dev_nonfatal = Undefined 0
|
|
DLP 0
|
|
SDES 0
|
|
TLP 0
|
|
FCP 0
|
|
CmpltTO 0
|
|
CmpltAbrt 0
|
|
UnxCmplt 0
|
|
RxOF 0
|
|
MalfTLP 0
|
|
ECRC 0
|
|
UnsupReq 0
|
|
ACSViol 0
|
|
UncorrIntErr 0
|
|
BlockedTLP 0
|
|
AtomicOpBlocked 0
|
|
TLPBlockedErr 0
|
|
PoisonTLPBlocked 0
|
|
TOTAL_ERR_NONFATAL 0
|
|
0000:22: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:22:00.0 aer_dev_fatal = Undefined 0
|
|
DLP 0
|
|
SDES 0
|
|
TLP 0
|
|
FCP 0
|
|
CmpltTO 0
|
|
CmpltAbrt 0
|
|
UnxCmplt 0
|
|
RxOF 0
|
|
MalfTLP 0
|
|
ECRC 0
|
|
UnsupReq 0
|
|
ACSViol 0
|
|
UncorrIntErr 0
|
|
BlockedTLP 0
|
|
AtomicOpBlocked 0
|
|
TLPBlockedErr 0
|
|
PoisonTLPBlocked 0
|
|
TOTAL_ERR_FATAL 0
|
|
0000:22:00.0 aer_dev_nonfatal = Undefined 0
|
|
DLP 0
|
|
SDES 0
|
|
TLP 0
|
|
FCP 0
|
|
CmpltTO 0
|
|
CmpltAbrt 0
|
|
UnxCmplt 0
|
|
RxOF 0
|
|
MalfTLP 0
|
|
ECRC 0
|
|
UnsupReq 0
|
|
ACSViol 0
|
|
UncorrIntErr 0
|
|
BlockedTLP 0
|
|
AtomicOpBlocked 0
|
|
TLPBlockedErr 0
|
|
PoisonTLPBlocked 0
|
|
TOTAL_ERR_NONFATAL 0
|
|
0000:22:00.1 aer_dev_correctable = RxErr 0
|
|
BadTLP 0
|
|
BadDLLP 0
|
|
Rollover 0
|
|
Timeout 0
|
|
NonFatalErr 0
|
|
CorrIntErr 0
|
|
HeaderOF 0
|
|
TOTAL_ERR_COR 0
|
|
0000:22:00.1 aer_dev_fatal = Undefined 0
|
|
DLP 0
|
|
SDES 0
|
|
TLP 0
|
|
FCP 0
|
|
CmpltTO 0
|
|
CmpltAbrt 0
|
|
UnxCmplt 0
|
|
RxOF 0
|
|
MalfTLP 0
|
|
ECRC 0
|
|
UnsupReq 0
|
|
ACSViol 0
|
|
UncorrIntErr 0
|
|
BlockedTLP 0
|
|
AtomicOpBlocked 0
|
|
TLPBlockedErr 0
|
|
PoisonTLPBlocked 0
|
|
TOTAL_ERR_FATAL 0
|
|
0000:22:00.1 aer_dev_nonfatal = Undefined 0
|
|
DLP 0
|
|
SDES 0
|
|
TLP 0
|
|
FCP 0
|
|
CmpltTO 0
|
|
CmpltAbrt 0
|
|
UnxCmplt 0
|
|
RxOF 0
|
|
MalfTLP 0
|
|
ECRC 0
|
|
UnsupReq 0
|
|
ACSViol 0
|
|
UncorrIntErr 0
|
|
BlockedTLP 0
|
|
AtomicOpBlocked 0
|
|
TLPBlockedErr 0
|
|
PoisonTLPBlocked 0
|
|
TOTAL_ERR_NONFATAL 0
|
|
[exit=1]
|
|
|
|
###############################################################################
|
|
# 4. CPU POWER / FREQUENCY / IDLE STATES
|
|
###############################################################################
|
|
|
|
--- scaling_governor per cpu (counts)
|
|
$ for c in /sys/devices/system/cpu/cpu*/cpufreq/scaling_governor; do
|
|
[ -e "$c" ] || continue
|
|
cat "$c"
|
|
done | sort | uniq -c
|
|
|
|
--- 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
|
|
|
|
--- EPP / EPB / intel_pstate
|
|
$ echo "intel_pstate status: $(cat /sys/devices/system/cpu/intel_pstate/status 2>/dev/null)"
|
|
echo "intel_pstate no_turbo: $(cat /sys/devices/system/cpu/intel_pstate/no_turbo 2>/dev/null)"
|
|
echo "intel_pstate turbo_pct: $(cat /sys/devices/system/cpu/intel_pstate/turbo_pct 2>/dev/null)"
|
|
echo "intel_pstate max_perf_pct: $(cat /sys/devices/system/cpu/intel_pstate/max_perf_pct 2>/dev/null)"
|
|
echo "intel_pstate min_perf_pct: $(cat /sys/devices/system/cpu/intel_pstate/min_perf_pct 2>/dev/null)"
|
|
echo "EPB (energy_perf_bias) per cpu:"
|
|
for c in /sys/devices/system/cpu/cpu*/power/energy_perf_bias; do
|
|
[ -r "$c" ] || continue
|
|
printf ' %s : %s\n' "$(echo "$c" | cut -d/ -f5)" "$(cat "$c" 2>/dev/null)"
|
|
done | sort | uniq -c
|
|
echo "EPP (energy_performance_preference) per cpu:"
|
|
for c in /sys/devices/system/cpu/cpu*/cpufreq/energy_performance_preference; do
|
|
[ -r "$c" ] || continue
|
|
printf ' %s : %s\n' "$(echo "$c" | cut -d/ -f5)" "$(cat "$c" 2>/dev/null)"
|
|
done | sort | uniq -c
|
|
echo "available EPP:"
|
|
cat /sys/devices/system/cpu/cpu0/cpufreq/energy_performance_available_preferences 2>/dev/null
|
|
intel_pstate status:
|
|
intel_pstate no_turbo:
|
|
intel_pstate turbo_pct:
|
|
intel_pstate max_perf_pct:
|
|
intel_pstate min_perf_pct:
|
|
EPB (energy_perf_bias) per cpu:
|
|
8 cpu : 0
|
|
EPP (energy_performance_preference) per cpu:
|
|
available EPP:
|
|
[exit=1]
|
|
|
|
--- cpupower frequency-info
|
|
$ cpupower frequency-info
|
|
analyzing CPU 6:
|
|
no or unknown cpufreq driver is active on this CPU
|
|
CPUs which run at the same hardware frequency: Not Available
|
|
CPUs which need to have their frequency coordinated by software: Not Available
|
|
maximum transition latency: Cannot determine or is not supported.
|
|
Not Available
|
|
available cpufreq governors: Not Available
|
|
Unable to determine current policy
|
|
current CPU frequency: Unable to call hardware
|
|
current CPU frequency: Unable to call to kernel
|
|
boost state support:
|
|
Supported: yes
|
|
Active: yes
|
|
2533 MHz max turbo 4 active cores
|
|
2533 MHz max turbo 3 active cores
|
|
2667 MHz max turbo 2 active cores
|
|
2667 MHz max turbo 1 active cores
|
|
|
|
--- turbostat snapshot
|
|
$ timeout 3 turbostat --quiet --show CPU,Core,Bzy_MHz,IRQ,Busy%,Bzy_MHz,TSC_MHz,CoreTmp,PkgTmp sleep 1
|
|
1.002300 sec
|
|
Core CPU Busy% Bzy_MHz TSC_MHz IRQ CoreTmp
|
|
- - 9.59 2127 2394 7662 40
|
|
0 0 9.68 2128 2394 899 36
|
|
0 4 10.47 2145 2394 1113
|
|
1 1 8.39 2132 2394 797 40
|
|
1 5 6.57 2048 2394 769
|
|
9 2 12.06 2136 2394 1204 36
|
|
9 6 8.97 2044 2394 1043
|
|
10 3 8.31 2067 2394 879 28
|
|
10 7 12.25 2240 2394 958
|
|
|
|
--- x86_energy_perf_policy -r
|
|
$ x86_energy_perf_policy -r
|
|
cpu0: EPB 0
|
|
cpu1: EPB 0
|
|
cpu2: EPB 0
|
|
cpu3: EPB 0
|
|
cpu4: EPB 0
|
|
cpu5: EPB 0
|
|
cpu6: EPB 0
|
|
cpu7: EPB 0
|
|
|
|
--- 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=13217805us
|
|
C1 : MWAIT 0x00 disabled=0 latency=3us residency=164561596us
|
|
C1E : MWAIT 0x01 disabled=0 latency=10us residency=1355144971us
|
|
C3 : MWAIT 0x10 disabled=0 latency=20us residency=39498744118us
|
|
C6 : MWAIT 0x20 disabled=0 latency=200us residency=106391088057us
|
|
|
|
--- 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
|
|
[85470.710005] audit: type=1400 audit(1785023990.837:1119): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[85470.778032] audit: type=1400 audit(1785023990.905:1120): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[85722.781974] audit: type=1400 audit(1785024242.908:1121): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[85722.784837] audit: type=1400 audit(1785024242.911:1122): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[85722.847995] audit: type=1400 audit(1785024242.974:1123): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[85952.938113] audit: type=1400 audit(1785024473.063:1124): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[85952.939981] audit: type=1400 audit(1785024473.064:1125): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[85953.009633] audit: type=1400 audit(1785024473.134:1126): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[86186.135293] audit: type=1400 audit(1785024706.259:1127): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[86186.137442] audit: type=1400 audit(1785024706.261:1128): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[86186.203746] audit: type=1400 audit(1785024706.327:1129): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[86422.009944] audit: type=1400 audit(1785024942.132:1130): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[86422.012058] audit: type=1400 audit(1785024942.133:1131): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[86422.074099] audit: type=1400 audit(1785024942.196:1132): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[86691.349470] audit: type=1400 audit(1785025211.470:1133): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[86691.351659] audit: type=1400 audit(1785025211.473:1134): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[86691.410784] audit: type=1400 audit(1785025211.532:1135): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[86957.545979] audit: type=1400 audit(1785025477.666:1136): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[86957.548123] audit: type=1400 audit(1785025477.668:1137): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[86957.613568] audit: type=1400 audit(1785025477.733:1138): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[87218.146202] audit: type=1400 audit(1785025738.265:1139): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[87218.148436] audit: type=1400 audit(1785025738.267:1140): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[87218.214960] audit: type=1400 audit(1785025738.333:1141): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[87489.199128] audit: type=1400 audit(1785026009.316:1142): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[87489.201311] audit: type=1400 audit(1785026009.318:1143): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[87489.267487] audit: type=1400 audit(1785026009.384:1144): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[87736.240948] audit: type=1400 audit(1785026256.356:1145): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[87736.243072] audit: type=1400 audit(1785026256.359:1146): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[87736.303831] audit: type=1400 audit(1785026256.419:1147): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[87982.014896] audit: type=1400 audit(1785026502.129:1148): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[87982.017018] audit: type=1400 audit(1785026502.131:1149): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[87982.091473] audit: type=1400 audit(1785026502.205:1150): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[88269.262622] audit: type=1400 audit(1785026789.375:1151): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[88269.264699] audit: type=1400 audit(1785026789.377:1152): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[88270.106231] audit: type=1400 audit(1785026790.218:1153): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[88498.790550] audit: type=1400 audit(1785027018.901:1154): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[88498.792231] audit: type=1400 audit(1785027018.903:1155): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[88498.856009] audit: type=1400 audit(1785027018.966:1156): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[88605.025342] DMAR: DRHD: handling fault status reg 2
|
|
[88605.025353] DMAR: [DMA Write NO_PASID] Request device [05:00.0] fault addr 0x0 [fault reason 0x05] PTE Write access is not set
|
|
[88725.806818] audit: type=1400 audit(1785027245.916:1157): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[88725.808808] audit: type=1400 audit(1785027245.918:1158): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[88725.879344] audit: type=1400 audit(1785027245.988:1159): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[89010.768829] audit: type=1400 audit(1785027530.876:1160): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[89010.770745] audit: type=1400 audit(1785027530.877:1161): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[89011.095528] audit: type=1400 audit(1785027531.202:1162): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[89283.220816] audit: type=1400 audit(1785027803.325:1163): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[89283.223624] audit: type=1400 audit(1785027803.328:1164): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[89283.284797] audit: type=1400 audit(1785027803.389:1165): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[89513.598706] audit: type=1400 audit(1785028033.702:1166): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[89513.600909] audit: type=1400 audit(1785028033.704:1167): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[89513.664813] audit: type=1400 audit(1785028033.768:1168): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[89757.721866] audit: type=1400 audit(1785028277.823:1169): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[89757.724184] audit: type=1400 audit(1785028277.825:1170): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[89757.793522] audit: type=1400 audit(1785028277.895:1171): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[90016.777228] audit: type=1400 audit(1785028536.877:1172): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[90016.779273] audit: type=1400 audit(1785028536.879:1173): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[90016.840090] audit: type=1400 audit(1785028536.939:1174): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[90250.268687] audit: type=1400 audit(1785028770.366:1175): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[90250.270585] audit: type=1400 audit(1785028770.368:1176): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[90250.337012] audit: type=1400 audit(1785028770.435:1177): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[90550.895646] audit: type=1400 audit(1785029070.991:1178): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[90550.897099] audit: type=1400 audit(1785029070.993:1179): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[90550.957540] audit: type=1400 audit(1785029071.053:1180): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[90787.007862] audit: type=1400 audit(1785029307.102:1181): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[90787.009986] audit: type=1400 audit(1785029307.104:1182): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[90787.070560] audit: type=1400 audit(1785029307.165:1183): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[91066.742140] audit: type=1400 audit(1785029586.835:1184): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[91066.744274] audit: type=1400 audit(1785029586.837:1185): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[91066.808278] audit: type=1400 audit(1785029586.901:1186): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[91326.334472] audit: type=1400 audit(1785029846.425:1187): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[91326.336182] audit: type=1400 audit(1785029846.427:1188): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[91326.396191] audit: type=1400 audit(1785029846.487:1189): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[91593.116391] audit: type=1400 audit(1785030113.206:1190): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[91593.118468] audit: type=1400 audit(1785030113.208:1191): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[91593.176178] audit: type=1400 audit(1785030113.265:1192): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[91893.093548] audit: type=1400 audit(1785030413.181:1193): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[91893.095730] audit: type=1400 audit(1785030413.183:1194): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[91893.156801] audit: type=1400 audit(1785030413.244:1195): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[92124.533134] audit: type=1400 audit(1785030644.619:1196): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[92124.535347] audit: type=1400 audit(1785030644.621:1197): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[92124.594829] audit: type=1400 audit(1785030644.681:1198): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[92403.320314] audit: type=1400 audit(1785030923.404:1199): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[92403.322296] audit: type=1400 audit(1785030923.406:1200): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[92403.392502] audit: type=1400 audit(1785030923.476:1201): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[92637.049874] audit: type=1400 audit(1785031157.132:1202): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[92637.052043] audit: type=1400 audit(1785031157.135:1203): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[92637.129412] audit: type=1400 audit(1785031157.212:1204): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[92920.123283] audit: type=1400 audit(1785031440.204:1205): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[92920.127726] audit: type=1400 audit(1785031440.208:1206): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[92920.258486] audit: type=1400 audit(1785031440.339:1207): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[93150.278440] audit: type=1400 audit(1785031670.358:1208): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[93150.293014] audit: type=1400 audit(1785031670.372:1209): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[93150.355327] audit: type=1400 audit(1785031670.434:1210): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[93410.162122] audit: type=1400 audit(1785031930.240:1211): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[93410.174705] audit: type=1400 audit(1785031930.252:1212): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[93410.234980] audit: type=1400 audit(1785031930.312:1213): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[93694.819462] audit: type=1400 audit(1785032214.896:1214): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[93694.830115] audit: type=1400 audit(1785032214.906:1215): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[93694.897045] audit: type=1400 audit(1785032214.973:1216): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[93991.869698] audit: type=1400 audit(1785032511.944:1217): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[93991.878136] audit: type=1400 audit(1785032511.952:1218): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[93991.951471] audit: type=1400 audit(1785032512.025:1219): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[94267.127276] audit: type=1400 audit(1785032787.199:1220): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[94267.135968] audit: type=1400 audit(1785032787.208:1221): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[94267.206239] audit: type=1400 audit(1785032787.278:1222): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[94567.790789] audit: type=1400 audit(1785033087.861:1223): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[94567.800107] audit: type=1400 audit(1785033087.870:1224): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[94567.864143] audit: type=1400 audit(1785033087.934:1225): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[94831.767489] audit: type=1400 audit(1785033351.836:1226): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[94831.776471] audit: type=1400 audit(1785033351.845:1227): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[94831.844020] audit: type=1400 audit(1785033351.912:1228): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[95109.702794] audit: type=1400 audit(1785033629.769:1229): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[95109.718029] audit: type=1400 audit(1785033629.785:1230): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[95109.798680] audit: type=1400 audit(1785033629.865:1231): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[95340.268896] audit: type=1400 audit(1785033860.334:1232): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[95340.277948] audit: type=1400 audit(1785033860.343:1233): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[95340.336825] audit: type=1400 audit(1785033860.402:1234): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[95624.896037] audit: type=1400 audit(1785034144.959:1235): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[95624.903849] audit: type=1400 audit(1785034144.967:1236): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[95624.966874] audit: type=1400 audit(1785034145.030:1237): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[95913.810938] audit: type=1400 audit(1785034433.872:1238): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[95913.827174] audit: type=1400 audit(1785034433.889:1239): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[95913.894255] audit: type=1400 audit(1785034433.956:1240): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[96213.822906] audit: type=1400 audit(1785034733.883:1241): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[96213.838089] audit: type=1400 audit(1785034733.898:1242): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[96213.903480] audit: type=1400 audit(1785034733.963:1243): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[96458.239401] audit: type=1400 audit(1785034978.297:1244): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[96458.254388] audit: type=1400 audit(1785034978.312:1245): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[96458.323413] audit: type=1400 audit(1785034978.382:1246): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[96703.087555] audit: type=1400 audit(1785035223.145:1247): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[96703.096053] audit: type=1400 audit(1785035223.153:1248): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[96703.160128] audit: type=1400 audit(1785035223.217:1249): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[96984.647581] audit: type=1400 audit(1785035504.702:1250): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[96984.658538] audit: type=1400 audit(1785035504.713:1251): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[96984.729413] audit: type=1400 audit(1785035504.784:1252): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[97213.703148] audit: type=1400 audit(1785035733.756:1253): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[97213.718163] audit: type=1400 audit(1785035733.771:1254): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[97213.782041] audit: type=1400 audit(1785035733.835:1255): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[97504.704706] audit: type=1400 audit(1785036024.756:1256): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[97504.720365] audit: type=1400 audit(1785036024.772:1257): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[97504.784495] audit: type=1400 audit(1785036024.836:1258): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[97748.530020] audit: type=1400 audit(1785036268.580:1259): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[97748.546125] audit: type=1400 audit(1785036268.596:1260): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[97748.621156] audit: type=1400 audit(1785036268.671:1261): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[98041.011980] audit: type=1400 audit(1785036561.060:1262): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[98041.030153] audit: type=1400 audit(1785036561.078:1263): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[98041.098645] audit: type=1400 audit(1785036561.146:1264): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[98333.248103] audit: type=1400 audit(1785036853.294:1265): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[98333.256449] audit: type=1400 audit(1785036853.302:1266): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[98333.317362] audit: type=1400 audit(1785036853.363:1267): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[98627.185239] audit: type=1400 audit(1785037147.229:1268): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[98627.195884] audit: type=1400 audit(1785037147.240:1269): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[98627.261069] audit: type=1400 audit(1785037147.305:1270): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[98881.526948] audit: type=1400 audit(1785037401.569:1271): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[98881.542969] audit: type=1400 audit(1785037401.585:1272): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[98881.604052] audit: type=1400 audit(1785037401.646:1273): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[99149.113927] audit: type=1400 audit(1785037669.154:1274): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[99149.122238] audit: type=1400 audit(1785037669.163:1275): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[99149.190180] audit: type=1400 audit(1785037669.231:1276): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[99432.455994] audit: type=1400 audit(1785037952.495:1277): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[99432.464477] audit: type=1400 audit(1785037952.503:1278): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[99432.534515] audit: type=1400 audit(1785037952.573:1279): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[99708.736516] audit: type=1400 audit(1785038228.773:1280): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[99708.751501] audit: type=1400 audit(1785038228.788:1281): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[99708.820222] audit: type=1400 audit(1785038228.857:1282): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[99991.631360] audit: type=1400 audit(1785038511.666:1283): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[99991.647375] audit: type=1400 audit(1785038511.682:1284): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[99991.705281] audit: type=1400 audit(1785038511.740:1285): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[100292.842490] audit: type=1400 audit(1785038812.876:1286): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[100292.851058] audit: type=1400 audit(1785038812.884:1287): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[100292.923815] audit: type=1400 audit(1785038812.957:1288): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[100574.832124] audit: type=1400 audit(1785039094.863:1289): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[100574.844273] audit: type=1400 audit(1785039094.876:1290): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[100574.908261] audit: type=1400 audit(1785039094.940:1291): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[100825.943199] audit: type=1400 audit(1785039345.973:1292): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[100825.959116] audit: type=1400 audit(1785039345.989:1293): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[100826.019126] audit: type=1400 audit(1785039346.049:1294): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[101059.328118] audit: type=1400 audit(1785039579.356:1295): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[101059.339441] audit: type=1400 audit(1785039579.368:1296): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[101059.406369] audit: type=1400 audit(1785039579.435:1297): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[101351.632774] audit: type=1400 audit(1785039871.659:1298): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[101351.644762] audit: type=1400 audit(1785039871.671:1299): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[101351.708428] audit: type=1400 audit(1785039871.735:1300): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[101634.965087] audit: type=1400 audit(1785040154.990:1301): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[101634.975286] audit: type=1400 audit(1785040155.000:1302): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[101635.043767] audit: type=1400 audit(1785040155.068:1303): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[101917.492856] audit: type=1400 audit(1785040437.516:1304): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[101917.508310] audit: type=1400 audit(1785040437.531:1305): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[101917.694550] audit: type=1400 audit(1785040437.717:1306): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[102172.001588] audit: type=1400 audit(1785040692.023:1307): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[102172.018369] audit: type=1400 audit(1785040692.040:1308): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[102172.089456] audit: type=1400 audit(1785040692.111:1309): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[102440.062075] audit: type=1400 audit(1785040960.082:1310): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[102440.072816] audit: type=1400 audit(1785040960.092:1311): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[102440.141966] audit: type=1400 audit(1785040960.162:1312): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[102711.775881] audit: type=1400 audit(1785041231.794:1313): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[102711.791024] audit: type=1400 audit(1785041231.809:1314): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[102711.853284] audit: type=1400 audit(1785041231.871:1315): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[102986.224738] audit: type=1400 audit(1785041506.241:1316): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[102986.236697] audit: type=1400 audit(1785041506.253:1317): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[102986.305816] audit: type=1400 audit(1785041506.322:1318): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[103278.806819] audit: type=1400 audit(1785041798.821:1319): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[103278.815186] audit: type=1400 audit(1785041798.830:1320): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[103278.881396] audit: type=1400 audit(1785041798.896:1321): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[103568.315254] audit: type=1400 audit(1785042088.328:1322): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[103568.330576] audit: type=1400 audit(1785042088.344:1323): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[103568.392392] audit: type=1400 audit(1785042088.405:1324): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[103814.562078] audit: type=1400 audit(1785042334.574:1325): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[103814.577219] audit: type=1400 audit(1785042334.589:1326): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[103814.636689] audit: type=1400 audit(1785042334.648:1327): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[104112.002943] audit: type=1400 audit(1785042632.013:1328): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[104112.011546] audit: type=1400 audit(1785042632.022:1329): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[104112.080307] audit: type=1400 audit(1785042632.090:1330): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[104356.079833] audit: type=1400 audit(1785042876.089:1331): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[104356.095929] audit: type=1400 audit(1785042876.105:1332): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[104356.167229] audit: type=1400 audit(1785042876.176:1333): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[104583.764994] audit: type=1400 audit(1785043103.773:1334): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[104583.780499] audit: type=1400 audit(1785043103.789:1335): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[104583.848290] audit: type=1400 audit(1785043103.856:1336): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[104862.356039] audit: type=1400 audit(1785043382.362:1337): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[104862.365196] audit: type=1400 audit(1785043382.371:1338): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[104862.433171] audit: type=1400 audit(1785043382.439:1339): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[105093.170205] audit: type=1400 audit(1785043613.175:1340): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[105093.178314] audit: type=1400 audit(1785043613.183:1341): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[105093.244744] audit: type=1400 audit(1785043613.250:1342): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[105370.887187] audit: type=1400 audit(1785043890.891:1343): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[105370.897785] audit: type=1400 audit(1785043890.901:1344): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[105370.972254] audit: type=1400 audit(1785043890.976:1345): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[105658.988387] audit: type=1400 audit(1785044178.991:1346): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[105658.998631] audit: type=1400 audit(1785044179.001:1347): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[105659.065649] audit: type=1400 audit(1785044179.068:1348): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[105936.298330] audit: type=1400 audit(1785044456.299:1349): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[105936.306459] audit: type=1400 audit(1785044456.307:1350): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[105936.367850] audit: type=1400 audit(1785044456.368:1351): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[106194.790545] audit: type=1400 audit(1785044714.790:1352): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[106194.797399] audit: type=1400 audit(1785044714.797:1353): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[106194.894579] audit: type=1400 audit(1785044714.894:1354): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[106480.030027] audit: type=1400 audit(1785045000.028:1355): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[106480.044691] audit: type=1400 audit(1785045000.042:1356): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[106480.105394] audit: type=1400 audit(1785045000.103:1357): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[106750.967899] audit: type=1400 audit(1785045270.964:1358): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[106750.979016] audit: type=1400 audit(1785045270.975:1359): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[106751.041631] audit: type=1400 audit(1785045271.038:1360): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[107044.356406] audit: type=1400 audit(1785045564.351:1361): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[107044.364572] audit: type=1400 audit(1785045564.359:1362): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[107044.427004] audit: type=1400 audit(1785045564.421:1363): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[107271.382240] audit: type=1400 audit(1785045791.375:1364): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[107271.393460] audit: type=1400 audit(1785045791.387:1365): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[107271.455481] audit: type=1400 audit(1785045791.449:1366): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[107550.572124] audit: type=1400 audit(1785046070.564:1367): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[107550.580474] audit: type=1400 audit(1785046070.572:1368): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[107550.639832] audit: type=1400 audit(1785046070.631:1369): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[107824.239773] audit: type=1400 audit(1785046344.230:1370): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[107824.254912] audit: type=1400 audit(1785046344.245:1371): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[107824.384529] audit: type=1400 audit(1785046344.374:1372): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[108107.287609] audit: type=1400 audit(1785046627.275:1373): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[108107.296283] audit: type=1400 audit(1785046627.285:1374): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[108107.361699] audit: type=1400 audit(1785046627.350:1375): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[108334.921244] audit: type=1400 audit(1785046854.908:1376): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[108334.932144] audit: type=1400 audit(1785046854.919:1377): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[108335.000493] audit: type=1400 audit(1785046854.988:1378): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[108613.421466] audit: type=1400 audit(1785047133.407:1379): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[108613.432445] audit: type=1400 audit(1785047133.418:1380): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[108613.502673] audit: type=1400 audit(1785047133.488:1381): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[108877.695667] audit: type=1400 audit(1785047397.679:1382): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[108877.706817] audit: type=1400 audit(1785047397.691:1383): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[108877.780239] audit: type=1400 audit(1785047397.764:1384): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[109154.708739] audit: type=1400 audit(1785047674.691:1385): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[109154.723875] audit: type=1400 audit(1785047674.706:1386): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[109154.781170] audit: type=1400 audit(1785047674.764:1387): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[109421.945807] audit: type=1400 audit(1785047941.927:1388): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[109421.960982] audit: type=1400 audit(1785047941.942:1389): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[109422.016829] audit: type=1400 audit(1785047941.998:1390): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[109699.679842] audit: type=1400 audit(1785048219.659:1391): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[109699.688841] audit: type=1400 audit(1785048219.668:1392): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[109699.752446] audit: type=1400 audit(1785048219.732:1393): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[109952.477425] audit: type=1400 audit(1785048472.455:1394): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[109952.492872] audit: type=1400 audit(1785048472.471:1395): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[109952.555300] audit: type=1400 audit(1785048472.533:1396): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[110191.183363] audit: type=1400 audit(1785048711.160:1397): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[110191.192038] audit: type=1400 audit(1785048711.168:1398): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[110191.265903] audit: type=1400 audit(1785048711.242:1399): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[110468.367189] audit: type=1400 audit(1785048988.342:1400): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[110468.382907] audit: type=1400 audit(1785048988.358:1401): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[110468.451188] audit: type=1400 audit(1785048988.426:1402): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[110723.643121] audit: type=1400 audit(1785049243.617:1403): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[110723.658505] audit: type=1400 audit(1785049243.632:1404): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[110723.720897] audit: type=1400 audit(1785049243.694:1405): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[111022.717664] audit: type=1400 audit(1785049542.689:1406): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[111022.729618] audit: type=1400 audit(1785049542.701:1407): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[111022.797668] audit: type=1400 audit(1785049542.769:1408): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[111289.506287] audit: type=1400 audit(1785049809.477:1409): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[111289.514399] audit: type=1400 audit(1785049809.485:1410): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[111289.582343] audit: type=1400 audit(1785049809.553:1411): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[111561.005230] audit: type=1400 audit(1785050080.974:1412): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[111561.019125] audit: type=1400 audit(1785050080.988:1413): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[111561.084367] audit: type=1400 audit(1785050081.053:1414): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[111842.744681] audit: type=1400 audit(1785050362.712:1415): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[111842.761196] audit: type=1400 audit(1785050362.728:1416): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[111842.828502] audit: type=1400 audit(1785050362.796:1417): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[112127.936325] audit: type=1400 audit(1785050647.902:1418): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[112127.953001] audit: type=1400 audit(1785050647.918:1419): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[112128.022571] audit: type=1400 audit(1785050647.988:1420): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[112358.854439] audit: type=1400 audit(1785050878.819:1421): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[112358.862712] audit: type=1400 audit(1785050878.827:1422): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[112358.925681] audit: type=1400 audit(1785050878.890:1423): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[112640.602537] audit: type=1400 audit(1785051160.565:1424): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[112640.613287] audit: type=1400 audit(1785051160.576:1425): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[112640.685304] audit: type=1400 audit(1785051160.648:1426): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[112924.407660] audit: type=1400 audit(1785051444.369:1427): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[112924.423079] audit: type=1400 audit(1785051444.384:1428): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[112924.495994] audit: type=1400 audit(1785051444.457:1429): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[113172.254026] audit: type=1400 audit(1785051692.214:1430): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[113172.262090] audit: type=1400 audit(1785051692.222:1431): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[113172.324052] audit: type=1400 audit(1785051692.284:1432): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[113432.592565] audit: type=1400 audit(1785051952.551:1433): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[113432.607586] audit: type=1400 audit(1785051952.566:1434): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[113432.668822] audit: type=1400 audit(1785051952.627:1435): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[113726.786238] audit: type=1400 audit(1785052246.743:1436): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[113726.792799] audit: type=1400 audit(1785052246.749:1437): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[113726.853792] audit: type=1400 audit(1785052246.810:1438): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[113989.829652] audit: type=1400 audit(1785052509.785:1439): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[113989.845106] audit: type=1400 audit(1785052509.800:1440): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[113989.905289] audit: type=1400 audit(1785052509.860:1441): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[114260.166359] audit: type=1400 audit(1785052780.121:1442): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[114260.177183] audit: type=1400 audit(1785052780.131:1443): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[114260.232418] audit: type=1400 audit(1785052780.187:1444): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[114543.506445] audit: type=1400 audit(1785053063.458:1445): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[114543.516927] audit: type=1400 audit(1785053063.469:1446): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[114543.643659] audit: type=1400 audit(1785053063.595:1447): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[114799.241336] audit: type=1400 audit(1785053319.192:1448): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[114799.250215] audit: type=1400 audit(1785053319.200:1449): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[114799.313224] audit: type=1400 audit(1785053319.264:1450): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[115069.466351] audit: type=1400 audit(1785053589.415:1451): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[115069.478841] audit: type=1400 audit(1785053589.428:1452): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[115069.540878] audit: type=1400 audit(1785053589.490:1453): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[115327.776329] audit: type=1400 audit(1785053847.724:1454): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[115327.791018] audit: type=1400 audit(1785053847.738:1455): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[115327.867781] audit: type=1400 audit(1785053847.815:1456): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[115590.996239] audit: type=1400 audit(1785054110.942:1457): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[115591.005045] audit: type=1400 audit(1785054110.951:1458): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[115591.070717] audit: type=1400 audit(1785054111.016:1459): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[115879.432479] audit: type=1400 audit(1785054399.377:1460): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[115879.440878] audit: type=1400 audit(1785054399.385:1461): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[115879.497956] audit: type=1400 audit(1785054399.442:1462): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[116163.539165] audit: type=1400 audit(1785054683.482:1463): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[116163.550752] audit: type=1400 audit(1785054683.493:1464): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[116163.616562] audit: type=1400 audit(1785054683.559:1465): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[116456.803835] audit: type=1400 audit(1785054976.745:1466): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[116456.813199] audit: type=1400 audit(1785054976.754:1467): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[116456.877125] audit: type=1400 audit(1785054976.818:1468): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[116714.188949] audit: type=1400 audit(1785055234.128:1469): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[116714.197026] audit: type=1400 audit(1785055234.136:1470): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[116714.263611] audit: type=1400 audit(1785055234.204:1471): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[116996.790170] audit: type=1400 audit(1785055516.728:1472): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[116996.805938] audit: type=1400 audit(1785055516.744:1473): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[116996.874182] audit: type=1400 audit(1785055516.812:1474): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[117239.950253] audit: type=1400 audit(1785055759.887:1475): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[117239.965088] audit: type=1400 audit(1785055759.901:1476): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[117240.026233] audit: type=1400 audit(1785055759.963:1477): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[117515.405460] audit: type=1400 audit(1785056035.340:1478): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[117515.419479] audit: type=1400 audit(1785056035.354:1479): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[117515.487116] audit: type=1400 audit(1785056035.422:1480): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[117764.104088] audit: type=1400 audit(1785056284.038:1481): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[117764.119904] audit: type=1400 audit(1785056284.053:1482): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[117764.190500] audit: type=1400 audit(1785056284.124:1483): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[118025.998249] audit: type=1400 audit(1785056545.930:1484): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[118026.007061] audit: type=1400 audit(1785056545.939:1485): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[118026.083411] audit: type=1400 audit(1785056546.016:1486): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[118264.995944] audit: type=1400 audit(1785056784.927:1487): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[118265.006540] audit: type=1400 audit(1785056784.937:1488): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[118265.076745] audit: type=1400 audit(1785056785.008:1489): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[118538.728653] audit: type=1400 audit(1785057058.658:1490): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[118538.744272] audit: type=1400 audit(1785057058.674:1491): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[118538.820627] audit: type=1400 audit(1785057058.750:1492): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[118817.483477] audit: type=1400 audit(1785057337.411:1493): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[118817.490792] audit: type=1400 audit(1785057337.419:1494): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[118817.564616] audit: type=1400 audit(1785057337.492:1495): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[119085.968185] audit: type=1400 audit(1785057605.895:1496): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[119085.975081] audit: type=1400 audit(1785057605.901:1497): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[119086.042725] audit: type=1400 audit(1785057605.969:1498): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[119328.679188] audit: type=1400 audit(1785057848.604:1499): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[119328.687666] audit: type=1400 audit(1785057848.613:1500): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[119328.746148] audit: type=1400 audit(1785057848.671:1501): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[119578.766899] audit: type=1400 audit(1785058098.691:1502): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[119578.779053] audit: type=1400 audit(1785058098.703:1503): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[119578.839653] audit: type=1400 audit(1785058098.763:1504): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[119819.354317] audit: type=1400 audit(1785058339.278:1505): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[119819.362286] audit: type=1400 audit(1785058339.286:1506): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[119819.435008] audit: type=1400 audit(1785058339.358:1507): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[120105.419619] audit: type=1400 audit(1785058625.340:1508): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[120105.430353] audit: type=1400 audit(1785058625.351:1509): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[120105.494582] audit: type=1400 audit(1785058625.415:1510): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[120386.877619] audit: type=1400 audit(1785058906.797:1511): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[120386.888068] audit: type=1400 audit(1785058906.807:1512): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[120386.955131] audit: type=1400 audit(1785058906.874:1513): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[120671.490289] audit: type=1400 audit(1785059191.408:1514): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[120671.501437] audit: type=1400 audit(1785059191.419:1515): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[120671.564451] audit: type=1400 audit(1785059191.482:1516): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[120908.441808] audit: type=1400 audit(1785059428.358:1517): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[120908.452308] audit: type=1400 audit(1785059428.369:1518): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[120908.518093] audit: type=1400 audit(1785059428.434:1519): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[121143.132230] audit: type=1400 audit(1785059663.047:1520): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[121143.141412] audit: type=1400 audit(1785059663.056:1521): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[121143.204880] audit: type=1400 audit(1785059663.120:1522): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[121429.929841] audit: type=1400 audit(1785059949.842:1523): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[121429.938824] audit: type=1400 audit(1785059949.852:1524): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[121430.014899] audit: type=1400 audit(1785059949.928:1525): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[121680.198060] audit: type=1400 audit(1785060200.110:1526): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[121680.206125] audit: type=1400 audit(1785060200.118:1527): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[121680.266705] audit: type=1400 audit(1785060200.179:1528): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[121980.628184] audit: type=1400 audit(1785060500.538:1529): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[121980.636658] audit: type=1400 audit(1785060500.547:1530): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[121980.701660] audit: type=1400 audit(1785060500.612:1531): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[122258.361284] audit: type=1400 audit(1785060778.270:1532): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[122258.371614] audit: type=1400 audit(1785060778.280:1533): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[122258.445111] audit: type=1400 audit(1785060778.354:1534): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[122502.183254] audit: type=1400 audit(1785061022.090:1535): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[122502.194143] audit: type=1400 audit(1785061022.101:1536): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[122502.265019] audit: type=1400 audit(1785061022.172:1537): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[122795.511627] audit: type=1400 audit(1785061315.417:1538): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[122795.522781] audit: type=1400 audit(1785061315.428:1539): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[122795.591660] audit: type=1400 audit(1785061315.497:1540): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[123041.620503] audit: type=1400 audit(1785061561.525:1541): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[123041.627257] audit: type=1400 audit(1785061561.531:1542): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[123041.693380] audit: type=1400 audit(1785061561.597:1543): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[123274.662267] audit: type=1400 audit(1785061794.565:1544): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[123274.669845] audit: type=1400 audit(1785061794.573:1545): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[123274.729421] audit: type=1400 audit(1785061794.632:1546): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[123557.071798] audit: type=1400 audit(1785062076.973:1547): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[123557.079968] audit: type=1400 audit(1785062076.981:1548): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[123557.139759] audit: type=1400 audit(1785062077.041:1549): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[123822.842673] audit: type=1400 audit(1785062342.742:1550): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[123822.852495] audit: type=1400 audit(1785062342.752:1551): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[123822.916125] audit: type=1400 audit(1785062342.816:1552): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[124077.877193] audit: type=1400 audit(1785062597.775:1553): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[124077.891453] audit: type=1400 audit(1785062597.790:1554): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[124077.952040] audit: type=1400 audit(1785062597.850:1555): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[124330.593037] audit: type=1400 audit(1785062850.490:1556): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[124330.600245] audit: type=1400 audit(1785062850.497:1557): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[124330.662830] audit: type=1400 audit(1785062850.560:1558): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[124561.061801] audit: type=1400 audit(1785063080.957:1559): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[124561.077825] audit: type=1400 audit(1785063080.973:1560): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[124561.128054] audit: type=1400 audit(1785063081.023:1561): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[124828.975591] audit: type=1400 audit(1785063348.869:1562): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[124828.992302] audit: type=1400 audit(1785063348.886:1563): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[124829.062258] audit: type=1400 audit(1785063348.956:1564): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[125091.270933] audit: type=1400 audit(1785063611.163:1565): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[125091.278352] audit: type=1400 audit(1785063611.171:1566): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[125091.348107] audit: type=1400 audit(1785063611.241:1567): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[125368.421213] audit: type=1400 audit(1785063888.312:1568): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[125368.432039] audit: type=1400 audit(1785063888.323:1569): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[125368.499821] audit: type=1400 audit(1785063888.391:1570): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[125619.262536] audit: type=1400 audit(1785064139.152:1571): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[125619.270925] audit: type=1400 audit(1785064139.160:1572): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[125619.352569] audit: type=1400 audit(1785064139.242:1573): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[125898.045317] audit: type=1400 audit(1785064417.933:1574): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[125898.060922] audit: type=1400 audit(1785064417.949:1575): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[125898.120235] audit: type=1400 audit(1785064418.008:1576): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[126139.117246] audit: type=1400 audit(1785064659.004:1577): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[126139.127920] audit: type=1400 audit(1785064659.014:1578): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[126139.189849] audit: type=1400 audit(1785064659.076:1579): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[126376.412544] audit: type=1400 audit(1785064896.298:1580): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[126376.421911] audit: type=1400 audit(1785064896.307:1581): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[126376.493413] audit: type=1400 audit(1785064896.379:1582): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[126677.183910] audit: type=1400 audit(1785065197.067:1583): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[126677.194880] audit: type=1400 audit(1785065197.078:1584): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[126677.259941] audit: type=1400 audit(1785065197.143:1585): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[126951.030751] audit: type=1400 audit(1785065470.913:1586): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[126951.039078] audit: type=1400 audit(1785065470.921:1587): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[126951.104546] audit: type=1400 audit(1785065470.986:1588): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[127220.627879] audit: type=1400 audit(1785065740.508:1589): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[127220.636781] audit: type=1400 audit(1785065740.517:1590): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[127220.697887] audit: type=1400 audit(1785065740.578:1591): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[127504.806258] audit: type=1400 audit(1785066024.685:1592): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[127504.824697] audit: type=1400 audit(1785066024.704:1593): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[127504.891274] audit: type=1400 audit(1785066024.770:1594): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[127751.723175] audit: type=1400 audit(1785066271.601:1595): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[127751.740776] audit: type=1400 audit(1785066271.618:1596): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[127751.802552] audit: type=1400 audit(1785066271.680:1597): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[128007.480674] audit: type=1400 audit(1785066527.357:1598): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[128007.489027] audit: type=1400 audit(1785066527.365:1599): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[128007.553821] audit: type=1400 audit(1785066527.430:1600): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[128267.971904] audit: type=1400 audit(1785066787.846:1601): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[128267.979766] audit: type=1400 audit(1785066787.854:1602): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[128268.048120] audit: type=1400 audit(1785066787.923:1603): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[128551.055624] audit: type=1400 audit(1785067070.929:1604): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[128551.064161] audit: type=1400 audit(1785067070.937:1605): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[128551.141100] audit: type=1400 audit(1785067071.014:1606): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[128786.651120] audit: type=1400 audit(1785067306.523:1607): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[128786.659738] audit: type=1400 audit(1785067306.531:1608): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[128786.717785] audit: type=1400 audit(1785067306.589:1609): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[129073.434380] audit: type=1400 audit(1785067593.304:1610): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[129073.443665] audit: type=1400 audit(1785067593.314:1611): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[129073.510712] audit: type=1400 audit(1785067593.381:1612): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[129313.236228] audit: type=1400 audit(1785067833.105:1613): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[129313.252909] audit: type=1400 audit(1785067833.122:1614): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[129313.321894] audit: type=1400 audit(1785067833.191:1615): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[129566.459422] audit: type=1400 audit(1785068086.327:1616): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[129566.475545] audit: type=1400 audit(1785068086.343:1617): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[129566.539843] audit: type=1400 audit(1785068086.407:1618): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[129839.419976] audit: type=1400 audit(1785068359.286:1619): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[129839.428409] audit: type=1400 audit(1785068359.294:1620): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[129839.492496] audit: type=1400 audit(1785068359.358:1621): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[130126.754233] audit: type=1400 audit(1785068646.618:1622): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[130126.770539] audit: type=1400 audit(1785068646.635:1623): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[130126.835686] audit: type=1400 audit(1785068646.700:1624): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[130423.364785] audit: type=1400 audit(1785068943.227:1625): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[130423.372473] audit: type=1400 audit(1785068943.235:1626): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[130423.436978] audit: type=1400 audit(1785068943.299:1627): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[130685.996051] audit: type=1400 audit(1785069205.857:1628): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[130686.003656] audit: type=1400 audit(1785069205.865:1629): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[130686.072620] audit: type=1400 audit(1785069205.933:1630): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[130963.235976] audit: type=1400 audit(1785069483.096:1631): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[130963.251198] audit: type=1400 audit(1785069483.111:1632): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[130963.314510] audit: type=1400 audit(1785069483.175:1633): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[131191.446960] audit: type=1400 audit(1785069711.305:1634): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[131191.455667] audit: type=1400 audit(1785069711.314:1635): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[131191.517929] audit: type=1400 audit(1785069711.376:1636): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[131446.312905] audit: type=1400 audit(1785069966.170:1637): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[131446.320248] audit: type=1400 audit(1785069966.177:1638): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[131446.387531] audit: type=1400 audit(1785069966.244:1639): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[131682.315634] audit: type=1400 audit(1785070202.171:1640): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[131682.322263] audit: type=1400 audit(1785070202.178:1641): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[131682.381291] audit: type=1400 audit(1785070202.237:1642): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[131947.940548] audit: type=1400 audit(1785070467.794:1643): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[131947.955806] audit: type=1400 audit(1785070467.810:1644): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[131948.025133] audit: type=1400 audit(1785070467.879:1645): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[132244.268002] audit: type=1400 audit(1785070764.120:1646): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[132244.281753] audit: type=1400 audit(1785070764.134:1647): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[132244.351708] audit: type=1400 audit(1785070764.204:1648): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[132514.182095] audit: type=1400 audit(1785071034.033:1649): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[132514.189956] audit: type=1400 audit(1785071034.041:1650): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[132514.253811] audit: type=1400 audit(1785071034.104:1651): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[132769.244434] audit: type=1400 audit(1785071289.094:1652): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[132769.251974] audit: type=1400 audit(1785071289.101:1653): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[132769.322083] audit: type=1400 audit(1785071289.171:1654): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[132996.818657] audit: type=1400 audit(1785071516.667:1655): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[132996.835260] audit: type=1400 audit(1785071516.683:1656): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[132996.900008] audit: type=1400 audit(1785071516.748:1657): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[133271.062481] audit: type=1400 audit(1785071790.909:1658): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[133271.077240] audit: type=1400 audit(1785071790.923:1659): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[133271.144329] audit: type=1400 audit(1785071790.990:1660): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[133527.890092] audit: type=1400 audit(1785072047.735:1661): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[133527.898772] audit: type=1400 audit(1785072047.744:1662): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[133527.962958] audit: type=1400 audit(1785072047.808:1663): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[133820.809915] audit: type=1400 audit(1785072340.653:1664): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[133820.834828] audit: type=1400 audit(1785072340.678:1665): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[133820.897601] audit: type=1400 audit(1785072340.741:1666): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[134081.655112] audit: type=1400 audit(1785072601.497:1667): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[134081.665035] audit: type=1400 audit(1785072601.507:1668): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[134081.725305] audit: type=1400 audit(1785072601.567:1669): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[134360.683811] audit: type=1400 audit(1785072880.524:1670): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[134360.700243] audit: type=1400 audit(1785072880.540:1671): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[134360.760462] audit: type=1400 audit(1785072880.601:1672): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[134593.012376] audit: type=1400 audit(1785073112.851:1673): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[134593.019870] audit: type=1400 audit(1785073112.859:1674): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[134593.079176] audit: type=1400 audit(1785073112.918:1675): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[134827.148194] audit: type=1400 audit(1785073346.986:1676): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[134827.157139] audit: type=1400 audit(1785073346.995:1677): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[134827.223401] audit: type=1400 audit(1785073347.061:1678): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[135081.460670] audit: type=1400 audit(1785073601.297:1679): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[135081.470222] audit: type=1400 audit(1785073601.306:1680): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[135081.534315] audit: type=1400 audit(1785073601.370:1681): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[135368.722236] audit: type=1400 audit(1785073888.556:1682): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[135368.737973] audit: type=1400 audit(1785073888.571:1683): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[135368.836748] audit: type=1400 audit(1785073888.671:1684): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[135662.186995] audit: type=1400 audit(1785074182.020:1685): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[135662.202637] audit: type=1400 audit(1785074182.035:1686): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[135662.262248] audit: type=1400 audit(1785074182.095:1687): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[135898.669310] audit: type=1400 audit(1785074418.501:1688): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[135898.678259] audit: type=1400 audit(1785074418.510:1689): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[135898.740459] audit: type=1400 audit(1785074418.572:1690): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[136179.628571] audit: type=1400 audit(1785074699.458:1691): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[136179.630775] audit: type=1400 audit(1785074699.460:1692): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[136179.692310] audit: type=1400 audit(1785074699.522:1693): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[136449.532145] audit: type=1400 audit(1785074969.360:1694): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[136449.534358] audit: type=1400 audit(1785074969.362:1695): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[136449.594917] audit: type=1400 audit(1785074969.423:1696): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[136731.069127] audit: type=1400 audit(1785075250.896:1697): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[136731.071643] audit: type=1400 audit(1785075250.898:1698): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[136731.146200] audit: type=1400 audit(1785075250.973:1699): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[137000.901271] audit: type=1400 audit(1785075520.726:1700): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[137000.903651] audit: type=1400 audit(1785075520.728:1701): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[137000.973818] audit: type=1400 audit(1785075520.799:1702): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[137229.717252] audit: type=1400 audit(1785075749.541:1703): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[137229.719414] audit: type=1400 audit(1785075749.543:1704): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[137229.777165] audit: type=1400 audit(1785075749.601:1705): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[137513.786737] audit: type=1400 audit(1785076033.608:1706): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[137513.788763] audit: type=1400 audit(1785076033.611:1707): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[137513.854144] audit: type=1400 audit(1785076033.676:1708): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[137804.203607] audit: type=1400 audit(1785076324.024:1709): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[137804.205966] audit: type=1400 audit(1785076324.026:1710): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[137804.264405] audit: type=1400 audit(1785076324.085:1711): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[138095.401453] audit: type=1400 audit(1785076615.220:1712): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[138095.403673] audit: type=1400 audit(1785076615.222:1713): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[138095.473534] audit: type=1400 audit(1785076615.292:1714): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[138325.645667] audit: type=1400 audit(1785076845.463:1715): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[138325.647369] audit: type=1400 audit(1785076845.464:1716): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[138325.710338] audit: type=1400 audit(1785076845.527:1717): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[138610.340519] audit: type=1400 audit(1785077130.156:1718): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[138610.342733] audit: type=1400 audit(1785077130.158:1719): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[138610.403863] audit: type=1400 audit(1785077130.219:1720): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[138888.422463] audit: type=1400 audit(1785077408.236:1721): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[138888.425435] audit: type=1400 audit(1785077408.239:1722): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[138888.489175] audit: type=1400 audit(1785077408.303:1723): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[139168.227273] audit: type=1400 audit(1785077688.039:1724): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[139168.229401] audit: type=1400 audit(1785077688.041:1725): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[139168.290001] audit: type=1400 audit(1785077688.102:1726): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[139408.379013] audit: type=1400 audit(1785077928.190:1727): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[139408.381062] audit: type=1400 audit(1785077928.192:1728): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[139408.443235] audit: type=1400 audit(1785077928.254:1729): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[139691.071861] audit: type=1400 audit(1785078210.881:1730): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[139691.074034] audit: type=1400 audit(1785078210.883:1731): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[139691.145030] audit: type=1400 audit(1785078210.954:1732): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[139952.489413] audit: type=1400 audit(1785078472.296:1733): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[139952.491507] audit: type=1400 audit(1785078472.299:1734): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[139952.555640] audit: type=1400 audit(1785078472.363:1735): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[140189.858293] audit: type=1400 audit(1785078709.664:1736): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[140189.860492] audit: type=1400 audit(1785078709.666:1737): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[140189.932359] audit: type=1400 audit(1785078709.738:1738): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[140462.874146] audit: type=1400 audit(1785078982.678:1739): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[140462.876248] audit: type=1400 audit(1785078982.680:1740): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[140462.951248] audit: type=1400 audit(1785078982.755:1741): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[140749.885839] audit: type=1400 audit(1785079269.688:1742): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[140749.888864] audit: type=1400 audit(1785079269.691:1743): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[140749.961612] audit: type=1400 audit(1785079269.764:1744): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[141002.971423] audit: type=1400 audit(1785079522.772:1745): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[141002.973616] audit: type=1400 audit(1785079522.774:1746): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[141003.047820] audit: type=1400 audit(1785079522.848:1747): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[141266.122373] audit: type=1400 audit(1785079785.922:1748): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[141266.124564] audit: type=1400 audit(1785079785.923:1749): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[141266.182411] audit: type=1400 audit(1785079785.981:1750): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[141504.418402] audit: type=1400 audit(1785080024.216:1751): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[141504.419986] audit: type=1400 audit(1785080024.217:1752): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[141504.493353] audit: type=1400 audit(1785080024.291:1753): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[141796.525545] audit: type=1400 audit(1785080316.321:1754): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[141796.527843] audit: type=1400 audit(1785080316.323:1755): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[141796.594748] audit: type=1400 audit(1785080316.390:1756): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[142076.823064] audit: type=1400 audit(1785080596.617:1757): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[142076.825238] audit: type=1400 audit(1785080596.619:1758): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[142076.895686] audit: type=1400 audit(1785080596.689:1759): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[142335.341507] audit: type=1400 audit(1785080855.134:1760): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[142335.343760] audit: type=1400 audit(1785080855.136:1761): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[142335.407048] audit: type=1400 audit(1785080855.199:1762): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[142630.487114] audit: type=1400 audit(1785081150.277:1763): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[142630.489235] audit: type=1400 audit(1785081150.279:1764): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[142630.558265] audit: type=1400 audit(1785081150.348:1765): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[142929.672205] audit: type=1400 audit(1785081449.460:1766): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[142929.674614] audit: type=1400 audit(1785081449.463:1767): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[142929.734647] audit: type=1400 audit(1785081449.523:1768): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[143173.652069] audit: type=1400 audit(1785081693.439:1769): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[143173.654233] audit: type=1400 audit(1785081693.441:1770): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[143173.719748] audit: type=1400 audit(1785081693.507:1771): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[143455.430739] audit: type=1400 audit(1785081975.216:1772): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[143455.432932] audit: type=1400 audit(1785081975.218:1773): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[143455.488390] audit: type=1400 audit(1785081975.273:1774): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[143726.427274] audit: type=1400 audit(1785082246.211:1775): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[143726.429273] audit: type=1400 audit(1785082246.213:1776): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[143726.498491] audit: type=1400 audit(1785082246.282:1777): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[143979.959924] audit: type=1400 audit(1785082499.742:1778): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[143979.962206] audit: type=1400 audit(1785082499.744:1779): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[143980.026307] audit: type=1400 audit(1785082499.808:1780): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[144266.928147] audit: type=1400 audit(1785082786.708:1781): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[144266.930637] audit: type=1400 audit(1785082786.711:1782): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[144266.993957] audit: type=1400 audit(1785082786.774:1783): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[144530.435289] audit: type=1400 audit(1785083050.214:1784): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[144530.437529] audit: type=1400 audit(1785083050.216:1785): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[144530.512849] audit: type=1400 audit(1785083050.292:1786): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[144832.243078] audit: type=1400 audit(1785083352.020:1787): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[144832.245072] audit: type=1400 audit(1785083352.022:1788): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[144832.306148] audit: type=1400 audit(1785083352.083:1789): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[145090.547314] audit: type=1400 audit(1785083610.322:1790): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[145090.549404] audit: type=1400 audit(1785083610.324:1791): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[145090.608775] audit: type=1400 audit(1785083610.384:1792): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[145335.256525] audit: type=1400 audit(1785083855.030:1793): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[145335.258721] audit: type=1400 audit(1785083855.032:1794): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[145335.327445] audit: type=1400 audit(1785083855.101:1795): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[145627.572323] audit: type=1400 audit(1785084147.345:1796): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[145627.574715] audit: type=1400 audit(1785084147.347:1797): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[145627.646183] audit: type=1400 audit(1785084147.418:1798): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[145885.135622] audit: type=1400 audit(1785084404.906:1799): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[145885.137749] audit: type=1400 audit(1785084404.908:1800): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[145885.198727] audit: type=1400 audit(1785084404.969:1801): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[146161.193276] audit: type=1400 audit(1785084680.962:1802): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[146161.195410] audit: type=1400 audit(1785084680.964:1803): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[146161.269042] audit: type=1400 audit(1785084681.037:1804): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[146422.344137] audit: type=1400 audit(1785084942.111:1805): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[146422.346348] audit: type=1400 audit(1785084942.113:1806): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[146422.405929] audit: type=1400 audit(1785084942.173:1807): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[146652.757377] audit: type=1400 audit(1785085172.523:1808): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[146652.759473] audit: type=1400 audit(1785085172.525:1809): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[146652.819042] audit: type=1400 audit(1785085172.584:1810): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[146898.723833] audit: type=1400 audit(1785085418.488:1811): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[146898.726098] audit: type=1400 audit(1785085418.490:1812): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[146898.788474] audit: type=1400 audit(1785085418.552:1813): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[147148.184660] audit: type=1400 audit(1785085667.947:1814): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[147148.186461] audit: type=1400 audit(1785085667.949:1815): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[147148.259273] audit: type=1400 audit(1785085668.021:1816): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[147420.186089] audit: type=1400 audit(1785085939.947:1817): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[147420.188196] audit: type=1400 audit(1785085939.949:1818): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[147420.246483] audit: type=1400 audit(1785085940.007:1819): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[147704.972018] audit: type=1400 audit(1785086224.731:1820): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[147704.974286] audit: type=1400 audit(1785086224.733:1821): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[147705.108227] audit: type=1400 audit(1785086224.867:1822): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[147966.136908] audit: type=1400 audit(1785086485.894:1823): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[147966.139060] audit: type=1400 audit(1785086485.896:1824): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[147966.195419] audit: type=1400 audit(1785086485.953:1825): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[148231.000772] audit: type=1400 audit(1785086750.756:1826): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[148231.002892] audit: type=1400 audit(1785086750.758:1827): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[148231.077218] audit: type=1400 audit(1785086750.833:1828): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[148360.866560] audit: type=1400 audit(1785086880.621:1829): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="/usr/sbin/chronyd" pid=632151 comm="apparmor_parser"
|
|
[148410.958518] audit: type=1400 audit(1785086930.711:1830): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/usr/bin/lxc-start" pid=645304 comm="apparmor_parser"
|
|
[148411.234107] audit: type=1400 audit(1785086930.987:1831): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="lxc-container-default" pid=645307 comm="apparmor_parser"
|
|
[148411.241236] audit: type=1400 audit(1785086930.994:1832): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="lxc-container-default-cgns" pid=645307 comm="apparmor_parser"
|
|
[148411.248037] audit: type=1400 audit(1785086931.001:1833): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="lxc-container-default-with-mounting" pid=645307 comm="apparmor_parser"
|
|
[148411.260140] audit: type=1400 audit(1785086931.013:1834): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="lxc-container-default-with-nesting" pid=645307 comm="apparmor_parser"
|
|
[148413.337033] audit: type=1400 audit(1785086933.090:1835): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/usr/bin/lxc-copy" pid=645493 comm="apparmor_parser"
|
|
[148413.350229] audit: type=1400 audit(1785086933.103:1836): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="/usr/bin/lxc-start" pid=645497 comm="apparmor_parser"
|
|
[148413.380101] audit: type=1400 audit(1785086933.133:1837): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="lxc-container-default" pid=645501 comm="apparmor_parser"
|
|
[148413.380111] audit: type=1400 audit(1785086933.133:1838): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="lxc-container-default-cgns" pid=645501 comm="apparmor_parser"
|
|
[148413.380114] audit: type=1400 audit(1785086933.133:1839): apparmor="STATUS" operation="profile_replace" profile="unconfined" name="lxc-container-default-with-mounting" pid=645501 comm="apparmor_parser"
|
|
[148442.545038] kauditd_printk_skb: 1 callbacks suppressed
|
|
[148442.545043] audit: type=1400 audit(1785086962.298:1841): apparmor="STATUS" operation="profile_replace" info="same as current profile, skipping" profile="unconfined" name="pve-container-mounthotplug" pid=646305 comm="apparmor_parser"
|
|
[148459.316354] audit: type=1400 audit(1785086979.069:1842): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[148459.318060] audit: type=1400 audit(1785086979.071:1843): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[148459.389207] audit: type=1400 audit(1785086979.142:1844): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[148760.994460] audit: type=1400 audit(1785087280.745:1845): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[148760.996709] audit: type=1400 audit(1785087280.748:1846): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[148761.060892] audit: type=1400 audit(1785087280.812:1847): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[149048.920124] audit: type=1400 audit(1785087568.669:1848): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[149048.922028] audit: type=1400 audit(1785087568.671:1849): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[149048.981520] audit: type=1400 audit(1785087568.730:1850): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[149277.968534] audit: type=1400 audit(1785087797.716:1851): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[149277.970618] audit: type=1400 audit(1785087797.718:1852): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[149278.035401] audit: type=1400 audit(1785087797.783:1853): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[149540.253893] audit: type=1400 audit(1785088060.000:1854): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[149540.255984] audit: type=1400 audit(1785088060.002:1855): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[149540.314545] audit: type=1400 audit(1785088060.060:1856): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[149813.671295] audit: type=1400 audit(1785088333.415:1857): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[149813.673331] audit: type=1400 audit(1785088333.417:1858): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[149813.752387] audit: type=1400 audit(1785088333.496:1859): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[150077.024424] audit: type=1400 audit(1785088596.768:1860): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[150077.026406] audit: type=1400 audit(1785088596.769:1861): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[150077.098213] audit: type=1400 audit(1785088596.841:1862): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[150338.800303] audit: type=1400 audit(1785088858.541:1863): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[150338.802515] audit: type=1400 audit(1785088858.543:1864): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[150338.869489] audit: type=1400 audit(1785088858.610:1865): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[150572.337580] audit: type=1400 audit(1785089092.077:1866): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[150572.339787] audit: type=1400 audit(1785089092.079:1867): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[150572.399214] audit: type=1400 audit(1785089092.139:1868): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[150833.874816] audit: type=1400 audit(1785089353.613:1869): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[150833.876695] audit: type=1400 audit(1785089353.615:1870): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[150833.945265] audit: type=1400 audit(1785089353.683:1871): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[151093.542705] audit: type=1400 audit(1785089613.279:1872): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[151093.544492] audit: type=1400 audit(1785089613.281:1873): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[151093.616242] audit: type=1400 audit(1785089613.353:1874): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[151337.242769] audit: type=1400 audit(1785089856.978:1875): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[151337.245118] audit: type=1400 audit(1785089856.980:1876): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[151337.304416] audit: type=1400 audit(1785089857.039:1877): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[151633.272407] audit: type=1400 audit(1785090153.006:1878): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[151633.274521] audit: type=1400 audit(1785090153.008:1879): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[151633.341511] audit: type=1400 audit(1785090153.075:1880): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[151860.128244] audit: type=1400 audit(1785090379.860:1881): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[151860.130686] audit: type=1400 audit(1785090379.863:1882): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[151860.196569] audit: type=1400 audit(1785090379.928:1883): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[152154.210119] audit: type=1400 audit(1785090673.940:1884): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[152154.212236] audit: type=1400 audit(1785090673.942:1885): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[152154.275725] audit: type=1400 audit(1785090674.006:1886): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[152428.043218] audit: type=1400 audit(1785090947.772:1887): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[152428.045408] audit: type=1400 audit(1785090947.774:1888): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[152428.113262] audit: type=1400 audit(1785090947.842:1889): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[152660.028521] audit: type=1400 audit(1785091179.756:1890): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[152660.030819] audit: type=1400 audit(1785091179.758:1891): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[152660.092634] audit: type=1400 audit(1785091179.820:1892): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[152921.100036] audit: type=1400 audit(1785091440.826:1893): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[152921.103290] audit: type=1400 audit(1785091440.829:1894): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[152921.188392] audit: type=1400 audit(1785091440.914:1895): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[153195.337719] audit: type=1400 audit(1785091715.062:1896): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[153195.339806] audit: type=1400 audit(1785091715.064:1897): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[153195.409464] audit: type=1400 audit(1785091715.133:1898): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[153481.969694] audit: type=1400 audit(1785092001.692:1899): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[153481.972003] audit: type=1400 audit(1785092001.694:1900): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[153482.038411] audit: type=1400 audit(1785092001.761:1901): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[153766.014111] audit: type=1400 audit(1785092285.735:1902): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[153766.016444] audit: type=1400 audit(1785092285.737:1903): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[153766.084227] audit: type=1400 audit(1785092285.805:1904): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[154055.320740] audit: type=1400 audit(1785092575.039:1905): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[154055.322934] audit: type=1400 audit(1785092575.042:1906): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[154055.379423] audit: type=1400 audit(1785092575.098:1907): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[154338.859966] audit: type=1400 audit(1785092858.577:1908): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[154338.862149] audit: type=1400 audit(1785092858.579:1909): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[154338.924692] audit: type=1400 audit(1785092858.642:1910): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[154615.351123] audit: type=1400 audit(1785093135.067:1911): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[154615.353335] audit: type=1400 audit(1785093135.069:1912): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[154615.411726] audit: type=1400 audit(1785093135.127:1913): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[154876.382706] audit: type=1400 audit(1785093396.097:1914): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[154876.384763] audit: type=1400 audit(1785093396.099:1915): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[154876.449267] audit: type=1400 audit(1785093396.163:1916): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[155153.075215] audit: type=1400 audit(1785093672.787:1917): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[155153.077547] audit: type=1400 audit(1785093672.790:1918): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[155153.136800] audit: type=1400 audit(1785093672.849:1919): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[155415.854845] audit: type=1400 audit(1785093935.566:1920): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[155415.856968] audit: type=1400 audit(1785093935.568:1921): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[155415.931948] audit: type=1400 audit(1785093935.643:1922): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[155647.008683] audit: type=1400 audit(1785094166.718:1923): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[155647.010677] audit: type=1400 audit(1785094166.720:1924): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[155647.112510] audit: type=1400 audit(1785094166.822:1925): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[155900.158855] audit: type=1400 audit(1785094419.867:1926): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[155900.160933] audit: type=1400 audit(1785094419.869:1927): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[155900.225046] audit: type=1400 audit(1785094419.933:1928): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[156138.788209] audit: type=1400 audit(1785094658.495:1929): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[156138.790342] audit: type=1400 audit(1785094658.497:1930): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[156138.870917] audit: type=1400 audit(1785094658.577:1931): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[156393.605657] audit: type=1400 audit(1785094913.311:1932): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[156393.607850] audit: type=1400 audit(1785094913.313:1933): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[156393.673770] audit: type=1400 audit(1785094913.379:1934): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[156640.677194] audit: type=1400 audit(1785095160.381:1935): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[156640.679562] audit: type=1400 audit(1785095160.383:1936): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[156640.744810] audit: type=1400 audit(1785095160.448:1937): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[156908.988361] audit: type=1400 audit(1785095428.690:1938): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[156908.990565] audit: type=1400 audit(1785095428.693:1939): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[156909.048238] audit: type=1400 audit(1785095428.750:1940): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[157137.217657] audit: type=1400 audit(1785095656.918:1941): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[157137.219724] audit: type=1400 audit(1785095656.920:1942): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[157137.286660] audit: type=1400 audit(1785095656.987:1943): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[157391.804956] audit: type=1400 audit(1785095911.504:1944): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[157391.807184] audit: type=1400 audit(1785095911.506:1945): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[157391.875232] audit: type=1400 audit(1785095911.574:1946): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[157645.831774] audit: type=1400 audit(1785096165.530:1947): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[157645.834030] audit: type=1400 audit(1785096165.532:1948): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[157645.896085] audit: type=1400 audit(1785096165.594:1949): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[157876.259648] audit: type=1400 audit(1785096395.956:1950): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[157876.261866] audit: type=1400 audit(1785096395.959:1951): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[157876.325830] audit: type=1400 audit(1785096396.023:1952): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[158104.965379] audit: type=1400 audit(1785096624.661:1953): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[158104.968079] audit: type=1400 audit(1785096624.664:1954): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[158105.030936] audit: type=1400 audit(1785096624.727:1955): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[158213.861996] Kernel: 'panic_print' sysctl interface will be obsoleted by both 'panic_sys_info' and 'panic_console_replay'
|
|
[158225.026724] sh (694896): drop_caches: 3
|
|
[158228.206674] sh (694918): drop_caches: 3
|
|
[158231.244529] sh (694939): drop_caches: 3
|
|
[158380.001990] audit: type=1400 audit(1785096899.696:1956): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[158380.004203] audit: type=1400 audit(1785096899.699:1957): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[158380.261263] audit: type=1400 audit(1785096899.956:1958): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[158659.114466] audit: type=1400 audit(1785097178.808:1959): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[158659.116542] audit: type=1400 audit(1785097178.810:1960): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[158659.184502] audit: type=1400 audit(1785097178.878:1961): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[158923.394047] audit: type=1400 audit(1785097443.086:1962): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[158923.396178] audit: type=1400 audit(1785097443.088:1963): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[158923.455931] audit: type=1400 audit(1785097443.148:1964): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[159198.812501] audit: type=1400 audit(1785097718.503:1965): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[159198.814316] audit: type=1400 audit(1785097718.505:1966): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[159198.908396] audit: type=1400 audit(1785097718.599:1967): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[159447.911142] audit: type=1400 audit(1785097967.601:1968): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[159447.913160] audit: type=1400 audit(1785097967.603:1969): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[159447.985948] audit: type=1400 audit(1785097967.675:1970): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[159693.004287] audit: type=1400 audit(1785098212.693:1971): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[159693.006349] audit: type=1400 audit(1785098212.695:1972): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[159693.079268] audit: type=1400 audit(1785098212.768:1973): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[159928.173791] audit: type=1400 audit(1785098447.861:1974): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[159928.176105] audit: type=1400 audit(1785098447.863:1975): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[159928.240295] audit: type=1400 audit(1785098447.927:1976): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[160157.990468] audit: type=1400 audit(1785098677.676:1977): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[160157.992698] audit: type=1400 audit(1785098677.679:1978): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[160158.060320] audit: type=1400 audit(1785098677.746:1979): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[160440.563364] audit: type=1400 audit(1785098960.248:1980): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[160440.565436] audit: type=1400 audit(1785098960.250:1981): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[160440.628145] audit: type=1400 audit(1785098960.313:1982): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[160738.292620] audit: type=1400 audit(1785099257.976:1983): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[160738.294704] audit: type=1400 audit(1785099257.978:1984): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[160738.346679] audit: type=1400 audit(1785099258.030:1985): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[160968.485264] audit: type=1400 audit(1785099488.167:1986): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[160968.487349] audit: type=1400 audit(1785099488.169:1987): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[160968.550358] audit: type=1400 audit(1785099488.232:1988): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[161244.641370] audit: type=1400 audit(1785099764.322:1989): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[161244.642755] audit: type=1400 audit(1785099764.323:1990): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[161244.711014] audit: type=1400 audit(1785099764.391:1991): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[161481.335395] audit: type=1400 audit(1785100001.015:1992): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[161481.337671] audit: type=1400 audit(1785100001.017:1993): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[161481.398429] audit: type=1400 audit(1785100001.078:1994): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[161729.914785] audit: type=1400 audit(1785100249.593:1995): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[161729.916996] audit: type=1400 audit(1785100249.595:1996): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[161729.983847] audit: type=1400 audit(1785100249.662:1997): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[161980.849374] audit: type=1400 audit(1785100500.526:1998): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[161980.851298] audit: type=1400 audit(1785100500.528:1999): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[161980.911831] audit: type=1400 audit(1785100500.588:2000): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[162258.611808] audit: type=1400 audit(1785100778.287:2001): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[162258.614069] audit: type=1400 audit(1785100778.289:2002): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[162258.673085] audit: type=1400 audit(1785100778.348:2003): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[162492.737799] audit: type=1400 audit(1785101012.412:2004): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[162492.739979] audit: type=1400 audit(1785101012.414:2005): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 comm="dhclient" family="unix" sock_type="dgram" protocol=0 requested="create" denied="create" addr=none
|
|
[162492.810443] audit: type=1400 audit(1785101012.484:2006): apparmor="DENIED" operation="create" class="net" info="failed protocol match" error=-13 profile="/{,usr/}sbin/dhclient" pid=1531 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: 94Gi 32Gi 62Gi 54Mi 635Mi 62Gi
|
|
Swap: 8.0Gi 0B 8.0Gi
|
|
|
|
--- free -b
|
|
$ free -b
|
|
total used free shared buff/cache available
|
|
Mem: 101246885888 34586451968 66928066560 57647104 665911296 66660433920
|
|
Swap: 8589930496 0 8589930496
|
|
|
|
--- swapon
|
|
$ swapon --show
|
|
NAME TYPE SIZE USED PRIO
|
|
/dev/dm-0 partition 8G 0B -2
|
|
|
|
--- /proc/meminfo highlights
|
|
$ grep -E MemTotal|MemFree|MemAvailable|Buffers|^Cached|SwapTotal|SwapFree|Hugepagesize|HugePages_Total|HugePages_Free|AnonHugePages|DirectMap|Slab|SReclaimable|SUnreclaim|Dirty|Writeback|AnonPages|Mapped|Shmem|KernelStack|PageTables|NFS_Unstable /proc/meminfo
|
|
MemTotal: 98873912 kB
|
|
MemFree: 65359440 kB
|
|
MemAvailable: 65098080 kB
|
|
Buffers: 64684 kB
|
|
Cached: 529704 kB
|
|
SwapTotal: 8388604 kB
|
|
SwapFree: 8388604 kB
|
|
Dirty: 4568 kB
|
|
Writeback: 0 kB
|
|
AnonPages: 32151856 kB
|
|
Mapped: 216388 kB
|
|
Shmem: 56296 kB
|
|
Slab: 242996 kB
|
|
SReclaimable: 55916 kB
|
|
SUnreclaim: 187080 kB
|
|
KernelStack: 8956 kB
|
|
PageTables: 84844 kB
|
|
SecPageTables: 19632 kB
|
|
NFS_Unstable: 0 kB
|
|
WritebackTmp: 0 kB
|
|
AnonHugePages: 30382080 kB
|
|
ShmemHugePages: 0 kB
|
|
ShmemPmdMapped: 0 kB
|
|
FilePmdMapped: 0 kB
|
|
HugePages_Total: 0
|
|
HugePages_Free: 0
|
|
Hugepagesize: 2048 kB
|
|
DirectMap4k: 411620 kB
|
|
DirectMap2M: 24752128 kB
|
|
DirectMap1G: 75497472 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) : 706436 / 824928 (85.6%)
|
|
Active / Total Slabs (% used) : 20787 / 20787 (100.0%)
|
|
Active / Total Caches (% used) : 371 / 471 (78.8%)
|
|
Active / Total Size (% used) : 145231.62K / 178298.26K (81.5%)
|
|
Minimum / Average / Maximum Object : 0.01K / 0.22K / 16.00K
|
|
|
|
OBJS ACTIVE USE OBJ SIZE SLABS OBJ/SLAB CACHE SIZE NAME
|
|
25396 9009 35% 0.57K 907 28 14512K radix_tree_node
|
|
26080 4254 16% 0.50K 815 32 13040K kmalloc-rnd-04-512
|
|
64020 63707 99% 0.13K 2134 30 8536K kernfs_node_cache
|
|
70551 27296 38% 0.10K 1809 39 7236K buffer_head
|
|
6438 4815 74% 1.10K 222 29 7104K ext4_inode_cache
|
|
621 587 94% 10.12K 207 3 6624K task_struct
|
|
33243 33243 100% 0.19K 1583 21 6332K dentry
|
|
29883 29585 99% 0.19K 1423 21 5692K vm_area_struct
|
|
8325 8325 100% 0.62K 333 25 5328K inode_cache
|
|
28808 28808 100% 0.15K 1108 26 4432K ext4_groupinfo_4k
|
|
6003 5897 98% 0.69K 261 23 4176K proc_inode_cache
|
|
3456 3389 98% 1.00K 108 32 3456K iommu_iova_magazine
|
|
31280 26318 84% 0.09K 680 46 2720K lsm_inode_cache
|
|
3020 2691 89% 0.77K 151 20 2416K shmem_inode_cache
|
|
3250 3210 98% 0.63K 130 25 2080K debugfs_inode_cache
|
|
19890 19379 97% 0.10K 510 39 2040K anon_vma
|
|
456 456 100% 4.00K 57 8 1824K kmalloc-rnd-04-4k
|
|
880 773 87% 2.00K 55 16 1760K kmalloc-cg-2k
|
|
27904 25792 92% 0.06K 436 64 1744K anon_vma_chain
|
|
832 784 94% 2.00K 52 16 1664K kmalloc-rnd-12-2k
|
|
5792 2464 42% 0.25K 181 32 1448K kmalloc-rnd-04-256
|
|
2880 2732 94% 0.50K 90 32 1440K kmalloc-512
|
|
5664 2516 44% 0.25K 177 32 1416K skbuff_head_cache
|
|
7308 5027 68% 0.19K 348 21 1392K kmalloc-rnd-04-192
|
|
344 332 96% 4.00K 43 8 1376K kmalloc-cg-4k
|
|
7119 6909 97% 0.19K 339 21 1356K filp
|
|
555 495 89% 2.06K 37 15 1184K sighand_cache
|
|
288 264 91% 4.00K 36 8 1152K kmalloc-rnd-14-4k
|
|
4576 3668 80% 0.25K 143 32 1144K maple_node
|
|
17920 15175 84% 0.06K 280 64 1120K dmaengine-unmap-2
|
|
6138 5628 91% 0.18K 279 22 1116K kvm_mmu_page_header
|
|
1287 1103 85% 0.81K 33 39 1056K sock_inode_cache
|
|
924 866 93% 1.12K 33 28 1056K signal_cache
|
|
528 528 100% 2.00K 33 16 1056K kmalloc-2k
|
|
96 96 100% 8.94K 32 3 1024K kvm_vcpu
|
|
1472 1406 95% 0.69K 64 23 1024K skbuff_small_head
|
|
240 196 81% 4.00K 30 8 960K biovec-max
|
|
928 733 78% 1.00K 29 32 928K kmalloc-cg-1k
|
|
22338 22338 100% 0.04K 219 102 876K extent_status
|
|
216 216 100% 4.00K 27 8 864K kmalloc-rnd-07-4k
|
|
12928 7954 61% 0.06K 202 64 808K kmalloc-cg-64
|
|
230 220 95% 3.16K 23 10 736K kcopyd_job
|
|
88 88 100% 8.00K 22 4 704K kmalloc-rnd-11-8k
|
|
1376 1285 93% 0.50K 43 32 688K pool_workqueue
|
|
1344 1291 96% 0.50K 42 32 672K kmalloc-cg-512
|
|
168 160 95% 4.00K 21 8 672K kmalloc-rnd-15-4k
|
|
168 168 100% 4.00K 21 8 672K kmalloc-rnd-12-4k
|
|
680 544 80% 0.94K 20 34 640K nfs_read_data
|
|
80 80 100% 8.00K 20 4 640K kmalloc-rnd-09-8k
|
|
160 160 100% 4.00K 20 8 640K kmalloc-rnd-09-4k
|
|
304 304 100% 2.00K 19 16 608K biovec-128
|
|
152 152 100% 4.00K 19 8 608K kmalloc-rnd-06-4k
|
|
72 72 100% 8.00K 18 4 576K kmalloc-rnd-02-8k
|
|
144 144 100% 4.00K 18 8 576K kmalloc-4k
|
|
238 238 100% 2.19K 17 14 544K mem_cgroup
|
|
136 82 60% 4.00K 17 8 544K kmalloc-rnd-13-4k
|
|
68 68 100% 8.00K 17 4 544K kmalloc-rnd-12-8k
|
|
7448 6369 85% 0.07K 133 56 532K vmap_area
|
|
3872 3742 96% 0.12K 121 32 484K eventpoll_epi
|
|
255 255 100% 1.88K 15 17 480K mem_cgroup_per_node
|
|
120 120 100% 4.00K 15 8 480K names_cache
|
|
60 60 100% 8.00K 15 4 480K kmalloc-cg-8k
|
|
480 480 100% 1.00K 15 32 480K kmalloc-rnd-10-1k
|
|
480 480 100% 1.00K 15 32 480K kmalloc-rnd-02-1k
|
|
480 480 100% 1.00K 15 32 480K kmalloc-rnd-01-1k
|
|
4788 4788 100% 0.09K 114 42 456K trace_event_file
|
|
1792 1792 100% 0.25K 56 32 448K io_kiocb
|
|
896 896 100% 0.50K 28 32 448K kmalloc-rnd-13-512
|
|
864 832 96% 0.50K 27 32 432K kmalloc-rnd-06-512
|
|
7811 7811 100% 0.05K 107 73 428K ftrace_event_field
|
|
416 416 100% 1.00K 13 32 416K kmalloc-rnd-13-1k
|
|
208 208 100% 2.00K 13 16 416K kmalloc-rnd-10-2k
|
|
52 52 100% 8.00K 13 4 416K kmalloc-rnd-06-8k
|
|
384 384 100% 1.00K 12 32 384K kmalloc-rnd-15-1k
|
|
48 48 100% 8.00K 12 4 384K kmalloc-rnd-14-8k
|
|
192 192 100% 2.00K 12 16 384K kmalloc-rnd-07-2k
|
|
231 231 100% 1.50K 11 21 352K mm_struct
|
|
44 44 100% 8.00K 11 4 352K kmalloc-rnd-15-8k
|
|
352 352 100% 1.00K 11 32 352K kmalloc-rnd-12-1k
|
|
352 352 100% 1.00K 11 32 352K kmalloc-rnd-07-1k
|
|
352 352 100% 1.00K 11 32 352K kmalloc-rnd-06-1k
|
|
1806 1647 91% 0.19K 86 21 344K pid
|
|
672 672 100% 0.50K 21 32 336K kmalloc-rnd-11-512
|
|
2952 2680 90% 0.11K 82 36 328K ext4_prealloc_space
|
|
3402 3256 95% 0.09K 81 42 324K kmalloc-rnd-14-96
|
|
120 120 100% 2.61K 10 12 320K x86_emulator
|
|
260 260 100% 1.19K 10 26 320K RAWv6
|
|
840 791 94% 0.38K 40 21 320K mnt_cache
|
|
240 240 100% 1.31K 10 24 320K perf_event
|
|
160 160 100% 2.00K 10 16 320K kmalloc-rnd-09-2k
|
|
320 320 100% 1.00K 10 32 320K kmalloc-rnd-08-1k
|
|
40 40 100% 8.00K 10 4 320K kmalloc-8k
|
|
1248 1248 100% 0.25K 39 32 312K kmalloc-rnd-12-256
|
|
9856 9216 93% 0.03K 77 128 308K kmalloc-rnd-01-32
|
|
608 608 100% 0.50K 19 32 304K kmalloc-rnd-08-512
|
|
1184 1180 99% 0.25K 37 32 296K nf_conntrack
|
|
288 288 100% 1.00K 9 32 288K RAW
|
|
117 117 100% 2.38K 9 13 288K TCP
|
|
144 144 100% 2.00K 9 16 288K kmalloc-rnd-14-2k
|
|
288 288 100% 1.00K 9 32 288K kmalloc-rnd-14-1k
|
|
36 36 100% 8.00K 9 4 288K kmalloc-rnd-13-8k
|
|
144 144 100% 2.00K 9 16 288K kmalloc-rnd-13-2k
|
|
72 72 100% 4.00K 9 8 288K kmalloc-rnd-11-4k
|
|
36 36 100% 8.00K 9 4 288K kmalloc-rnd-10-8k
|
|
144 144 100% 2.00K 9 16 288K kmalloc-rnd-03-2k
|
|
288 288 100% 1.00K 9 32 288K kmalloc-rnd-03-1k
|
|
72 72 100% 4.00K 9 8 288K kmalloc-rnd-02-4k
|
|
1085 961 88% 0.26K 35 31 280K tw_sock_TCP
|
|
2898 2898 100% 0.09K 69 42 276K kmalloc-rnd-01-96
|
|
544 544 100% 0.50K 17 32 272K kmalloc-rnd-02-512
|
|
2814 2814 100% 0.09K 67 42 268K kmalloc-rnd-06-96
|
|
1221 1221 100% 0.21K 33 37 264K nfs_direct_cache
|
|
224 224 100% 1.14K 8 28 256K nfs_inode_cache
|
|
184 184 100% 1.38K 8 23 256K UDPv6
|
|
96 96 100% 2.56K 8 12 256K TCPv6
|
|
288 288 100% 0.88K 8 36 256K fuse_inode
|
|
208 208 100% 1.19K 8 26 256K UDP
|
|
312 312 100% 0.81K 8 39 256K dax_cache
|
|
256 256 100% 0.98K 8 32 256K request_queue
|
|
64 64 100% 4.00K 8 8 256K memdup_user-4k
|
|
128 128 100% 2.00K 8 16 256K memdup_user-2k
|
|
256 256 100% 1.00K 8 32 256K memdup_user-1k
|
|
152 152 100% 1.62K 8 19 256K bdev_cache
|
|
128 128 100% 2.00K 8 16 256K kmalloc-rnd-15-2k
|
|
128 128 100% 2.00K 8 16 256K kmalloc-rnd-11-2k
|
|
256 256 100% 1.00K 8 32 256K kmalloc-rnd-11-1k
|
|
64 64 100% 4.00K 8 8 256K kmalloc-rnd-10-4k
|
|
256 256 100% 1.00K 8 32 256K kmalloc-rnd-09-1k
|
|
64 64 100% 4.00K 8 8 256K kmalloc-rnd-08-4k
|
|
128 128 100% 2.00K 8 16 256K kmalloc-rnd-08-2k
|
|
128 128 100% 2.00K 8 16 256K kmalloc-rnd-06-2k
|
|
64 64 100% 4.00K 8 8 256K kmalloc-rnd-05-4k
|
|
128 128 100% 2.00K 8 16 256K kmalloc-rnd-05-2k
|
|
256 256 100% 1.00K 8 32 256K kmalloc-rnd-05-1k
|
|
128 128 100% 2.00K 8 16 256K kmalloc-rnd-04-2k
|
|
256 256 100% 1.00K 8 32 256K kmalloc-rnd-04-1k
|
|
64 64 100% 4.00K 8 8 256K kmalloc-rnd-03-4k
|
|
128 128 100% 2.00K 8 16 256K kmalloc-rnd-02-2k
|
|
64 64 100% 4.00K 8 8 256K kmalloc-rnd-01-4k
|
|
128 128 100% 2.00K 8 16 256K kmalloc-rnd-01-2k
|
|
256 256 100% 1.00K 8 32 256K kmalloc-1k
|
|
1176 1176 100% 0.19K 56 21 224K proc_dir_entry
|
|
896 896 100% 0.25K 28 32 224K kmalloc-rnd-14-256
|
|
896 849 94% 0.25K 28 32 224K kmalloc-rnd-08-256
|
|
896 896 100% 0.25K 28 32 224K kmalloc-rnd-05-256
|
|
1155 1155 100% 0.19K 55 21 220K kmalloc-cg-192
|
|
1155 1155 100% 0.19K 55 21 220K kmalloc-rnd-14-192
|
|
3456 3244 93% 0.06K 54 64 216K kmalloc-64
|
|
416 416 100% 0.50K 13 32 208K kmalloc-rnd-15-512
|
|
416 416 100% 0.50K 13 32 208K kmalloc-rnd-07-512
|
|
800 672 84% 0.25K 25 32 200K bio-200
|
|
8330 7740 92% 0.02K 49 170 196K lsm_file_cache
|
|
24 24 100% 8.00K 6 4 192K kmalloc-rnd-07-8k
|
|
24 24 100% 8.00K 6 4 192K kmalloc-rnd-05-8k
|
|
24 24 100% 8.00K 6 4 192K kmalloc-rnd-03-8k
|
|
3008 3008 100% 0.06K 47 64 188K kmalloc-rnd-15-64
|
|
575 550 95% 0.31K 23 25 184K bio-256
|
|
11520 11345 98% 0.02K 45 256 180K kmalloc-rnd-02-16
|
|
1408 1408 100% 0.12K 44 32 176K bio_integrity_data
|
|
264 264 100% 0.65K 11 24 176K tracefs_inode_cache
|
|
253 253 100% 0.69K 11 23 176K files_cache
|
|
5632 5455 96% 0.03K 44 128 176K kmalloc-rnd-02-32
|
|
1806 1806 100% 0.09K 43 42 172K kmalloc-rcl-96
|
|
1344 1219 90% 0.12K 42 32 168K kmalloc-cg-128
|
|
1312 1312 100% 0.12K 41 32 164K scsi_sense_cache
|
|
420 415 98% 0.38K 20 21 160K bio-320
|
|
500 375 75% 0.31K 20 25 160K bio-264
|
|
250 250 100% 0.62K 10 25 160K task_group
|
|
320 320 100% 0.50K 10 32 160K kmalloc-rnd-12-512
|
|
320 320 100% 0.50K 10 32 160K kmalloc-rnd-09-512
|
|
20 20 100% 8.00K 5 4 160K kmalloc-rnd-01-8k
|
|
640 640 100% 0.25K 20 32 160K kmem_cache
|
|
1184 1184 100% 0.12K 37 32 148K kmalloc-rnd-04-128
|
|
1512 1428 94% 0.09K 36 42 144K kmalloc-cg-96
|
|
288 288 100% 0.50K 9 32 144K kmalloc-rnd-10-512
|
|
576 576 100% 0.25K 18 32 144K kmalloc-rnd-02-256
|
|
1470 1470 100% 0.09K 35 42 140K kmalloc-96
|
|
850 850 100% 0.16K 34 25 136K dm_bufio_buffer-16-1
|
|
2176 2129 97% 0.06K 34 64 136K kmalloc-rnd-08-64
|
|
544 544 100% 0.25K 17 32 136K kmalloc-256
|
|
96 96 100% 1.32K 4 24 128K nfs4_client
|
|
224 224 100% 0.56K 8 28 128K kioctx
|
|
200 200 100% 0.62K 8 25 128K hugetlbfs_inode_cache
|
|
256 256 100% 0.50K 8 32 128K memdup_user-512
|
|
232 232 100% 0.55K 8 29 128K taskstats
|
|
1632 1378 84% 0.08K 32 51 128K sigqueue
|
|
256 256 100% 0.50K 8 32 128K kmalloc-rnd-14-512
|
|
256 256 100% 0.50K 8 32 128K kmalloc-rnd-05-512
|
|
256 256 100% 0.50K 8 32 128K kmalloc-rnd-03-512
|
|
256 256 100% 0.50K 8 32 128K kmalloc-rnd-01-512
|
|
630 630 100% 0.19K 30 21 120K kmalloc-rnd-06-192
|
|
1856 1856 100% 0.06K 29 64 116K kmalloc-rnd-05-64
|
|
161 161 100% 0.69K 7 23 112K rpc_inode_cache
|
|
588 588 100% 0.19K 28 21 112K kmalloc-rnd-09-192
|
|
1971 1606 81% 0.05K 27 73 108K mb_cache_entry
|
|
567 567 100% 0.19K 27 21 108K kmalloc-rnd-03-192
|
|
2652 2652 100% 0.04K 26 102 104K khugepaged_mm_slot
|
|
3200 3036 94% 0.03K 25 128 100K kmalloc-cg-32
|
|
6 6 100% 16.00K 3 2 96K zio_buf_comb_16384
|
|
12 12 100% 8.00K 3 4 96K memdup_user-8k
|
|
156 156 100% 0.60K 6 26 96K user_namespace
|
|
384 384 100% 0.25K 12 32 96K kmalloc-cg-256
|
|
384 384 100% 0.25K 12 32 96K kmalloc-rnd-09-256
|
|
12 12 100% 8.00K 3 4 96K kmalloc-rnd-04-8k
|
|
352 352 100% 0.25K 11 32 88K bio-240
|
|
352 352 100% 0.25K 11 32 88K kmalloc-rnd-13-256
|
|
924 819 88% 0.09K 22 42 88K kmalloc-rnd-09-96
|
|
672 672 100% 0.12K 21 32 84K kmalloc-128
|
|
170 170 100% 0.46K 5 34 80K nfs4_delegation
|
|
680 617 90% 0.12K 20 34 80K jbd2_journal_head
|
|
420 420 100% 0.19K 20 21 80K file_lock_cache
|
|
185 185 100% 0.42K 5 37 80K uts_namespace
|
|
320 320 100% 0.25K 10 32 80K kmalloc-rnd-10-256
|
|
399 399 100% 0.19K 19 21 76K jbd2_transaction_s
|
|
2432 2432 100% 0.03K 19 128 76K kmalloc-rnd-09-32
|
|
576 576 100% 0.12K 18 32 72K kmalloc-rcl-128
|
|
288 288 100% 0.25K 9 32 72K kmalloc-rnd-07-256
|
|
9216 7680 83% 0.01K 18 512 72K kmalloc-rnd-03-8
|
|
288 288 100% 0.25K 9 32 72K kmalloc-rnd-01-256
|
|
2176 2176 100% 0.03K 17 128 68K kmalloc-rnd-14-32
|
|
100 100 100% 0.62K 4 25 64K netfs_request
|
|
248 248 100% 0.26K 8 31 64K tw_sock_TCPv6
|
|
200 200 100% 0.31K 8 25 64K request_sock_TCP
|
|
256 256 100% 0.25K 8 32 64K task_delay_info
|
|
10 10 100% 5.81K 2 5 64K net_namespace
|
|
256 256 100% 0.25K 8 32 64K kmalloc-rnd-15-256
|
|
336 336 100% 0.19K 16 21 64K kmalloc-rnd-12-192
|
|
256 256 100% 0.25K 8 32 64K kmalloc-rnd-11-256
|
|
8 8 100% 8.00K 2 4 64K kmalloc-rnd-08-8k
|
|
256 256 100% 0.25K 8 32 64K kmalloc-rnd-06-256
|
|
256 256 100% 0.25K 8 32 64K kmalloc-rnd-03-256
|
|
315 315 100% 0.19K 15 21 60K bio-136
|
|
765 765 100% 0.08K 15 51 60K Acpi-State
|
|
1275 1275 100% 0.05K 15 85 60K shared_policy_node
|
|
7680 7671 99% 0.01K 15 512 60K kmalloc-rnd-02-8
|
|
448 448 100% 0.12K 14 32 56K kmalloc-rnd-13-128
|
|
294 294 100% 0.19K 14 21 56K kmalloc-rnd-08-192
|
|
448 448 100% 0.12K 14 32 56K kmalloc-rnd-06-128
|
|
896 896 100% 0.06K 14 64 56K kmalloc-rnd-06-64
|
|
3584 3584 100% 0.02K 14 256 56K kmalloc-rnd-04-16
|
|
588 588 100% 0.09K 14 42 56K kmalloc-rnd-02-96
|
|
1664 1408 84% 0.03K 13 128 52K pending_reservation
|
|
832 832 100% 0.06K 13 64 52K kmalloc-rnd-13-64
|
|
832 832 100% 0.06K 13 64 52K kmalloc-rnd-11-64
|
|
1664 1664 100% 0.03K 13 128 52K kmalloc-rnd-11-32
|
|
546 546 100% 0.09K 13 42 52K kmalloc-rnd-11-96
|
|
832 832 100% 0.06K 13 64 52K kmalloc-rnd-07-64
|
|
273 273 100% 0.19K 13 21 52K kmalloc-rnd-07-192
|
|
1664 1664 100% 0.03K 13 128 52K kmalloc-rnd-06-32
|
|
832 832 100% 0.06K 13 64 52K kmalloc-rnd-03-64
|
|
240 140 58% 0.20K 12 20 48K ip4-frags
|
|
768 768 100% 0.06K 12 64 48K kmalloc-rnd-09-64
|
|
3072 3072 100% 0.02K 12 256 48K kmalloc-rnd-06-16
|
|
768 768 100% 0.06K 12 64 48K kmalloc-rnd-02-64
|
|
768 768 100% 0.06K 12 64 48K kmem_cache_node
|
|
231 231 100% 0.19K 11 21 44K kmalloc-rnd-13-192
|
|
462 462 100% 0.09K 11 42 44K kmalloc-rnd-12-96
|
|
352 352 100% 0.12K 11 32 44K kmalloc-rnd-08-128
|
|
1408 1408 100% 0.03K 11 128 44K kmalloc-rnd-04-32
|
|
231 231 100% 0.19K 11 21 44K kmalloc-rnd-01-192
|
|
1408 1408 100% 0.03K 11 128 44K kmalloc-32
|
|
231 231 100% 0.19K 11 21 44K kmalloc-192
|
|
100 100 100% 0.39K 5 20 40K nfs4_openowner
|
|
130 130 100% 0.30K 5 26 40K btrfs_delayed_node
|
|
160 160 100% 0.25K 5 32 40K memdup_user-256
|
|
420 420 100% 0.09K 10 42 40K kmalloc-rnd-15-96
|
|
1280 1280 100% 0.03K 10 128 40K kmalloc-rnd-13-32
|
|
420 420 100% 0.09K 10 42 40K kmalloc-rnd-13-96
|
|
640 640 100% 0.06K 10 64 40K kmalloc-rnd-12-64
|
|
420 420 100% 0.09K 10 42 40K kmalloc-rnd-08-96
|
|
640 640 100% 0.06K 10 64 40K kmalloc-rnd-04-64
|
|
210 210 100% 0.19K 10 21 40K kmalloc-rnd-02-192
|
|
576 576 100% 0.06K 9 64 36K ext4_io_end
|
|
189 189 100% 0.19K 9 21 36K kmalloc-rcl-192
|
|
288 288 100% 0.12K 9 32 36K kmalloc-rnd-07-128
|
|
4608 4608 100% 0.01K 9 512 36K kmalloc-rnd-06-8
|
|
288 288 100% 0.12K 9 32 36K kmalloc-rnd-05-128
|
|
378 378 100% 0.09K 9 42 36K kmalloc-rnd-04-96
|
|
288 288 100% 0.12K 9 32 36K kmalloc-rnd-02-128
|
|
2304 2304 100% 0.02K 9 256 36K kmalloc-rnd-01-16
|
|
15 15 100% 2.06K 1 15 32K MPTCPv6
|
|
34 34 100% 0.94K 1 34 32K mqueue_inode_cache
|
|
184 184 100% 0.17K 8 23 32K fuse_request
|
|
192 192 100% 0.16K 8 24 32K ext4_allocation_context
|
|
1024 1024 100% 0.03K 8 128 32K xsk_generic_xmit_cache
|
|
16 16 100% 1.94K 1 16 32K MPTCP
|
|
2048 2048 100% 0.02K 8 256 32K ep_head
|
|
512 512 100% 0.06K 8 64 32K memdup_user-64
|
|
1024 1024 100% 0.03K 8 128 32K memdup_user-32
|
|
2048 2048 100% 0.02K 8 256 32K memdup_user-16
|
|
4096 4096 100% 0.01K 8 512 32K memdup_user-8
|
|
168 168 100% 0.19K 8 21 32K memdup_user-192
|
|
15 15 100% 2.06K 1 15 32K dmaengine-unmap-256
|
|
30 30 100% 1.06K 1 30 32K dmaengine-unmap-128
|
|
200 200 100% 0.16K 8 25 32K file_lease_cache
|
|
1024 1024 100% 0.03K 8 128 32K pidfs_attr_cache
|
|
816 816 100% 0.04K 8 102 32K pde_opener
|
|
272 272 100% 0.12K 8 34 32K seq_file
|
|
448 448 100% 0.07K 8 56 32K nsproxy
|
|
2048 2048 100% 0.02K 8 256 32K kmalloc-cg-16
|
|
4096 4096 100% 0.01K 8 512 32K kmalloc-cg-8
|
|
256 256 100% 0.12K 8 32 32K kmalloc-rnd-15-128
|
|
1024 1024 100% 0.03K 8 128 32K kmalloc-rnd-15-32
|
|
2048 2048 100% 0.02K 8 256 32K kmalloc-rnd-15-16
|
|
4096 4096 100% 0.01K 8 512 32K kmalloc-rnd-15-8
|
|
168 168 100% 0.19K 8 21 32K kmalloc-rnd-15-192
|
|
256 256 100% 0.12K 8 32 32K kmalloc-rnd-14-128
|
|
512 512 100% 0.06K 8 64 32K kmalloc-rnd-14-64
|
|
2048 2048 100% 0.02K 8 256 32K kmalloc-rnd-14-16
|
|
4096 4096 100% 0.01K 8 512 32K kmalloc-rnd-14-8
|
|
2048 2048 100% 0.02K 8 256 32K kmalloc-rnd-13-16
|
|
4096 4096 100% 0.01K 8 512 32K kmalloc-rnd-13-8
|
|
256 256 100% 0.12K 8 32 32K kmalloc-rnd-12-128
|
|
1024 1024 100% 0.03K 8 128 32K kmalloc-rnd-12-32
|
|
2048 2048 100% 0.02K 8 256 32K kmalloc-rnd-12-16
|
|
4096 4096 100% 0.01K 8 512 32K kmalloc-rnd-12-8
|
|
256 256 100% 0.12K 8 32 32K kmalloc-rnd-11-128
|
|
2048 2048 100% 0.02K 8 256 32K kmalloc-rnd-11-16
|
|
4096 4096 100% 0.01K 8 512 32K kmalloc-rnd-11-8
|
|
168 168 100% 0.19K 8 21 32K kmalloc-rnd-11-192
|
|
256 256 100% 0.12K 8 32 32K kmalloc-rnd-10-128
|
|
512 512 100% 0.06K 8 64 32K kmalloc-rnd-10-64
|
|
1024 1024 100% 0.03K 8 128 32K kmalloc-rnd-10-32
|
|
2048 2048 100% 0.02K 8 256 32K kmalloc-rnd-10-16
|
|
4096 4096 100% 0.01K 8 512 32K kmalloc-rnd-10-8
|
|
168 168 100% 0.19K 8 21 32K kmalloc-rnd-10-192
|
|
336 336 100% 0.09K 8 42 32K kmalloc-rnd-10-96
|
|
256 256 100% 0.12K 8 32 32K kmalloc-rnd-09-128
|
|
2048 2048 100% 0.02K 8 256 32K kmalloc-rnd-09-16
|
|
4096 4096 100% 0.01K 8 512 32K kmalloc-rnd-09-8
|
|
1024 1024 100% 0.03K 8 128 32K kmalloc-rnd-08-32
|
|
2048 2048 100% 0.02K 8 256 32K kmalloc-rnd-08-16
|
|
4096 4096 100% 0.01K 8 512 32K kmalloc-rnd-08-8
|
|
1024 1024 100% 0.03K 8 128 32K kmalloc-rnd-07-32
|
|
2048 2048 100% 0.02K 8 256 32K kmalloc-rnd-07-16
|
|
4096 4096 100% 0.01K 8 512 32K kmalloc-rnd-07-8
|
|
336 336 100% 0.09K 8 42 32K kmalloc-rnd-07-96
|
|
1024 1024 100% 0.03K 8 128 32K kmalloc-rnd-05-32
|
|
2048 2048 100% 0.02K 8 256 32K kmalloc-rnd-05-16
|
|
4096 4096 100% 0.01K 8 512 32K kmalloc-rnd-05-8
|
|
168 168 100% 0.19K 8 21 32K kmalloc-rnd-05-192
|
|
336 336 100% 0.09K 8 42 32K kmalloc-rnd-05-96
|
|
4096 4096 100% 0.01K 8 512 32K kmalloc-rnd-04-8
|
|
256 256 100% 0.12K 8 32 32K kmalloc-rnd-03-128
|
|
1024 1024 100% 0.03K 8 128 32K kmalloc-rnd-03-32
|
|
2048 2048 100% 0.02K 8 256 32K kmalloc-rnd-03-16
|
|
336 336 100% 0.09K 8 42 32K kmalloc-rnd-03-96
|
|
256 256 100% 0.12K 8 32 32K kmalloc-rnd-01-128
|
|
512 512 100% 0.06K 8 64 32K kmalloc-rnd-01-64
|
|
4096 4096 100% 0.01K 8 512 32K kmalloc-rnd-01-8
|
|
2048 2048 100% 0.02K 8 256 32K kmalloc-16
|
|
4096 4096 100% 0.01K 8 512 32K kmalloc-8
|
|
273 273 100% 0.10K 7 39 28K Acpi-ParseExt
|
|
126 126 100% 0.19K 6 21 24K bio-176
|
|
510 510 100% 0.05K 6 85 24K ip_fib_trie
|
|
438 438 100% 0.05K 6 73 24K ip_fib_alias
|
|
252 252 100% 0.09K 6 42 24K memdup_user-96
|
|
110 110 100% 0.18K 5 22 20K ip6-frags
|
|
1280 1280 100% 0.02K 5 256 20K jbd2_revoke_table_s
|
|
21 21 100% 0.75K 1 21 16K nfs_commit_data
|
|
36 36 100% 0.44K 1 36 16K bio-384
|
|
36 36 100% 0.44K 1 36 16K bio-400
|
|
32 32 100% 0.50K 1 32 16K bio-456
|
|
40 40 100% 0.38K 2 20 16K request_sock_subflow_v4
|
|
50 50 100% 0.31K 2 25 16K bio-280
|
|
126 126 100% 0.09K 3 42 12K abd_t
|
|
34 34 100% 0.23K 1 34 8K arc_buf_hdr_t_full
|
|
170 170 100% 0.05K 2 85 8K bio_post_read_ctx
|
|
30 30 100% 0.27K 1 30 8K numa_policy
|
|
32 32 100% 0.12K 1 32 4K memdup_user-128
|
|
36 36 100% 0.11K 1 36 4K kmalloc_buckets
|
|
0 0 0% 0.35K 0 22 0K nfs4_lockowner
|
|
0 0 0% 2.08K 0 15 0K nfs4_xattr_cache_cache
|
|
0 0 0% 0.20K 0 39 0K nf_conntrack_expect
|
|
0 0 0% 0.09K 0 46 0K zfs_znode_hold_cache
|
|
0 0 0% 1.09K 0 29 0K zfs_znode_cache
|
|
0 0 0% 1.03K 0 31 0K zap_attr_long_cache
|
|
0 0 0% 1.07K 0 29 0K zap_name_long
|
|
0 0 0% 0.28K 0 28 0K zap_attr_cache
|
|
0 0 0% 0.32K 0 24 0K zap_name
|
|
0 0 0% 0.16K 0 24 0K sio_cache_2
|
|
0 0 0% 0.15K 0 26 0K sio_cache_1
|
|
0 0 0% 0.13K 0 30 0K sio_cache_0
|
|
0 0 0% 0.15K 0 26 0K zil_zcw_cache
|
|
0 0 0% 0.38K 0 20 0K zil_lwb_cache
|
|
0 0 0% 0.36K 0 22 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.93K 0 34 0K dnode_t
|
|
0 0 0% 0.25K 0 32 0K sa_cache
|
|
0 0 0% 16.00K 0 2 0K lz4_cache
|
|
0 0 0% 12.00K 0 2 0K zio_buf_comb_12288
|
|
0 0 0% 8.00K 0 4 0K zio_buf_comb_8192
|
|
0 0 0% 6.00K 0 5 0K zio_buf_comb_6144
|
|
0 0 0% 4.00K 0 8 0K zio_buf_comb_4096
|
|
0 0 0% 3.00K 0 10 0K zio_buf_comb_3072
|
|
0 0 0% 2.00K 0 16 0K zio_buf_comb_2048
|
|
0 0 0% 1.50K 0 21 0K zio_buf_comb_1536
|
|
0 0 0% 1.00K 0 32 0K zio_buf_comb_1024
|
|
0 0 0% 0.50K 0 32 0K zio_buf_comb_512
|
|
0 0 0% 0.05K 0 85 0K zio_link_cache
|
|
0 0 0% 1.19K 0 26 0K zio_cache
|
|
0 0 0% 0.32K 0 24 0K ddt_log_entry_trad_cache
|
|
0 0 0% 0.14K 0 28 0K ddt_log_entry_flat_cache
|
|
0 0 0% 0.41K 0 38 0K ddt_entry_trad_cache
|
|
0 0 0% 0.23K 0 34 0K ddt_entry_flat_cache
|
|
0 0 0% 0.16K 0 24 0K brt_entry_cache
|
|
0 0 0% 0.07K 0 56 0K metaslab_alloc_trace_cache
|
|
0 0 0% 4.00K 0 8 0K zfs_btree_leaf_cache
|
|
0 0 0% 0.06K 0 64 0K kcf_context_cache
|
|
0 0 0% 0.41K 0 39 0K btrfs_ordered_extent
|
|
0 0 0% 0.23K 0 34 0K btrfs_extent_buffer
|
|
0 0 0% 1.00K 0 32 0K btrfs_inode
|
|
0 0 0% 0.26K 0 31 0K fsverity_info
|
|
0 0 0% 0.12K 0 32 0K fscrypt_inode_info
|
|
0 0 0% 0.31K 0 25 0K request_sock_TCPv6
|
|
0 0 0% 2.82K 0 11 0K dm_uevent
|
|
0 0 0% 1.00K 0 32 0K ecryptfs_inode_cache
|
|
0 0 0% 0.02K 0 256 0K ecryptfs_file_cache
|
|
0 0 0% 0.77K 0 20 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.28K 0 28 0K pid_namespace
|
|
0 0 0% 0.38K 0 20 0K request_sock_subflow_v6
|
|
0 0 0% 0.31K 0 25 0K xfrm_dst
|
|
0 0 0% 0.81K 0 39 0K xfrm_state
|
|
0 0 0% 1.00K 0 32 0K PING
|
|
0 0 0% 0.25K 0 32 0K dquot
|
|
0 0 0% 8.00K 0 4 0K msg_msg-8k
|
|
0 0 0% 4.00K 0 8 0K msg_msg-4k
|
|
0 0 0% 2.00K 0 16 0K msg_msg-2k
|
|
0 0 0% 1.00K 0 32 0K msg_msg-1k
|
|
0 0 0% 0.50K 0 32 0K msg_msg-512
|
|
0 0 0% 0.25K 0 32 0K msg_msg-256
|
|
0 0 0% 0.12K 0 32 0K msg_msg-128
|
|
0 0 0% 0.06K 0 64 0K msg_msg-64
|
|
0 0 0% 0.03K 0 128 0K msg_msg-32
|
|
0 0 0% 0.02K 0 256 0K msg_msg-16
|
|
0 0 0% 0.01K 0 512 0K msg_msg-8
|
|
0 0 0% 0.19K 0 21 0K msg_msg-192
|
|
0 0 0% 0.09K 0 42 0K msg_msg-96
|
|
0 0 0% 0.02K 0 256 0K pidfs_xattr_cache
|
|
0 0 0% 0.25K 0 32 0K bfilp
|
|
0 0 0% 0.10K 0 39 0K ima_iint_cache
|
|
0 0 0% 8.00K 0 4 0K dma-kmalloc-8k
|
|
0 0 0% 4.00K 0 8 0K dma-kmalloc-4k
|
|
0 0 0% 2.00K 0 16 0K dma-kmalloc-2k
|
|
0 0 0% 1.00K 0 32 0K dma-kmalloc-1k
|
|
0 0 0% 0.50K 0 32 0K dma-kmalloc-512
|
|
0 0 0% 0.25K 0 32 0K dma-kmalloc-256
|
|
0 0 0% 0.12K 0 32 0K dma-kmalloc-128
|
|
0 0 0% 0.06K 0 64 0K dma-kmalloc-64
|
|
0 0 0% 0.03K 0 128 0K dma-kmalloc-32
|
|
0 0 0% 0.02K 0 256 0K dma-kmalloc-16
|
|
0 0 0% 0.01K 0 512 0K dma-kmalloc-8
|
|
0 0 0% 0.19K 0 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.06K 0 64 0K kmalloc-rcl-64
|
|
0 0 0% 0.03K 0 128 0K kmalloc-rcl-32
|
|
0 0 0% 0.02K 0 256 0K kmalloc-rcl-16
|
|
0 0 0% 0.01K 0 512 0K kmalloc-rcl-8
|
|
|
|
--- kswapd stats
|
|
$ grep -E kswapd|pgmigrate|pgmigrate_failed|compact_ /proc/vmstat
|
|
pgdemote_kswapd 0
|
|
pgsteal_kswapd 0
|
|
pgscan_kswapd 0
|
|
kswapd_inodesteal 0
|
|
kswapd_low_wmark_hit_quickly 0
|
|
kswapd_high_wmark_hit_quickly 0
|
|
pgmigrate_success 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 = 10
|
|
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 = 1
|
|
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 = 6563 0 9223372036854775807
|
|
fs.lease-break-time = 45
|
|
fs.mqueue.msg_default = 10
|
|
fs.mqueue.msg_max = 10
|
|
fs.mqueue.msgsize_default = 8192
|
|
fs.mqueue.msgsize_max = 8192
|
|
fs.mqueue.queues_max = 256
|
|
fs.nr_open = 1073741816
|
|
fs.pipe-max-size = 1048576
|
|
|
|
--- kernel.* perf-relevant
|
|
$ sysctl -a 2>/dev/null | grep -E '^kernel\.(sched_(child_runs_first|migration_cost|domain|rt_period|rt_runtime|idle)|numa_balancing|watchdog|nmi_watchdog|hung_task|randomize_va_space|max_pid|threads-max|sched_time_avg)'
|
|
kernel.hung_task_all_cpu_backtrace = 0
|
|
kernel.hung_task_check_count = 4194304
|
|
kernel.hung_task_check_interval_secs = 0
|
|
kernel.hung_task_detect_count = 0
|
|
kernel.hung_task_panic = 0
|
|
kernel.hung_task_timeout_secs = 120
|
|
kernel.hung_task_warnings = 10
|
|
kernel.nmi_watchdog = 1
|
|
kernel.numa_balancing = 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 = 771699
|
|
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_fastopen = 1
|
|
net.ipv4.tcp_fastopen_blackhole_timeout_sec = 0
|
|
net.ipv4.tcp_fastopen_key = 00000000-00000000-00000000-00000000
|
|
net.ipv4.tcp_fin_timeout = 60
|
|
net.ipv4.tcp_keepalive_intvl = 75
|
|
net.ipv4.tcp_keepalive_probes = 9
|
|
net.ipv4.tcp_keepalive_time = 7200
|
|
net.ipv4.tcp_low_latency = 0
|
|
net.ipv4.tcp_max_syn_backlog = 4096
|
|
net.ipv4.tcp_mtu_probing = 0
|
|
net.ipv4.tcp_no_metrics_save = 0
|
|
net.ipv4.tcp_no_ssthresh_metrics_save = 1
|
|
net.ipv4.tcp_pacing_ca_ratio = 120
|
|
net.ipv4.tcp_pacing_ss_ratio = 200
|
|
net.ipv4.tcp_rmem = 4096 87380 134217728
|
|
net.ipv4.tcp_sack = 1
|
|
net.ipv4.tcp_slow_start_after_idle = 1
|
|
net.ipv4.tcp_syncookies = 1
|
|
net.ipv4.tcp_timestamps = 1
|
|
net.ipv4.tcp_tw_reuse = 2
|
|
net.ipv4.tcp_tw_reuse_delay = 1000
|
|
net.ipv4.tcp_window_scaling = 1
|
|
net.ipv4.tcp_wmem = 4096 65536 134217728
|
|
|
|
--- other net.* sysctls
|
|
$ sysctl -a 2>/dev/null | grep -E '^net\.(ipv4\.ip_(local_port_range|local_reserved_ports|no_pmtu_disc|forwarding)|ipv4\.conf\.all\.(rp_filter|accept_redirects|send_redirects)|ipv4\.conf\.default\.forwarding|core\.netdev_budget|ipv6\.conf\.all\.disable_ipv6)'
|
|
net.core.netdev_budget = 300
|
|
net.core.netdev_budget_usecs = 2000
|
|
net.ipv4.conf.all.accept_redirects = 1
|
|
net.ipv4.conf.all.rp_filter = 2
|
|
net.ipv4.conf.all.send_redirects = 1
|
|
net.ipv4.conf.default.forwarding = 0
|
|
net.ipv4.ip_local_port_range = 32768 60999
|
|
net.ipv4.ip_local_reserved_ports =
|
|
net.ipv4.ip_no_pmtu_disc = 0
|
|
net.ipv6.conf.all.disable_ipv6 = 0
|
|
|
|
--- sysctl.d
|
|
total 16
|
|
drwxr-xr-x 2 root root 4096 Jul 26 15:48 .
|
|
drwxr-xr-x 106 root root 4096 Jul 26 16:23 ..
|
|
-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 = 1
|
|
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: network-throughput
|
|
|
|
--- 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: network-throughput
|
|
|
|
--- systemctl is-active tuned
|
|
$ systemctl is-active tuned
|
|
active
|
|
|
|
--- irqbalance status
|
|
$ systemctl is-active irqbalance
|
|
inactive
|
|
[exit=4 / not installed or not permitted]
|
|
|
|
--- irqbalance config
|
|
[missing: /etc/default/irqbalance]
|
|
[missing: /etc/irqbalance.conf]
|
|
|
|
--- modprobe.d
|
|
total 20
|
|
drwxr-xr-x 2 root root 4096 Jul 26 12:29 .
|
|
drwxr-xr-x 106 root root 4096 Jul 26 16:23 ..
|
|
-rw-r--r-- 1 root root 154 Oct 18 2025 intel-microcode-blacklist.conf
|
|
-rw-r--r-- 1 root root 172 Nov 18 2025 pve-blacklist.conf
|
|
-rw-r--r-- 1 root root 0 Apr 10 17:33 tuned.conf
|
|
-rw-r--r-- 1 root root 36 Feb 26 09:03 zfs.conf
|
|
|
|
--- udev rules.d
|
|
total 8
|
|
drwxr-xr-x 2 root root 4096 Feb 26 09:03 .
|
|
drwxr-xr-x 4 root root 4096 Jul 22 20:20 ..
|
|
lrwxrwxrwx 1 root root 9 Feb 26 09:03 60-bridge-network-interface.rules -> /dev/null
|
|
|
|
--- modprobe.d files
|
|
--- /etc/modprobe.d/intel-microcode-blacklist.conf ---
|
|
# The microcode module attempts to apply a microcode update when
|
|
# it autoloads. This is not always safe, so we block it by default.
|
|
blacklist microcode
|
|
--- /etc/modprobe.d/pve-blacklist.conf ---
|
|
# This file contains a list of modules which are not supported by Proxmox VE
|
|
|
|
# nvidiafb see bugreport https://bugzilla.proxmox.com/show_bug.cgi?id=701
|
|
blacklist nvidiafb
|
|
--- /etc/modprobe.d/tuned.conf ---
|
|
--- /etc/modprobe.d/zfs.conf ---
|
|
options zfs zfs_arc_max=10125049856
|
|
|
|
--- module params: kvm_intel
|
|
$ for p in /sys/module/kvm_intel/parameters/*; do
|
|
[ -e "$p" ] && printf ' %s = %s\n' "$(basename "$p")" "$(cat "$p" 2>/dev/null)"
|
|
done
|
|
allow_smaller_maxphyaddr = N
|
|
dump_invalid_vmcs = N
|
|
emulate_invalid_guest_state = Y
|
|
enable_apicv = N
|
|
enable_device_posted_irqs = N
|
|
enable_ipiv = N
|
|
enable_shadow_vmcs = N
|
|
enlightened_vmcs = N
|
|
ept = Y
|
|
eptad = N
|
|
error_on_inconsistent_vmcs_config = Y
|
|
fasteoi = Y
|
|
flexpriority = Y
|
|
nested = Y
|
|
nested_early_check = N
|
|
ple_gap = 128
|
|
ple_window = 4096
|
|
ple_window_grow = 2
|
|
ple_window_max = 4294967295
|
|
ple_window_shrink = 0
|
|
pml = N
|
|
preemption_timer = Y
|
|
sgx = N
|
|
tdx = N
|
|
unrestricted_guest = Y
|
|
vmentry_l1d_flush = cond
|
|
vnmi = Y
|
|
vpid = Y
|
|
|
|
--- module params: kvm_amd
|
|
$ for p in /sys/module/kvm_amd/parameters/*; do
|
|
[ -e "$p" ] && printf ' %s = %s\n' "$(basename "$p")" "$(cat "$p" 2>/dev/null)"
|
|
done
|
|
[exit=1]
|
|
|
|
--- module params: relevant net drivers
|
|
$ for mod in i40e ixgbe mlx5_core igb ice bnx2x virtio_net; do
|
|
[ -d "/sys/module/$mod/parameters" ] || continue
|
|
echo "=== $mod ==="
|
|
for p in /sys/module/$mod/parameters/*; do
|
|
[ -e "$p" ] && printf ' %s = %s\n' "$(basename "$p")" "$(cat "$p" 2>/dev/null)"
|
|
done
|
|
done
|
|
=== virtio_net ===
|
|
csum = Y
|
|
gso = Y
|
|
napi_tx = Y
|
|
napi_weight = 64
|
|
|
|
###############################################################################
|
|
# 9. PROXMOX VERSION & CLUSTER
|
|
###############################################################################
|
|
|
|
--- pveversion
|
|
$ pveversion
|
|
pve-manager/9.2.5/20242970da7fbcef (running kernel: 6.17.2-1-pve)
|
|
|
|
--- pveversion -v
|
|
$ pveversion -v
|
|
proxmox-ve: 9.2.0 (running kernel: 6.17.2-1-pve)
|
|
pve-manager: 9.2.5 (running version: 9.2.5/20242970da7fbcef)
|
|
proxmox-kernel-helper: 9.2.0
|
|
proxmox-kernel-7.0.14-6-pve-signed: 7.0.14-6
|
|
proxmox-kernel-7.0: 7.0.14-6
|
|
proxmox-kernel-6.17.13-19-pve-signed: 6.17.13-19
|
|
proxmox-kernel-6.17: 6.17.13-19
|
|
proxmox-kernel-6.17.2-1-pve-signed: 6.17.2-1
|
|
ceph-fuse: 19.2.3-pve2
|
|
corosync: 3.1.10-pve3
|
|
criu: 4.1.1-1
|
|
frr-pythontools: 10.6.1-1+pve2
|
|
ifupdown2: 3.3.0-1+pmx12
|
|
intel-microcode: 3.20251111.1~deb13u1
|
|
ksm-control-daemon: 1.5-1
|
|
libjs-extjs: 7.0.0-5
|
|
libproxmox-acme-perl: 1.7.1
|
|
libproxmox-backup-qemu0: 2.0.2
|
|
libproxmox-rs-perl: 0.4.1
|
|
libpve-access-control: 9.1.1
|
|
libpve-apiclient-perl: 3.4.2
|
|
libpve-cluster-api-perl: 9.1.6
|
|
libpve-cluster-perl: 9.1.6
|
|
libpve-common-perl: 9.1.19
|
|
libpve-guest-common-perl: 6.0.5
|
|
libpve-http-server-perl: 6.0.5
|
|
libpve-network-perl: 1.6.7
|
|
libpve-notify-perl: 9.1.6
|
|
libpve-rs-perl: 0.15.3
|
|
libpve-storage-perl: 9.1.6
|
|
libspice-server1: 0.15.2-1+b1
|
|
lvm2: 2.03.31-2+pmx1
|
|
lxc-pve: 7.0.0-2
|
|
lxcfs: 7.0.0-pve1
|
|
novnc-pve: 1.7.0-2
|
|
proxmox-backup-client: 4.2.3-1
|
|
proxmox-backup-file-restore: 4.2.3-1
|
|
proxmox-backup-restore-image: 1.0.0
|
|
proxmox-firewall: 1.2.3
|
|
proxmox-kernel-helper: 9.2.0
|
|
proxmox-mail-forward: 1.0.3
|
|
proxmox-mini-journalreader: 1.7
|
|
proxmox-offline-mirror-helper: 0.7.4
|
|
proxmox-widget-toolkit: 5.2.6
|
|
pve-cluster: 9.1.6
|
|
pve-container: 6.1.12
|
|
pve-docs: 9.2.3
|
|
pve-edk2-firmware: 4.2025.05-2
|
|
pve-esxi-import-tools: 1.0.1
|
|
pve-firewall: 6.0.5
|
|
pve-firmware: 3.18-5
|
|
pve-ha-manager: 5.2.4
|
|
pve-i18n: 3.9.0
|
|
pve-qemu-kvm: 11.0.2-2
|
|
pve-xtermjs: 6.0.0-2
|
|
qemu-server: 9.2.1
|
|
smartmontools: 7.5-pve2
|
|
spiceterm: 3.4.2
|
|
swtpm: 0.8.0+pve3
|
|
vncterm: 1.9.2
|
|
zfsutils-linux: 2.4.3-pve1
|
|
|
|
--- pvecm status
|
|
$ pvecm status
|
|
Error: Corosync config '/etc/pve/corosync.conf' does not exist - is this node part of a cluster?
|
|
[exit=2 / not installed or not permitted]
|
|
|
|
--- pvecm nodes
|
|
$ pvecm nodes
|
|
Error: Corosync config '/etc/pve/corosync.conf' does not exist - is this node part of a cluster?
|
|
[exit=2 / not installed or not permitted]
|
|
|
|
--- pvecm expected
|
|
$ pvecm expected
|
|
400 not enough arguments
|
|
pvecm expected <expected>
|
|
[exit=255 / not installed or not permitted]
|
|
|
|
--- pveperf
|
|
$ timeout 15 pveperf
|
|
CPU BOGOMIPS: 38303.76
|
|
REGEX/SECOND: 1502629
|
|
HD SIZE: 93.93 GB (/dev/mapper/pve-root)
|
|
BUFFERED READS: 119.91 MB/sec
|
|
AVERAGE SEEK TIME: 9.36 ms
|
|
FSYNCS/SECOND: 43.90
|
|
[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 backup,iso,import,vztmpl
|
|
|
|
lvmthin: local-lvm
|
|
thinpool data
|
|
vgname pve
|
|
content rootdir,images
|
|
|
|
nfs: D2
|
|
export /mnt/tsys4/D2
|
|
path /mnt/pve/D2
|
|
server pfv-tsys4-nfs-stor
|
|
content images
|
|
prune-backups keep-all=1
|
|
|
|
nfs: D3
|
|
export /mnt/tsys4/D3
|
|
path /mnt/pve/D3
|
|
server pfv-tsys4-nfs-stor
|
|
content images
|
|
prune-backups keep-all=1
|
|
|
|
nfs: D5
|
|
export /mnt/tsys4/D5
|
|
path /mnt/pve/D5
|
|
server pfv-tsys4-nfs-stor
|
|
content images
|
|
prune-backups keep-all=1
|
|
|
|
dir: SSD
|
|
path /mnt/pfv-tsys5/ssd
|
|
content images
|
|
prune-backups keep-all=1
|
|
shared 0
|
|
|
|
dir: local-nonprod
|
|
path /mnt/pfv-tsys5/S1
|
|
content images
|
|
prune-backups keep-all=1
|
|
shared 0
|
|
|
|
|
|
--- 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 Thu, 26 Feb 2026 09%3A57%3A30 -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
|
|
┌────────────────┬──────┬─────────────┬─────────┬────────┬───────────┬──────────┬───────────┬─────────┬───────────┬───────┬──────┬────────┬───────────┬───────────┬───────────┬─────────┬──────┬───────┬────────┬─────────┬──────────────┬───────────┬────────────┬──────┬──────────┬─────┬────────┬────────┬─────────┬──────┬──────────┬────────────┬──────┬───────────┐
|
|
│ id │ type │ cgroup-mode │ content │ cpu │ disk │ diskread │ diskwrite │ hastate │ host-arch │ level │ lock │ maxcpu │ maxdisk │ maxmem │ mem │ memhost │ name │ netin │ netout │ network │ network-type │ node │ plugintype │ pool │ protocol │ sdn │ shared │ status │ storage │ tags │ template │ uptime │ vmid │ zone-type │
|
|
╞════════════════╪══════╪═════════════╪═════════╪════════╪═══════════╪══════════╪═══════════╪═════════╪═══════════╪═══════╪══════╪════════╪═══════════╪═══════════╪═══════════╪═════════╪══════╪═══════╪════════╪═════════╪══════════════╪═══════════╪════════════╪══════╪══════════╪═════╪════════╪════════╪═════════╪══════╪══════════╪════════════╪══════╪═══════════╡
|
|
│ node/pfv-tsys5 │ node │ 2 │ │ 11.46% │ 17.11 GiB │ │ │ │ │ │ │ 8 │ 93.93 GiB │ 94.29 GiB │ 32.14 GiB │ │ │ │ │ │ │ pfv-tsys5 │ │ │ │ │ │ online │ │ │ │ 1d 21h 11m │ │ │
|
|
└────────────────┴──────┴─────────────┴─────────┴────────┴───────────┴──────────┴───────────┴─────────┴───────────┴───────┴──────┴────────┴───────────┴───────────┴───────────┴─────────┴──────┴───────┴────────┴─────────┴──────────────┴───────────┴────────────┴──────┴──────────┴─────┴────────┴────────┴─────────┴──────┴──────────┴────────────┴──────┴───────────┘
|
|
|
|
###############################################################################
|
|
# 10. NETWORK: INTERFACES
|
|
###############################################################################
|
|
|
|
--- ip -d link
|
|
$ ip -d link
|
|
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00 promiscuity 0 allmulti 0 minmtu 0 maxmtu 0 addrgenmode eui64 numtxqueues 1 numrxqueues 1 gso_max_size 65536 gso_max_segs 65535 tso_max_size 524280 tso_max_segs 65535 gro_max_size 65536 gso_ipv4_max_size 65536 gro_ipv4_max_size 65536
|
|
2: nic0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq master vmbr0 state UP mode DEFAULT group default qlen 1000
|
|
link/ether 18:03:73:43:ce:de brd ff:ff:ff:ff:ff:ff promiscuity 1 allmulti 1 minmtu 60 maxmtu 1500
|
|
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.18:3:73:43:ce:de designated_root 8000.18:3:73:43:ce:de hold_timer 0.00 message_age_timer 0.00 forward_delay_timer 0.00 topology_change_ack 0 config_pending 0 proxy_arp off proxy_arp_wifi off mcast_router 1 mcast_fast_leave off mcast_flood on bcast_flood on mcast_to_unicast off neigh_suppress off neigh_vlan_suppress off group_fwd_mask 0 group_fwd_mask_str 0x0 vlan_tunnel off isolated off locked off mab off addrgenmode eui64 numtxqueues 5 numrxqueues 5 gso_max_size 65536 gso_max_segs 65535 tso_max_size 65536 tso_max_segs 65535 gro_max_size 65536 gso_ipv4_max_size 65536 gro_ipv4_max_size 65536 parentbus pci parentdev 0000:06:00.0
|
|
altname enx18037343cede
|
|
3: nic1: <NO-CARRIER,BROADCAST,MULTICAST,SLAVE,UP> mtu 1500 qdisc fq_codel master bond0 state DOWN mode DEFAULT group default qlen 1000
|
|
link/ether 00:1b:78:5c:e9:ce brd ff:ff:ff:ff:ff:ff promiscuity 1 allmulti 1 minmtu 68 maxmtu 9212
|
|
bond_slave state BACKUP mii_status DOWN link_failure_count 0 perm_hwaddr 00:1b:78:5c:e9:ce queue_id 0 prio 0 ad_aggregator_id 1 ad_actor_oper_port_state 71 ad_actor_oper_port_state_str <active,short_timeout,aggregating,defaulted> ad_partner_oper_port_state 0 ad_partner_oper_port_state_str <> 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:22:00.0
|
|
altname enx001b785ce9ce
|
|
4: nic2: <BROADCAST,MULTICAST,SLAVE,UP,LOWER_UP> mtu 1500 qdisc fq_codel master bond0 state UP mode DEFAULT group default qlen 1000
|
|
link/ether 00:1b:78:5c:e9:ce brd ff:ff:ff:ff:ff:ff permaddr 00:1b:78:5c:e9:cf promiscuity 1 allmulti 1 minmtu 68 maxmtu 9212
|
|
bond_slave state ACTIVE mii_status UP link_failure_count 0 perm_hwaddr 00:1b:78:5c:e9:cf queue_id 0 prio 0 ad_aggregator_id 2 ad_actor_oper_port_state 79 ad_actor_oper_port_state_str <active,short_timeout,aggregating,in_sync,defaulted> ad_partner_oper_port_state 0 ad_partner_oper_port_state_str <> 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:22:00.1
|
|
altname enx001b785ce9cf
|
|
5: tailscale0: <POINTOPOINT,MULTICAST,NOARP,UP,LOWER_UP> mtu 1280 qdisc fq_codel 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
|
|
6: vmbr0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000
|
|
link/ether 18:03:73:43:ce:de 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.18:3:73:43:ce:de designated_root 8000.18:3:73:43:ce:de 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 94.90 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 18.1us mcast_hash_elasticity 16 mcast_hash_max 4096 mcast_last_member_count 2 mcast_startup_query_count 2 mcast_last_member_interval 100 mcast_membership_interval 26000 mcast_querier_interval 25500 mcast_query_interval 12500 mcast_query_response_interval 1000 mcast_startup_query_interval 3125 mcast_stats_enabled 0 mcast_igmp_version 2 mcast_mld_version 1 nf_call_iptables 0 nf_call_ip6tables 0 nf_call_arptables 0 addrgenmode eui64 numtxqueues 1 numrxqueues 1 gso_max_size 65536 gso_max_segs 65535 tso_max_size 65536 tso_max_segs 65535 gro_max_size 65536 gso_ipv4_max_size 65536 gro_ipv4_max_size 65536
|
|
7: bond0: <BROADCAST,MULTICAST,MASTER,UP,LOWER_UP> mtu 1500 qdisc noqueue master datanet state UP mode DEFAULT group default qlen 1000
|
|
link/ether 00:1b:78:5c:e9:ce brd ff:ff:ff:ff:ff:ff promiscuity 1 allmulti 1 minmtu 68 maxmtu 65535
|
|
bond mode 802.3ad miimon 100 updelay 200 downdelay 200 peer_notify_delay 0 use_carrier 1 arp_interval 0 arp_missed_max 2 arp_validate none arp_all_targets any primary_reselect always fail_over_mac none xmit_hash_policy layer2 resend_igmp 1 num_grat_arp 1 all_slaves_active 0 min_links 0 lp_interval 1 packets_per_slave 1 lacp_active on lacp_rate fast coupled_control on ad_select stable ad_aggregator 2 ad_num_ports 1 ad_actor_key 5 ad_partner_key 1 ad_partner_mac 00:00:00:00:00:00 ad_actor_sys_prio 65535 ad_user_port_key 0 ad_actor_system 00:00:00:00:00:00 tlb_dynamic_lb 1
|
|
bridge_slave state forwarding priority 32 cost 100 hairpin off guard off root_block off fastleave off learning on flood on port_id 0x8001 port_no 0x1 designated_port 32769 designated_cost 0 designated_bridge 8000.0:1b:78:5c:e9:ce designated_root 8000.0:1b:78:5c:e9:ce hold_timer 0.00 message_age_timer 0.00 forward_delay_timer 0.00 topology_change_ack 0 config_pending 0 proxy_arp off proxy_arp_wifi off mcast_router 1 mcast_fast_leave off mcast_flood on bcast_flood on mcast_to_unicast off neigh_suppress off neigh_vlan_suppress off group_fwd_mask 0 group_fwd_mask_str 0x0 vlan_tunnel off isolated off locked off mab off addrgenmode eui64 numtxqueues 16 numrxqueues 16 gso_max_size 65536 gso_max_segs 65535 tso_max_size 65536 tso_max_segs 65535 gro_max_size 65536 gso_ipv4_max_size 65536 gro_ipv4_max_size 65536
|
|
8: datanet: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000
|
|
link/ether 00:1b:78:5c:e9:ce brd ff:ff:ff:ff:ff:ff promiscuity 0 allmulti 0 minmtu 68 maxmtu 65535
|
|
bridge forward_delay 0 hello_time 200 max_age 2000 ageing_time 30000 stp_state 0 priority 32768 vlan_filtering 0 vlan_protocol 802.1Q bridge_id 8000.0:1b:78:5c:e9:ce designated_root 8000.0:1b:78:5c:e9:ce 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 228.24 fdb_n_learned 10 fdb_max_learned 0 vlan_default_pvid 1 vlan_stats_enabled 0 vlan_stats_per_port 0 group_fwd_mask 0 group_address 01:80:c2:00:00:00 mcast_snooping 1 no_linklocal_learn 0 mcast_vlan_snooping 0 mst_enabled 0 mcast_router 1 mcast_query_use_ifaddr 0 mcast_querier 0 mcast_hash_elasticity 16 mcast_hash_max 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: tap5101i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether fa:73:eb:05:e8:8c 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 0x8004 port_no 0x4 designated_port 32772 designated_cost 0 designated_bridge 8000.18:3:73:43:ce:de designated_root 8000.18:3:73:43:ce:de 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: tap5105i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether be:57:f2:9e:5b:e8 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 0x8005 port_no 0x5 designated_port 32773 designated_cost 0 designated_bridge 8000.18:3:73:43:ce:de designated_root 8000.18:3:73:43:ce:de 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
|
|
13: tap5106i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether 46:da:12:aa:d2:f8 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 0x8006 port_no 0x6 designated_port 32774 designated_cost 0 designated_bridge 8000.18:3:73:43:ce:de designated_root 8000.18:3:73:43:ce:de 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
|
|
14: tap5107i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether 72:97:1e:b7:95:db 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 0x8007 port_no 0x7 designated_port 32775 designated_cost 0 designated_bridge 8000.18:3:73:43:ce:de designated_root 8000.18:3:73:43:ce:de hold_timer 0.00 message_age_timer 0.00 forward_delay_timer 0.00 topology_change_ack 0 config_pending 0 proxy_arp off proxy_arp_wifi off mcast_router 1 mcast_fast_leave off mcast_flood on bcast_flood on mcast_to_unicast off neigh_suppress off neigh_vlan_suppress off group_fwd_mask 0 group_fwd_mask_str 0x0 vlan_tunnel off isolated off locked off mab off addrgenmode eui64 numtxqueues 1 numrxqueues 1 gso_max_size 65536 gso_max_segs 65535 tso_max_size 65536 tso_max_segs 65535 gro_max_size 65536 gso_ipv4_max_size 65536 gro_ipv4_max_size 65536
|
|
15: tap5108i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether 36:cb:6f:67:00:f3 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 0x8008 port_no 0x8 designated_port 32776 designated_cost 0 designated_bridge 8000.18:3:73:43:ce:de designated_root 8000.18:3:73:43:ce:de 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
|
|
16: tap5109i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether 0e:5e:4f:06:1c:aa 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 0x8009 port_no 0x9 designated_port 32777 designated_cost 0 designated_bridge 8000.18:3:73:43:ce:de designated_root 8000.18:3:73:43:ce:de 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
|
|
17: tap51010i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether 56:03:33:09:8f:e9 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 0x800a port_no 0xa designated_port 32778 designated_cost 0 designated_bridge 8000.18:3:73:43:ce:de designated_root 8000.18:3:73:43:ce:de 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
|
|
18: tap51011i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether ea:12:4a:67:52:bb 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 0x800b port_no 0xb designated_port 32779 designated_cost 0 designated_bridge 8000.18:3:73:43:ce:de designated_root 8000.18:3:73:43:ce:de hold_timer 0.00 message_age_timer 0.00 forward_delay_timer 0.00 topology_change_ack 0 config_pending 0 proxy_arp off proxy_arp_wifi off mcast_router 1 mcast_fast_leave off mcast_flood on bcast_flood on mcast_to_unicast off neigh_suppress off neigh_vlan_suppress off group_fwd_mask 0 group_fwd_mask_str 0x0 vlan_tunnel off isolated off locked off mab off addrgenmode eui64 numtxqueues 1 numrxqueues 1 gso_max_size 65536 gso_max_segs 65535 tso_max_size 65536 tso_max_segs 65535 gro_max_size 65536 gso_ipv4_max_size 65536 gro_ipv4_max_size 65536
|
|
19: tap51012i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether 92:b0:9e:21:21:c0 brd ff:ff:ff:ff:ff:ff promiscuity 2 allmulti 1 minmtu 68 maxmtu 65521
|
|
tun type tap pi off vnet_hdr on persist off
|
|
bridge_slave state forwarding priority 32 cost 2 hairpin off guard off root_block off fastleave off learning on flood on port_id 0x800c port_no 0xc designated_port 32780 designated_cost 0 designated_bridge 8000.18:3:73:43:ce:de designated_root 8000.18:3:73:43:ce:de 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
|
|
20: tap51013i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether 82:5c:31:24:54:1d 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 0x800d port_no 0xd designated_port 32781 designated_cost 0 designated_bridge 8000.18:3:73:43:ce:de designated_root 8000.18:3:73:43:ce:de 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
|
|
21: tap53100i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether a6:67:6f:10:43:2f 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 0x800e port_no 0xe designated_port 32782 designated_cost 0 designated_bridge 8000.18:3:73:43:ce:de designated_root 8000.18:3:73:43:ce:de 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
|
|
22: tap53101i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether 7a:d4:b7:9b:f5:a1 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 0x800f port_no 0xf designated_port 32783 designated_cost 0 designated_bridge 8000.18:3:73:43:ce:de designated_root 8000.18:3:73:43:ce:de hold_timer 0.00 message_age_timer 0.00 forward_delay_timer 0.00 topology_change_ack 0 config_pending 0 proxy_arp off proxy_arp_wifi off mcast_router 1 mcast_fast_leave off mcast_flood on bcast_flood on mcast_to_unicast off neigh_suppress off neigh_vlan_suppress off group_fwd_mask 0 group_fwd_mask_str 0x0 vlan_tunnel off isolated off locked off mab off addrgenmode eui64 numtxqueues 1 numrxqueues 1 gso_max_size 65536 gso_max_segs 65535 tso_max_size 65536 tso_max_segs 65535 gro_max_size 65536 gso_ipv4_max_size 65536 gro_ipv4_max_size 65536
|
|
23: tap53102i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether f2:2e:43:29:9b:ea 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 0x8010 port_no 0x10 designated_port 32784 designated_cost 0 designated_bridge 8000.18:3:73:43:ce:de designated_root 8000.18:3:73:43:ce:de 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
|
|
25: tap509i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master fwbr509i0 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether 46:21:88:e4:88:8f 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.62:c4:6:b8:e5:71 designated_root 8000.62:c4:6:b8:e5:71 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
|
|
26: fwbr509i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000
|
|
link/ether 62:c4:06:b8:e5:71 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.62:c4:6:b8:e5:71 designated_root 8000.62:c4:6:b8:e5:71 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 99.95 fdb_n_learned 83 fdb_max_learned 0 vlan_default_pvid 1 vlan_stats_enabled 0 vlan_stats_per_port 0 group_fwd_mask 0 group_address 01:80:c2:00:00:00 mcast_snooping 1 no_linklocal_learn 0 mcast_vlan_snooping 0 mst_enabled 0 mcast_router 1 mcast_query_use_ifaddr 0 mcast_querier 0 mcast_querier_ipv4_addr 0.0.0.0 mcast_querier_ipv4_port 28 mcast_querier_ipv4_other_timer 18.1us mcast_hash_elasticity 16 mcast_hash_max 4096 mcast_last_member_count 2 mcast_startup_query_count 2 mcast_last_member_interval 100 mcast_membership_interval 26000 mcast_querier_interval 25500 mcast_query_interval 12500 mcast_query_response_interval 1000 mcast_startup_query_interval 3125 mcast_stats_enabled 0 mcast_igmp_version 2 mcast_mld_version 1 nf_call_iptables 0 nf_call_ip6tables 0 nf_call_arptables 0 addrgenmode eui64 numtxqueues 1 numrxqueues 1 gso_max_size 65536 gso_max_segs 65535 tso_max_size 65536 tso_max_segs 65535 gro_max_size 65536 gso_ipv4_max_size 65536 gro_ipv4_max_size 65536
|
|
27: fwpr509p0@fwln509i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master vmbr0 state UP mode DEFAULT group default qlen 1000
|
|
link/ether ca:aa:93:e0:42:9a 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 0x8012 port_no 0x12 designated_port 32786 designated_cost 0 designated_bridge 8000.18:3:73:43:ce:de designated_root 8000.18:3:73:43:ce:de 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
|
|
28: fwln509i0@fwpr509p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master fwbr509i0 state UP mode DEFAULT group default qlen 1000
|
|
link/ether 62:c4:06:b8:e5: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 0x8001 port_no 0x1 designated_port 32769 designated_cost 0 designated_bridge 8000.62:c4:6:b8:e5:71 designated_root 8000.62:c4:6:b8:e5:71 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
|
|
29: tap509i1: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master fwbr509i1 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether b6:c0:35:b0:04:59 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.72:0:ce:83:a6:89 designated_root 8000.72:0:ce:83:a6:89 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
|
|
30: fwbr509i1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000
|
|
link/ether 72:00:ce:83:a6:89 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.72:0:ce:83:a6:89 designated_root 8000.72:0:ce:83:a6:89 root_port 0 root_path_cost 0 topology_change 0 topology_change_detected 0 hello_timer 0.00 tcn_timer 0.00 topology_change_timer 0.00 gc_timer 85.29 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
|
|
31: fwpr509p1@fwln509i1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master datanet state UP mode DEFAULT group default qlen 1000
|
|
link/ether d6:51:80:15:1a:4a brd ff:ff:ff:ff:ff:ff promiscuity 1 allmulti 1 minmtu 68 maxmtu 65535
|
|
veth
|
|
bridge_slave state forwarding priority 32 cost 2 hairpin off guard off root_block off fastleave off learning on flood on port_id 0x8002 port_no 0x2 designated_port 32770 designated_cost 0 designated_bridge 8000.0:1b:78:5c:e9:ce designated_root 8000.0:1b:78:5c:e9:ce 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
|
|
32: fwln509i1@fwpr509p1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master fwbr509i1 state UP mode DEFAULT group default qlen 1000
|
|
link/ether 72:00:ce:83:a6:89 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.72:0:ce:83:a6:89 designated_root 8000.72:0:ce:83:a6:89 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
|
|
35: tap6000i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether 66:12:8e:99:b0:0c 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 0x8011 port_no 0x11 designated_port 32785 designated_cost 0 designated_bridge 8000.18:3:73:43:ce:de designated_root 8000.18:3:73:43:ce:de 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
|
|
37: tap5111i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether 2e:6c:ef:cd:c9:0d 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.18:3:73:43:ce:de designated_root 8000.18:3:73:43:ce:de 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
|
|
38: tap5112i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether e6:43:99:5f:34:c8 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 0x8003 port_no 0x3 designated_port 32771 designated_cost 0 designated_bridge 8000.18:3:73:43:ce:de designated_root 8000.18:3:73:43:ce:de 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
|
|
|
|
--- ip -o link
|
|
$ ip -o link
|
|
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN mode DEFAULT group default qlen 1000\ link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
|
|
2: nic0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq master vmbr0 state UP mode DEFAULT group default qlen 1000\ link/ether 18:03:73:43:ce:de brd ff:ff:ff:ff:ff:ff\ altname enx18037343cede
|
|
3: nic1: <NO-CARRIER,BROADCAST,MULTICAST,SLAVE,UP> mtu 1500 qdisc fq_codel master bond0 state DOWN mode DEFAULT group default qlen 1000\ link/ether 00:1b:78:5c:e9:ce brd ff:ff:ff:ff:ff:ff\ altname enx001b785ce9ce
|
|
4: nic2: <BROADCAST,MULTICAST,SLAVE,UP,LOWER_UP> mtu 1500 qdisc fq_codel master bond0 state UP mode DEFAULT group default qlen 1000\ link/ether 00:1b:78:5c:e9:ce brd ff:ff:ff:ff:ff:ff permaddr 00:1b:78:5c:e9:cf\ altname enx001b785ce9cf
|
|
5: tailscale0: <POINTOPOINT,MULTICAST,NOARP,UP,LOWER_UP> mtu 1280 qdisc fq_codel state UNKNOWN mode DEFAULT group default qlen 500\ link/none
|
|
6: vmbr0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000\ link/ether 18:03:73:43:ce:de brd ff:ff:ff:ff:ff:ff
|
|
7: bond0: <BROADCAST,MULTICAST,MASTER,UP,LOWER_UP> mtu 1500 qdisc noqueue master datanet state UP mode DEFAULT group default qlen 1000\ link/ether 00:1b:78:5c:e9:ce brd ff:ff:ff:ff:ff:ff
|
|
8: datanet: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000\ link/ether 00:1b:78:5c:e9:ce brd ff:ff:ff:ff:ff:ff
|
|
11: tap5101i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN mode DEFAULT group default qlen 1000\ link/ether fa:73:eb:05:e8:8c brd ff:ff:ff:ff:ff:ff
|
|
12: tap5105i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN mode DEFAULT group default qlen 1000\ link/ether be:57:f2:9e:5b:e8 brd ff:ff:ff:ff:ff:ff
|
|
13: tap5106i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN mode DEFAULT group default qlen 1000\ link/ether 46:da:12:aa:d2:f8 brd ff:ff:ff:ff:ff:ff
|
|
14: tap5107i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN mode DEFAULT group default qlen 1000\ link/ether 72:97:1e:b7:95:db brd ff:ff:ff:ff:ff:ff
|
|
15: tap5108i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN mode DEFAULT group default qlen 1000\ link/ether 36:cb:6f:67:00:f3 brd ff:ff:ff:ff:ff:ff
|
|
16: tap5109i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN mode DEFAULT group default qlen 1000\ link/ether 0e:5e:4f:06:1c:aa brd ff:ff:ff:ff:ff:ff
|
|
17: tap51010i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN mode DEFAULT group default qlen 1000\ link/ether 56:03:33:09:8f:e9 brd ff:ff:ff:ff:ff:ff
|
|
18: tap51011i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN mode DEFAULT group default qlen 1000\ link/ether ea:12:4a:67:52:bb brd ff:ff:ff:ff:ff:ff
|
|
19: tap51012i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN mode DEFAULT group default qlen 1000\ link/ether 92:b0:9e:21:21:c0 brd ff:ff:ff:ff:ff:ff
|
|
20: tap51013i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN mode DEFAULT group default qlen 1000\ link/ether 82:5c:31:24:54:1d brd ff:ff:ff:ff:ff:ff
|
|
21: tap53100i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN mode DEFAULT group default qlen 1000\ link/ether a6:67:6f:10:43:2f brd ff:ff:ff:ff:ff:ff
|
|
22: tap53101i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN mode DEFAULT group default qlen 1000\ link/ether 7a:d4:b7:9b:f5:a1 brd ff:ff:ff:ff:ff:ff
|
|
23: tap53102i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN mode DEFAULT group default qlen 1000\ link/ether f2:2e:43:29:9b:ea brd ff:ff:ff:ff:ff:ff
|
|
25: tap509i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master fwbr509i0 state UNKNOWN mode DEFAULT group default qlen 1000\ link/ether 46:21:88:e4:88:8f brd ff:ff:ff:ff:ff:ff
|
|
26: fwbr509i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000\ link/ether 62:c4:06:b8:e5:71 brd ff:ff:ff:ff:ff:ff
|
|
27: fwpr509p0@fwln509i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master vmbr0 state UP mode DEFAULT group default qlen 1000\ link/ether ca:aa:93:e0:42:9a brd ff:ff:ff:ff:ff:ff
|
|
28: fwln509i0@fwpr509p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master fwbr509i0 state UP mode DEFAULT group default qlen 1000\ link/ether 62:c4:06:b8:e5:71 brd ff:ff:ff:ff:ff:ff
|
|
29: tap509i1: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master fwbr509i1 state UNKNOWN mode DEFAULT group default qlen 1000\ link/ether b6:c0:35:b0:04:59 brd ff:ff:ff:ff:ff:ff
|
|
30: fwbr509i1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000\ link/ether 72:00:ce:83:a6:89 brd ff:ff:ff:ff:ff:ff
|
|
31: fwpr509p1@fwln509i1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master datanet state UP mode DEFAULT group default qlen 1000\ link/ether d6:51:80:15:1a:4a brd ff:ff:ff:ff:ff:ff
|
|
32: fwln509i1@fwpr509p1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master fwbr509i1 state UP mode DEFAULT group default qlen 1000\ link/ether 72:00:ce:83:a6:89 brd ff:ff:ff:ff:ff:ff
|
|
35: tap6000i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN mode DEFAULT group default qlen 1000\ link/ether 66:12:8e:99:b0:0c brd ff:ff:ff:ff:ff:ff
|
|
37: tap5111i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN mode DEFAULT group default qlen 1000\ link/ether 2e:6c:ef:cd:c9:0d brd ff:ff:ff:ff:ff:ff
|
|
38: tap5112i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN mode DEFAULT group default qlen 1000\ link/ether e6:43:99:5f:34:c8 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
|
|
5: tailscale0 inet 100.87.135.12/32 scope global tailscale0\ valid_lft forever preferred_lft forever
|
|
6: vmbr0 inet 192.168.0.20/22 brd 192.168.3.255 scope global dynamic vmbr0\ valid_lft 417sec preferred_lft 417sec
|
|
8: datanet inet 10.100.100.5/24 scope global datanet\ valid_lft forever preferred_lft forever
|
|
|
|
--- ip -o -6 addr (link-local filter)
|
|
$ ip -o -6 addr
|
|
1: lo inet6 ::1/128 scope host noprefixroute \ valid_lft forever preferred_lft forever
|
|
5: tailscale0 inet6 fd7a:115c:a1e0::da3b:870c/128 scope global \ valid_lft forever preferred_lft forever
|
|
5: tailscale0 inet6 fe80::81c6:df85:28c1:a303/64 scope link stable-privacy proto kernel_ll \ valid_lft forever preferred_lft forever
|
|
6: vmbr0 inet6 fe80::1a03:73ff:fe43:cede/64 scope link proto kernel_ll \ valid_lft forever preferred_lft forever
|
|
8: datanet inet6 fe80::21b:78ff:fe5c:e9ce/64 scope link proto kernel_ll \ valid_lft forever preferred_lft forever
|
|
|
|
--- ip addr
|
|
$ ip addr
|
|
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
|
|
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
|
|
inet 127.0.0.1/8 scope host lo
|
|
valid_lft forever preferred_lft forever
|
|
inet6 ::1/128 scope host noprefixroute
|
|
valid_lft forever preferred_lft forever
|
|
2: nic0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq master vmbr0 state UP group default qlen 1000
|
|
link/ether 18:03:73:43:ce:de brd ff:ff:ff:ff:ff:ff
|
|
altname enx18037343cede
|
|
3: nic1: <NO-CARRIER,BROADCAST,MULTICAST,SLAVE,UP> mtu 1500 qdisc fq_codel master bond0 state DOWN group default qlen 1000
|
|
link/ether 00:1b:78:5c:e9:ce brd ff:ff:ff:ff:ff:ff
|
|
altname enx001b785ce9ce
|
|
4: nic2: <BROADCAST,MULTICAST,SLAVE,UP,LOWER_UP> mtu 1500 qdisc fq_codel master bond0 state UP group default qlen 1000
|
|
link/ether 00:1b:78:5c:e9:ce brd ff:ff:ff:ff:ff:ff permaddr 00:1b:78:5c:e9:cf
|
|
altname enx001b785ce9cf
|
|
5: tailscale0: <POINTOPOINT,MULTICAST,NOARP,UP,LOWER_UP> mtu 1280 qdisc fq_codel state UNKNOWN group default qlen 500
|
|
link/none
|
|
inet 100.87.135.12/32 scope global tailscale0
|
|
valid_lft forever preferred_lft forever
|
|
inet6 fd7a:115c:a1e0::da3b:870c/128 scope global
|
|
valid_lft forever preferred_lft forever
|
|
inet6 fe80::81c6:df85:28c1:a303/64 scope link stable-privacy proto kernel_ll
|
|
valid_lft forever preferred_lft forever
|
|
6: vmbr0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
|
|
link/ether 18:03:73:43:ce:de brd ff:ff:ff:ff:ff:ff
|
|
inet 192.168.0.20/22 brd 192.168.3.255 scope global dynamic vmbr0
|
|
valid_lft 417sec preferred_lft 417sec
|
|
inet6 fe80::1a03:73ff:fe43:cede/64 scope link proto kernel_ll
|
|
valid_lft forever preferred_lft forever
|
|
7: bond0: <BROADCAST,MULTICAST,MASTER,UP,LOWER_UP> mtu 1500 qdisc noqueue master datanet state UP group default qlen 1000
|
|
link/ether 00:1b:78:5c:e9:ce brd ff:ff:ff:ff:ff:ff
|
|
8: datanet: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
|
|
link/ether 00:1b:78:5c:e9:ce brd ff:ff:ff:ff:ff:ff
|
|
inet 10.100.100.5/24 scope global datanet
|
|
valid_lft forever preferred_lft forever
|
|
inet6 fe80::21b:78ff:fe5c:e9ce/64 scope link proto kernel_ll
|
|
valid_lft forever preferred_lft forever
|
|
11: tap5101i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN group default qlen 1000
|
|
link/ether fa:73:eb:05:e8:8c brd ff:ff:ff:ff:ff:ff
|
|
12: tap5105i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN group default qlen 1000
|
|
link/ether be:57:f2:9e:5b:e8 brd ff:ff:ff:ff:ff:ff
|
|
13: tap5106i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN group default qlen 1000
|
|
link/ether 46:da:12:aa:d2:f8 brd ff:ff:ff:ff:ff:ff
|
|
14: tap5107i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN group default qlen 1000
|
|
link/ether 72:97:1e:b7:95:db brd ff:ff:ff:ff:ff:ff
|
|
15: tap5108i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN group default qlen 1000
|
|
link/ether 36:cb:6f:67:00:f3 brd ff:ff:ff:ff:ff:ff
|
|
16: tap5109i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN group default qlen 1000
|
|
link/ether 0e:5e:4f:06:1c:aa brd ff:ff:ff:ff:ff:ff
|
|
17: tap51010i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN group default qlen 1000
|
|
link/ether 56:03:33:09:8f:e9 brd ff:ff:ff:ff:ff:ff
|
|
18: tap51011i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN group default qlen 1000
|
|
link/ether ea:12:4a:67:52:bb brd ff:ff:ff:ff:ff:ff
|
|
19: tap51012i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN group default qlen 1000
|
|
link/ether 92:b0:9e:21:21:c0 brd ff:ff:ff:ff:ff:ff
|
|
20: tap51013i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN group default qlen 1000
|
|
link/ether 82:5c:31:24:54:1d brd ff:ff:ff:ff:ff:ff
|
|
21: tap53100i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN group default qlen 1000
|
|
link/ether a6:67:6f:10:43:2f brd ff:ff:ff:ff:ff:ff
|
|
22: tap53101i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN group default qlen 1000
|
|
link/ether 7a:d4:b7:9b:f5:a1 brd ff:ff:ff:ff:ff:ff
|
|
23: tap53102i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN group default qlen 1000
|
|
link/ether f2:2e:43:29:9b:ea brd ff:ff:ff:ff:ff:ff
|
|
25: tap509i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master fwbr509i0 state UNKNOWN group default qlen 1000
|
|
link/ether 46:21:88:e4:88:8f brd ff:ff:ff:ff:ff:ff
|
|
26: fwbr509i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
|
|
link/ether 62:c4:06:b8:e5:71 brd ff:ff:ff:ff:ff:ff
|
|
27: fwpr509p0@fwln509i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master vmbr0 state UP group default qlen 1000
|
|
link/ether ca:aa:93:e0:42:9a brd ff:ff:ff:ff:ff:ff
|
|
28: fwln509i0@fwpr509p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master fwbr509i0 state UP group default qlen 1000
|
|
link/ether 62:c4:06:b8:e5:71 brd ff:ff:ff:ff:ff:ff
|
|
29: tap509i1: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master fwbr509i1 state UNKNOWN group default qlen 1000
|
|
link/ether b6:c0:35:b0:04:59 brd ff:ff:ff:ff:ff:ff
|
|
30: fwbr509i1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
|
|
link/ether 72:00:ce:83:a6:89 brd ff:ff:ff:ff:ff:ff
|
|
31: fwpr509p1@fwln509i1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master datanet state UP group default qlen 1000
|
|
link/ether d6:51:80:15:1a:4a brd ff:ff:ff:ff:ff:ff
|
|
32: fwln509i1@fwpr509p1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master fwbr509i1 state UP group default qlen 1000
|
|
link/ether 72:00:ce:83:a6:89 brd ff:ff:ff:ff:ff:ff
|
|
35: tap6000i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN group default qlen 1000
|
|
link/ether 66:12:8e:99:b0:0c brd ff:ff:ff:ff:ff:ff
|
|
37: tap5111i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN group default qlen 1000
|
|
link/ether 2e:6c:ef:cd:c9:0d brd ff:ff:ff:ff:ff:ff
|
|
38: tap5112i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN group default qlen 1000
|
|
link/ether e6:43:99:5f:34:c8 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.5
|
|
192.168.0.0/22 dev vmbr0 proto kernel scope link src 192.168.0.20
|
|
|
|
--- 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
|
|
66122302 212394 0 0 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
66122302 212394 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 0
|
|
2: nic0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq master vmbr0 state UP mode DEFAULT group default qlen 1000
|
|
link/ether 18:03:73:43:ce:de brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
27932239978 26921858 0 5421 31452 4084548
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
1466197306 4227886 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 1
|
|
altname enx18037343cede
|
|
3: nic1: <NO-CARRIER,BROADCAST,MULTICAST,SLAVE,UP> mtu 1500 qdisc fq_codel master bond0 state DOWN mode DEFAULT group default qlen 1000
|
|
link/ether 00:1b:78:5c:e9:ce brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
0 0 0 0 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
0 0 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 1
|
|
altname enx001b785ce9ce
|
|
4: nic2: <BROADCAST,MULTICAST,SLAVE,UP,LOWER_UP> mtu 1500 qdisc fq_codel master bond0 state UP mode DEFAULT group default qlen 1000
|
|
link/ether 00:1b:78:5c:e9:ce brd ff:ff:ff:ff:ff:ff permaddr 00:1b:78:5c:e9:cf
|
|
RX: bytes packets errors dropped missed mcast
|
|
13463973524 12262424 1 0 0 142279
|
|
RX errors: length crc frame fifo overrun
|
|
0 1 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
2250444444 7932296 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 2
|
|
altname enx001b785ce9cf
|
|
5: tailscale0: <POINTOPOINT,MULTICAST,NOARP,UP,LOWER_UP> mtu 1280 qdisc fq_codel state UNKNOWN mode DEFAULT group default qlen 500
|
|
link/none
|
|
RX: bytes packets errors dropped missed mcast
|
|
140660038 484130 0 0 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
585590717 333553 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 0
|
|
6: vmbr0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000
|
|
link/ether 18:03:73:43:ce:de brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
1484645083 6665020 0 0 0 3499230
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
758309526 944030 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 2
|
|
7: bond0: <BROADCAST,MULTICAST,MASTER,UP,LOWER_UP> mtu 1500 qdisc noqueue master datanet state UP mode DEFAULT group default qlen 1000
|
|
link/ether 00:1b:78:5c:e9:ce brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
13463973524 12262424 1 5419 0 142279
|
|
RX errors: length crc frame fifo overrun
|
|
0 1 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
2250444444 7932296 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 2
|
|
8: datanet: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000
|
|
link/ether 00:1b:78:5c:e9:ce brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
13240431564 12251990 0 10 0 136859
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
2172786492 7088553 0 1 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 2
|
|
11: tap5101i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether fa:73:eb:05:e8:8c brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
1477962 15772 0 0 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
508513468 4796962 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 0
|
|
12: tap5105i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether be:57:f2:9e:5b:e8 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
1209003 12475 0 0 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
499768424 4793398 0 362 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 0
|
|
13: tap5106i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether 46:da:12:aa:d2:f8 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
1213247 12480 0 0 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
499739220 4793156 0 483 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 0
|
|
14: tap5107i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether 72:97:1e:b7:95:db brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
1220322 12504 0 0 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
499728705 4793020 0 525 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 0
|
|
15: tap5108i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether 36:cb:6f:67:00:f3 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
1203481 12423 0 0 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
499662173 4792385 0 884 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 0
|
|
16: tap5109i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether 0e:5e:4f:06:1c:aa brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
1204631 12436 0 0 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
499609856 4791916 0 1090 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 0
|
|
17: tap51010i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether 56:03:33:09:8f:e9 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
1201141 12427 0 0 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
499597646 4791726 0 1138 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 0
|
|
18: tap51011i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether ea:12:4a:67:52:bb brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
1406777 15221 0 0 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
507847217 4793841 0 1404 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 0
|
|
19: tap51012i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether 92:b0:9e:21:21:c0 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
1276119 13202 0 0 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
499768525 4791449 0 1091 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 0
|
|
20: tap51013i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether 82:5c:31:24:54:1d brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
1207044 12408 0 0 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
499487444 4790727 0 1439 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 0
|
|
21: tap53100i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether a6:67:6f:10:43:2f brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
1197892 12379 0 0 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
499442309 4790265 0 1634 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 0
|
|
22: tap53101i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether 7a:d4:b7:9b:f5:a1 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
1431635 15513 0 0 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
509109070 4792911 0 1701 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 0
|
|
23: tap53102i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether f2:2e:43:29:9b:ea brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
1834544 15233 0 0 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
499904159 4792728 0 1596 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 0
|
|
25: tap509i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master fwbr509i0 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether 46:21:88:e4:88:8f brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
106186614 509204 0 0 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
750705851 5646568 0 4546 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 0
|
|
26: fwbr509i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000
|
|
link/ether 62:c4:06:b8:e5:71 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
429444537 4769976 0 6109 0 3230109
|
|
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
|
|
27: fwpr509p0@fwln509i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master vmbr0 state UP mode DEFAULT group default qlen 1000
|
|
link/ether ca:aa:93:e0:42:9a brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
107435100 514218 0 5014 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
751207252 5651114 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 2
|
|
28: fwln509i0@fwpr509p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master fwbr509i0 state UP mode DEFAULT group default qlen 1000
|
|
link/ether 62:c4:06:b8:e5:71 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
751207252 5651114 0 5014 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
107435100 514218 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 2
|
|
29: tap509i1: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master fwbr509i1 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether b6:c0:35:b0:04:59 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
0 0 0 0 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
60 1 0 138624 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 0
|
|
30: fwbr509i1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP mode DEFAULT group default qlen 1000
|
|
link/ether 72:00:ce:83:a6:89 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
10964417 134664 0 10 0 126817
|
|
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
|
|
31: fwpr509p1@fwln509i1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master datanet state UP mode DEFAULT group default qlen 1000
|
|
link/ether d6:51:80:15:1a:4a brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
1248486 5014 0 5014 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
14098897 139688 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 2
|
|
32: fwln509i1@fwpr509p1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue master fwbr509i1 state UP mode DEFAULT group default qlen 1000
|
|
link/ether 72:00:ce:83:a6:89 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
14098897 139688 0 5014 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
1248486 5014 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 2
|
|
35: tap6000i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether 66:12:8e:99:b0:0c brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
6474807 44833 0 0 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
701200759 4507099 0 35911 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 0
|
|
37: tap5111i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether 2e:6c:ef:cd:c9:0d brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
480127133 1488794 0 0 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
15964040465 7632342 0 0 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 0
|
|
38: tap5112i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 qdisc fq_codel master vmbr0 state UNKNOWN mode DEFAULT group default qlen 1000
|
|
link/ether e6:43:99:5f:34:c8 brd ff:ff:ff:ff:ff:ff
|
|
RX: bytes packets errors dropped missed mcast
|
|
34117975 357757 0 0 0 0
|
|
RX errors: length crc frame fifo overrun
|
|
0 0 0 0 0
|
|
TX: bytes packets errors dropped carrier collsns
|
|
6119796471 5143831 0 32 0 0
|
|
TX errors: aborted fifo window heartbt transns
|
|
0 0 0 0 0
|
|
|
|
--- ip neigh
|
|
$ ip neigh
|
|
10.100.100.3 dev datanet lladdr 8c:ae:4c:cd:a7:74 REACHABLE
|
|
192.168.1.45 dev vmbr0 FAILED
|
|
192.168.3.12 dev vmbr0 lladdr 02:5a:39:38:3e:9f STALE
|
|
192.168.3.250 dev vmbr0 lladdr 00:15:5d:64:e8:1e REACHABLE
|
|
192.168.1.166 dev vmbr0 lladdr 00:00:c0:34:0c:dc REACHABLE
|
|
192.168.1.119 dev vmbr0 lladdr 68:db:f5:1c:e8:8f STALE
|
|
10.100.100.1 dev datanet lladdr 8c:ae:4c:cd:a6:2d REACHABLE
|
|
192.168.3.254 dev vmbr0 lladdr 6c:4b:b4:10:40:61 REACHABLE
|
|
192.168.3.16 dev vmbr0 lladdr bc:24:11:8a:69:04 STALE
|
|
192.168.2.44 dev vmbr0 lladdr bc:24:11:e6:03:2d REACHABLE
|
|
192.168.3.99 dev vmbr0 lladdr 00:a0:de:a2:81:87 STALE
|
|
10.100.100.6 dev datanet lladdr 00:21:9b:a2:7c:55 REACHABLE
|
|
192.168.0.1 dev vmbr0 lladdr a0:d0:dc:38:3b:41 STALE
|
|
192.168.3.32 dev vmbr0 lladdr a0:4a:5e:ca:46:f3 STALE
|
|
192.168.3.55 dev vmbr0 lladdr 54:e4:bd:d3:da:78 STALE
|
|
192.168.3.78 dev vmbr0 lladdr bc:24:11:1a:8f:6f REACHABLE
|
|
192.168.3.169 dev vmbr0 lladdr 00:21:9b:a2:7c:53 STALE
|
|
10.100.100.7 dev datanet lladdr f8:bc:12:34:e0:75 REACHABLE
|
|
192.168.0.21 dev vmbr0 lladdr ca:fe:0f:0e:b0:75 REACHABLE
|
|
192.168.2.27 dev vmbr0 FAILED
|
|
10.100.100.4 dev datanet lladdr 8c:ae:4c:cd:a9:26 REACHABLE
|
|
10.100.100.9 dev datanet lladdr 9c:69:d3:6a:5b:6c STALE
|
|
fe80::7f67:9446:ea86:eb01 dev vmbr0 lladdr 68:ec:8a:0e:36:69 router STALE
|
|
fe80::eae9:e541:ea1f:9987 dev vmbr0 lladdr 9c:c8:e9:63:4b:95 STALE
|
|
fe80::966:b4b8:282d:dff8 dev vmbr0 lladdr bc:24:11:27:4f:1c STALE
|
|
fe80::5ee7:53ff:fead:95c dev vmbr0 lladdr 5c:e7:53:ad:09:5c STALE
|
|
fe80::ac15:1b59:37bb:96f5 dev vmbr0 lladdr 9c:6b:00:9d:1c:48 STALE
|
|
fe80::af8e:5170:c28:5a12 dev vmbr0 lladdr bc:24:11:ca:b0:cd STALE
|
|
fe80::a311:54:4085:c6b8 dev vmbr0 lladdr bc:24:11:32:d0:36 STALE
|
|
fe80::6e4b:b4ff:fe10:4061 dev vmbr0 lladdr 6c:4b:b4:10:40:61 router STALE
|
|
fe80::2e8d:48ff:fe22:31c dev vmbr0 lladdr 2c:8d:48:22:03:1c STALE
|
|
fe80::1d:8fb:68fc:746 dev vmbr0 lladdr 74:29:59:27:3a:b7 STALE
|
|
fe80::aaba:ff4f:993a:3336 dev vmbr0 lladdr bc:24:11:36:16:3c STALE
|
|
fe80::4542:2d1f:b470:fc54 dev vmbr0 lladdr bc:24:11:fb:7d:38 STALE
|
|
fe80::406a:9d5b:52e1:a762 dev vmbr0 lladdr bc:24:11:65:b2:ac STALE
|
|
fe80::ec58:8902:551a:c823 dev vmbr0 lladdr bc:24:11:1e:61:cf STALE
|
|
fe80::54f2:477f:64f3:562c dev vmbr0 lladdr bc:24:11:5c:96:1e STALE
|
|
fe80::eb49:b5fa:c882:b02c dev vmbr0 lladdr bc:24:11:ee:7e:7b STALE
|
|
fe80::2f96:e883:f0b8:8de1 dev vmbr0 lladdr bc:24:11:78:11:ac STALE
|
|
fe80::65f9:f271:9449:32fc dev vmbr0 lladdr bc:24:11:2e:5a:d6 STALE
|
|
fe80::be24:11ff:fee4:3753 dev vmbr0 lladdr bc:24:11:e4:37:53 STALE
|
|
fe80::df77:368f:7483:f207 dev vmbr0 lladdr 96:86:dd:1b:81:5a STALE
|
|
fe80::436f:cf31:df06:ba90 dev vmbr0 lladdr bc:24:11:5e:dc:44 STALE
|
|
fe80::be24:11ff:fedd:29b8 dev vmbr0 lladdr bc:24:11:dd:29:b8 STALE
|
|
fe80::b40f:d2ff:fe8b:6aec dev vmbr0 lladdr b6:0f:d2:8b:6a:ec STALE
|
|
fe80::36bd:c8ff:fe2d:18c5 dev vmbr0 lladdr 34:bd:c8:2d:18:c5 STALE
|
|
fe80::bb7f:ace0:50d5:690b dev vmbr0 lladdr bc:24:11:40:25:f8 STALE
|
|
fe80::be24:11ff:fef6:74e8 dev vmbr0 lladdr bc:24:11:f6:74:e8 STALE
|
|
fe80::fabc:12ff:fe34:e075 dev datanet lladdr f8:bc:12:34:e0:75 STALE
|
|
fe80::be24:11ff:fec7:1171 dev vmbr0 lladdr bc:24:11:c7:11:71 STALE
|
|
fe80::be24:11ff:fecb:f7aa dev vmbr0 lladdr bc:24:11:cb:f7:aa STALE
|
|
fe80::be24:11ff:fe1a:8f6f dev vmbr0 lladdr bc:24:11:1a:8f:6f STALE
|
|
fe80::be24:11ff:fe1f:9d83 dev vmbr0 lladdr bc:24:11:1f:9d:83 STALE
|
|
fe80::be24:11ff:fe65:b2ac dev vmbr0 lladdr bc:24:11:65:b2:ac STALE
|
|
fe80::30b4:e59a:dbc:6700 dev vmbr0 lladdr bc:24:11:e4:37:53 STALE
|
|
fe80::be24:11ff:fec3:dc75 dev vmbr0 lladdr bc:24:11:c3:dc:75 STALE
|
|
fe80::238a:7296:ce20:940f dev vmbr0 lladdr bc:24:11:8a:69:04 STALE
|
|
fe80::be24:11ff:fe9e:1ce9 dev vmbr0 lladdr bc:24:11:9e:1c:e9 STALE
|
|
fe80::e11b:a5d6:370a:3839 dev vmbr0 lladdr bc:24:11:80:a1:3c STALE
|
|
fe80::5ee7:53ff:fecf:45fa dev vmbr0 lladdr 5c:e7:53:cf:45:fa STALE
|
|
fe80::ef5a:24f4:f260:2b1e dev vmbr0 lladdr bc:24:11:44:73:92 STALE
|
|
fe80::8175:8cd5:2119:c58c dev vmbr0 lladdr bc:24:11:e2:1a:09 STALE
|
|
fe80::562b:57ff:fe4b:7c72 dev vmbr0 lladdr 54:2b:57:4b:7c:72 STALE
|
|
fe80::571e:6df3:f3d6:ad57 dev vmbr0 lladdr bc:24:11:6d:60:fb STALE
|
|
fe80::844:b84d:703c:46b6 dev vmbr0 lladdr 44:09:da:4e:84:63 STALE
|
|
fe80::ab9a:119e:e167:cc2a dev vmbr0 lladdr 96:86:dd:1b:81:5a STALE
|
|
fe80::be5d:167b:45a7:5d73 dev vmbr0 lladdr bc:24:11:96:f7:b9 STALE
|
|
fe80::11be:70aa:7f52:bcc4 dev vmbr0 lladdr bc:24:11:7a:44:5f STALE
|
|
fe80::44ce:70d5:12e2:dc57 dev vmbr0 lladdr bc:24:11:1e:fe:57 STALE
|
|
fe80::1175:ecfd:44b2:57cb dev vmbr0 lladdr bc:24:11:38:c0:58 STALE
|
|
fe80::be24:11ff:fe86:ea1a dev vmbr0 lladdr bc:24:11:86:ea:1a STALE
|
|
fe80::2053:681c:dbc9:6350 dev vmbr0 lladdr bc:24:11:ee:08:c9 STALE
|
|
fe80::cfc5:646d:62cd:4746 dev vmbr0 lladdr bc:24:11:6f:b0:06 STALE
|
|
fe80::907a:3764:9b08:16f3 dev vmbr0 lladdr bc:24:11:94:71:07 STALE
|
|
fe80::be24:11ff:fea3:8761 dev vmbr0 lladdr bc:24:11:a3:87:61 STALE
|
|
fe80::afa2:9f93:a83a:8815 dev vmbr0 lladdr bc:24:11:eb:f0:0f STALE
|
|
fe80::be24:11ff:feeb:f00f dev vmbr0 lladdr bc:24:11:eb:f0:0f STALE
|
|
fe80::be24:11ff:fee6:32d dev vmbr0 lladdr bc:24:11:e6:03:2d 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: 66122302 212394 0 0 0 0 0 0 66122302 212394 0 0 0 0 0 0
|
|
nic0: 27932239978 26921858 0 36873 0 0 0 4084548 1466197306 4227886 0 0 0 0 0 0
|
|
nic1: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
|
nic2: 13463973524 12262424 1 0 0 1 0 142279 2250444444 7932296 0 0 0 0 0 0
|
|
tailscale0: 140660038 484130 0 0 0 0 0 0 585590717 333553 0 0 0 0 0 0
|
|
vmbr0: 1484645083 6665020 0 0 0 0 0 3499230 758309526 944030 0 0 0 0 0 0
|
|
bond0: 13463973524 12262424 1 5419 0 1 0 142279 2250444444 7932296 0 0 0 0 0 0
|
|
datanet: 13240431564 12251990 0 10 0 0 0 136859 2172786492 7088553 0 1 0 0 0 0
|
|
tap5101i0: 1477962 15772 0 0 0 0 0 0 508513468 4796962 0 0 0 0 0 0
|
|
tap5105i0: 1209003 12475 0 0 0 0 0 0 499768424 4793398 0 362 0 0 0 0
|
|
tap5106i0: 1213247 12480 0 0 0 0 0 0 499739220 4793156 0 483 0 0 0 0
|
|
tap5107i0: 1220322 12504 0 0 0 0 0 0 499728705 4793020 0 525 0 0 0 0
|
|
tap5108i0: 1203481 12423 0 0 0 0 0 0 499662173 4792385 0 884 0 0 0 0
|
|
tap5109i0: 1204631 12436 0 0 0 0 0 0 499609856 4791916 0 1090 0 0 0 0
|
|
tap51010i0: 1201141 12427 0 0 0 0 0 0 499597646 4791726 0 1138 0 0 0 0
|
|
tap51011i0: 1406777 15221 0 0 0 0 0 0 507847217 4793841 0 1404 0 0 0 0
|
|
tap51012i0: 1276119 13202 0 0 0 0 0 0 499768525 4791449 0 1091 0 0 0 0
|
|
tap51013i0: 1207044 12408 0 0 0 0 0 0 499487444 4790727 0 1439 0 0 0 0
|
|
tap53100i0: 1197892 12379 0 0 0 0 0 0 499442309 4790265 0 1634 0 0 0 0
|
|
tap53101i0: 1431635 15513 0 0 0 0 0 0 509109070 4792911 0 1701 0 0 0 0
|
|
tap53102i0: 1834544 15233 0 0 0 0 0 0 499904159 4792728 0 1596 0 0 0 0
|
|
tap509i0: 106186614 509204 0 0 0 0 0 0 750705851 5646568 0 4546 0 0 0 0
|
|
fwbr509i0: 429444537 4769976 0 6109 0 0 0 3230109 0 0 0 0 0 0 0 0
|
|
fwpr509p0: 107435100 514218 0 5014 0 0 0 0 751207252 5651114 0 0 0 0 0 0
|
|
fwln509i0: 751207252 5651114 0 5014 0 0 0 0 107435100 514218 0 0 0 0 0 0
|
|
tap509i1: 0 0 0 0 0 0 0 0 60 1 0 138624 0 0 0 0
|
|
fwbr509i1: 10964417 134664 0 10 0 0 0 126817 0 0 0 0 0 0 0 0
|
|
fwpr509p1: 1248486 5014 0 5014 0 0 0 0 14098897 139688 0 0 0 0 0 0
|
|
fwln509i1: 14098897 139688 0 5014 0 0 0 0 1248486 5014 0 0 0 0 0 0
|
|
tap6000i0: 6474807 44833 0 0 0 0 0 0 701200759 4507099 0 35911 0 0 0 0
|
|
tap5111i0: 480127133 1488794 0 0 0 0 0 0 15964040465 7632342 0 0 0 0 0 0
|
|
tap5112i0: 34117975 357757 0 0 0 0 0 0 6119796471 5143831 0 32 0 0 0 0
|
|
|
|
--- ip -6 route (brief)
|
|
$ ip -6 route
|
|
fd7a:115c:a1e0::da3b:870c 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
|
|
bond0 speed=10 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
datanet speed=10000 duplex=unknown mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
fwbr509i0 speed=10000 duplex=unknown mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
fwbr509i1 speed=10000 duplex=unknown mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
fwln509i0 speed=10000 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
fwln509i1 speed=10000 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
fwpr509p0 speed=10000 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
fwpr509p1 speed=10000 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
nic0 speed=1000 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
nic1 speed=-1 duplex=unknown mtu=1500 carrier=0 tx_queue_len=1000 qlen=1000 type=1
|
|
nic2 speed=10 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
tap509i0 speed=10000 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
tap509i1 speed=10000 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
tap51010i0 speed=10000 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
tap51011i0 speed=10000 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
tap51012i0 speed=10000 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
tap51013i0 speed=10000 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
tap5101i0 speed=10000 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
tap5105i0 speed=10000 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
tap5106i0 speed=10000 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
tap5107i0 speed=10000 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
tap5108i0 speed=10000 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
tap5109i0 speed=10000 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
tap5111i0 speed=10000 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
tap5112i0 speed=10000 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
tap53100i0 speed=10000 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
tap53101i0 speed=10000 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
tap53102i0 speed=10000 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
tap6000i0 speed=10000 duplex=full mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
vmbr0 speed=10000 duplex=unknown mtu=1500 carrier=1 tx_queue_len=1000 qlen=1000 type=1
|
|
|
|
--- ethtool per-interface deep dump
|
|
$ for ifc in $NETIFS; do
|
|
[ -e "/sys/class/net/$ifc" ] || continue
|
|
echo ""
|
|
echo "----- ethtool: $ifc -----"
|
|
echo "[driver/version/firmware/bus-info -i]"
|
|
ethtool -i "$ifc" 2>&1
|
|
echo "[settings - speed/duplex/autoneg/port]"
|
|
ethtool "$ifc" 2>&1
|
|
echo "[channels -l (RX/TX/combined queue counts)]"
|
|
ethtool -l "$ifc" 2>&1
|
|
echo "[coalesce -c (interrupt moderation)]"
|
|
ethtool -c "$ifc" 2>&1
|
|
echo "[ring -g (descriptor counts)]"
|
|
ethtool -g "$ifc" 2>&1
|
|
echo "[pause / flow-control -a]"
|
|
ethtool -a "$ifc" 2>&1
|
|
echo "[offload features -k]"
|
|
ethtool -k "$ifc" 2>&1
|
|
echo "[private flags --show-priv-flags]"
|
|
ethtool --show-priv-flags "$ifc" 2>&1
|
|
echo "[ntuple/RSS -n]"
|
|
ethtool -n "$ifc" 2>&1 | head -n 40
|
|
echo "[SFP/DOM transceiver -m]"
|
|
ethtool -m "$ifc" 2>&1
|
|
echo "[statistics -S (key error/drop counters only)]"
|
|
ethtool -S "$ifc" 2>/dev/null \
|
|
| grep -iE 'drop|discard|error|crc|miss|pause|fifo|no_buff|rx_no_|_err|fw_|_bad|oversiz|undersize|frag|jabber|length_err|alignment' \
|
|
| head -n 60
|
|
echo "[statistics -S (throughput counters)]"
|
|
ethtool -S "$ifc" 2>/dev/null \
|
|
| grep -iE 'rx_(octets|bytes|packets)|tx_(octets|bytes|packets)|rx_(unicast|multicast|broadcast)|tx_(unicast|multicast|broadcast)' \
|
|
| head -n 30
|
|
done
|
|
|
|
----- ethtool: bond0 -----
|
|
[driver/version/firmware/bus-info -i]
|
|
driver: bonding
|
|
version: 6.17.2-1-pve
|
|
firmware-version: 2
|
|
expansion-rom-version:
|
|
bus-info:
|
|
supports-statistics: no
|
|
supports-test: no
|
|
supports-eeprom-access: no
|
|
supports-register-dump: no
|
|
supports-priv-flags: no
|
|
[settings - speed/duplex/autoneg/port]
|
|
Settings for bond0:
|
|
Supported ports: [ ]
|
|
Supported link modes: Not reported
|
|
Supported pause frame use: No
|
|
Supports auto-negotiation: No
|
|
Supported FEC modes: Not reported
|
|
Advertised link modes: Not reported
|
|
Advertised pause frame use: No
|
|
Advertised auto-negotiation: No
|
|
Advertised FEC modes: Not reported
|
|
Speed: 10Mb/s
|
|
Duplex: Full
|
|
Auto-negotiation: off
|
|
Port: Other
|
|
PHYAD: 0
|
|
Transceiver: internal
|
|
Link detected: yes
|
|
[channels -l (RX/TX/combined queue counts)]
|
|
netlink error: Operation not supported
|
|
[coalesce -c (interrupt moderation)]
|
|
netlink error: Operation not supported
|
|
[ring -g (descriptor counts)]
|
|
netlink error: Operation not supported
|
|
[pause / flow-control -a]
|
|
netlink error: Operation not supported
|
|
[offload features -k]
|
|
Features for bond0:
|
|
rx-checksumming: off [fixed]
|
|
tx-checksumming: on
|
|
tx-checksum-ipv4: off [fixed]
|
|
tx-checksum-ip-generic: on
|
|
tx-checksum-ipv6: off [fixed]
|
|
tx-checksum-fcoe-crc: off [fixed]
|
|
tx-checksum-sctp: off [fixed]
|
|
scatter-gather: on
|
|
tx-scatter-gather: on
|
|
tx-scatter-gather-fraglist: off [requested on]
|
|
tcp-segmentation-offload: on
|
|
tx-tcp-segmentation: on
|
|
tx-tcp-ecn-segmentation: on
|
|
tx-tcp-mangleid-segmentation: on
|
|
tx-tcp6-segmentation: on
|
|
tx-tcp-accecn-segmentation: off [requested on]
|
|
generic-segmentation-offload: on
|
|
generic-receive-offload: on
|
|
large-receive-offload: off
|
|
rx-vlan-offload: on
|
|
tx-vlan-offload: on [fixed]
|
|
ntuple-filters: off [fixed]
|
|
receive-hashing: off [fixed]
|
|
highdma: on
|
|
rx-vlan-filter: on
|
|
vlan-challenged: off [fixed]
|
|
tx-gso-robust: off [fixed]
|
|
tx-fcoe-segmentation: off [fixed]
|
|
tx-gre-segmentation: on
|
|
tx-gre-csum-segmentation: on
|
|
tx-ipxip4-segmentation: on
|
|
tx-ipxip6-segmentation: on
|
|
tx-udp_tnl-segmentation: on
|
|
tx-udp_tnl-csum-segmentation: on
|
|
tx-gso-partial: on [fixed]
|
|
tx-tunnel-remcsum-segmentation: off [fixed]
|
|
tx-sctp-segmentation: off [requested on]
|
|
tx-esp-segmentation: off
|
|
tx-udp-segmentation: off [requested on]
|
|
tx-gso-list: off [requested on]
|
|
tx-nocache-copy: off
|
|
loopback: off [fixed]
|
|
rx-fcs: off [fixed]
|
|
rx-all: off [fixed]
|
|
tx-vlan-stag-hw-insert: on [fixed]
|
|
rx-vlan-stag-hw-parse: on
|
|
rx-vlan-stag-filter: on
|
|
l2-fwd-offload: off [fixed]
|
|
hw-tc-offload: off [fixed]
|
|
esp-hw-offload: off
|
|
esp-tx-csum-hw-offload: off
|
|
rx-udp_tunnel-port-offload: off [fixed]
|
|
tls-hw-tx-offload: off [fixed]
|
|
tls-hw-rx-offload: off [fixed]
|
|
rx-gro-hw: off [fixed]
|
|
tls-hw-record: off [fixed]
|
|
rx-gro-list: off
|
|
macsec-hw-offload: off [fixed]
|
|
rx-udp-gro-forwarding: off
|
|
hsr-tag-ins-offload: off [fixed]
|
|
hsr-tag-rm-offload: off [fixed]
|
|
hsr-fwd-offload: off [fixed]
|
|
hsr-dup-offload: off [fixed]
|
|
[private flags --show-priv-flags]
|
|
netlink error: Operation not supported
|
|
[ntuple/RSS -n]
|
|
Cannot get RX rings: Operation not supported
|
|
rxclass: Cannot get RX class rule count: Operation not supported
|
|
RX classification rule retrieval failed
|
|
[SFP/DOM transceiver -m]
|
|
netlink error: Operation not supported
|
|
[statistics -S (key error/drop counters only)]
|
|
[statistics -S (throughput counters)]
|
|
|
|
----- ethtool: datanet -----
|
|
[driver/version/firmware/bus-info -i]
|
|
driver: bridge
|
|
version: 2.3
|
|
firmware-version: N/A
|
|
expansion-rom-version:
|
|
bus-info: N/A
|
|
supports-statistics: no
|
|
supports-test: no
|
|
supports-eeprom-access: no
|
|
supports-register-dump: no
|
|
supports-priv-flags: no
|
|
[settings - speed/duplex/autoneg/port]
|
|
Settings for datanet:
|
|
Supported ports: [ ]
|
|
Supported link modes: Not reported
|
|
Supported pause frame use: No
|
|
Supports auto-negotiation: No
|
|
Supported FEC modes: Not reported
|
|
Advertised link modes: Not reported
|
|
Advertised pause frame use: No
|
|
Advertised auto-negotiation: No
|
|
Advertised FEC modes: Not reported
|
|
Speed: 10000Mb/s
|
|
Duplex: Unknown! (255)
|
|
Auto-negotiation: off
|
|
Port: Other
|
|
PHYAD: 0
|
|
Transceiver: internal
|
|
Link detected: yes
|
|
[channels -l (RX/TX/combined queue counts)]
|
|
netlink error: Operation not supported
|
|
[coalesce -c (interrupt moderation)]
|
|
netlink error: Operation not supported
|
|
[ring -g (descriptor counts)]
|
|
netlink error: Operation not supported
|
|
[pause / flow-control -a]
|
|
netlink error: Operation not supported
|
|
[offload features -k]
|
|
Features for datanet:
|
|
rx-checksumming: off [fixed]
|
|
tx-checksumming: on
|
|
tx-checksum-ipv4: off [fixed]
|
|
tx-checksum-ip-generic: on
|
|
tx-checksum-ipv6: off [fixed]
|
|
tx-checksum-fcoe-crc: off [fixed]
|
|
tx-checksum-sctp: off [fixed]
|
|
scatter-gather: on
|
|
tx-scatter-gather: on
|
|
tx-scatter-gather-fraglist: on
|
|
tcp-segmentation-offload: on
|
|
tx-tcp-segmentation: on
|
|
tx-tcp-ecn-segmentation: on
|
|
tx-tcp-mangleid-segmentation: on
|
|
tx-tcp6-segmentation: on
|
|
tx-tcp-accecn-segmentation: on
|
|
generic-segmentation-offload: on
|
|
generic-receive-offload: on
|
|
large-receive-offload: off [fixed]
|
|
rx-vlan-offload: off [fixed]
|
|
tx-vlan-offload: on
|
|
ntuple-filters: off [fixed]
|
|
receive-hashing: off [fixed]
|
|
highdma: on
|
|
rx-vlan-filter: off [fixed]
|
|
vlan-challenged: off [fixed]
|
|
tx-gso-robust: off [requested on]
|
|
tx-fcoe-segmentation: off [requested on]
|
|
tx-gre-segmentation: on
|
|
tx-gre-csum-segmentation: on
|
|
tx-ipxip4-segmentation: on
|
|
tx-ipxip6-segmentation: on
|
|
tx-udp_tnl-segmentation: on
|
|
tx-udp_tnl-csum-segmentation: on
|
|
tx-gso-partial: on
|
|
tx-tunnel-remcsum-segmentation: on
|
|
tx-sctp-segmentation: on
|
|
tx-esp-segmentation: on
|
|
tx-udp-segmentation: on
|
|
tx-gso-list: on
|
|
tx-nocache-copy: off
|
|
loopback: off [fixed]
|
|
rx-fcs: off [fixed]
|
|
rx-all: off [fixed]
|
|
tx-vlan-stag-hw-insert: on
|
|
rx-vlan-stag-hw-parse: off [fixed]
|
|
rx-vlan-stag-filter: off [fixed]
|
|
l2-fwd-offload: off [fixed]
|
|
hw-tc-offload: off [fixed]
|
|
esp-hw-offload: off [fixed]
|
|
esp-tx-csum-hw-offload: off [fixed]
|
|
rx-udp_tunnel-port-offload: off [fixed]
|
|
tls-hw-tx-offload: off [fixed]
|
|
tls-hw-rx-offload: off [fixed]
|
|
rx-gro-hw: off [fixed]
|
|
tls-hw-record: off [fixed]
|
|
rx-gro-list: off
|
|
macsec-hw-offload: off [fixed]
|
|
rx-udp-gro-forwarding: off
|
|
hsr-tag-ins-offload: off [fixed]
|
|
hsr-tag-rm-offload: off [fixed]
|
|
hsr-fwd-offload: off [fixed]
|
|
hsr-dup-offload: off [fixed]
|
|
[private flags --show-priv-flags]
|
|
netlink error: Operation not supported
|
|
[ntuple/RSS -n]
|
|
Cannot get RX rings: Operation not supported
|
|
rxclass: Cannot get RX class rule count: Operation not supported
|
|
RX classification rule retrieval failed
|
|
[SFP/DOM transceiver -m]
|
|
netlink error: Operation not supported
|
|
[statistics -S (key error/drop counters only)]
|
|
[statistics -S (throughput counters)]
|
|
|
|
----- ethtool: fwbr509i0 -----
|
|
[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 fwbr509i0:
|
|
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 fwbr509i0:
|
|
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: fwbr509i1 -----
|
|
[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 fwbr509i1:
|
|
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 fwbr509i1:
|
|
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: fwln509i0 -----
|
|
[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 fwln509i0:
|
|
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 fwln509i0:
|
|
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 fwln509i0:
|
|
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: fwln509i1 -----
|
|
[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 fwln509i1:
|
|
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 fwln509i1:
|
|
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 fwln509i1:
|
|
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: fwpr509p0 -----
|
|
[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 fwpr509p0:
|
|
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 fwpr509p0:
|
|
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 fwpr509p0:
|
|
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: fwpr509p1 -----
|
|
[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 fwpr509p1:
|
|
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 fwpr509p1:
|
|
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 fwpr509p1:
|
|
rx-checksumming: on
|
|
tx-checksumming: on
|
|
tx-checksum-ipv4: off [fixed]
|
|
tx-checksum-ip-generic: on
|
|
tx-checksum-ipv6: off [fixed]
|
|
tx-checksum-fcoe-crc: off [fixed]
|
|
tx-checksum-sctp: on
|
|
scatter-gather: on
|
|
tx-scatter-gather: on
|
|
tx-scatter-gather-fraglist: on
|
|
tcp-segmentation-offload: on
|
|
tx-tcp-segmentation: on
|
|
tx-tcp-ecn-segmentation: on
|
|
tx-tcp-mangleid-segmentation: on
|
|
tx-tcp6-segmentation: on
|
|
tx-tcp-accecn-segmentation: on
|
|
generic-segmentation-offload: on
|
|
generic-receive-offload: off
|
|
large-receive-offload: off [fixed]
|
|
rx-vlan-offload: on
|
|
tx-vlan-offload: on
|
|
ntuple-filters: off [fixed]
|
|
receive-hashing: off [fixed]
|
|
highdma: on
|
|
rx-vlan-filter: off [fixed]
|
|
vlan-challenged: off [fixed]
|
|
tx-gso-robust: off [fixed]
|
|
tx-fcoe-segmentation: off [fixed]
|
|
tx-gre-segmentation: on
|
|
tx-gre-csum-segmentation: on
|
|
tx-ipxip4-segmentation: on
|
|
tx-ipxip6-segmentation: on
|
|
tx-udp_tnl-segmentation: on
|
|
tx-udp_tnl-csum-segmentation: on
|
|
tx-gso-partial: off [fixed]
|
|
tx-tunnel-remcsum-segmentation: off [fixed]
|
|
tx-sctp-segmentation: on
|
|
tx-esp-segmentation: off [fixed]
|
|
tx-udp-segmentation: on
|
|
tx-gso-list: on
|
|
tx-nocache-copy: off
|
|
loopback: off [fixed]
|
|
rx-fcs: off [fixed]
|
|
rx-all: off [fixed]
|
|
tx-vlan-stag-hw-insert: on
|
|
rx-vlan-stag-hw-parse: on
|
|
rx-vlan-stag-filter: off [fixed]
|
|
l2-fwd-offload: off [fixed]
|
|
hw-tc-offload: off [fixed]
|
|
esp-hw-offload: off [fixed]
|
|
esp-tx-csum-hw-offload: off [fixed]
|
|
rx-udp_tunnel-port-offload: off [fixed]
|
|
tls-hw-tx-offload: off [fixed]
|
|
tls-hw-rx-offload: off [fixed]
|
|
rx-gro-hw: off [fixed]
|
|
tls-hw-record: off [fixed]
|
|
rx-gro-list: off
|
|
macsec-hw-offload: off [fixed]
|
|
rx-udp-gro-forwarding: off
|
|
hsr-tag-ins-offload: off [fixed]
|
|
hsr-tag-rm-offload: off [fixed]
|
|
hsr-fwd-offload: off [fixed]
|
|
hsr-dup-offload: off [fixed]
|
|
[private flags --show-priv-flags]
|
|
netlink error: Operation not supported
|
|
[ntuple/RSS -n]
|
|
Cannot get RX rings: Operation not supported
|
|
rxclass: Cannot get RX class rule count: Operation not supported
|
|
RX classification rule retrieval failed
|
|
[SFP/DOM transceiver -m]
|
|
netlink error: Operation not supported
|
|
[statistics -S (key error/drop counters only)]
|
|
rx_queue_0_drops: 0
|
|
rx_queue_0_xdp_drops: 0
|
|
rx_queue_0_xdp_tx_errors: 0
|
|
tx_queue_0_xdp_xmit_errors: 0
|
|
[statistics -S (throughput counters)]
|
|
|
|
----- ethtool: nic0 -----
|
|
[driver/version/firmware/bus-info -i]
|
|
driver: tg3
|
|
version: 6.17.2-1-pve
|
|
firmware-version: 5761-v3.68
|
|
expansion-rom-version:
|
|
bus-info: 0000:06:00.0
|
|
supports-statistics: yes
|
|
supports-test: yes
|
|
supports-eeprom-access: yes
|
|
supports-register-dump: yes
|
|
supports-priv-flags: no
|
|
[settings - speed/duplex/autoneg/port]
|
|
Settings for nic0:
|
|
Supported ports: [ TP ]
|
|
Supported link modes: 10baseT/Half 10baseT/Full
|
|
100baseT/Half 100baseT/Full
|
|
1000baseT/Half 1000baseT/Full
|
|
Supported pause frame use: No
|
|
Supports auto-negotiation: Yes
|
|
Supported FEC modes: Not reported
|
|
Advertised link modes: 10baseT/Half 10baseT/Full
|
|
100baseT/Half 100baseT/Full
|
|
1000baseT/Half 1000baseT/Full
|
|
Advertised pause frame use: No
|
|
Advertised auto-negotiation: Yes
|
|
Advertised FEC modes: Not reported
|
|
Link partner advertised link modes: 10baseT/Half 10baseT/Full
|
|
100baseT/Half 100baseT/Full
|
|
1000baseT/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
|
|
Supports Wake-on: g
|
|
Wake-on: g
|
|
Current message level: 0x000000ff (255)
|
|
drv probe link timer ifdown ifup rx_err tx_err
|
|
Link detected: yes
|
|
[channels -l (RX/TX/combined queue counts)]
|
|
Channel parameters for nic0:
|
|
Pre-set maximums:
|
|
RX: 1
|
|
TX: 1
|
|
Other: n/a
|
|
Combined: n/a
|
|
Current hardware settings:
|
|
RX: 1
|
|
TX: 1
|
|
Other: n/a
|
|
Combined: n/a
|
|
[coalesce -c (interrupt moderation)]
|
|
Coalesce parameters for nic0:
|
|
Adaptive RX: n/a TX: n/a
|
|
stats-block-usecs: 0
|
|
sample-interval: n/a
|
|
pkt-rate-low: n/a
|
|
pkt-rate-high: n/a
|
|
|
|
rx-usecs: 20
|
|
rx-frames: 5
|
|
rx-usecs-irq: 0
|
|
rx-frames-irq: 5
|
|
|
|
tx-usecs: 72
|
|
tx-frames: 53
|
|
tx-usecs-irq: 0
|
|
tx-frames-irq: 5
|
|
|
|
rx-usecs-low: n/a
|
|
rx-frame-low: n/a
|
|
tx-usecs-low: n/a
|
|
tx-frame-low: n/a
|
|
|
|
rx-usecs-high: n/a
|
|
rx-frame-high: n/a
|
|
tx-usecs-high: n/a
|
|
tx-frame-high: n/a
|
|
|
|
CQE mode RX: n/a TX: n/a
|
|
|
|
tx-aggr-max-bytes: n/a
|
|
tx-aggr-max-frames: n/a
|
|
tx-aggr-time-usecs: n/a
|
|
|
|
[ring -g (descriptor counts)]
|
|
Ring parameters for nic0:
|
|
Pre-set maximums:
|
|
RX: 511
|
|
RX Mini: n/a
|
|
RX Jumbo: n/a
|
|
TX: 511
|
|
TX push buff len: n/a
|
|
Current hardware settings:
|
|
RX: 200
|
|
RX Mini: n/a
|
|
RX Jumbo: n/a
|
|
TX: 511
|
|
RX Buf Len: n/a
|
|
CQE Size: n/a
|
|
TX Push: off
|
|
RX Push: off
|
|
TX push buff len: n/a
|
|
TCP data split: n/a
|
|
[pause / flow-control -a]
|
|
Pause parameters for nic0:
|
|
Autonegotiate: on
|
|
RX: on
|
|
TX: on
|
|
RX negotiated: off
|
|
TX negotiated: off
|
|
|
|
[offload features -k]
|
|
Features for nic0:
|
|
rx-checksumming: on
|
|
tx-checksumming: on
|
|
tx-checksum-ipv4: on
|
|
tx-checksum-ip-generic: off [fixed]
|
|
tx-checksum-ipv6: on
|
|
tx-checksum-fcoe-crc: off [fixed]
|
|
tx-checksum-sctp: off [fixed]
|
|
scatter-gather: on
|
|
tx-scatter-gather: on
|
|
tx-scatter-gather-fraglist: off [fixed]
|
|
tcp-segmentation-offload: on
|
|
tx-tcp-segmentation: on
|
|
tx-tcp-ecn-segmentation: on
|
|
tx-tcp-mangleid-segmentation: off
|
|
tx-tcp6-segmentation: on
|
|
tx-tcp-accecn-segmentation: off [fixed]
|
|
generic-segmentation-offload: on
|
|
generic-receive-offload: on
|
|
large-receive-offload: off [fixed]
|
|
rx-vlan-offload: on [fixed]
|
|
tx-vlan-offload: on [fixed]
|
|
ntuple-filters: off [fixed]
|
|
receive-hashing: off [fixed]
|
|
highdma: on
|
|
rx-vlan-filter: off [fixed]
|
|
vlan-challenged: off [fixed]
|
|
tx-gso-robust: off [fixed]
|
|
tx-fcoe-segmentation: off [fixed]
|
|
tx-gre-segmentation: off [fixed]
|
|
tx-gre-csum-segmentation: off [fixed]
|
|
tx-ipxip4-segmentation: off [fixed]
|
|
tx-ipxip6-segmentation: off [fixed]
|
|
tx-udp_tnl-segmentation: off [fixed]
|
|
tx-udp_tnl-csum-segmentation: off [fixed]
|
|
tx-gso-partial: off [fixed]
|
|
tx-tunnel-remcsum-segmentation: off [fixed]
|
|
tx-sctp-segmentation: off [fixed]
|
|
tx-esp-segmentation: off [fixed]
|
|
tx-udp-segmentation: off [fixed]
|
|
tx-gso-list: off [fixed]
|
|
tx-nocache-copy: off
|
|
loopback: off [fixed]
|
|
rx-fcs: off [fixed]
|
|
rx-all: off [fixed]
|
|
tx-vlan-stag-hw-insert: off [fixed]
|
|
rx-vlan-stag-hw-parse: off [fixed]
|
|
rx-vlan-stag-filter: off [fixed]
|
|
l2-fwd-offload: off [fixed]
|
|
hw-tc-offload: off [fixed]
|
|
esp-hw-offload: off [fixed]
|
|
esp-tx-csum-hw-offload: off [fixed]
|
|
rx-udp_tunnel-port-offload: off [fixed]
|
|
tls-hw-tx-offload: off [fixed]
|
|
tls-hw-rx-offload: off [fixed]
|
|
rx-gro-hw: off [fixed]
|
|
tls-hw-record: off [fixed]
|
|
rx-gro-list: off
|
|
macsec-hw-offload: off [fixed]
|
|
rx-udp-gro-forwarding: off
|
|
hsr-tag-ins-offload: off [fixed]
|
|
hsr-tag-rm-offload: off [fixed]
|
|
hsr-fwd-offload: off [fixed]
|
|
hsr-dup-offload: off [fixed]
|
|
[private flags --show-priv-flags]
|
|
netlink error: Operation not supported
|
|
[ntuple/RSS -n]
|
|
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_fragments: 0
|
|
rx_fcs_errors: 0
|
|
rx_align_errors: 0
|
|
rx_xon_pause_rcvd: 0
|
|
rx_xoff_pause_rcvd: 0
|
|
rx_frame_too_long_errors: 0
|
|
rx_jabbers: 0
|
|
rx_undersize_packets: 0
|
|
rx_in_length_errors: 0
|
|
rx_out_length_errors: 0
|
|
tx_mac_errors: 0
|
|
tx_carrier_sense_errors: 0
|
|
tx_discards: 0
|
|
tx_errors: 0
|
|
rx_discards: 31452
|
|
rx_errors: 0
|
|
[statistics -S (throughput counters)]
|
|
rx_octets: 27932242545
|
|
tx_octets: 1466198954
|
|
|
|
----- ethtool: nic1 -----
|
|
[driver/version/firmware/bus-info -i]
|
|
driver: e1000e
|
|
version: 6.17.2-1-pve
|
|
firmware-version: 5.11-2
|
|
expansion-rom-version:
|
|
bus-info: 0000:22:00.0
|
|
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 nic1:
|
|
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
|
|
Speed: Unknown!
|
|
Duplex: Unknown! (255)
|
|
Auto-negotiation: on
|
|
Port: Twisted Pair
|
|
PHYAD: 1
|
|
Transceiver: internal
|
|
MDI-X: Unknown
|
|
Supports Wake-on: pumbg
|
|
Wake-on: g
|
|
Current message level: 0x00000007 (7)
|
|
drv probe link
|
|
Link detected: no
|
|
[channels -l (RX/TX/combined queue counts)]
|
|
netlink error: Operation not supported
|
|
[coalesce -c (interrupt moderation)]
|
|
Coalesce parameters for nic1:
|
|
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 nic1:
|
|
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 nic1:
|
|
Autonegotiate: on
|
|
RX: on
|
|
TX: on
|
|
|
|
[offload features -k]
|
|
Features for nic1:
|
|
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: on
|
|
tx-tcp-segmentation: on
|
|
tx-tcp-ecn-segmentation: off [fixed]
|
|
tx-tcp-mangleid-segmentation: off
|
|
tx-tcp6-segmentation: on
|
|
tx-tcp-accecn-segmentation: off [fixed]
|
|
generic-segmentation-offload: on
|
|
generic-receive-offload: on
|
|
large-receive-offload: off [fixed]
|
|
rx-vlan-offload: on
|
|
tx-vlan-offload: on
|
|
ntuple-filters: off [fixed]
|
|
receive-hashing: on
|
|
highdma: on [fixed]
|
|
rx-vlan-filter: on [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 nic1:
|
|
s0ix-enabled: 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: 0
|
|
tx_packets: 0
|
|
rx_bytes: 0
|
|
tx_bytes: 0
|
|
rx_broadcast: 0
|
|
tx_broadcast: 0
|
|
rx_multicast: 0
|
|
tx_multicast: 0
|
|
|
|
----- ethtool: nic2 -----
|
|
[driver/version/firmware/bus-info -i]
|
|
driver: e1000e
|
|
version: 6.17.2-1-pve
|
|
firmware-version: 5.11-2
|
|
expansion-rom-version:
|
|
bus-info: 0000:22:00.1
|
|
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 nic2:
|
|
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/Full
|
|
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: 10Mb/s
|
|
Duplex: Full
|
|
Auto-negotiation: on
|
|
Port: Twisted Pair
|
|
PHYAD: 1
|
|
Transceiver: internal
|
|
MDI-X: on (auto)
|
|
Supports Wake-on: d
|
|
Wake-on: d
|
|
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 nic2:
|
|
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 nic2:
|
|
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 nic2:
|
|
Autonegotiate: on
|
|
RX: off
|
|
TX: off
|
|
RX negotiated: off
|
|
TX negotiated: off
|
|
|
|
[offload features -k]
|
|
Features for nic2:
|
|
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: on
|
|
tx-tcp-segmentation: on
|
|
tx-tcp-ecn-segmentation: off [fixed]
|
|
tx-tcp-mangleid-segmentation: off
|
|
tx-tcp6-segmentation: on
|
|
tx-tcp-accecn-segmentation: off [fixed]
|
|
generic-segmentation-offload: on
|
|
generic-receive-offload: on
|
|
large-receive-offload: off [fixed]
|
|
rx-vlan-offload: on
|
|
tx-vlan-offload: on
|
|
ntuple-filters: off [fixed]
|
|
receive-hashing: on
|
|
highdma: on [fixed]
|
|
rx-vlan-filter: on [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 nic2:
|
|
s0ix-enabled: 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: 1
|
|
tx_errors: 0
|
|
tx_dropped: 0
|
|
rx_length_errors: 0
|
|
rx_over_errors: 0
|
|
rx_crc_errors: 1
|
|
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: 12262446
|
|
tx_packets: 7932325
|
|
rx_bytes: 13463975754
|
|
tx_bytes: 2250463676
|
|
rx_broadcast: 8463
|
|
tx_broadcast: 18
|
|
rx_multicast: 142280
|
|
tx_multicast: 10636
|
|
|
|
----- ethtool: tap509i0 -----
|
|
[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 tap509i0:
|
|
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 tap509i0:
|
|
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 tap509i0:
|
|
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 tap509i0:
|
|
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: tap509i1 -----
|
|
[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 tap509i1:
|
|
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 tap509i1:
|
|
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 tap509i1:
|
|
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 tap509i1:
|
|
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: tap51010i0 -----
|
|
[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 tap51010i0:
|
|
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 tap51010i0:
|
|
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 tap51010i0:
|
|
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 tap51010i0:
|
|
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: tap51011i0 -----
|
|
[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 tap51011i0:
|
|
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 tap51011i0:
|
|
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 tap51011i0:
|
|
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 tap51011i0:
|
|
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: tap51012i0 -----
|
|
[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 tap51012i0:
|
|
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 tap51012i0:
|
|
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 tap51012i0:
|
|
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 tap51012i0:
|
|
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: tap51013i0 -----
|
|
[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 tap51013i0:
|
|
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 tap51013i0:
|
|
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 tap51013i0:
|
|
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 tap51013i0:
|
|
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: tap5101i0 -----
|
|
[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 tap5101i0:
|
|
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 tap5101i0:
|
|
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 tap5101i0:
|
|
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 tap5101i0:
|
|
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: tap5105i0 -----
|
|
[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 tap5105i0:
|
|
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 tap5105i0:
|
|
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 tap5105i0:
|
|
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 tap5105i0:
|
|
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: tap5106i0 -----
|
|
[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 tap5106i0:
|
|
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 tap5106i0:
|
|
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 tap5106i0:
|
|
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 tap5106i0:
|
|
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: tap5107i0 -----
|
|
[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 tap5107i0:
|
|
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 tap5107i0:
|
|
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 tap5107i0:
|
|
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 tap5107i0:
|
|
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: tap5108i0 -----
|
|
[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 tap5108i0:
|
|
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 tap5108i0:
|
|
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 tap5108i0:
|
|
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 tap5108i0:
|
|
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: tap5109i0 -----
|
|
[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 tap5109i0:
|
|
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 tap5109i0:
|
|
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 tap5109i0:
|
|
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 tap5109i0:
|
|
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: tap5111i0 -----
|
|
[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 tap5111i0:
|
|
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 tap5111i0:
|
|
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 tap5111i0:
|
|
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 tap5111i0:
|
|
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: tap5112i0 -----
|
|
[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 tap5112i0:
|
|
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 tap5112i0:
|
|
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 tap5112i0:
|
|
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 tap5112i0:
|
|
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: tap53100i0 -----
|
|
[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 tap53100i0:
|
|
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 tap53100i0:
|
|
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 tap53100i0:
|
|
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 tap53100i0:
|
|
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: tap53101i0 -----
|
|
[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 tap53101i0:
|
|
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 tap53101i0:
|
|
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 tap53101i0:
|
|
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 tap53101i0:
|
|
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: tap53102i0 -----
|
|
[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 tap53102i0:
|
|
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 tap53102i0:
|
|
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 tap53102i0:
|
|
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 tap53102i0:
|
|
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: tap6000i0 -----
|
|
[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 tap6000i0:
|
|
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 tap6000i0:
|
|
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 tap6000i0:
|
|
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 tap6000i0:
|
|
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
|
|
7: bond0: <BROADCAST,MULTICAST,MASTER,UP,LOWER_UP> mtu 1500 master datanet state forwarding priority 32 cost 100
|
|
11: tap5101i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 master vmbr0 state forwarding priority 32 cost 2
|
|
12: tap5105i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 master vmbr0 state forwarding priority 32 cost 2
|
|
13: tap5106i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 master vmbr0 state forwarding priority 32 cost 2
|
|
14: tap5107i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 master vmbr0 state forwarding priority 32 cost 2
|
|
15: tap5108i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 master vmbr0 state forwarding priority 32 cost 2
|
|
16: tap5109i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 master vmbr0 state forwarding priority 32 cost 2
|
|
17: tap51010i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 master vmbr0 state forwarding priority 32 cost 2
|
|
18: tap51011i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 master vmbr0 state forwarding priority 32 cost 2
|
|
19: tap51012i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 master vmbr0 state forwarding priority 32 cost 2
|
|
20: tap51013i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 master vmbr0 state forwarding priority 32 cost 2
|
|
21: tap53100i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 master vmbr0 state forwarding priority 32 cost 2
|
|
22: tap53101i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 master vmbr0 state forwarding priority 32 cost 2
|
|
23: tap53102i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 master vmbr0 state forwarding priority 32 cost 2
|
|
25: tap509i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 master fwbr509i0 state forwarding priority 32 cost 2
|
|
27: fwpr509p0@fwln509i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master vmbr0 state forwarding priority 32 cost 2
|
|
28: fwln509i0@fwpr509p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master fwbr509i0 state forwarding priority 32 cost 2
|
|
29: tap509i1: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 master fwbr509i1 state forwarding priority 32 cost 2
|
|
31: fwpr509p1@fwln509i1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master datanet state forwarding priority 32 cost 2
|
|
32: fwln509i1@fwpr509p1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master fwbr509i1 state forwarding priority 32 cost 2
|
|
35: tap6000i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 master vmbr0 state forwarding priority 32 cost 2
|
|
37: tap5111i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 master vmbr0 state forwarding priority 32 cost 2
|
|
38: tap5112i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 master vmbr0 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 84 mcast_max_groups 0
|
|
7: bond0: <BROADCAST,MULTICAST,MASTER,UP,LOWER_UP> mtu 1500 master datanet state forwarding priority 32 cost 100
|
|
hairpin off guard off root_block off fastleave off learning on flood on mcast_flood on bcast_flood on mcast_router 1 mcast_to_unicast off neigh_suppress off neigh_vlan_suppress off vlan_tunnel off isolated off locked off mab off mcast_n_groups 2 mcast_max_groups 0
|
|
11: tap5101i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 master vmbr0 state forwarding priority 32 cost 2
|
|
hairpin off guard off root_block off fastleave off learning on flood on mcast_flood on bcast_flood on mcast_router 1 mcast_to_unicast off neigh_suppress off neigh_vlan_suppress off vlan_tunnel off isolated off locked off mab off mcast_n_groups 2 mcast_max_groups 0
|
|
12: tap5105i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 master vmbr0 state forwarding priority 32 cost 2
|
|
hairpin off guard off root_block off fastleave off learning on flood on mcast_flood on bcast_flood on mcast_router 1 mcast_to_unicast off neigh_suppress off neigh_vlan_suppress off vlan_tunnel off isolated off locked off mab off mcast_n_groups 3 mcast_max_groups 0
|
|
13: tap5106i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 master vmbr0 state forwarding priority 32 cost 2
|
|
hairpin off guard off root_block off fastleave off learning on flood on mcast_flood on bcast_flood on mcast_router 1 mcast_to_unicast off neigh_suppress off neigh_vlan_suppress off vlan_tunnel off isolated off locked off mab off mcast_n_groups 3 mcast_max_groups 0
|
|
14: tap5107i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 master vmbr0 state forwarding priority 32 cost 2
|
|
hairpin off guard off root_block off fastleave off learning on flood on mcast_flood on bcast_flood on mcast_router 1 mcast_to_unicast off neigh_suppress off neigh_vlan_suppress off vlan_tunnel off isolated off locked off mab off mcast_n_groups 3 mcast_max_groups 0
|
|
15: tap5108i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 master vmbr0 state forwarding priority 32 cost 2
|
|
hairpin off guard off root_block off fastleave off learning on flood on mcast_flood on bcast_flood on mcast_router 1 mcast_to_unicast off neigh_suppress off neigh_vlan_suppress off vlan_tunnel off isolated off locked off mab off mcast_n_groups 3 mcast_max_groups 0
|
|
16: tap5109i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 master vmbr0 state forwarding priority 32 cost 2
|
|
hairpin off guard off root_block off fastleave off learning on flood on mcast_flood on bcast_flood on mcast_router 1 mcast_to_unicast off neigh_suppress off neigh_vlan_suppress off vlan_tunnel off isolated off locked off mab off mcast_n_groups 3 mcast_max_groups 0
|
|
17: tap51010i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 master vmbr0 state forwarding priority 32 cost 2
|
|
hairpin off guard off root_block off fastleave off learning on flood on mcast_flood on bcast_flood on mcast_router 1 mcast_to_unicast off neigh_suppress off neigh_vlan_suppress off vlan_tunnel off isolated off locked off mab off mcast_n_groups 3 mcast_max_groups 0
|
|
18: tap51011i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 master vmbr0 state forwarding priority 32 cost 2
|
|
hairpin off guard off root_block off fastleave off learning on flood on mcast_flood on bcast_flood on mcast_router 1 mcast_to_unicast off neigh_suppress off neigh_vlan_suppress off vlan_tunnel off isolated off locked off mab off mcast_n_groups 2 mcast_max_groups 0
|
|
19: tap51012i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 master vmbr0 state forwarding priority 32 cost 2
|
|
hairpin off guard off root_block off fastleave off learning on flood on mcast_flood on bcast_flood on mcast_router 1 mcast_to_unicast off neigh_suppress off neigh_vlan_suppress off vlan_tunnel off isolated off locked off mab off mcast_n_groups 3 mcast_max_groups 0
|
|
20: tap51013i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 master vmbr0 state forwarding priority 32 cost 2
|
|
hairpin off guard off root_block off fastleave off learning on flood on mcast_flood on bcast_flood on mcast_router 1 mcast_to_unicast off neigh_suppress off neigh_vlan_suppress off vlan_tunnel off isolated off locked off mab off mcast_n_groups 3 mcast_max_groups 0
|
|
21: tap53100i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 master vmbr0 state forwarding priority 32 cost 2
|
|
hairpin off guard off root_block off fastleave off learning on flood on mcast_flood on bcast_flood on mcast_router 1 mcast_to_unicast off neigh_suppress off neigh_vlan_suppress off vlan_tunnel off isolated off locked off mab off mcast_n_groups 3 mcast_max_groups 0
|
|
22: tap53101i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 master vmbr0 state forwarding priority 32 cost 2
|
|
hairpin off guard off root_block off fastleave off learning on flood on mcast_flood on bcast_flood on mcast_router 1 mcast_to_unicast off neigh_suppress off neigh_vlan_suppress off vlan_tunnel off isolated off locked off mab off mcast_n_groups 2 mcast_max_groups 0
|
|
23: tap53102i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 master vmbr0 state forwarding priority 32 cost 2
|
|
hairpin off guard off root_block off fastleave off learning on flood on mcast_flood on bcast_flood on mcast_router 1 mcast_to_unicast off neigh_suppress off neigh_vlan_suppress off vlan_tunnel off isolated off locked off mab off mcast_n_groups 3 mcast_max_groups 0
|
|
25: tap509i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 master fwbr509i0 state forwarding priority 32 cost 2
|
|
hairpin off guard off root_block off fastleave off learning on flood on mcast_flood on bcast_flood on mcast_router 1 mcast_to_unicast off neigh_suppress off neigh_vlan_suppress off vlan_tunnel off isolated off locked off mab off mcast_n_groups 3 mcast_max_groups 0
|
|
27: fwpr509p0@fwln509i0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master vmbr0 state forwarding priority 32 cost 2
|
|
hairpin off guard off root_block off fastleave off learning on flood on mcast_flood on bcast_flood on mcast_router 1 mcast_to_unicast off neigh_suppress off neigh_vlan_suppress off vlan_tunnel off isolated off locked off mab off mcast_n_groups 3 mcast_max_groups 0
|
|
28: fwln509i0@fwpr509p0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master fwbr509i0 state forwarding priority 32 cost 2
|
|
hairpin off guard off root_block off fastleave off learning on flood on mcast_flood on bcast_flood on mcast_router 1 mcast_to_unicast off neigh_suppress off neigh_vlan_suppress off vlan_tunnel off isolated off locked off mab off mcast_n_groups 126 mcast_max_groups 0
|
|
29: tap509i1: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 master fwbr509i1 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
|
|
31: fwpr509p1@fwln509i1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master datanet state forwarding priority 32 cost 2
|
|
hairpin off guard off root_block off fastleave off learning on flood on mcast_flood on bcast_flood on mcast_router 1 mcast_to_unicast off neigh_suppress off neigh_vlan_suppress off vlan_tunnel off isolated off locked off mab off mcast_n_groups 0 mcast_max_groups 0
|
|
32: fwln509i1@fwpr509p1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 master fwbr509i1 state forwarding priority 32 cost 2
|
|
hairpin off guard off root_block off fastleave off learning on flood on mcast_flood on bcast_flood on mcast_router 1 mcast_to_unicast off neigh_suppress off neigh_vlan_suppress off vlan_tunnel off isolated off locked off mab off mcast_n_groups 2 mcast_max_groups 0
|
|
35: tap6000i0: <BROADCAST,MULTICAST,PROMISC,UP,LOWER_UP> mtu 1500 master vmbr0 state forwarding priority 32 cost 2
|
|
hairpin off guard off root_block off fastleave off learning on flood on mcast_flood on bcast_flood on mcast_router 1 mcast_to_unicast off neigh_suppress off neigh_vlan_suppress off vlan_tunnel off isolated off locked off mab off mcast_n_groups 3 mcast_max_groups 0
|
|
37: tap5111i0: <BROADCAST,MULTICAST,PROMISC,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 5 mcast_max_groups 0
|
|
38: tap5112i0: <BROADCAST,MULTICAST,PROMISC,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 5 mcast_max_groups 0
|
|
|
|
--- bridge vlan
|
|
$ bridge vlan
|
|
port vlan-id
|
|
nic0 1 PVID Egress Untagged
|
|
vmbr0 1 PVID Egress Untagged
|
|
bond0 1 PVID Egress Untagged
|
|
datanet 1 PVID Egress Untagged
|
|
tap5101i0 1 PVID Egress Untagged
|
|
tap5105i0 1 PVID Egress Untagged
|
|
tap5106i0 1 PVID Egress Untagged
|
|
tap5107i0 1 PVID Egress Untagged
|
|
tap5108i0 1 PVID Egress Untagged
|
|
tap5109i0 1 PVID Egress Untagged
|
|
tap51010i0 1 PVID Egress Untagged
|
|
tap51011i0 1 PVID Egress Untagged
|
|
tap51012i0 1 PVID Egress Untagged
|
|
tap51013i0 1 PVID Egress Untagged
|
|
tap53100i0 1 PVID Egress Untagged
|
|
tap53101i0 1 PVID Egress Untagged
|
|
tap53102i0 1 PVID Egress Untagged
|
|
tap509i0 1 PVID Egress Untagged
|
|
fwbr509i0 1 PVID Egress Untagged
|
|
fwpr509p0 1 PVID Egress Untagged
|
|
fwln509i0 1 PVID Egress Untagged
|
|
tap509i1 1 PVID Egress Untagged
|
|
fwbr509i1 1 PVID Egress Untagged
|
|
fwpr509p1 1 PVID Egress Untagged
|
|
fwln509i1 1 PVID Egress Untagged
|
|
tap6000i0 1 PVID Egress Untagged
|
|
tap5111i0 1 PVID Egress Untagged
|
|
tap5112i0 1 PVID Egress Untagged
|
|
|
|
--- bridge vlan show
|
|
$ bridge vlan show
|
|
port vlan-id
|
|
nic0 1 PVID Egress Untagged
|
|
vmbr0 1 PVID Egress Untagged
|
|
bond0 1 PVID Egress Untagged
|
|
datanet 1 PVID Egress Untagged
|
|
tap5101i0 1 PVID Egress Untagged
|
|
tap5105i0 1 PVID Egress Untagged
|
|
tap5106i0 1 PVID Egress Untagged
|
|
tap5107i0 1 PVID Egress Untagged
|
|
tap5108i0 1 PVID Egress Untagged
|
|
tap5109i0 1 PVID Egress Untagged
|
|
tap51010i0 1 PVID Egress Untagged
|
|
tap51011i0 1 PVID Egress Untagged
|
|
tap51012i0 1 PVID Egress Untagged
|
|
tap51013i0 1 PVID Egress Untagged
|
|
tap53100i0 1 PVID Egress Untagged
|
|
tap53101i0 1 PVID Egress Untagged
|
|
tap53102i0 1 PVID Egress Untagged
|
|
tap509i0 1 PVID Egress Untagged
|
|
fwbr509i0 1 PVID Egress Untagged
|
|
fwpr509p0 1 PVID Egress Untagged
|
|
fwln509i0 1 PVID Egress Untagged
|
|
tap509i1 1 PVID Egress Untagged
|
|
fwbr509i1 1 PVID Egress Untagged
|
|
fwpr509p1 1 PVID Egress Untagged
|
|
fwln509i1 1 PVID Egress Untagged
|
|
tap6000i0 1 PVID Egress Untagged
|
|
tap5111i0 1 PVID Egress Untagged
|
|
tap5112i0 1 PVID Egress Untagged
|
|
|
|
--- brctl show
|
|
$ brctl show
|
|
bridge name bridge id STP enabled interfaces
|
|
datanet 8000.001b785ce9ce no bond0
|
|
fwpr509p1
|
|
fwbr509i0 8000.62c406b8e571 no fwln509i0
|
|
tap509i0
|
|
fwbr509i1 8000.7200ce83a689 no fwln509i1
|
|
tap509i1
|
|
vmbr0 8000.18037343cede no fwpr509p0
|
|
nic0
|
|
tap51010i0
|
|
tap51011i0
|
|
tap51012i0
|
|
tap51013i0
|
|
tap5101i0
|
|
tap5105i0
|
|
tap5106i0
|
|
tap5107i0
|
|
tap5108i0
|
|
tap5109i0
|
|
tap5111i0
|
|
tap5112i0
|
|
tap53100i0
|
|
tap53101i0
|
|
tap53102i0
|
|
tap6000i0
|
|
|
|
--- bonding state
|
|
--- /proc/net/bonding/bond0 ---
|
|
Ethernet Channel Bonding Driver: v6.17.2-1-pve
|
|
|
|
Bonding Mode: IEEE 802.3ad Dynamic link aggregation
|
|
Transmit Hash Policy: layer2 (0)
|
|
MII Status: up
|
|
MII Polling Interval (ms): 100
|
|
Up Delay (ms): 200
|
|
Down Delay (ms): 200
|
|
Peer Notification Delay (ms): 0
|
|
|
|
802.3ad info
|
|
LACP active: on
|
|
LACP rate: fast
|
|
Min links: 0
|
|
Aggregator selection policy (ad_select): stable
|
|
System priority: 65535
|
|
System MAC address: 00:1b:78:5c:e9:ce
|
|
Active Aggregator Info:
|
|
Aggregator ID: 2
|
|
Number of ports: 1
|
|
Actor Key: 5
|
|
Partner Key: 1
|
|
Partner Mac Address: 00:00:00:00:00:00
|
|
|
|
Slave Interface: nic1
|
|
MII Status: down
|
|
Speed: Unknown
|
|
Duplex: Unknown
|
|
Link Failure Count: 0
|
|
Permanent HW addr: 00:1b:78:5c:e9:ce
|
|
Slave queue ID: 0
|
|
Aggregator ID: 1
|
|
Actor Churn State: churned
|
|
Partner Churn State: churned
|
|
Actor Churned Count: 1
|
|
Partner Churned Count: 1
|
|
details actor lacp pdu:
|
|
system priority: 65535
|
|
system mac address: 00:1b:78:5c:e9:ce
|
|
port key: 0
|
|
port priority: 255
|
|
port number: 1
|
|
port state: 71
|
|
details partner lacp pdu:
|
|
system priority: 65535
|
|
system mac address: 00:00:00:00:00:00
|
|
oper key: 1
|
|
port priority: 255
|
|
port number: 1
|
|
port state: 0
|
|
|
|
Slave Interface: nic2
|
|
MII Status: up
|
|
Speed: 10 Mbps
|
|
Duplex: full
|
|
Link Failure Count: 0
|
|
Permanent HW addr: 00:1b:78:5c:e9:cf
|
|
Slave queue ID: 0
|
|
Aggregator ID: 2
|
|
Actor Churn State: none
|
|
Partner Churn State: churned
|
|
Actor Churned Count: 0
|
|
Partner Churned Count: 1
|
|
details actor lacp pdu:
|
|
system priority: 65535
|
|
system mac address: 00:1b:78:5c:e9:ce
|
|
port key: 5
|
|
port priority: 255
|
|
port number: 2
|
|
port state: 79
|
|
details partner lacp pdu:
|
|
system priority: 65535
|
|
system mac address: 00:00:00:00:00:00
|
|
oper key: 1
|
|
port priority: 255
|
|
port number: 1
|
|
port state: 0
|
|
|
|
--- 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
|
|
|
|
### mgmt net
|
|
iface nic0 inet manual
|
|
|
|
auto vmbr0
|
|
iface vmbr0 inet dhcp
|
|
bridge-ports nic0
|
|
bridge-stp off
|
|
bridge-fd 0
|
|
|
|
|
|
|
|
### datanet
|
|
|
|
|
|
### datanet (2gbps bond to pfv-r3-stor switch ports 13,14)
|
|
|
|
### setup lacp
|
|
|
|
# Datanet members
|
|
auto nic1
|
|
iface nic1 inet manual
|
|
bond-master bond0
|
|
|
|
auto nic2
|
|
iface nic2 inet manual
|
|
bond-master bond0
|
|
|
|
auto bond0
|
|
iface bond0 inet manual
|
|
bond-mode 802.3ad
|
|
bond-miimon 100
|
|
bond-downdelay 200
|
|
bond-updelay 200
|
|
bond-lacp-rate fast
|
|
bond-slaves nic1 nic2
|
|
|
|
### bring up bridge on lacp
|
|
|
|
auto datanet
|
|
iface datanet inet static
|
|
address 10.100.100.5
|
|
netmask 255.255.255.0
|
|
bridge-ports bond0
|
|
bridge-stp off
|
|
bridge-fd 0
|
|
|
|
source /etc/network/interfaces.d/*
|
|
|
|
--- interfaces.d (per file)
|
|
$ for f in /etc/network/interfaces.d/*; do
|
|
[ -r "$f" ] || continue
|
|
echo "--- $f ---"
|
|
cat "$f"
|
|
done
|
|
|
|
###############################################################################
|
|
# 12. NETWORK: IRQ / RPS / XPS / aRFS / SOFTNET
|
|
###############################################################################
|
|
|
|
--- /proc/interrupts
|
|
$ cat /proc/interrupts
|
|
CPU0 CPU1 CPU2 CPU3 CPU4 CPU5 CPU6 CPU7
|
|
0: 142 0 0 0 0 0 0 0 IR-IO-APIC 2-edge timer
|
|
1: 0 0 0 0 4 0 0 0 IR-IO-APIC 1-edge i8042
|
|
7: 0 0 0 0 0 0 0 0 IR-IO-APIC 7-edge parport0
|
|
8: 0 0 0 0 0 1 0 0 IR-IO-APIC 8-edge rtc0
|
|
9: 0 0 0 0 0 0 0 0 IR-IO-APIC 9-fasteoi acpi
|
|
12: 0 0 0 6 0 0 0 0 IR-IO-APIC 12-edge i8042
|
|
16: 0 10256120 0 0 0 0 0 0 IR-IO-APIC 16-fasteoi uhci_hcd:usb3, ioc0
|
|
17: 0 0 0 0 0 0 0 0 IR-IO-APIC 17-fasteoi uhci_hcd:usb4, uhci_hcd:usb8
|
|
18: 0 0 0 2 0 0 0 0 IR-IO-APIC 18-fasteoi uhci_hcd:usb9, firewire_ohci
|
|
20: 0 0 66337 0 0 0 0 0 IR-IO-APIC 20-fasteoi ata_piix, ata_piix, i801_smbus
|
|
22: 0 0 0 0 0 0 0 0 IR-IO-APIC 22-fasteoi ehci_hcd:usb2, uhci_hcd:usb5
|
|
23: 0 0 0 0 0 0 29 0 IR-IO-APIC 23-fasteoi ehci_hcd:usb1, uhci_hcd:usb7
|
|
24: 0 0 0 0 0 0 0 0 DMAR-MSI 0-edge dmar0
|
|
25: 0 0 0 1 0 0 0 0 DMAR-MSI 1-edge dmar1
|
|
26: 0 0 0 0 0 0 0 0 IR-PCI-MSI-0000:00:01.0 0-edge PCIe bwctrl
|
|
27: 0 0 0 0 0 0 0 0 IR-PCI-MSI-0000:00:03.0 0-edge PCIe bwctrl
|
|
28: 0 0 0 0 0 0 0 0 IR-PCI-MSI-0000:00:07.0 0-edge PCIe bwctrl
|
|
29: 0 0 0 0 0 0 0 0 IR-PCI-MSI-0000:20:03.0 0-edge PCIe bwctrl
|
|
30: 0 0 0 0 0 0 0 0 IR-PCI-MSI-0000:20:07.0 0-edge PCIe bwctrl
|
|
31: 0 0 0 0 0 0 0 0 IR-PCI-MSI-0000:20:09.0 0-edge PCIe bwctrl
|
|
33: 81272 0 0 0 0 0 0 0 IR-PCI-MSI-0000:22:00.0 0-edge nic1
|
|
35: 0 0 0 0 0 0 0 0 IR-PCI-MSIX-0000:23:00.0 0-edge xhci_hcd
|
|
45: 0 0 0 0 0 17807701 0 0 IR-PCI-MSI-0000:22:00.1 0-edge nic2
|
|
46: 0 0 0 0 0 0 161 0 IR-PCI-MSIX-0000:24:00.0 0-edge xhci_hcd
|
|
54: 311 0 0 0 0 0 0 0 IR-IO-APIC 10-fasteoi snd_hda_intel:card1
|
|
55: 0 474 0 0 0 0 0 0 IR-PCI-MSI-0000:00:1b.0 0-edge snd_hda_intel:card0
|
|
57: 0 0 10081137 0 0 0 0 0 IR-PCI-MSI-0000:03:00.0 0-edge nvkm
|
|
58: 0 0 0 13475842 0 0 0 0 IR-PCI-MSI-0000:06:00.0 0-edge nic0
|
|
NMI: 18280 18304 18123 15907 17996 18367 17703 19542 Non-maskable interrupts
|
|
LOC: 121787175 119637613 115477037 106267867 114543694 119052737 113702305 115768250 Local timer interrupts
|
|
SPU: 0 0 0 0 0 0 0 0 Spurious interrupts
|
|
PMI: 18280 18304 18123 15907 17996 18367 17703 19542 Performance monitoring interrupts
|
|
IWI: 0 1 3 3 0 0 0 0 IRQ work interrupts
|
|
RTR: 2 0 0 0 0 0 0 0 APIC ICR read retries
|
|
RES: 4052216 3837800 4680252 4307394 4246786 4447727 4761575 5188926 Rescheduling interrupts
|
|
CAL: 13441336 11842092 10674627 9202650 9958865 10235624 9940176 10051599 Function call interrupts
|
|
TLB: 63745 63241 62885 62788 60811 64185 61278 63617 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: 497 498 498 498 498 498 498 498 Machine check polls
|
|
ERR: 0
|
|
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
|
|
|
|
--- 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) ===
|
|
58
|
|
=== nic1 IRQ list (first 40) ===
|
|
33
|
|
=== nic2 IRQ list (first 40) ===
|
|
45
|
|
|
|
--- RPS masks (non-zero only)
|
|
$ for q in /sys/class/net/*/queues/rx-*/rps_cpus; do
|
|
[ -e "$q" ] || continue
|
|
val=$(cat "$q")
|
|
[ "$val" != "0" ] && printf ' %s = %s\n' "$q" "$val"
|
|
done | head -n 60
|
|
/sys/class/net/bond0/queues/rx-0/rps_cpus = 00
|
|
/sys/class/net/bond0/queues/rx-10/rps_cpus = 00
|
|
/sys/class/net/bond0/queues/rx-11/rps_cpus = 00
|
|
/sys/class/net/bond0/queues/rx-12/rps_cpus = 00
|
|
/sys/class/net/bond0/queues/rx-13/rps_cpus = 00
|
|
/sys/class/net/bond0/queues/rx-14/rps_cpus = 00
|
|
/sys/class/net/bond0/queues/rx-15/rps_cpus = 00
|
|
/sys/class/net/bond0/queues/rx-1/rps_cpus = 00
|
|
/sys/class/net/bond0/queues/rx-2/rps_cpus = 00
|
|
/sys/class/net/bond0/queues/rx-3/rps_cpus = 00
|
|
/sys/class/net/bond0/queues/rx-4/rps_cpus = 00
|
|
/sys/class/net/bond0/queues/rx-5/rps_cpus = 00
|
|
/sys/class/net/bond0/queues/rx-6/rps_cpus = 00
|
|
/sys/class/net/bond0/queues/rx-7/rps_cpus = 00
|
|
/sys/class/net/bond0/queues/rx-8/rps_cpus = 00
|
|
/sys/class/net/bond0/queues/rx-9/rps_cpus = 00
|
|
/sys/class/net/datanet/queues/rx-0/rps_cpus = 00
|
|
/sys/class/net/fwbr509i0/queues/rx-0/rps_cpus = 00
|
|
/sys/class/net/fwbr509i1/queues/rx-0/rps_cpus = 00
|
|
/sys/class/net/fwln509i0/queues/rx-0/rps_cpus = 00
|
|
/sys/class/net/fwln509i1/queues/rx-0/rps_cpus = 00
|
|
/sys/class/net/fwpr509p0/queues/rx-0/rps_cpus = 00
|
|
/sys/class/net/fwpr509p1/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/nic1/queues/rx-0/rps_cpus = 00
|
|
/sys/class/net/nic2/queues/rx-0/rps_cpus = 00
|
|
/sys/class/net/tailscale0/queues/rx-0/rps_cpus = 00
|
|
/sys/class/net/tap509i0/queues/rx-0/rps_cpus = 00
|
|
/sys/class/net/tap509i1/queues/rx-0/rps_cpus = 00
|
|
/sys/class/net/tap51010i0/queues/rx-0/rps_cpus = 00
|
|
/sys/class/net/tap51011i0/queues/rx-0/rps_cpus = 00
|
|
/sys/class/net/tap51012i0/queues/rx-0/rps_cpus = 00
|
|
/sys/class/net/tap51013i0/queues/rx-0/rps_cpus = 00
|
|
/sys/class/net/tap5101i0/queues/rx-0/rps_cpus = 00
|
|
/sys/class/net/tap5105i0/queues/rx-0/rps_cpus = 00
|
|
/sys/class/net/tap5106i0/queues/rx-0/rps_cpus = 00
|
|
/sys/class/net/tap5107i0/queues/rx-0/rps_cpus = 00
|
|
/sys/class/net/tap5108i0/queues/rx-0/rps_cpus = 00
|
|
/sys/class/net/tap5109i0/queues/rx-0/rps_cpus = 00
|
|
/sys/class/net/tap5111i0/queues/rx-0/rps_cpus = 00
|
|
/sys/class/net/tap5112i0/queues/rx-0/rps_cpus = 00
|
|
/sys/class/net/tap53100i0/queues/rx-0/rps_cpus = 00
|
|
/sys/class/net/tap53101i0/queues/rx-0/rps_cpus = 00
|
|
/sys/class/net/tap53102i0/queues/rx-0/rps_cpus = 00
|
|
/sys/class/net/tap6000i0/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/fwbr509i0/queues/tx-0/xps_cpus: No such file or directory
|
|
cat: /sys/class/net/fwbr509i1/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/nic1/queues/tx-0/xps_cpus: No such file or directory
|
|
cat: /sys/class/net/nic2/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/tap509i0/queues/tx-0/xps_cpus: No such file or directory
|
|
cat: /sys/class/net/tap509i1/queues/tx-0/xps_cpus: No such file or directory
|
|
cat: /sys/class/net/tap51010i0/queues/tx-0/xps_cpus: No such file or directory
|
|
cat: /sys/class/net/tap51011i0/queues/tx-0/xps_cpus: No such file or directory
|
|
cat: /sys/class/net/tap51012i0/queues/tx-0/xps_cpus: No such file or directory
|
|
cat: /sys/class/net/tap51013i0/queues/tx-0/xps_cpus: No such file or directory
|
|
cat: /sys/class/net/tap5101i0/queues/tx-0/xps_cpus: No such file or directory
|
|
cat: /sys/class/net/tap5105i0/queues/tx-0/xps_cpus: No such file or directory
|
|
cat: /sys/class/net/tap5106i0/queues/tx-0/xps_cpus: No such file or directory
|
|
cat: /sys/class/net/tap5107i0/queues/tx-0/xps_cpus: No such file or directory
|
|
cat: /sys/class/net/tap5108i0/queues/tx-0/xps_cpus: No such file or directory
|
|
cat: /sys/class/net/tap5109i0/queues/tx-0/xps_cpus: No such file or directory
|
|
cat: /sys/class/net/tap5111i0/queues/tx-0/xps_cpus: No such file or directory
|
|
cat: /sys/class/net/tap5112i0/queues/tx-0/xps_cpus: No such file or directory
|
|
cat: /sys/class/net/tap53100i0/queues/tx-0/xps_cpus: No such file or directory
|
|
cat: /sys/class/net/tap53101i0/queues/tx-0/xps_cpus: No such file or directory
|
|
cat: /sys/class/net/tap53102i0/queues/tx-0/xps_cpus: No such file or directory
|
|
cat: /sys/class/net/tap6000i0/queues/tx-0/xps_cpus: No such file or directory
|
|
cat: /sys/class/net/vmbr0/queues/tx-0/xps_cpus: No such file or directory
|
|
/sys/class/net/bond0/queues/tx-0/xps_cpus = 00
|
|
/sys/class/net/bond0/queues/tx-10/xps_cpus = 00
|
|
/sys/class/net/bond0/queues/tx-11/xps_cpus = 00
|
|
/sys/class/net/bond0/queues/tx-12/xps_cpus = 00
|
|
/sys/class/net/bond0/queues/tx-13/xps_cpus = 00
|
|
/sys/class/net/bond0/queues/tx-14/xps_cpus = 00
|
|
/sys/class/net/bond0/queues/tx-15/xps_cpus = 00
|
|
/sys/class/net/bond0/queues/tx-1/xps_cpus = 00
|
|
/sys/class/net/bond0/queues/tx-2/xps_cpus = 00
|
|
/sys/class/net/bond0/queues/tx-3/xps_cpus = 00
|
|
/sys/class/net/bond0/queues/tx-4/xps_cpus = 00
|
|
/sys/class/net/bond0/queues/tx-5/xps_cpus = 00
|
|
/sys/class/net/bond0/queues/tx-6/xps_cpus = 00
|
|
/sys/class/net/bond0/queues/tx-7/xps_cpus = 00
|
|
/sys/class/net/bond0/queues/tx-8/xps_cpus = 00
|
|
/sys/class/net/bond0/queues/tx-9/xps_cpus = 00
|
|
/sys/class/net/datanet/queues/tx-0/xps_cpus =
|
|
/sys/class/net/fwbr509i0/queues/tx-0/xps_cpus =
|
|
/sys/class/net/fwbr509i1/queues/tx-0/xps_cpus =
|
|
/sys/class/net/fwln509i0/queues/tx-0/xps_cpus = 00
|
|
/sys/class/net/fwln509i1/queues/tx-0/xps_cpus = 00
|
|
/sys/class/net/fwpr509p0/queues/tx-0/xps_cpus = 00
|
|
/sys/class/net/fwpr509p1/queues/tx-0/xps_cpus = 00
|
|
/sys/class/net/lo/queues/tx-0/xps_cpus =
|
|
/sys/class/net/nic0/queues/tx-0/xps_cpus = 00
|
|
/sys/class/net/nic1/queues/tx-0/xps_cpus =
|
|
/sys/class/net/nic2/queues/tx-0/xps_cpus =
|
|
/sys/class/net/tailscale0/queues/tx-0/xps_cpus =
|
|
/sys/class/net/tap509i0/queues/tx-0/xps_cpus =
|
|
/sys/class/net/tap509i1/queues/tx-0/xps_cpus =
|
|
/sys/class/net/tap51010i0/queues/tx-0/xps_cpus =
|
|
/sys/class/net/tap51011i0/queues/tx-0/xps_cpus =
|
|
/sys/class/net/tap51012i0/queues/tx-0/xps_cpus =
|
|
/sys/class/net/tap51013i0/queues/tx-0/xps_cpus =
|
|
/sys/class/net/tap5101i0/queues/tx-0/xps_cpus =
|
|
/sys/class/net/tap5105i0/queues/tx-0/xps_cpus =
|
|
/sys/class/net/tap5106i0/queues/tx-0/xps_cpus =
|
|
/sys/class/net/tap5107i0/queues/tx-0/xps_cpus =
|
|
/sys/class/net/tap5108i0/queues/tx-0/xps_cpus =
|
|
/sys/class/net/tap5109i0/queues/tx-0/xps_cpus =
|
|
/sys/class/net/tap5111i0/queues/tx-0/xps_cpus =
|
|
/sys/class/net/tap5112i0/queues/tx-0/xps_cpus =
|
|
/sys/class/net/tap53100i0/queues/tx-0/xps_cpus =
|
|
/sys/class/net/tap53101i0/queues/tx-0/xps_cpus =
|
|
/sys/class/net/tap53102i0/queues/tx-0/xps_cpus =
|
|
/sys/class/net/tap6000i0/queues/tx-0/xps_cpus =
|
|
/sys/class/net/vmbr0/queues/tx-0/xps_cpus =
|
|
|
|
--- RFS flow counts
|
|
$ for q in /sys/class/net/*/queues/rx-*/rps_flow_cnt; do
|
|
[ -e "$q" ] || continue
|
|
printf ' %s = %s\n' "$q" "$(cat "$q")"
|
|
done | head -n 60
|
|
/sys/class/net/bond0/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/bond0/queues/rx-10/rps_flow_cnt = 0
|
|
/sys/class/net/bond0/queues/rx-11/rps_flow_cnt = 0
|
|
/sys/class/net/bond0/queues/rx-12/rps_flow_cnt = 0
|
|
/sys/class/net/bond0/queues/rx-13/rps_flow_cnt = 0
|
|
/sys/class/net/bond0/queues/rx-14/rps_flow_cnt = 0
|
|
/sys/class/net/bond0/queues/rx-15/rps_flow_cnt = 0
|
|
/sys/class/net/bond0/queues/rx-1/rps_flow_cnt = 0
|
|
/sys/class/net/bond0/queues/rx-2/rps_flow_cnt = 0
|
|
/sys/class/net/bond0/queues/rx-3/rps_flow_cnt = 0
|
|
/sys/class/net/bond0/queues/rx-4/rps_flow_cnt = 0
|
|
/sys/class/net/bond0/queues/rx-5/rps_flow_cnt = 0
|
|
/sys/class/net/bond0/queues/rx-6/rps_flow_cnt = 0
|
|
/sys/class/net/bond0/queues/rx-7/rps_flow_cnt = 0
|
|
/sys/class/net/bond0/queues/rx-8/rps_flow_cnt = 0
|
|
/sys/class/net/bond0/queues/rx-9/rps_flow_cnt = 0
|
|
/sys/class/net/datanet/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/fwbr509i0/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/fwbr509i1/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/fwln509i0/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/fwln509i1/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/fwpr509p0/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/fwpr509p1/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/nic1/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/nic2/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/tailscale0/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/tap509i0/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/tap509i1/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/tap51010i0/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/tap51011i0/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/tap51012i0/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/tap51013i0/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/tap5101i0/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/tap5105i0/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/tap5106i0/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/tap5107i0/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/tap5108i0/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/tap5109i0/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/tap5111i0/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/tap5112i0/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/tap53100i0/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/tap53101i0/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/tap53102i0/queues/rx-0/rps_flow_cnt = 0
|
|
/sys/class/net/tap6000i0/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
|
|
000775c3 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
|
|
0006ae70 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000001 00000000 00000000
|
|
000696f8 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000002 00000000 00000000
|
|
01d2dcd1 00000000 00002f46 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000003 00000000 00000000
|
|
0008d282 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000004 00000000 00000000
|
|
023cc74b 00000000 00000009 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000005 00000000 00000000
|
|
00073443 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000006 00000000 00000000
|
|
000726b3 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=000775c3 dropped=00000000 time_squeezed=00000000 cpu_collision=00000000 rps_received=00000000 flow_limit=00000000
|
|
cpu1 total=0006ae70 dropped=00000000 time_squeezed=00000000 cpu_collision=00000000 rps_received=00000000 flow_limit=00000000
|
|
cpu2 total=000696f8 dropped=00000000 time_squeezed=00000000 cpu_collision=00000000 rps_received=00000000 flow_limit=00000000
|
|
cpu3 total=01d2dce7 dropped=00000000 time_squeezed=00000000 cpu_collision=00000000 rps_received=00000000 flow_limit=00000000
|
|
cpu4 total=0008d282 dropped=00000000 time_squeezed=00000000 cpu_collision=00000000 rps_received=00000000 flow_limit=00000000
|
|
cpu5 total=023cc74b dropped=00000000 time_squeezed=00000000 cpu_collision=00000000 rps_received=00000000 flow_limit=00000000
|
|
cpu6 total=00073443 dropped=00000000 time_squeezed=00000000 cpu_collision=00000000 rps_received=00000000 flow_limit=00000000
|
|
cpu7 total=000726b3 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 8170 0.0
|
|
IpFragFails 0 0.0
|
|
TcpAttemptFails 62 0.0
|
|
TcpRetransSegs 10403 0.0
|
|
TcpInErrs 1 0.0
|
|
Ip6ReasmFails 0 0.0
|
|
Ip6FragFails 0 0.0
|
|
TcpExtSyncookiesFailed 1 0.0
|
|
TcpExtEmbryonicRsts 1 0.0
|
|
TcpExtLockDroppedIcmps 0 0.0
|
|
TcpExtListenOverflows 0 0.0
|
|
TcpExtListenDrops 0 0.0
|
|
TcpExtTCPLossUndo 4 0.0
|
|
TcpExtTCPLostRetransmit 1523 0.0
|
|
TcpExtTCPRenoFailures 0 0.0
|
|
TcpExtTCPSackFailures 0 0.0
|
|
TcpExtTCPLossFailures 16 0.0
|
|
TcpExtTCPFastRetrans 7004 0.0
|
|
TcpExtTCPSlowStartRetrans 724 0.0
|
|
TcpExtTCPLossProbes 3438 0.0
|
|
TcpExtTCPLossProbeRecovery 39 0.0
|
|
TcpExtTCPRenoRecoveryFail 0 0.0
|
|
TcpExtTCPSackRecoveryFail 81 0.0
|
|
TcpExtTCPAbortOnData 1179 0.0
|
|
TcpExtTCPAbortOnClose 4 0.0
|
|
TcpExtTCPAbortOnMemory 0 0.0
|
|
TcpExtTCPAbortOnTimeout 1 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 127 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: 517
|
|
TCP: 87 (estab 18, closed 45, orphaned 0, timewait 43)
|
|
|
|
Transport Total IP IPv6
|
|
RAW 0 0 0
|
|
UDP 18 10 8
|
|
TCP 42 29 13
|
|
INET 60 39 21
|
|
FRAG 0 0 0
|
|
|
|
|
|
--- ss -t -m (top TCP with skmem/cwnd/rto)
|
|
$ ss -tno state established ( dport != :22 and sport != :22 ) -m
|
|
Recv-Q Send-Q Local Address:Port Peer Address:Port
|
|
0 0 10.100.100.5:2049 10.100.100.3:959
|
|
skmem:(r0,rb259792,t0,tb87040,f0,w0,o0,bl0,d3)
|
|
0 0 10.100.100.5:2049 10.100.100.7:853
|
|
skmem:(r0,rb131072,t0,tb130560,f0,w0,o0,bl0,d1)
|
|
0 0 192.168.0.20:39994 199.165.136.100:443 timer:(keepalive,20sec,0)
|
|
skmem:(r0,rb204874,t0,tb87040,f0,w0,o0,bl0,d0)
|
|
0 0 10.100.100.5:2049 10.100.100.6:888
|
|
skmem:(r0,rb131072,t0,tb130560,f0,w0,o0,bl0,d0)
|
|
0 0 192.168.0.20:50426 178.156.152.91:443 timer:(keepalive,1.255sec,0)
|
|
skmem:(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0)
|
|
0 0 10.100.100.5:946 10.100.100.4:2049 timer:(keepalive,1min,0)
|
|
skmem:(r0,rb558212,t0,tb696320,f0,w0,o0,bl0,d952)
|
|
0 0 192.168.0.20:35876 192.200.0.110:443 timer:(keepalive,828ms,0)
|
|
skmem:(r0,rb131072,t0,tb87040,f0,w0,o0,bl0,d0)
|
|
0 0 192.168.0.20:33432 9.9.9.9:443 timer:(keepalive,18sec,0)
|
|
skmem:(r0,rb87380,t0,tb130560,f0,w0,o0,bl0,d0)
|
|
0 0 10.100.100.5:2049 10.100.100.7:734
|
|
skmem:(r0,rb131072,t0,tb130560,f0,w0,o0,bl0,d0)
|
|
0 0 10.100.100.5:2049 10.100.100.6:698
|
|
skmem:(r0,rb131072,t0,tb130560,f0,w0,o0,bl0,d0)
|
|
0 0 10.100.100.5:2049 10.100.100.1:922
|
|
skmem:(r0,rb259936,t0,tb87040,f0,w0,o0,bl0,d6)
|
|
0 0 10.100.100.5:2049 10.100.100.6:810
|
|
skmem:(r0,rb131072,t0,tb130560,f0,w0,o0,bl0,d0)
|
|
0 0 192.168.0.20:44294 209.177.156.94:443 timer:(keepalive,18sec,0)
|
|
skmem:(r0,rb204970,t0,tb87040,f0,w0,o0,bl0,d0)
|
|
0 0 10.100.100.5:2049 10.100.100.6:694
|
|
skmem:(r0,rb131072,t0,tb130560,f0,w0,o0,bl0,d0)
|
|
0 0 10.100.100.5:2049 10.100.100.7:1007
|
|
skmem:(r0,rb131072,t0,tb130560,f0,w0,o0,bl0,d2)
|
|
0 0 10.100.100.5:2049 10.100.100.7:749
|
|
skmem:(r0,rb131072,t0,tb130560,f0,w0,o0,bl0,d1)
|
|
0 0 [::ffff:100.87.135.12]:45876 [::ffff:100.107.35.78]:41398 timer:(keepalive,5.138sec,0)
|
|
skmem:(r0,rb439424,t0,tb87040,f0,w0,o0,bl0,d8106)
|
|
|
|
--- ss -ti (TCP internals)
|
|
$ ss -ti
|
|
State Recv-Q Send-Q Local Address:Port Peer Address:Port
|
|
ESTAB 0 0 10.100.100.5:nfs 10.100.100.3:959
|
|
cubic wscale:10,10 rto:215 rtt:14.602/16.824 ato:44 mss:1448 pmtu:1500 rcvmss:536 advmss:1448 cwnd:2 ssthresh:2 bytes_sent:10216584 bytes_retrans:1240 bytes_acked:10215344 bytes_received:9221016 segs_out:54641 segs_in:100994 data_segs_out:54634 data_segs_in:54569 send 1.59Mbps lastsnd:8948 lastrcv:8948 lastack:8906 pacing_rate 1.9Mbps delivery_rate 8.15Mbps delivered:54632 app_limited busy:629992ms retrans:0/7 dsack_dups:4 rcv_rtt:212619 rcv_space:64948 rcv_ssthresh:129416 minrtt:1.663 snd_wnd:1346560 rcv_wnd:130048
|
|
ESTAB 0 0 10.100.100.5:nfs 10.100.100.7:domain-s
|
|
bbr wscale:12,12 rto:213 rtt:12.12/17.805 ato:49 mss:1448 pmtu:1500 rcvmss:536 advmss:1448 cwnd:140 bytes_sent:43132 bytes_retrans:328 bytes_acked:42804 bytes_received:37328 segs_out:224 segs_in:417 data_segs_out:221 data_segs_in:220 bbr:(bw:28.3Mbps,mrtt:0.41,pacing_gain:2.88672,cwnd_gain:2.88672) send 134Mbps lastsnd:7052 lastrcv:7052 lastack:7051 pacing_rate 687Mbps delivery_rate 28.3Mbps delivered:220 app_limited busy:3116ms retrans:0/2 rcv_space:14480 rcv_ssthresh:64088 minrtt:0.41 snd_wnd:45056 rcv_wnd:65536
|
|
ESTAB 0 0 192.168.0.20:39994 199.165.136.100:https
|
|
cubic wscale:7,10 rto:265 rtt:64.756/15.869 ato:40 mss:1448 pmtu:1500 rcvmss:1448 advmss:1448 cwnd:10 bytes_sent:4027371 bytes_acked:4027372 bytes_received:835181 segs_out:17122 segs_in:13244 data_segs_out:8575 data_segs_in:8565 send 1.79Mbps lastsnd:9392 lastrcv:9323 lastack:9323 pacing_rate 3.58Mbps delivery_rate 544kbps delivered:8576 app_limited busy:564285ms rcv_rtt:47144.2 rcv_space:66024 rcv_ssthresh:76654 minrtt:42.276 snd_wnd:80384 rcv_wnd:76800
|
|
ESTAB 0 0 10.100.100.5:nfs 10.100.100.6:888
|
|
bbr wscale:12,12 rto:213 rtt:12.076/18.074 ato:49 mss:1448 pmtu:1500 rcvmss:536 advmss:1448 cwnd:94 bytes_sent:17600 bytes_acked:17600 bytes_received:14532 segs_out:85 segs_in:150 data_segs_out:84 data_segs_in:84 bbr:(bw:28.5Mbps,mrtt:0.407,pacing_gain:2.88672,cwnd_gain:2.88672) send 90.2Mbps lastsnd:11240 lastrcv:11240 lastack:11199 pacing_rate 665Mbps delivery_rate 28.5Mbps delivered:85 app_limited busy:572ms rcv_space:14480 rcv_ssthresh:64088 minrtt:0.407 snd_wnd:45056 rcv_wnd:65536
|
|
ESTAB 0 0 192.168.0.20:50426 178.156.152.91:https
|
|
cubic wscale:7,10 rto:244 rtt:43.999/0.706 ato:40 mss:1448 pmtu:1500 rcvmss:1448 advmss:1448 cwnd:10 bytes_sent:168136 bytes_acked:168137 bytes_received:26183 segs_out:2516 segs_in:2513 data_segs_out:867 data_segs_in:816 send 2.63Mbps lastsnd:9577 lastrcv:59173 lastack:9533 pacing_rate 5.27Mbps delivery_rate 745kbps delivered:868 app_limited busy:37794ms retrans:0/1 rcv_space:14480 rcv_ssthresh:73200 minrtt:41.518 snd_wnd:197376 rcv_wnd:73728 rehash:1
|
|
ESTAB 0 0 10.100.100.5:946 10.100.100.4:nfs
|
|
cubic wscale:9,10 rto:208 rtt:7.761/5.501 ato:40 mss:1448 pmtu:1500 rcvmss:1448 advmss:1448 cwnd:18 ssthresh:45 bytes_sent:1558098196 bytes_retrans:2266532 bytes_acked:1555831665 bytes_received:10000290128 segs_out:4845514 segs_in:7565131 data_segs_out:1188016 data_segs_in:7186304 send 26.9Mbps lastsnd:708 lastrcv:707 lastack:707 pacing_rate 53.7Mbps delivery_rate 8.59Mbps delivered:1187708 app_limited busy:2905606ms retrans:0/2310 dsack_dups:2001 rcv_rtt:7.757 rcv_space:143352 rcv_ssthresh:370687 minrtt:1.584 rcv_ooopack:3546 snd_wnd:644608 rcv_wnd:370688 rehash:74
|
|
ESTAB 0 0 192.168.0.20:35876 192.200.0.110:https
|
|
cubic wscale:10,10 rto:342 rtt:141.752/1.402 ato:40 mss:1448 pmtu:1500 rcvmss:1448 advmss:1448 cwnd:10 bytes_sent:20067 bytes_acked:20068 bytes_received:406619 segs_out:6330 segs_in:6340 data_segs_out:82 data_segs_in:3279 send 817kbps lastsnd:353567 lastrcv:29202 lastack:29202 pacing_rate 1.63Mbps delivery_rate 415kbps delivered:83 app_limited busy:9222ms rcv_rtt:643 rcv_space:16879 rcv_ssthresh:83861 minrtt:139.765 snd_wnd:76800 rcv_wnd:83968
|
|
ESTAB 0 0 192.168.0.20:33432 9.9.9.9:https
|
|
bbr wscale:11,12 rto:212 rtt:11.812/0.903 ato:40 mss:1448 pmtu:1500 rcvmss:1448 advmss:1448 cwnd:18 bytes_sent:7633 bytes_acked:7634 bytes_received:8105 segs_out:128 segs_in:117 data_segs_out:112 data_segs_in:61 bbr:(bw:2.38Mbps,mrtt:10.159,pacing_gain:2.88672,cwnd_gain:2.88672) send 17.7Mbps lastsnd:9128 lastrcv:9118 lastack:9118 pacing_rate 22.2Mbps delivery_rate 2.38Mbps delivered:113 app_limited busy:692ms rcv_space:14480 rcv_ssthresh:55081 minrtt:10.159 snd_wnd:45056 rcv_wnd:57344
|
|
ESTAB 0 0 10.100.100.5:nfs 10.100.100.7:734
|
|
bbr wscale:12,12 rto:213 rtt:12.516/17.924 ato:60 mss:1448 pmtu:1500 rcvmss:536 advmss:1448 cwnd:138 bytes_sent:40580 bytes_acked:40580 bytes_received:37396 segs_out:221 segs_in:414 data_segs_out:220 data_segs_in:220 bbr:(bw:28.5Mbps,mrtt:0.407,pacing_gain:2.88672,cwnd_gain:2.88672) send 128Mbps lastsnd:13374 lastrcv:13374 lastack:13373 pacing_rate 681Mbps delivery_rate 28.5Mbps delivered:221 app_limited busy:2587ms rcv_space:14480 rcv_ssthresh:64088 minrtt:0.407 snd_wnd:45056 rcv_wnd:65536
|
|
ESTAB 0 0 10.100.100.5:nfs 10.100.100.6:698
|
|
bbr wscale:12,12 rto:216 rtt:15.171/20.578 ato:47 mss:1448 pmtu:1500 rcvmss:536 advmss:1448 cwnd:111 bytes_sent:20168 bytes_acked:20168 bytes_received:17068 segs_out:104 segs_in:167 data_segs_out:101 data_segs_in:101 bbr:(bw:31.6Mbps,mrtt:0.367,pacing_gain:2.88672,cwnd_gain:2.88672) send 84.8Mbps lastsnd:11244 lastrcv:11244 lastack:11202 pacing_rate 680Mbps delivery_rate 31.6Mbps delivered:102 app_limited busy:677ms rcv_space:14480 rcv_ssthresh:64088 minrtt:0.367 snd_wnd:45056 rcv_wnd:65536
|
|
ESTAB 0 0 100.87.135.12:ssh 100.101.187.119:56778
|
|
bbr wscale:7,12 rto:202 rtt:1.659/1.717 ato:40 mss:1228 pmtu:1280 rcvmss:1228 advmss:1228 cwnd:27 bytes_sent:5449 bytes_retrans:8 bytes_acked:5441 bytes_received:3941 segs_out:25 segs_in:24 data_segs_out:18 data_segs_in:14 bbr:(bw:33.9Mbps,mrtt:0.54,pacing_gain:2.88672,cwnd_gain:2.88672) send 160Mbps lastsnd:1052 lastrcv:1052 lastack:1051 pacing_rate 520Mbps delivery_rate 33.9Mbps delivered:19 app_limited busy:31ms retrans:0/1 dsack_dups:1 rcv_rtt:9 rcv_space:12280 rcv_ssthresh:78504 minrtt:0.54 snd_wnd:76544 rcv_wnd:81920
|
|
ESTAB 0 0 10.100.100.5:nfs 10.100.100.1:922
|
|
cubic wscale:10,10 rto:214 rtt:13.619/14.829 ato:40 mss:1448 pmtu:1500 rcvmss:536 advmss:1448 cwnd:2 ssthresh:2 bytes_sent:2767368 bytes_retrans:1496 bytes_acked:2765872 bytes_received:2355180 segs_out:14075 segs_in:23438 data_segs_out:14058 data_segs_in:13933 send 1.7Mbps lastsnd:2245 lastrcv:2245 lastack:2202 pacing_rate 2.04Mbps delivery_rate 17.5Mbps delivered:14053 app_limited busy:264211ms retrans:0/8 dsack_dups:2 rcv_rtt:196090 rcv_space:64984 rcv_ssthresh:129488 minrtt:1.116 snd_wnd:169984 rcv_wnd:130048
|
|
ESTAB 0 0 10.100.100.5:nfs 10.100.100.6:810
|
|
bbr wscale:12,12 rto:209 rtt:8.334/13.486 ato:48 mss:1448 pmtu:1500 rcvmss:536 advmss:1448 cwnd:98 bytes_sent:15844 bytes_acked:15844 bytes_received:15016 segs_out:89 segs_in:157 data_segs_out:88 data_segs_in:88 bbr:(bw:28.6Mbps,mrtt:0.405,pacing_gain:2.88672,cwnd_gain:2.88672) send 136Mbps lastsnd:5820 lastrcv:5820 lastack:5819 pacing_rate 728Mbps delivery_rate 28.6Mbps delivered:89 app_limited busy:525ms rcv_space:14480 rcv_ssthresh:64088 minrtt:0.405 snd_wnd:45056 rcv_wnd:65536
|
|
ESTAB 0 0 192.168.0.20:44294 209.177.156.94:https
|
|
cubic wscale:7,10 rto:213 rtt:12.339/1.278 ato:40 mss:1448 pmtu:1500 rcvmss:1448 advmss:1448 cwnd:10 bytes_sent:118725 bytes_acked:118726 bytes_received:208195 segs_out:3142 segs_in:2982 data_segs_out:682 data_segs_in:1391 send 9.39Mbps lastsnd:11400 lastrcv:11386 lastack:11386 pacing_rate 18.8Mbps delivery_rate 3.47Mbps delivered:683 app_limited busy:4565ms rcv_rtt:94004.2 rcv_space:66055 rcv_ssthresh:131490 minrtt:13.179 snd_wnd:197120 rcv_wnd:132096
|
|
ESTAB 0 0 10.100.100.5:nfs 10.100.100.6:694
|
|
bbr wscale:12,12 rto:207 rtt:6.501/10.551 ato:45 mss:1448 pmtu:1500 rcvmss:536 advmss:1448 cwnd:97 bytes_sent:16656 bytes_acked:16656 bytes_received:14912 segs_out:88 segs_in:153 data_segs_out:87 data_segs_in:87 bbr:(bw:26.9Mbps,mrtt:0.43,pacing_gain:2.88672,cwnd_gain:2.88672) send 173Mbps lastsnd:5482 lastrcv:5482 lastack:5481 pacing_rate 720Mbps delivery_rate 26.9Mbps delivered:88 app_limited busy:735ms rcv_space:14480 rcv_ssthresh:64088 minrtt:0.43 snd_wnd:45056 rcv_wnd:65536
|
|
ESTAB 0 0 10.100.100.5:nfs 10.100.100.7:1007
|
|
bbr wscale:12,12 rto:213 rtt:12.328/17.89 ato:57 mss:1448 pmtu:1500 rcvmss:536 advmss:1448 cwnd:138 bytes_sent:41548 bytes_retrans:328 bytes_acked:41220 bytes_received:37336 segs_out:227 segs_in:416 data_segs_out:222 data_segs_in:222 bbr:(bw:26.6Mbps,mrtt:0.436,pacing_gain:2.88672,cwnd_gain:2.88672) send 130Mbps lastsnd:7249 lastrcv:7249 lastack:7248 pacing_rate 698Mbps delivery_rate 26.6Mbps delivered:221 app_limited busy:3283ms retrans:0/2 rcv_space:14480 rcv_ssthresh:64088 minrtt:0.436 snd_wnd:45056 rcv_wnd:65536
|
|
ESTAB 0 0 10.100.100.5:nfs 10.100.100.7:kerberos-adm
|
|
bbr wscale:12,12 rto:211 rtt:10.603/16.148 ato:59 mss:1448 pmtu:1500 rcvmss:536 advmss:1448 cwnd:140 bytes_sent:45016 bytes_retrans:328 bytes_acked:44688 bytes_received:39356 segs_out:240 segs_in:420 data_segs_out:235 data_segs_in:234 bbr:(bw:35.9Mbps,mrtt:0.422,pacing_gain:2.88672,cwnd_gain:2.88672) send 153Mbps lastsnd:13386 lastrcv:13387 lastack:13385 pacing_rate 669Mbps delivery_rate 35.9Mbps delivered:234 app_limited busy:3675ms retrans:0/2 rcv_space:14480 rcv_ssthresh:64088 minrtt:0.422 snd_wnd:45056 rcv_wnd:65536
|
|
ESTAB 0 0 [::ffff:100.87.135.12]:45876 [::ffff:100.107.35.78]:41398
|
|
cubic wscale:11,10 rto:245 rtt:44.915/1.212 ato:40 mss:1228 pmtu:1280 rcvmss:688 advmss:1228 cwnd:7 ssthresh:7 bytes_sent:3398767 bytes_retrans:180 bytes_acked:3398587 bytes_received:605439 segs_out:38980 segs_in:32762 data_segs_out:14564 data_segs_in:13749 send 1.53Mbps lastsnd:25229 lastrcv:25185 lastack:9852 pacing_rate 1.84Mbps delivery_rate 1.36Mbps delivered:14562 app_limited busy:395483ms retrans:0/5 dsack_dups:2 rcv_rtt:400132 rcv_space:65183 rcv_ssthresh:40288 minrtt:43.293 rcv_ooopack:1 snd_wnd:528384 rcv_wnd:65536 rehash:4
|
|
|
|
--- /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 115588 389331 62 17 18 12960162 8971246 10403 1 3009 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 115588 389331 62 17 18 12960162 8971246 10403 1 3009 0
|
|
Udp: InDatagrams NoPorts InErrors OutDatagrams RcvbufErrors SndbufErrors InCsumErrors IgnoredMulti MemErrors
|
|
|
|
--- nstat TCP summary
|
|
$ nstat -az Tcp_RetransSegs Tcp_InErrs Tcp_OutRsts Tcp_ActiveOpens Tcp_PassiveOpens
|
|
#kernel
|
|
|
|
###############################################################################
|
|
# 14. STORAGE: BLOCK DEVICES
|
|
###############################################################################
|
|
|
|
--- lsblk (key cols)
|
|
$ lsblk -o NAME,SIZE,TYPE,MOUNTPOINT,FSTYPE,MODEL,SERIAL,STATE,ROTA,DISC-GRAN,DISC-MAX
|
|
NAME SIZE TYPE MOUNTPOINT FSTYPE MODEL SERIAL STATE ROTA DISC-GRAN DISC-MAX
|
|
sda 931.5G disk /mnt/pfv-tsys5/S3 ext4 ST1000VN002-2EY102 Z9C13271 running 1 0B 0B
|
|
sdb 465.8G disk /mnt/pfv-tsys5/S4 ext4 TOSHIBA DT01ACA050 Z58M3U4KS running 1 0B 0B
|
|
sdc 238.5G disk Samsung SSD 860 PRO 256GB S45GNG0K805039L running 0 0B 0B
|
|
└─sdc1 238.5G part /mnt/pfv-tsys5/ssd ext4 0 0B 0B
|
|
sdd 1.8T disk HITACHI HUS724020ALA640 P2G2SZUJ running 1 0B 0B
|
|
├─sdd1 1007K part 1 0B 0B
|
|
├─sdd2 1G part vfat 1 0B 0B
|
|
└─sdd3 1.8T part LVM2_member 1 0B 0B
|
|
├─pve-swap 8G lvm [SWAP] swap running 1 0B 0B
|
|
├─pve-root 96G lvm / ext4 running 1 0B 0B
|
|
├─pve-data_tmeta 15.9G lvm running 1 0B 0B
|
|
│ └─pve-data-tpool 1.7T lvm running 1 0B 0B
|
|
│ ├─pve-data 1.7T lvm running 1 0B 0B
|
|
│ ├─pve-vm--5112--disk--0 288G lvm running 1 64K 64M
|
|
│ └─pve-base--5100--disk--0 32G lvm running 1 64K 64M
|
|
└─pve-data_tdata 1.7T lvm running 1 0B 0B
|
|
└─pve-data-tpool 1.7T lvm running 1 0B 0B
|
|
├─pve-data 1.7T lvm running 1 0B 0B
|
|
├─pve-vm--5112--disk--0 288G lvm running 1 64K 64M
|
|
└─pve-base--5100--disk--0 32G lvm running 1 64K 64M
|
|
sde 931.5G disk /mnt/pfv-tsys5/S1 ext4 ST1000VN002-2EY102 Z9C132K8 running 1 0B 0B
|
|
sdf 931.5G disk /mnt/pfv-tsys5/S2 ext4 ST1000VN002-2EY102 Z9C132TV running 1 0B 0B
|
|
|
|
--- lsblk -t
|
|
$ lsblk -t
|
|
NAME ALIGNMENT MIN-IO OPT-IO PHY-SEC LOG-SEC ROTA SCHED RQ-SIZE RA WSAME
|
|
sda 0 4096 0 4096 512 1 mq-deadline 2 8192 0B
|
|
sdb 0 4096 0 4096 512 1 mq-deadline 2 8192 0B
|
|
sdc 0 512 131072 512 512 0 mq-deadline 254 4096 0B
|
|
└─sdc1 0 512 131072 512 512 0 mq-deadline 254 4096 0B
|
|
sdd 0 512 131072 512 512 1 mq-deadline 254 4096 0B
|
|
├─sdd1 0 512 131072 512 512 1 mq-deadline 254 4096 0B
|
|
├─sdd2 0 512 131072 512 512 1 mq-deadline 254 4096 0B
|
|
└─sdd3 0 512 131072 512 512 1 mq-deadline 254 4096 0B
|
|
├─pve-swap 0 512 131072 512 512 1 4096 0B
|
|
├─pve-root 0 512 131072 512 512 1 4096 0B
|
|
├─pve-data_tmeta 0 512 131072 512 512 1 4096 0B
|
|
│ └─pve-data-tpool 0 512 131072 512 512 1 4096 0B
|
|
│ ├─pve-data 0 512 131072 512 512 1 4096 0B
|
|
│ ├─pve-vm--5112--disk--0 0 512 131072 512 512 1 4096 0B
|
|
│ └─pve-base--5100--disk--0 0 512 131072 512 512 1 4096 0B
|
|
└─pve-data_tdata 0 512 131072 512 512 1 4096 0B
|
|
└─pve-data-tpool 0 512 131072 512 512 1 4096 0B
|
|
├─pve-data 0 512 131072 512 512 1 4096 0B
|
|
├─pve-vm--5112--disk--0 0 512 131072 512 512 1 4096 0B
|
|
└─pve-base--5100--disk--0 0 512 131072 512 512 1 4096 0B
|
|
sde 0 512 131072 512 512 1 mq-deadline 254 4096 0B
|
|
sdf 0 512 131072 512 512 1 mq-deadline 254 4096 0B
|
|
|
|
--- lsblk -O (everything, capped)
|
|
$ lsblk -O
|
|
ALIGNMENT ID-LINK ID DISC-ALN DAX DISC-GRAN DISK-SEQ DISC-MAX DISC-ZERO FSAVAIL FSROOTS FSSIZE FSTYPE FSUSED FSUSE% FSVER GROUP HCTL HOTPLUG KNAME LABEL LOG-SEC MAJ:MIN MAJ MIN MIN-IO MODE MODEL MQ NAME OPT-IO OWNER PARTFLAGS PARTLABEL PARTN PARTTYPE PARTTYPENAME PARTUUID PATH PHY-SEC PKNAME PTTYPE PTUUID RA RAND REV RM RO ROTA RQ-SIZE SCHED SERIAL SIZE START STATE SUBSYSTEMS MOUNTPOINT MOUNTPOINTS TRAN TYPE UUID VENDOR WSAME WWN ZONED ZONE-SZ ZONE-WGRAN ZONE-APP ZONE-NR ZONE-OMAX ZONE-AMAX
|
|
0 wwn-0x5000c500a1f41c72 0x5000c500a1f41c72 0 0 0B 9 0B 0 869.2G / 915.8G ext4 2M 0% 1.0 disk 0:0:0:0 0 sda 512 8:0 8 0 4096 brw-rw---- ST1000VN002-2EY102 1 sda 0 root /dev/sda 4096 8192 1 SC60 0 0 1 2 mq-deadline Z9C13271 931.5G running block:scsi:pci /mnt/pfv-tsys5/S3 /mnt/pfv-tsys5/S3 ata disk f0ce9391-a061-4c99-9257-3781dbfd0b63 ATA 0B 0x5000c500a1f41c72 none 0B 0B 0B 0 0 0
|
|
0 wwn-0x5000039fe4e4e05d 0x5000039fe4e4e05d 0 0 0B 10 0B 0 434.1G / 457.4G ext4 2M 0% 1.0 disk 1:0:0:0 0 sdb 512 8:16 8 16 4096 brw-rw---- TOSHIBA DT01ACA050 1 sdb 0 root /dev/sdb 4096 8192 1 MS1OA7S0 0 0 1 2 mq-deadline Z58M3U4KS 465.8G running block:scsi:pci /mnt/pfv-tsys5/S4 /mnt/pfv-tsys5/S4 ata disk 67accd89-6ff5-4560-8f07-47fbdf76db6d ATA 0B 0x5000039fe4e4e05d none 0B 0B 0B 0 0 0
|
|
0 wwn-0x5002538e70081ee4 0x5002538e70081ee4 0 0 0B 11 0B 0 disk 4:0:0:0 0 sdc 512 8:32 8 32 512 brw-rw---- Samsung SSD 860 PRO 256GB 1 sdc 131072 root /dev/sdc 512 gpt cf34f3d7-9bda-41db-b030-121fbe5c26fe 4096 0 RVM01B6Q 0 0 0 254 mq-deadline S45GNG0K805039L 238.5G running block:scsi:pci sas disk ATA 0B 0x5002538e70081ee4 none 0B 0B 0B 0 0 0
|
|
0 wwn-0x5002538e70081ee4-part1 0x5002538e70081ee4-part1 0 0 0B 11 0B 0 139.3G / 233.7G ext4 82.5G 35% 1.0 disk 0 sdc1 512 8:33 8 33 512 brw-rw---- 1 └─sdc1 131072 root 1 0fc63daf-8483-4772-8e79-3d69d8477de4 Linux filesystem 17c50b78-8d2b-4e65-9e45-88e9b1e994f4 /dev/sdc1 512 sdc gpt cf34f3d7-9bda-41db-b030-121fbe5c26fe 4096 0 0 0 0 254 mq-deadline 238.5G 2048 block:scsi:pci /mnt/pfv-tsys5/ssd /mnt/pfv-tsys5/ssd part d726f088-6424-4e42-ac47-d21ef3fc0963 0B 0x5002538e70081ee4 none 0B 0B 0B 0 0 0
|
|
0 wwn-0x5000cca24bc142d0 0x5000cca24bc142d0 0 0 0B 12 0B 0 disk 4:0:1:0 0 sdd 512 8:48 8 48 512 brw-rw---- HITACHI HUS724020ALA640 1 sdd 131072 root /dev/sdd 512 gpt de5fa9ee-aabe-43e7-9a03-99eb07728826 4096 1 MF6ONS00 0 0 1 254 mq-deadline P2G2SZUJ 1.8T running block:scsi:pci sas disk ATA 0B 0x5000cca24bc142d0 none 0B 0B 0B 0 0 0
|
|
0 wwn-0x5000cca24bc142d0-part1 0x5000cca24bc142d0-part1 0 0 0B 12 0B 0 disk 0 sdd1 512 8:49 8 49 512 brw-rw---- 1 ├─sdd1 131072 root 1 21686148-6449-6e6f-744e-656564454649 BIOS boot df406eb7-a6c7-4b08-8fe8-67746ad7e022 /dev/sdd1 512 sdd gpt de5fa9ee-aabe-43e7-9a03-99eb07728826 4096 1 0 0 1 254 mq-deadline 1007K 34 block:scsi:pci part 0B 0x5000cca24bc142d0 none 0B 0B 0B 0 0 0
|
|
0 wwn-0x5000cca24bc142d0-part2 0x5000cca24bc142d0-part2 0 0 0B 12 0B 0 vfat FAT32 disk 0 sdd2 512 8:50 8 50 512 brw-rw---- 1 ├─sdd2 131072 root 2 c12a7328-f81f-11d2-ba4b-00a0c93ec93b EFI System 8f08a991-4a15-4cb4-883b-021f2dd29754 /dev/sdd2 512 sdd gpt de5fa9ee-aabe-43e7-9a03-99eb07728826 4096 1 0 0 1 254 mq-deadline 1G 2048 block:scsi:pci part 0268-2282 0B 0x5000cca24bc142d0 none 0B 0B 0B 0 0 0
|
|
0 wwn-0x5000cca24bc142d0-part3 0x5000cca24bc142d0-part3 0 0 0B 12 0B 0 LVM2_member LVM2 001 disk 0 sdd3 512 8:51 8 51 512 brw-rw---- 1 └─sdd3 131072 root 3 e6d6d379-f507-44c2-a23c-238f2a3df928 Linux LVM eb628765-b459-404f-acae-90a21227ef02 /dev/sdd3 512 sdd gpt de5fa9ee-aabe-43e7-9a03-99eb07728826 4096 1 0 0 1 254 mq-deadline 1.8T 2099200 block:scsi:pci part 3Hy2uS-bTVE-5CmV-fSUc-pJfB-6at7-XPIwor 0B 0x5000cca24bc142d0 none 0B 0B 0B 0 0 0
|
|
0 dm-name-pve-swap name-pve-swap 0 0 0B 15 0B 0 swap 1 disk 0 dm-0 512 252:0 252 0 512 brw-rw---- 1 ├─pve-swap 131072 root /dev/mapper/pve-swap 512 sdd3 4096 0 0 0 1 8G running block [SWAP] [SWAP] lvm 23d797ce-6767-445f-8996-0e9dd3851a41 0B none 0B 0B 0B 0 0 0
|
|
0 dm-name-pve-root name-pve-root 0 0 0B 16 0B 0 72G / 93.9G ext4 17.1G 18% 1.0 disk 0 dm-1 512 252:1 252 1 512 brw-rw---- 1 ├─pve-root 131072 root /dev/mapper/pve-root 512 sdd3 4096 0 0 0 1 96G running block / / lvm b6e3c50b-ecb5-4003-bcca-80b041b80d9d 0B none 0B 0B 0B 0 0 0
|
|
0 0 0 0B 17 0B 0 disk 0 dm-2 512 252:2 252 2 512 brw-rw---- 1 ├─pve-data_tmeta 131072 root /dev/mapper/pve-data_tmeta 512 sdd3 4096 0 0 0 1 15.9G running block lvm 0B none 0B 0B 0B 0 0 0
|
|
0 0 0 0B 19 0B 0 disk 0 dm-4 512 252:4 252 4 512 brw-rw---- 1 │ └─pve-data-tpool 131072 root /dev/mapper/pve-data-tpool 512 dm-2 4096 0 0 0 1 1.7T running block lvm 0B none 0B 0B 0B 0 0 0
|
|
0 0 0 0B 20 0B 0 disk 0 dm-5 512 252:5 252 5 512 brw-rw---- 1 │ ├─pve-data 131072 root /dev/mapper/pve-data 512 dm-4 4096 0 0 1 1 1.7T running block lvm 0B none 0B 0B 0B 0 0 0
|
|
0 dm-name-pve-vm--5112--disk--0 name-pve-vm--5112--disk--0 0 0 64K 22 64M 0 disk 0 dm-7 512 252:7 252 7 512 brw-rw---- 1 │ ├─pve-vm--5112--disk--0 131072 root /dev/mapper/pve-vm--5112--disk--0 512 dm-4 dos b4015da9 4096 0 0 0 1 288G running block lvm 0B none 0B 0B 0B 0 0 0
|
|
0 dm-name-pve-base--5100--disk--0 name-pve-base--5100--disk--0 0 0 64K 38 64M 0 disk 0 dm-8 512 252:8 252 8 512 brw-rw---- 1 │ └─pve-base--5100--disk--0 131072 root /dev/mapper/pve-base--5100--disk--0 512 dm-4 4096 0 0 1 1 32G running block lvm 0B none 0B 0B 0B 0 0 0
|
|
0 0 0 0B 18 0B 0 disk 0 dm-3 512 252:3 252 3 512 brw-rw---- 1 └─pve-data_tdata 131072 root /dev/mapper/pve-data_tdata 512 sdd3 4096 0 0 0 1 1.7T running block lvm 0B none 0B 0B 0B 0 0 0
|
|
0 0 0 0B 19 0B 0 disk 0 dm-4 512 252:4 252 4 512 brw-rw---- 1 └─pve-data-tpool 131072 root /dev/mapper/pve-data-tpool 512 dm-3 4096 0 0 0 1 1.7T running block lvm 0B none 0B 0B 0B 0 0 0
|
|
0 0 0 0B 20 0B 0 disk 0 dm-5 512 252:5 252 5 512 brw-rw---- 1 ├─pve-data 131072 root /dev/mapper/pve-data 512 dm-4 4096 0 0 1 1 1.7T running block lvm 0B none 0B 0B 0B 0 0 0
|
|
0 dm-name-pve-vm--5112--disk--0 name-pve-vm--5112--disk--0 0 0 64K 22 64M 0 disk 0 dm-7 512 252:7 252 7 512 brw-rw---- 1 ├─pve-vm--5112--disk--0 131072 root /dev/mapper/pve-vm--5112--disk--0 512 dm-4 dos b4015da9 4096 0 0 0 1 288G running block lvm 0B none 0B 0B 0B 0 0 0
|
|
0 dm-name-pve-base--5100--disk--0 name-pve-base--5100--disk--0 0 0 64K 38 64M 0 disk 0 dm-8 512 252:8 252 8 512 brw-rw---- 1 └─pve-base--5100--disk--0 131072 root /dev/mapper/pve-base--5100--disk--0 512 dm-4 4096 0 0 1 1 32G running block lvm 0B none 0B 0B 0B 0 0 0
|
|
0 wwn-0x5000c500a1f40e9b 0x5000c500a1f40e9b 0 0 0B 13 0B 0 816.4G / 915.8G ext4 52.9G 6% 1.0 disk 4:0:2:0 0 sde 512 8:64 8 64 512 brw-rw---- ST1000VN002-2EY102 1 sde 131072 root /dev/sde 512 4096 1 SC60 0 0 1 254 mq-deadline Z9C132K8 931.5G running block:scsi:pci /mnt/pfv-tsys5/S1 /mnt/pfv-tsys5/S1 sas disk 86a503f7-ccff-46eb-beef-f228c8f6a337 ATA 0B 0x5000c500a1f40e9b none 0B 0B 0B 0 0 0
|
|
0 wwn-0x5000c500a1f41e07 0x5000c500a1f41e07 0 0 0B 14 0B 0 869.2G / 915.8G ext4 2M 0% 1.0 disk 4:0:3:0 0 sdf 512 8:80 8 80 512 brw-rw---- ST1000VN002-2EY102 1 sdf 131072 root /dev/sdf 512 4096 1 SC60 0 0 1 254 mq-deadline Z9C132TV 931.5G running block:scsi:pci /mnt/pfv-tsys5/S2 /mnt/pfv-tsys5/S2 sas disk fa33da34-350d-42db-911e-43615dfa8e76 ATA 0B 0x5000c500a1f41e07 none 0B 0B 0B 0 0 0
|
|
|
|
--- blkid
|
|
$ blkid
|
|
/dev/mapper/pve-root: UUID="b6e3c50b-ecb5-4003-bcca-80b041b80d9d" BLOCK_SIZE="4096" TYPE="ext4"
|
|
/dev/sdd2: UUID="0268-2282" BLOCK_SIZE="512" TYPE="vfat" PARTUUID="8f08a991-4a15-4cb4-883b-021f2dd29754"
|
|
/dev/sdd3: UUID="3Hy2uS-bTVE-5CmV-fSUc-pJfB-6at7-XPIwor" TYPE="LVM2_member" PARTUUID="eb628765-b459-404f-acae-90a21227ef02"
|
|
/dev/mapper/pve-swap: UUID="23d797ce-6767-445f-8996-0e9dd3851a41" TYPE="swap"
|
|
/dev/sdc1: UUID="d726f088-6424-4e42-ac47-d21ef3fc0963" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="17c50b78-8d2b-4e65-9e45-88e9b1e994f4"
|
|
/dev/sde: UUID="86a503f7-ccff-46eb-beef-f228c8f6a337" BLOCK_SIZE="4096" TYPE="ext4"
|
|
/dev/sdf: UUID="fa33da34-350d-42db-911e-43615dfa8e76" BLOCK_SIZE="4096" TYPE="ext4"
|
|
/dev/sda: UUID="f0ce9391-a061-4c99-9257-3781dbfd0b63" BLOCK_SIZE="4096" TYPE="ext4"
|
|
/dev/sdb: UUID="67accd89-6ff5-4560-8f07-47fbdf76db6d" BLOCK_SIZE="4096" TYPE="ext4"
|
|
/dev/sdd1: PARTUUID="df406eb7-a6c7-4b08-8fe8-67746ad7e022"
|
|
/dev/mapper/pve-vm--5112--disk--0: PTUUID="b4015da9" PTTYPE="dos"
|
|
|
|
--- /proc/partitions
|
|
$ cat /proc/partitions
|
|
major minor #blocks name
|
|
|
|
8 0 976762584 sda
|
|
8 16 488386584 sdb
|
|
8 32 250059096 sdc
|
|
8 33 250057728 sdc1
|
|
8 64 976762584 sde
|
|
8 80 976762584 sdf
|
|
8 48 1953514584 sdd
|
|
8 49 1007 sdd1
|
|
8 50 1048576 sdd2
|
|
8 51 1952464967 sdd3
|
|
252 0 8388608 dm-0
|
|
252 1 100663296 dm-1
|
|
252 2 16650240 dm-2
|
|
252 3 1793077248 dm-3
|
|
252 4 1793077248 dm-4
|
|
252 5 1793077248 dm-5
|
|
252 7 301989888 dm-7
|
|
252 8 33554432 dm-8
|
|
|
|
--- fdisk -l
|
|
$ fdisk -l
|
|
Disk /dev/sda: 931.51 GiB, 1000204886016 bytes, 1953525168 sectors
|
|
Disk model: ST1000VN002-2EY1
|
|
Units: sectors of 1 * 512 = 512 bytes
|
|
Sector size (logical/physical): 512 bytes / 4096 bytes
|
|
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
|
|
|
|
|
|
Disk /dev/sdb: 465.76 GiB, 500107862016 bytes, 976773168 sectors
|
|
Disk model: TOSHIBA DT01ACA0
|
|
Units: sectors of 1 * 512 = 512 bytes
|
|
Sector size (logical/physical): 512 bytes / 4096 bytes
|
|
I/O size (minimum/optimal): 4096 bytes / 4096 bytes
|
|
|
|
|
|
Disk /dev/sdc: 238.47 GiB, 256060514304 bytes, 500118192 sectors
|
|
Disk model: Samsung SSD 860
|
|
Units: sectors of 1 * 512 = 512 bytes
|
|
Sector size (logical/physical): 512 bytes / 512 bytes
|
|
I/O size (minimum/optimal): 512 bytes / 131072 bytes
|
|
Disklabel type: gpt
|
|
Disk identifier: CF34F3D7-9BDA-41DB-B030-121FBE5C26FE
|
|
|
|
Device Start End Sectors Size Type
|
|
/dev/sdc1 2048 500117503 500115456 238.5G Linux filesystem
|
|
|
|
|
|
Disk /dev/sde: 931.51 GiB, 1000204886016 bytes, 1953525168 sectors
|
|
Disk model: ST1000VN002-2EY1
|
|
Units: sectors of 1 * 512 = 512 bytes
|
|
Sector size (logical/physical): 512 bytes / 512 bytes
|
|
I/O size (minimum/optimal): 512 bytes / 131072 bytes
|
|
|
|
|
|
Disk /dev/sdf: 931.51 GiB, 1000204886016 bytes, 1953525168 sectors
|
|
Disk model: ST1000VN002-2EY1
|
|
Units: sectors of 1 * 512 = 512 bytes
|
|
Sector size (logical/physical): 512 bytes / 512 bytes
|
|
I/O size (minimum/optimal): 512 bytes / 131072 bytes
|
|
|
|
|
|
Disk /dev/sdd: 1.82 TiB, 2000398934016 bytes, 3907029168 sectors
|
|
Disk model: HITACHI HUS72402
|
|
Units: sectors of 1 * 512 = 512 bytes
|
|
Sector size (logical/physical): 512 bytes / 512 bytes
|
|
I/O size (minimum/optimal): 512 bytes / 131072 bytes
|
|
Disklabel type: gpt
|
|
Disk identifier: DE5FA9EE-AABE-43E7-9A03-99EB07728826
|
|
|
|
Device Start End Sectors Size Type
|
|
/dev/sdd1 34 2047 2014 1007K BIOS boot
|
|
/dev/sdd2 2048 2099199 2097152 1G EFI System
|
|
/dev/sdd3 2099200 3907029134 3904929935 1.8T Linux LVM
|
|
|
|
|
|
Disk /dev/mapper/pve-swap: 8 GiB, 8589934592 bytes, 16777216 sectors
|
|
Units: sectors of 1 * 512 = 512 bytes
|
|
Sector size (logical/physical): 512 bytes / 512 bytes
|
|
I/O size (minimum/optimal): 512 bytes / 131072 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 / 131072 bytes
|
|
|
|
|
|
Disk /dev/mapper/pve-vm--5112--disk--0: 288 GiB, 309237645312 bytes, 603979776 sectors
|
|
Units: sectors of 1 * 512 = 512 bytes
|
|
Sector size (logical/physical): 512 bytes / 512 bytes
|
|
I/O size (minimum/optimal): 512 bytes / 131072 bytes
|
|
Disklabel type: dos
|
|
Disk identifier: 0xb4015da9
|
|
|
|
Device Boot Start End Sectors Size Id Type
|
|
/dev/mapper/pve-vm--5112--disk--0-part1 * 2048 591693823 591691776 282.1G 83 Linux
|
|
/dev/mapper/pve-vm--5112--disk--0-part2 591695870 603977727 12281858 5.9G f W95 Ext'd (LBA)
|
|
/dev/mapper/pve-vm--5112--disk--0-part5 591695872 603977727 12281856 5.9G 82 Linux swap / Solaris
|
|
|
|
|
|
Disk /dev/mapper/pve-base--5100--disk--0: 32 GiB, 34359738368 bytes, 67108864 sectors
|
|
Units: sectors of 1 * 512 = 512 bytes
|
|
Sector size (logical/physical): 512 bytes / 512 bytes
|
|
I/O size (minimum/optimal): 512 bytes / 131072 bytes
|
|
|
|
--- parted -l
|
|
$ parted -l
|
|
/root/check.sh: line 45: parted: command not found
|
|
[exit=127 / not installed or not permitted]
|
|
|
|
--- block device queue settings (per device)
|
|
$ for d in $(ls /sys/block/ 2>/dev/null | grep -vE '^(loop|ram|md|dm-|sr|fd)'); do
|
|
q="/sys/block/$d/queue"
|
|
[ -d "$q" ] || continue
|
|
printf '----- %s -----\n' "$d"
|
|
for k in scheduler rotational nr_requests read_ahead_kb max_sectors_kb max_hw_sectors_kb \
|
|
logical_block_size physical_block_size discard_granularity discard_max_hw_bytes \
|
|
rq_affinity nomerges wbt_lat_usec write_cache stable_writes io_poll io_poll_delay \
|
|
fua rot_stable_writes add_random zoned dma_alignment iostats;
|
|
do
|
|
f="$q/$k"
|
|
[ -r "$f" ] && printf ' %-22s = %s\n' "$k" "$(cat "$f" 2>/dev/null)"
|
|
done
|
|
# NVMe-specific
|
|
for f in /sys/block/$d/device/model /sys/block/$d/device/serial /sys/block/$d/device/transport /sys/block/$d/device/queue_count; do
|
|
[ -r "$f" ] && printf ' %s = %s\n' "$(echo "$f" | sed "s|/sys/block/$d/device/||")" "$(cat "$f")"
|
|
done
|
|
done
|
|
/root/check.sh: line 62: printf: --: invalid option
|
|
printf: usage: printf [-v var] format [arguments]
|
|
scheduler = none [mq-deadline]
|
|
rotational = 1
|
|
nr_requests = 2
|
|
read_ahead_kb = 8192
|
|
max_sectors_kb = 4096
|
|
max_hw_sectors_kb = 32767
|
|
logical_block_size = 512
|
|
physical_block_size = 4096
|
|
discard_granularity = 0
|
|
discard_max_hw_bytes = 0
|
|
rq_affinity = 1
|
|
nomerges = 0
|
|
wbt_lat_usec = 75000
|
|
write_cache = write back
|
|
stable_writes = 0
|
|
io_poll = 0
|
|
io_poll_delay = -1
|
|
fua = 0
|
|
add_random = 1
|
|
zoned = none
|
|
dma_alignment = 511
|
|
iostats = 1
|
|
model = ST1000VN002-2EY1
|
|
/root/check.sh: line 62: printf: --: invalid option
|
|
printf: usage: printf [-v var] format [arguments]
|
|
scheduler = none [mq-deadline]
|
|
rotational = 1
|
|
nr_requests = 2
|
|
read_ahead_kb = 8192
|
|
max_sectors_kb = 4096
|
|
max_hw_sectors_kb = 32767
|
|
logical_block_size = 512
|
|
physical_block_size = 4096
|
|
discard_granularity = 0
|
|
discard_max_hw_bytes = 0
|
|
rq_affinity = 1
|
|
nomerges = 0
|
|
wbt_lat_usec = 75000
|
|
write_cache = write back
|
|
stable_writes = 0
|
|
io_poll = 0
|
|
io_poll_delay = -1
|
|
fua = 0
|
|
add_random = 1
|
|
zoned = none
|
|
dma_alignment = 511
|
|
iostats = 1
|
|
model = TOSHIBA DT01ACA0
|
|
/root/check.sh: line 62: printf: --: invalid option
|
|
printf: usage: printf [-v var] format [arguments]
|
|
scheduler = none [mq-deadline]
|
|
rotational = 0
|
|
nr_requests = 254
|
|
read_ahead_kb = 4096
|
|
max_sectors_kb = 4096
|
|
max_hw_sectors_kb = 4096
|
|
logical_block_size = 512
|
|
physical_block_size = 512
|
|
discard_granularity = 0
|
|
discard_max_hw_bytes = 0
|
|
rq_affinity = 1
|
|
nomerges = 0
|
|
wbt_lat_usec = 2000
|
|
write_cache = write back
|
|
stable_writes = 0
|
|
io_poll = 0
|
|
io_poll_delay = -1
|
|
fua = 0
|
|
add_random = 0
|
|
zoned = none
|
|
dma_alignment = 511
|
|
iostats = 1
|
|
model = Samsung SSD 860
|
|
/root/check.sh: line 62: printf: --: invalid option
|
|
printf: usage: printf [-v var] format [arguments]
|
|
scheduler = none [mq-deadline]
|
|
rotational = 1
|
|
nr_requests = 254
|
|
read_ahead_kb = 4096
|
|
max_sectors_kb = 4096
|
|
max_hw_sectors_kb = 4096
|
|
logical_block_size = 512
|
|
physical_block_size = 512
|
|
discard_granularity = 0
|
|
discard_max_hw_bytes = 0
|
|
rq_affinity = 1
|
|
nomerges = 0
|
|
wbt_lat_usec = 75000
|
|
write_cache = write back
|
|
stable_writes = 0
|
|
io_poll = 0
|
|
io_poll_delay = -1
|
|
fua = 0
|
|
add_random = 1
|
|
zoned = none
|
|
dma_alignment = 511
|
|
iostats = 1
|
|
model = HITACHI HUS72402
|
|
/root/check.sh: line 62: printf: --: invalid option
|
|
printf: usage: printf [-v var] format [arguments]
|
|
scheduler = none [mq-deadline]
|
|
rotational = 1
|
|
nr_requests = 254
|
|
read_ahead_kb = 4096
|
|
max_sectors_kb = 4096
|
|
max_hw_sectors_kb = 4096
|
|
logical_block_size = 512
|
|
physical_block_size = 512
|
|
discard_granularity = 0
|
|
discard_max_hw_bytes = 0
|
|
rq_affinity = 1
|
|
nomerges = 0
|
|
wbt_lat_usec = 75000
|
|
write_cache = write back
|
|
stable_writes = 0
|
|
io_poll = 0
|
|
io_poll_delay = -1
|
|
fua = 0
|
|
add_random = 1
|
|
zoned = none
|
|
dma_alignment = 511
|
|
iostats = 1
|
|
model = ST1000VN002-2EY1
|
|
/root/check.sh: line 62: printf: --: invalid option
|
|
printf: usage: printf [-v var] format [arguments]
|
|
scheduler = none [mq-deadline]
|
|
rotational = 1
|
|
nr_requests = 254
|
|
read_ahead_kb = 4096
|
|
max_sectors_kb = 4096
|
|
max_hw_sectors_kb = 4096
|
|
logical_block_size = 512
|
|
physical_block_size = 512
|
|
discard_granularity = 0
|
|
discard_max_hw_bytes = 0
|
|
rq_affinity = 1
|
|
nomerges = 0
|
|
wbt_lat_usec = 75000
|
|
write_cache = write back
|
|
stable_writes = 0
|
|
io_poll = 0
|
|
io_poll_delay = -1
|
|
fua = 0
|
|
add_random = 1
|
|
zoned = none
|
|
dma_alignment = 511
|
|
iostats = 1
|
|
model = ST1000VN002-2EY1
|
|
[exit=1]
|
|
|
|
--- df -h (filesystem usage)
|
|
$ df -h
|
|
Filesystem Size Used Avail Use% Mounted on
|
|
udev 48G 0 48G 0% /dev
|
|
tmpfs 9.5G 11M 9.5G 1% /run
|
|
/dev/mapper/pve-root 94G 18G 73G 20% /
|
|
tmpfs 48G 40M 48G 1% /dev/shm
|
|
tmpfs 1.0M 0 1.0M 0% /run/credentials/systemd-journald.service
|
|
tmpfs 5.0M 0 5.0M 0% /run/lock
|
|
tmpfs 48G 32K 48G 1% /tmp
|
|
tmpfs 1.0M 0 1.0M 0% /run/credentials/getty@tty1.service
|
|
pfv-tsys4-nfs-stor:/mnt/tsys4/D5 1.8T 233G 1.5T 14% /mnt/pve/D5
|
|
pfv-tsys4-nfs-stor:/mnt/tsys4/D2 2.7T 187G 2.4T 8% /mnt/pve/D2
|
|
pfv-tsys4-nfs-stor:/mnt/tsys4/D3 469G 2.0M 445G 1% /mnt/pve/D3
|
|
/dev/sde 916G 53G 817G 7% /mnt/pfv-tsys5/S1
|
|
/dev/sdf 916G 2.1M 870G 1% /mnt/pfv-tsys5/S2
|
|
/dev/sdc1 234G 83G 140G 38% /mnt/pfv-tsys5/ssd
|
|
/dev/sda 916G 2.1M 870G 1% /mnt/pfv-tsys5/S3
|
|
/dev/sdb 458G 2.1M 435G 1% /mnt/pfv-tsys5/S4
|
|
tmpfs 9.5G 4.0K 9.5G 1% /run/user/0
|
|
/dev/fuse 128M 28K 128M 1% /etc/pve
|
|
|
|
--- df -i (inode usage)
|
|
$ df -i
|
|
Filesystem Inodes IUsed IFree IUse% Mounted on
|
|
udev 12347242 724 12346518 1% /dev
|
|
tmpfs 12359239 1385 12357854 1% /run
|
|
/dev/mapper/pve-root 6291456 82045 6209411 2% /
|
|
tmpfs 12359239 93 12359146 1% /dev/shm
|
|
tmpfs 1024 1 1023 1% /run/credentials/systemd-journald.service
|
|
tmpfs 12359239 39 12359200 1% /run/lock
|
|
tmpfs 1048576 15 1048561 1% /tmp
|
|
tmpfs 1024 1 1023 1% /run/credentials/getty@tty1.service
|
|
pfv-tsys4-nfs-stor:/mnt/tsys4/D5 122101760 66 122101694 1% /mnt/pve/D5
|
|
pfv-tsys4-nfs-stor:/mnt/tsys4/D2 183148544 56 183148488 1% /mnt/pve/D2
|
|
pfv-tsys4-nfs-stor:/mnt/tsys4/D3 31260672 13 31260659 1% /mnt/pve/D3
|
|
/dev/sde 61054976 47 61054929 1% /mnt/pfv-tsys5/S1
|
|
/dev/sdf 61054976 13 61054963 1% /mnt/pfv-tsys5/S2
|
|
/dev/sdc1 15630336 15 15630321 1% /mnt/pfv-tsys5/ssd
|
|
/dev/sda 61054976 13 61054963 1% /mnt/pfv-tsys5/S3
|
|
/dev/sdb 30531584 13 30531571 1% /mnt/pfv-tsys5/S4
|
|
tmpfs 2471847 27 2471820 1% /run/user/0
|
|
/dev/fuse 262144 60 262084 1% /etc/pve
|
|
|
|
###############################################################################
|
|
# 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=49388968k,nr_inodes=12347242,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=9887392k,mode=755,inode64)
|
|
/dev/mapper/pve-root on / type ext4 (rw,noatime,errors=remount-ro,stripe=32)
|
|
securityfs on /sys/kernel/security type securityfs (rw,nosuid,nodev,noexec,relatime)
|
|
tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev,inode64)
|
|
cgroup2 on /sys/fs/cgroup type cgroup2 (rw,nosuid,nodev,noexec,relatime)
|
|
none on /sys/fs/pstore type pstore (rw,nosuid,nodev,noexec,relatime)
|
|
bpf on /sys/fs/bpf type bpf (rw,nosuid,nodev,noexec,relatime,mode=700)
|
|
systemd-1 on /proc/sys/fs/binfmt_misc type autofs (rw,relatime,fd=37,pgrp=1,timeout=0,minproto=5,maxproto=5,direct,pipe_ino=1739)
|
|
tmpfs on /run/credentials/systemd-journald.service type tmpfs (ro,nosuid,nodev,noexec,relatime,nosymfollow,size=1024k,nr_inodes=1024,mode=700,inode64,noswap)
|
|
tmpfs on /run/lock type tmpfs (rw,nosuid,nodev,noexec,relatime,size=5120k,inode64)
|
|
tracefs on /sys/kernel/tracing type tracefs (rw,nosuid,nodev,noexec,relatime)
|
|
hugetlbfs on /dev/hugepages type hugetlbfs (rw,nosuid,nodev,relatime,pagesize=2M)
|
|
configfs on /sys/kernel/config type configfs (rw,nosuid,nodev,noexec,relatime)
|
|
fusectl on /sys/fs/fuse/connections type fusectl (rw,nosuid,nodev,noexec,relatime)
|
|
mqueue on /dev/mqueue type mqueue (rw,nosuid,nodev,noexec,relatime)
|
|
debugfs on /sys/kernel/debug type debugfs (rw,nosuid,nodev,noexec,relatime)
|
|
tmpfs on /tmp type tmpfs (rw,nosuid,nodev,nr_inodes=1048576,inode64)
|
|
binfmt_misc on /proc/sys/fs/binfmt_misc type binfmt_misc (rw,nosuid,nodev,noexec,relatime)
|
|
sunrpc on /run/rpc_pipefs type rpc_pipefs (rw,relatime)
|
|
lxcfs on /var/lib/lxcfs type fuse.lxcfs (rw,nosuid,nodev,relatime,user_id=0,group_id=0,allow_other)
|
|
tmpfs on /run/credentials/getty@tty1.service type tmpfs (ro,nosuid,nodev,noexec,relatime,nosymfollow,size=1024k,nr_inodes=1024,mode=700,inode64,noswap)
|
|
pfv-tsys4-nfs-stor:/mnt/tsys4/D5 on /mnt/pve/D5 type nfs4 (rw,relatime,vers=4.2,rsize=1048576,wsize=1048576,namlen=255,hard,fatal_neterrors=none,proto=tcp,timeo=600,retrans=2,sec=sys,clientaddr=10.100.100.5,local_lock=none,addr=10.100.100.4)
|
|
pfv-tsys4-nfs-stor:/mnt/tsys4/D2 on /mnt/pve/D2 type nfs4 (rw,relatime,vers=4.2,rsize=1048576,wsize=1048576,namlen=255,hard,fatal_neterrors=none,proto=tcp,timeo=600,retrans=2,sec=sys,clientaddr=10.100.100.5,local_lock=none,addr=10.100.100.4)
|
|
pfv-tsys4-nfs-stor:/mnt/tsys4/D3 on /mnt/pve/D3 type nfs4 (rw,relatime,vers=4.2,rsize=1048576,wsize=1048576,namlen=255,hard,fatal_neterrors=none,proto=tcp,timeo=600,retrans=2,sec=sys,clientaddr=10.100.100.5,local_lock=none,addr=10.100.100.4)
|
|
/dev/sde on /mnt/pfv-tsys5/S1 type ext4 (rw,relatime,stripe=32)
|
|
/dev/sdf on /mnt/pfv-tsys5/S2 type ext4 (rw,relatime,stripe=32)
|
|
/dev/sdc1 on /mnt/pfv-tsys5/ssd type ext4 (rw,noatime,errors=remount-ro,stripe=32)
|
|
/dev/sda on /mnt/pfv-tsys5/S3 type ext4 (rw,noatime,errors=remount-ro)
|
|
/dev/sdb on /mnt/pfv-tsys5/S4 type ext4 (rw,noatime,errors=remount-ro)
|
|
nfsd on /proc/fs/nfsd type nfsd (rw,relatime)
|
|
tmpfs on /run/user/0 type tmpfs (rw,nosuid,nodev,relatime,size=9887388k,nr_inodes=2471847,mode=700,inode64)
|
|
/dev/fuse on /etc/pve type fuse (rw,nosuid,nodev,relatime,user_id=0,group_id=0,default_permissions,allow_other)
|
|
|
|
--- findmnt (tree)
|
|
$ findmnt -t nfs,nfs4,zfs,ext4,xfs,btrfs
|
|
TARGET SOURCE FSTYPE OPTIONS
|
|
/ /dev/mapper/pve-root ext4 rw,noatime,errors=remount-ro,stripe=32
|
|
├─/mnt/pve/D5 pfv-tsys4-nfs-stor:/mnt/tsys4/D5 nfs4 rw,relatime,vers=4.2,rsize=1048576,wsize=1048576,namlen=255,hard,fatal_neterrors=none,proto=tcp,timeo=600,retrans=2,sec=sys,clientaddr=10.100.100.5,local_lock=none,addr=10.100.100.4
|
|
├─/mnt/pve/D2 pfv-tsys4-nfs-stor:/mnt/tsys4/D2 nfs4 rw,relatime,vers=4.2,rsize=1048576,wsize=1048576,namlen=255,hard,fatal_neterrors=none,proto=tcp,timeo=600,retrans=2,sec=sys,clientaddr=10.100.100.5,local_lock=none,addr=10.100.100.4
|
|
├─/mnt/pve/D3 pfv-tsys4-nfs-stor:/mnt/tsys4/D3 nfs4 rw,relatime,vers=4.2,rsize=1048576,wsize=1048576,namlen=255,hard,fatal_neterrors=none,proto=tcp,timeo=600,retrans=2,sec=sys,clientaddr=10.100.100.5,local_lock=none,addr=10.100.100.4
|
|
├─/mnt/pfv-tsys5/S1 /dev/sde ext4 rw,relatime,stripe=32
|
|
├─/mnt/pfv-tsys5/S2 /dev/sdf ext4 rw,relatime,stripe=32
|
|
├─/mnt/pfv-tsys5/ssd /dev/sdc1 ext4 rw,noatime,errors=remount-ro,stripe=32
|
|
├─/mnt/pfv-tsys5/S3 /dev/sda ext4 rw,noatime,errors=remount-ro
|
|
└─/mnt/pfv-tsys5/S4 /dev/sdb ext4 rw,noatime,errors=remount-ro
|
|
|
|
--- /etc/fstab
|
|
--- /etc/fstab ---
|
|
# <file system> <mount point> <type> <options> <dump> <pass>
|
|
/dev/pve/root / ext4 noatime,errors=remount-ro 0 1
|
|
/dev/pve/swap none swap sw 0 0
|
|
proc /proc proc defaults 0 0
|
|
|
|
# SSD
|
|
|
|
#/dev/sdc1: UUID="d726f088-6424-4e42-ac47-d21ef3fc0963" BLOCK_SIZE="4096" TYPE="ext4" PARTUUID="17c50b78-8d2b-4e65-9e45-8
|
|
UUID="d726f088-6424-4e42-ac47-d21ef3fc0963" /mnt/pfv-tsys5/ssd ext4 noatime,errors=remount-ro 0 1
|
|
|
|
|
|
|
|
#S1
|
|
#/dev/sde: UUID="86a503f7-ccff-46eb-beef-f228c8f6a337" BLOCK_SIZE="4096" TYPE="ext4"
|
|
UUID="86a503f7-ccff-46eb-beef-f228c8f6a337" /mnt/pfv-tsys5/S1 ext4 noatime,errors=remount-ro 0 1
|
|
|
|
#S2
|
|
#/dev/sdf: UUID="fa33da34-350d-42db-911e-43615dfa8e76" BLOCK_SIZE="4096" TYPE="ext4"
|
|
UUID="fa33da34-350d-42db-911e-43615dfa8e76" /mnt/pfv-tsys5/S2 ext4 noatime,errors=remount-ro 0 1
|
|
|
|
#S3
|
|
# /dev/sda: UUID="f0ce9391-a061-4c99-9257-3781dbfd0b63" BLOCK_SIZE="4096" TYPE="ext4"
|
|
UUID="f0ce9391-a061-4c99-9257-3781dbfd0b63" /mnt/pfv-tsys5/S3 ext4 noatime,errors=remount-ro 0 1
|
|
|
|
#S4
|
|
#/dev/sdb: UUID="67accd89-6ff5-4560-8f07-47fbdf76db6d" BLOCK_SIZE="4096" TYPE="ext4"
|
|
UUID="67accd89-6ff5-4560-8f07-47fbdf76db6d" /mnt/pfv-tsys5/S4 ext4 noatime,errors=remount-ro 0 1
|
|
|
|
|
|
|
|
--- 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: 20139751
|
|
Block size: 4096
|
|
Reserved GDT blocks: 1024
|
|
Last mount time: Fri Jul 24 19:15:58 2026
|
|
Last write time: Sun Jul 26 16:17:48 2026
|
|
Mount count: 11
|
|
Maximum mount count: -1
|
|
Last checked: Thu Feb 26 09:00:54 2026
|
|
Reserved blocks uid: 0 (user root)
|
|
Reserved blocks gid: 0 (group root)
|
|
=== /dev/sde ===
|
|
Last mounted on: /mnt/pfv-tsys5/S1
|
|
Block count: 244190646
|
|
Reserved block count: 12209532
|
|
Free blocks: 226216625
|
|
Block size: 4096
|
|
Reserved GDT blocks: 1024
|
|
Last mount time: Fri Jul 24 22:31:31 2026
|
|
Last write time: Sun Jul 26 15:32:50 2026
|
|
Mount count: 1
|
|
Maximum mount count: -1
|
|
Last checked: Fri Jul 24 22:30:26 2026
|
|
Reserved blocks uid: 0 (user root)
|
|
Reserved blocks gid: 0 (group root)
|
|
=== /dev/sdf ===
|
|
Last mounted on: <not available>
|
|
Block count: 244190646
|
|
Reserved block count: 12209532
|
|
Free blocks: 240075442
|
|
Block size: 4096
|
|
Reserved GDT blocks: 1024
|
|
Last mount time: Fri Jul 24 22:31:36 2026
|
|
Last write time: Sat Jul 25 11:31:17 2026
|
|
Mount count: 1
|
|
Maximum mount count: -1
|
|
Last checked: Fri Jul 24 22:30:39 2026
|
|
Reserved blocks uid: 0 (user root)
|
|
Reserved blocks gid: 0 (group root)
|
|
=== /dev/sdc1 ===
|
|
Last mounted on: /mnt/pfv-tsys5/ssd
|
|
Block count: 62514432
|
|
Reserved block count: 3125721
|
|
Free blocks: 39639910
|
|
Block size: 4096
|
|
Reserved GDT blocks: 1024
|
|
Last mount time: Fri Jul 24 22:35:40 2026
|
|
Last write time: Sun Jul 26 15:43:47 2026
|
|
Mount count: 3
|
|
Maximum mount count: -1
|
|
Last checked: Mon Apr 6 08:20:57 2026
|
|
Reserved blocks uid: 0 (user root)
|
|
Reserved blocks gid: 0 (group root)
|
|
=== /dev/sda ===
|
|
Last mounted on: /mnt/pfv-tsys5/S3
|
|
Block count: 244190646
|
|
Reserved block count: 12209532
|
|
Free blocks: 240074223
|
|
Block size: 4096
|
|
Reserved GDT blocks: 1024
|
|
Last mount time: Fri Jul 24 22:41:55 2026
|
|
Last write time: Sun Jul 26 13:46:29 2026
|
|
Mount count: 1
|
|
Maximum mount count: -1
|
|
Last checked: Fri Jul 24 22:40:21 2026
|
|
Reserved blocks uid: 0 (user root)
|
|
Reserved blocks gid: 0 (group root)
|
|
=== /dev/sdb ===
|
|
Last mounted on: <not available>
|
|
Block count: 122096646
|
|
Reserved block count: 6104832
|
|
Free blocks: 119898792
|
|
Block size: 4096
|
|
Reserved GDT blocks: 1024
|
|
Last mount time: Fri Jul 24 22:45:32 2026
|
|
Last write time: Sat Jul 25 11:31:48 2026
|
|
Mount count: 1
|
|
Maximum mount count: -1
|
|
Last checked: Fri Jul 24 22:43:10 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,relatime,vers=4.2,rsize=1048576,wsize=1048576,namlen=255,hard,fatal_neterrors=none,proto=tcp,timeo=600,retrans=2,sec=sys,clientaddr=10.100.100.5,local_lock=none,addr=10.100.100.4
|
|
|
|
/mnt/pve/D2 from pfv-tsys4-nfs-stor:/mnt/tsys4/D2
|
|
Flags: rw,relatime,vers=4.2,rsize=1048576,wsize=1048576,namlen=255,hard,fatal_neterrors=none,proto=tcp,timeo=600,retrans=2,sec=sys,clientaddr=10.100.100.5,local_lock=none,addr=10.100.100.4
|
|
|
|
/mnt/pve/D3 from pfv-tsys4-nfs-stor:/mnt/tsys4/D3
|
|
Flags: rw,relatime,vers=4.2,rsize=1048576,wsize=1048576,namlen=255,hard,fatal_neterrors=none,proto=tcp,timeo=600,retrans=2,sec=sys,clientaddr=10.100.100.5,local_lock=none,addr=10.100.100.4
|
|
|
|
|
|
--- nfsstat -c (client stats)
|
|
$ nfsstat -c
|
|
Client rpc stats:
|
|
calls retrans authrefrsh
|
|
346109 0 346892
|
|
|
|
Client nfs v4:
|
|
null read write commit open
|
|
1 0% 26457 7% 239630 69% 0 0% 0 0%
|
|
open_conf open_noat open_dgrd close setattr
|
|
0 0% 64 0% 0 0% 44 0% 0 0%
|
|
fsinfo renew setclntid confirm lock
|
|
12 0% 0 0% 0 0% 0 0% 0 0%
|
|
lockt locku access getattr lookup
|
|
0 0% 0 0% 87 0% 15640 4% 31 0%
|
|
lookup_root remove rename link symlink
|
|
3 0% 2 0% 0 0% 0 0% 0 0%
|
|
create pathconf statfs readlink readdir
|
|
0 0% 12 0% 47753 13% 0 0% 50 0%
|
|
server_caps delegreturn getacl setacl fs_locations
|
|
24 0% 18 0% 0 0% 0 0% 0 0%
|
|
rel_lkowner secinfo fsid_present exchange_id create_session
|
|
0 0% 0 0% 0 0% 2 0% 2 0%
|
|
destroy_session sequence get_lease_time reclaim_comp layoutget
|
|
1 0% 3 0% 1 0% 1 0% 0 0%
|
|
getdevinfo layoutcommit layoutreturn secinfo_no test_stateid
|
|
0 0% 0 0% 0 0% 3 0% 0 0%
|
|
free_stateid getdevicelist bind_conn_to_ses destroy_clientid seek
|
|
0 0% 0 0% 0 0% 0 0% 16235 4%
|
|
allocate deallocate layoutstats clone
|
|
0 0% 0 0% 71 0% 0 0%
|
|
|
|
|
|
--- nfsstat -s (server stats)
|
|
$ nfsstat -s
|
|
Server rpc stats:
|
|
calls badcalls badfmt badauth badclnt
|
|
222295 0 0 0 0
|
|
|
|
Server nfs v4:
|
|
null compound
|
|
8 0% 222287 99%
|
|
|
|
Server nfs v4 operations:
|
|
op0-unused op1-unused op2-future access close
|
|
0 0% 0 0% 0 0% 269 0% 12 0%
|
|
commit create delegpurge delegreturn getattr
|
|
1022 0% 4 0% 0 0% 1 0% 217853 32%
|
|
getfh link lock lockt locku
|
|
350 0% 0 0% 0 0% 0 0% 0 0%
|
|
lookup lookup_root nverify open openattr
|
|
315 0% 0 0% 0 0% 13 0% 0 0%
|
|
open_conf open_dgrd putfh putpubfh putrootfh
|
|
0 0% 0 0% 222175 33% 0 0% 70 0%
|
|
read readdir readlink remove rename
|
|
18 0% 27 0% 0 0% 2 0% 0 0%
|
|
renew restorefh savefh secinfo setattr
|
|
0 0% 0 0% 0 0% 0 0% 1 0%
|
|
setcltid setcltidconf verify write rellockowner
|
|
0 0% 0 0% 0 0% 3283 0% 0 0%
|
|
bc_ctl bind_conn exchange_id create_ses destroy_ses
|
|
0 0% 0 0% 16 0% 8 0% 4 0%
|
|
free_stateid getdirdeleg getdevinfo getdevlist layoutcommit
|
|
0 0% 16 0% 0 0% 0 0% 0 0%
|
|
layoutget layoutreturn secinfononam sequence set_ssv
|
|
0 0% 0 0% 35 0% 222255 33% 0 0%
|
|
test_stateid want_deleg destroy_clid reclaim_comp allocate
|
|
0 0% 0 0% 4 0% 8 0% 0 0%
|
|
copy copy_notify deallocate ioadvise layouterror
|
|
0 0% 0 0% 0 0% 0 0% 0 0%
|
|
layoutstats offloadcancel offloadstatus readplus seek
|
|
0 0% 0 0% 0 0% 0 0% 0 0%
|
|
write_same
|
|
0 0%
|
|
|
|
|
|
--- nfsstat -234 (version stats)
|
|
$ nfsstat -234
|
|
Server rpc stats:
|
|
calls badcalls badfmt badauth badclnt
|
|
222295 0 0 0 0
|
|
|
|
Server 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%
|
|
|
|
Server 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%
|
|
|
|
Server nfs v4:
|
|
null compound
|
|
8 0% 222287 99%
|
|
|
|
Server nfs v4 operations:
|
|
op0-unused op1-unused op2-future access close
|
|
0 0% 0 0% 0 0% 269 0% 12 0%
|
|
commit create delegpurge delegreturn getattr
|
|
1022 0% 4 0% 0 0% 1 0% 217853 32%
|
|
getfh link lock lockt locku
|
|
350 0% 0 0% 0 0% 0 0% 0 0%
|
|
lookup lookup_root nverify open openattr
|
|
315 0% 0 0% 0 0% 13 0% 0 0%
|
|
open_conf open_dgrd putfh putpubfh putrootfh
|
|
0 0% 0 0% 222175 33% 0 0% 70 0%
|
|
read readdir readlink remove rename
|
|
18 0% 27 0% 0 0% 2 0% 0 0%
|
|
renew restorefh savefh secinfo setattr
|
|
0 0% 0 0% 0 0% 0 0% 1 0%
|
|
setcltid setcltidconf verify write rellockowner
|
|
0 0% 0 0% 0 0% 3283 0% 0 0%
|
|
bc_ctl bind_conn exchange_id create_ses destroy_ses
|
|
0 0% 0 0% 16 0% 8 0% 4 0%
|
|
free_stateid getdirdeleg getdevinfo getdevlist layoutcommit
|
|
0 0% 16 0% 0 0% 0 0% 0 0%
|
|
layoutget layoutreturn secinfononam sequence set_ssv
|
|
0 0% 0 0% 35 0% 222255 33% 0 0%
|
|
test_stateid want_deleg destroy_clid reclaim_comp allocate
|
|
0 0% 0 0% 4 0% 8 0% 0 0%
|
|
copy copy_notify deallocate ioadvise layouterror
|
|
0 0% 0 0% 0 0% 0 0% 0 0%
|
|
layoutstats offloadcancel offloadstatus readplus seek
|
|
0 0% 0 0% 0 0% 0 0% 0 0%
|
|
write_same
|
|
0 0%
|
|
|
|
Client rpc stats:
|
|
calls retrans authrefrsh
|
|
346109 0 346892
|
|
|
|
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
|
|
1 0% 26457 7% 239630 69% 0 0% 0 0%
|
|
open_conf open_noat open_dgrd close setattr
|
|
0 0% 64 0% 0 0% 44 0% 0 0%
|
|
fsinfo renew setclntid confirm lock
|
|
12 0% 0 0% 0 0% 0 0% 0 0%
|
|
lockt locku access getattr lookup
|
|
0 0% 0 0% 87 0% 15640 4% 31 0%
|
|
lookup_root remove rename link symlink
|
|
3 0% 2 0% 0 0% 0 0% 0 0%
|
|
create pathconf statfs readlink readdir
|
|
0 0% 12 0% 47753 13% 0 0% 50 0%
|
|
server_caps delegreturn getacl setacl fs_locations
|
|
24 0% 18 0% 0 0% 0 0% 0 0%
|
|
rel_lkowner secinfo fsid_present exchange_id create_session
|
|
0 0% 0 0% 0 0% 2 0% 2 0%
|
|
destroy_session sequence get_lease_time reclaim_comp layoutget
|
|
1 0% 3 0% 1 0% 1 0% 0 0%
|
|
getdevinfo layoutcommit layoutreturn secinfo_no test_stateid
|
|
0 0% 0 0% 0 0% 3 0% 0 0%
|
|
free_stateid getdevicelist bind_conn_to_ses destroy_clientid seek
|
|
0 0% 0 0% 0 0% 0 0% 16235 4%
|
|
allocate deallocate layoutstats clone
|
|
0 0% 0 0% 71 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 346503 0 347286
|
|
proc4 71 1 26457 239948 0 0 0 64 0 44 0 12 0 0 0 0 0 0 87 15658 31 3 2 0 0 0 0 12 47810 0 50 24 18 0 0 0 0 0 0 2 2 1 3 1 1 0 0 0 0 3 0 0 0 0 0 16235 0 0 71 0 0 0 0 0 0 0 0 0 0 0 0 0
|
|
|
|
--- /proc/net/rpc/nfsd
|
|
$ cat /proc/net/rpc/nfsd
|
|
rc 0 0 222781
|
|
fh 0 0 0 0 0
|
|
io 630784 2438537728
|
|
th 16 0 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000 0.000
|
|
ra 0 0 0 0 0 0 0 0 0 0 0 0
|
|
net 222781 0 222781 14
|
|
rpc 222781 0 0 0 0
|
|
proc3 22 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
|
proc4 2 8 222773
|
|
proc4ops 76 0 0 0 290 14 1022 4 0 1 218329 350 0 0 0 0 315 0 0 15 0 0 0 222661 0 70 21 34 0 2 0 0 0 0 0 1 0 0 0 3283 0 0 0 16 8 4 0 20 0 0 0 0 0 35 222741 0 0 0 4 8 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
|
wdeleg_getattr 0
|
|
|
|
--- exports
|
|
--- /etc/exports ---
|
|
# /etc/exports: the access control list for filesystems which may be exported
|
|
# to NFS clients. See exports(5).
|
|
#
|
|
# Example for NFSv2 and NFSv3:
|
|
# /srv/homes hostname1(rw,sync,no_subtree_check) hostname2(ro,sync,no_subtree_check)
|
|
#
|
|
# Example for NFSv4:
|
|
# /srv/nfs4 gss/krb5i(rw,sync,fsid=0,crossmnt,no_subtree_check)
|
|
# /srv/nfs4/homes gss/krb5i(rw,sync,no_subtree_check)
|
|
#
|
|
|
|
/mnt/pfv-tsys5/ssd *(rw,no_root_squash)
|
|
|
|
#preprpod, not shared for now
|
|
#/mnt/pfv-tsys5/S1 *(rw,no_root_squash)
|
|
|
|
/mnt/pfv-tsys5/S2 *(rw,no_root_squash)
|
|
/mnt/pfv-tsys5/S3 *(rw,no_root_squash)
|
|
/mnt/pfv-tsys5/S4 *(rw,no_root_squash)
|
|
|
|
[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]
|
|
listen=0.0.0.0
|
|
# 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
|
|
--- /etc/default/nfs-kernel-server ---
|
|
# Runtime priority of server (see nice(1))
|
|
RPCNFSDPRIORITY=0
|
|
|
|
# Do you want to start the svcgssd daemon? It is only required for Kerberos
|
|
# exports. Valid alternatives are "yes" and "no"; the default is "no".
|
|
NEED_SVCGSSD=""
|
|
--- /etc/default/nfs-common ---
|
|
# If you do not set values for the NEED_ options, they will be attempted
|
|
# autodetected; this should be sufficient for most people. Valid alternatives
|
|
# for the NEED_ options are "yes" and "no".
|
|
|
|
# Do you want to start the statd daemon? It is not needed for NFSv4.
|
|
NEED_STATD=
|
|
|
|
# Do you want to start the idmapd daemon? It is only needed for NFSv4.
|
|
NEED_IDMAPD=
|
|
|
|
# Do you want to start the gssd daemon? It is required for Kerberos mounts.
|
|
NEED_GSSD=
|
|
|
|
--- idmapd.conf
|
|
--- /etc/idmapd.conf ---
|
|
[General]
|
|
|
|
Verbosity = 0
|
|
# set your own domain here, if it differs from FQDN minus hostname
|
|
# Domain = localdomain
|
|
|
|
[Mapping]
|
|
|
|
Nobody-User = nobody
|
|
Nobody-Group = nogroup
|
|
|
|
--- pvesm status
|
|
$ pvesm status
|
|
Name Type Status Total (KiB) Used (KiB) Available (KiB) %
|
|
D2 nfs active 2883130368 195840000 2540761088 6.79%
|
|
D3 nfs active 491133952 2048 466110464 0.00%
|
|
D5 nfs active 1921726464 244210688 1579823104 12.71%
|
|
SSD dir active 245023004 86468868 146034868 35.29%
|
|
local dir active 98497780 17938556 75509676 18.21%
|
|
local-lvm lvmthin active 1793077248 42316623 1750760624 2.36%
|
|
local-nonprod dir active 960303848 55442404 856006932 5.77%
|
|
|
|
--- pvesm list per storage
|
|
$ for s in $(pvesm status 2>/dev/null | awk 'NR>1 && $3=="active"{print $1}'); do
|
|
echo "--- storage: $s ---"
|
|
pvesm list "$s" 2>/dev/null | head -n 30
|
|
echo "--- pvesm config $s ---"
|
|
pvesm config "$s" 2>/dev/null
|
|
done
|
|
--- storage: D2 ---
|
|
Volid Format Type Size VMID
|
|
D2:100/vm-100-disk-0.raw raw images 34359738368 100
|
|
D2:100/vm-100-disk-1.raw raw images 540672 100
|
|
D2:101/vm-101-disk-0.qcow2 qcow2 images 34359738368 101
|
|
D2:104/vm-104-disk-0.qcow2 qcow2 images 53687091200 104
|
|
D2:105/vm-105-disk-0.qcow2 qcow2 images 34359738368 105
|
|
D2:106/vm-106-disk-0.qcow2 qcow2 images 34359738368 106
|
|
D2:108/vm-108-disk-0.qcow2 qcow2 images 34359738368 108
|
|
D2:109/vm-109-disk-0.qcow2 qcow2 images 26843545600 109
|
|
D2:114/vm-114-disk-0.qcow2 qcow2 images 34359738368 114
|
|
D2:117/vm-117-disk-0.qcow2 qcow2 images 34359738368 117
|
|
D2:3000/base-3000-disk-0.qcow2 qcow2 images 34359738368 3000
|
|
D2:500/vm-500-disk-0.qcow2 qcow2 images 540672 500
|
|
D2:509/vm-509-disk-0.qcow2 qcow2 images 34359738368 509
|
|
D2:600/vm-600-disk-1.qcow2 qcow2 images 34359738368 600
|
|
D2:601/vm-601-disk-0.qcow2 qcow2 images 34359738368 601
|
|
D2:603/vm-603-disk-0.qcow2 qcow2 images 34359738368 603
|
|
D2:702/vm-702-disk-0.qcow2 qcow2 images 107374182400 702
|
|
D2:703/vm-703-disk-0.qcow2 qcow2 images 34359738368 703
|
|
D2:704/vm-704-disk-0.qcow2 qcow2 images 34359738368 704
|
|
D2:901/vm-901-disk-0.qcow2 qcow2 images 141733920768 901
|
|
D2:904/vm-904-disk-0.qcow2 qcow2 images 34359738368 904
|
|
--- pvesm config D2 ---
|
|
--- storage: D3 ---
|
|
Volid Format Type Size VMID
|
|
--- pvesm config D3 ---
|
|
--- storage: D5 ---
|
|
Volid Format Type Size VMID
|
|
D5:100/vm-100-disk-0.qcow2 qcow2 images 34359738368 100
|
|
D5:103/vm-103-disk-0.qcow2 qcow2 images 34359738368 103
|
|
D5:107/vm-107-disk-0.qcow2 qcow2 images 34359738368 107
|
|
D5:313/vm-313-disk-0.qcow2 qcow2 images 34359738368 313
|
|
D5:530/vm-101-disk-0.qcow2 qcow2 images 34359738368 530
|
|
D5:531/vm-103-disk-0.qcow2 qcow2 images 34359738368 531
|
|
D5:532/vm-102-disk-0.qcow2 qcow2 images 34359738368 532
|
|
D5:533/vm-103-disk-0.qcow2 qcow2 images 34359738368 533
|
|
D5:534/vm-104-disk-0.qcow2 qcow2 images 34359738368 534
|
|
D5:535/vm-105-disk-0.qcow2 qcow2 images 34359738368 535
|
|
D5:536/vm-106-disk-0.qcow2 qcow2 images 34359738368 536
|
|
D5:537/vm-800-disk-0.qcow2 qcow2 images 34359738368 537
|
|
D5:538/vm-812-disk-0.qcow2 qcow2 images 540672 538
|
|
D5:538/vm-812-disk-2.raw raw images 429496729600 538
|
|
D5:541/vm-109-disk-0.qcow2 qcow2 images 34359738368 541
|
|
D5:602/vm-602-disk-0.qcow2 qcow2 images 34359738368 602
|
|
D5:701/vm-701-disk-0.qcow2 qcow2 images 34359738368 701
|
|
D5:902/vm-902-disk-0.qcow2 qcow2 images 53687091200 902
|
|
D5:903/vm-903-disk-0.qcow2 qcow2 images 34359738368 903
|
|
--- pvesm config D5 ---
|
|
--- storage: SSD ---
|
|
Volid Format Type Size VMID
|
|
SSD:5111/vm-5111-disk-0.qcow2 qcow2 images 309237645312 5111
|
|
--- pvesm config SSD ---
|
|
--- storage: local ---
|
|
Volid Format Type Size VMID
|
|
local:iso/debian13.iso iso iso 790626304
|
|
local:iso/proxmox-backup-server_4.2-1.iso iso iso 1480032256
|
|
local:iso/proxmox-datacenter-manager_1.1-1.iso iso iso 1458884608
|
|
local:iso/proxmox-mail-gateway_9.1-1.iso iso iso 1694324736
|
|
local:iso/proxmox-ve_9.2-1.iso iso iso 1706178560
|
|
local:iso/ubuntur-24.04.4.iso iso iso 3303444480
|
|
--- pvesm config local ---
|
|
--- storage: local-lvm ---
|
|
Volid Format Type Size VMID
|
|
local-lvm:base-5100-disk-0 raw images 34359738368 5100
|
|
local-lvm:vm-5102-disk-0 raw images 34359738368 5102
|
|
local-lvm:vm-5103-disk-0 raw images 34359738368 5103
|
|
local-lvm:vm-5104-disk-0 raw images 34359738368 5104
|
|
local-lvm:vm-5112-disk-0 raw images 309237645312 5112
|
|
--- pvesm config local-lvm ---
|
|
--- storage: local-nonprod ---
|
|
Volid Format Type Size VMID
|
|
local-nonprod:5101/vm-5101-disk-0.qcow2 qcow2 images 141733920768 5101
|
|
local-nonprod:51010/vm-51010-disk-0.qcow2 qcow2 images 34359738368 51010
|
|
local-nonprod:51011/vm-51011-disk-0.qcow2 qcow2 images 34359738368 51011
|
|
local-nonprod:51012/vm-51012-disk-0.qcow2 qcow2 images 34359738368 51012
|
|
local-nonprod:51013/vm-51013-disk-0.qcow2 qcow2 images 34359738368 51013
|
|
local-nonprod:51014/vm-51014-disk-0.qcow2 qcow2 images 34359738368 51014
|
|
local-nonprod:5105/vm-5105-disk-0.qcow2 qcow2 images 309237645312 5105
|
|
local-nonprod:5106/vm-5106-disk-0.qcow2 qcow2 images 34359738368 5106
|
|
local-nonprod:5107/vm-5107-disk-0.qcow2 qcow2 images 34359738368 5107
|
|
local-nonprod:5108/vm-5108-disk-0.qcow2 qcow2 images 34359738368 5108
|
|
local-nonprod:5109/vm-5109-disk-0.qcow2 qcow2 images 34359738368 5109
|
|
local-nonprod:515/vm-515-disk-0.qcow2 qcow2 images 107374182400 515
|
|
local-nonprod:53100/vm-53100-disk-0.qcow2 qcow2 images 171798691840 53100
|
|
local-nonprod:53101/vm-53101-disk-0.qcow2 qcow2 images 34359738368 53101
|
|
local-nonprod:53102/vm-53102-disk-0.qcow2 qcow2 images 34359738368 53102
|
|
local-nonprod:53103/vm-53103-disk-0.qcow2 qcow2 images 34359738368 53103
|
|
local-nonprod:6000/vm-6000-disk-0.qcow2 qcow2 images 34359738368 6000
|
|
--- pvesm config local-nonprod ---
|
|
[exit=255]
|
|
|
|
###############################################################################
|
|
# 17. STORAGE: LVM
|
|
###############################################################################
|
|
|
|
--- pvs
|
|
$ pvs -v
|
|
PV VG Fmt Attr PSize PFree DevSize PV UUID
|
|
/dev/sdd3 pve lvm2 a-- <1.82t 16.24g <1.82t 3Hy2uS-bTVE-5CmV-fSUc-pJfB-6at7-XPIwor
|
|
|
|
--- vgs
|
|
$ vgs -v
|
|
VG Attr Ext #PV #LV #SN VSize VFree VG UUID VProfile
|
|
pve wz--n- 4.00m 1 8 0 <1.82t 16.24g DQJIQ2-Hytg-wkk8-t8XN-ftB8-CSS3-PkAt5l
|
|
|
|
--- 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%
|
|
base-5100-disk-0 pve Vri-a-tz-k 34359738368B data 0.00 thin,sparse public data 0.00
|
|
data pve twi-aotz-- 1836111101952B 2.36 0.23 thin,pool private 2.36 0.23
|
|
root pve -wi-ao---- 103079215104B linear public
|
|
swap pve -wi-ao---- 8589934592B linear public
|
|
vm-5102-disk-0 pve Vwi---tz-- 34359738368B data thin,sparse public data
|
|
vm-5103-disk-0 pve Vwi---tz-- 34359738368B data thin,sparse public data
|
|
vm-5104-disk-0 pve Vwi---tz-- 34359738368B data thin,sparse public data
|
|
vm-5112-disk-0 pve Vwi-aotz-- 309237645312B data 14.01 thin,sparse public data 14.01
|
|
|
|
--- pvdisplay
|
|
$ pvdisplay
|
|
--- Physical volume ---
|
|
PV Name /dev/sdd3
|
|
VG Name pve
|
|
PV Size <1.82 TiB / not usable <4.07 MiB
|
|
Allocatable yes
|
|
PE Size 4.00 MiB
|
|
Total PE 476675
|
|
Free PE 4158
|
|
Allocated PE 472517
|
|
PV UUID 3Hy2uS-bTVE-5CmV-fSUc-pJfB-6at7-XPIwor
|
|
|
|
|
|
--- vgdisplay
|
|
$ vgdisplay
|
|
--- Volume group ---
|
|
VG Name pve
|
|
System ID
|
|
Format lvm2
|
|
Metadata Areas 1
|
|
Metadata Sequence No 129
|
|
VG Access read/write
|
|
VG Status resizable
|
|
MAX LV 0
|
|
Cur LV 8
|
|
Open LV 3
|
|
Max PV 0
|
|
Cur PV 1
|
|
Act PV 1
|
|
VG Size <1.82 TiB
|
|
PE Size 4.00 MiB
|
|
Total PE 476675
|
|
Alloc PE / Size 472517 / 1.80 TiB
|
|
Free PE / Size 4158 / 16.24 GiB
|
|
VG UUID DQJIQ2-Hytg-wkk8-t8XN-ftB8-CSS3-PkAt5l
|
|
|
|
|
|
--- lvdisplay
|
|
$ lvdisplay
|
|
--- Logical volume ---
|
|
LV Name data
|
|
VG Name pve
|
|
LV UUID as93nk-voWB-8ldF-uixQ-dq5t-qQjc-a1PjX2
|
|
LV Write Access read/write (activated read only)
|
|
LV Creation host, time proxmox, 2026-02-26 02:55:19 -0600
|
|
LV Pool metadata data_tmeta
|
|
LV Pool data data_tdata
|
|
LV Status available
|
|
# open 0
|
|
LV Size <1.67 TiB
|
|
Allocated pool data 2.36%
|
|
Allocated metadata 0.23%
|
|
Current LE 437763
|
|
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 09lGw1-urVX-Myv2-9Ig4-5aZf-f9ev-2MWD8d
|
|
LV Write Access read/write
|
|
LV Creation host, time proxmox, 2026-02-26 02:55:19 -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 eHzPs4-lmmu-f5vz-prX5-HBBJ-cOxr-uGzifs
|
|
LV Write Access read/write
|
|
LV Creation host, time proxmox, 2026-02-26 02:55:19 -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
|
|
|
|
--- Logical volume ---
|
|
LV Path /dev/pve/base-5100-disk-0
|
|
LV Name base-5100-disk-0
|
|
VG Name pve
|
|
LV UUID Xti0mZ-RfJk-3kBx-kGep-bf6Y-o83w-SbQUgU
|
|
LV Write Access read only
|
|
LV Creation host, time pfv-tsys5, 2026-07-23 10:13:04 -0500
|
|
LV Pool name data
|
|
LV Status available
|
|
# open 0
|
|
LV Size 32.00 GiB
|
|
Mapped size 0.00%
|
|
Current LE 8192
|
|
Segments 1
|
|
Allocation inherit
|
|
Read ahead sectors auto
|
|
- currently set to 8192
|
|
Block device 252:8
|
|
|
|
--- Logical volume ---
|
|
LV Path /dev/pve/vm-5102-disk-0
|
|
LV Name vm-5102-disk-0
|
|
VG Name pve
|
|
LV UUID yr60b8-ndB7-YV5x-DkLj-T7C1-53me-fPbe3V
|
|
LV Write Access read/write
|
|
LV Creation host, time pfv-tsys5, 2026-07-23 10:14:53 -0500
|
|
LV Pool name data
|
|
LV Status NOT available
|
|
LV Size 32.00 GiB
|
|
Current LE 8192
|
|
Segments 1
|
|
Allocation inherit
|
|
Read ahead sectors auto
|
|
|
|
--- Logical volume ---
|
|
LV Path /dev/pve/vm-5103-disk-0
|
|
LV Name vm-5103-disk-0
|
|
VG Name pve
|
|
LV UUID 0hHhm5-bs1j-5jaC-4dOO-Uiyj-fZrU-LAlCLs
|
|
LV Write Access read/write
|
|
LV Creation host, time pfv-tsys5, 2026-07-23 10:15:12 -0500
|
|
LV Pool name data
|
|
LV Status NOT available
|
|
LV Size 32.00 GiB
|
|
Current LE 8192
|
|
Segments 1
|
|
Allocation inherit
|
|
Read ahead sectors auto
|
|
|
|
--- Logical volume ---
|
|
LV Path /dev/pve/vm-5104-disk-0
|
|
LV Name vm-5104-disk-0
|
|
VG Name pve
|
|
LV UUID aV3Ov4-Ourf-XXTA-kfoJ-LaXO-BKCx-3do310
|
|
LV Write Access read/write
|
|
LV Creation host, time pfv-tsys5, 2026-07-23 10:15:32 -0500
|
|
LV Pool name data
|
|
LV Status NOT available
|
|
LV Size 32.00 GiB
|
|
Current LE 8192
|
|
Segments 1
|
|
Allocation inherit
|
|
Read ahead sectors auto
|
|
|
|
--- Logical volume ---
|
|
LV Path /dev/pve/vm-5112-disk-0
|
|
LV Name vm-5112-disk-0
|
|
VG Name pve
|
|
LV UUID I80n0e-Z2fQ-8F61-aSIW-rIT3-PYgE-zneTFu
|
|
LV Write Access read/write
|
|
LV Creation host, time pfv-tsys5, 2026-07-23 10:16:59 -0500
|
|
LV Pool name data
|
|
LV Status available
|
|
# open 1
|
|
LV Size 288.00 GiB
|
|
Mapped size 14.01%
|
|
Current LE 73728
|
|
Segments 1
|
|
Allocation inherit
|
|
Read ahead sectors auto
|
|
- currently set to 8192
|
|
Block device 252:7
|
|
|
|
|
|
--- lvm/lvm.conf (filters only)
|
|
--- /etc/lvm/lvm.conf ---
|
|
# This is an example configuration file for the LVM2 system.
|
|
# It contains the default settings that would be used if there was no
|
|
# /etc/lvm/lvm.conf file.
|
|
#
|
|
# Refer to 'man lvm.conf' for further information including the file layout.
|
|
#
|
|
# Refer to 'man lvm.conf' for information about how settings configured in
|
|
# this file are combined with built-in values and command line options to
|
|
# arrive at the final values used by LVM.
|
|
#
|
|
# Refer to 'man lvmconfig' for information about displaying the built-in
|
|
# and configured values used by LVM.
|
|
#
|
|
# If a default value is set in this file (not commented out), then a
|
|
# new version of LVM using this file will continue using that value,
|
|
# even if the new version of LVM changes the built-in default value.
|
|
#
|
|
# To put this file in a different directory and override /etc/lvm set
|
|
# the environment variable LVM_SYSTEM_DIR before running the tools.
|
|
#
|
|
# N.B. Take care that each setting only appears once if uncommenting
|
|
# example settings in this file.
|
|
|
|
|
|
# Configuration section config.
|
|
# How LVM configuration settings are handled.
|
|
config {
|
|
|
|
# Configuration option config/checks.
|
|
# If enabled, any LVM configuration mismatch is reported.
|
|
# This implies checking that the configuration key is understood by
|
|
# LVM and that the value of the key is the proper type. If disabled,
|
|
# any configuration mismatch is ignored and the default value is used
|
|
# without any warning (a message about the configuration key not being
|
|
# found is issued in verbose mode only).
|
|
# This configuration option has an automatic default value.
|
|
# checks = 1
|
|
|
|
# Configuration option config/validate_metadata.
|
|
# Allows to select the level of validation after metadata transformation.
|
|
# Validation takes extra CPU time to verify internal consistency.
|
|
# Accepted values:
|
|
# full
|
|
# Do a full metadata validation before disk write.
|
|
# none
|
|
# Skip any checks (unrecommended, slightly faster).
|
|
#
|
|
# This configuration option is advanced.
|
|
# This configuration option has an automatic default value.
|
|
# validate_metadata = "full"
|
|
|
|
# Configuration option config/abort_on_errors.
|
|
# Abort the LVM process if a configuration mismatch is found.
|
|
# This configuration option has an automatic default value.
|
|
# abort_on_errors = 0
|
|
|
|
# Configuration option config/profile_dir.
|
|
# Directory where LVM looks for configuration profiles.
|
|
# This configuration option has an automatic default value.
|
|
# profile_dir = "/etc/lvm/profile"
|
|
}
|
|
|
|
# Configuration section devices.
|
|
# How LVM uses block devices.
|
|
devices {
|
|
|
|
# Configuration option devices/dir.
|
|
# Directory in which to create volume group device nodes.
|
|
# Commands also accept this as a prefix on volume group names.
|
|
# This configuration option is advanced.
|
|
# This configuration option has an automatic default value.
|
|
# dir = "/dev"
|
|
|
|
# Configuration option devices/scan.
|
|
# Directories containing device nodes to use with LVM.
|
|
# This configuration option is advanced.
|
|
# This configuration option has an automatic default value.
|
|
# scan = [ "/dev" ]
|
|
|
|
# Configuration option devices/obtain_device_list_from_udev.
|
|
# Obtain the list of available devices from udev.
|
|
# This avoids opening or using any inapplicable non-block devices or
|
|
# subdirectories found in the udev directory. Any device node or
|
|
# symlink not managed by udev in the udev directory is ignored. This
|
|
# setting applies only to the udev-managed device directory; other
|
|
# directories will be scanned fully. LVM needs to be compiled with
|
|
# udev support for this setting to apply.
|
|
# This configuration option has an automatic default value.
|
|
# obtain_device_list_from_udev = 0
|
|
|
|
# Configuration option devices/external_device_info_source.
|
|
# Enable device information from udev.
|
|
# If set to "udev", lvm will supplement its own native device information
|
|
# with information from libudev. This can potentially improve the detection
|
|
# of MD component devices and multipath component devices.
|
|
# This configuration option has an automatic default value.
|
|
# external_device_info_source = "none"
|
|
|
|
# Configuration option devices/hints.
|
|
# Use a local file to remember which devices have PVs on them.
|
|
# Some commands will use this as an optimization to reduce device
|
|
# scanning, and will only scan the listed PVs. Removing the hint file
|
|
# will cause lvm to generate a new one. Disable hints if PVs will
|
|
# be copied onto devices using non-lvm commands, like dd.
|
|
#
|
|
# Accepted values:
|
|
# all
|
|
# Use all hints.
|
|
# none
|
|
# Use no hints.
|
|
#
|
|
# This configuration option has an automatic default value.
|
|
# hints = "all"
|
|
|
|
# Configuration option devices/preferred_names.
|
|
# Select which path name to display for a block device.
|
|
# If multiple path names exist for a block device, and LVM needs to
|
|
# display a name for the device, the path names are matched against
|
|
# each item in this list of regular expressions. The first match is
|
|
# used. Try to avoid using undescriptive /dev/dm-N names, if present.
|
|
# If no preferred name matches, or if preferred_names are not defined,
|
|
# the following built-in preferences are applied in order until one
|
|
# produces a preferred name:
|
|
# Prefer names with path prefixes in the order of:
|
|
# /dev/mapper, /dev/disk, /dev/dm-*, /dev/block.
|
|
# Prefer the name with the least number of slashes.
|
|
# Prefer a name that is a symlink.
|
|
# Prefer the path with least value in lexicographical order.
|
|
#
|
|
# Example
|
|
# preferred_names = [ "^/dev/mpath/", "^/dev/mapper/mpath", "^/dev/[hs]d" ]
|
|
#
|
|
# This configuration option does not have a default value defined.
|
|
|
|
# Configuration option devices/use_devicesfile.
|
|
# Enable or disable the use of a devices file.
|
|
# When enabled, lvm will only use devices that
|
|
# are listed in the devices file. A devices file will
|
|
# be used, regardless of this setting, when the --devicesfile
|
|
# option is set to a specific file name.
|
|
# This configuration option has an automatic default value.
|
|
# use_devicesfile = 0
|
|
|
|
# Configuration option devices/devicesfile.
|
|
# The name of the system devices file, listing devices that LVM should use.
|
|
# This should not be used to select a non-system devices file.
|
|
# The --devicesfile option is intended for alternative devices files.
|
|
# This configuration option has an automatic default value.
|
|
# devicesfile = "system.devices"
|
|
|
|
# Configuration option devices/devicesfile_backup_limit.
|
|
# The max number of backup files to keep in /etc/lvm/devices/backup.
|
|
# LVM creates a backup of the devices file each time a new
|
|
# version is created, or each time a modification is detected.
|
|
# When the max number of backups is reached, the oldest are
|
|
# removed to remain at the limit. Set to 0 to disable backups.
|
|
# Only the system devices file is backed up.
|
|
# This configuration option has an automatic default value.
|
|
# devicesfile_backup_limit = 50
|
|
|
|
# Configuration option devices/search_for_devnames.
|
|
# Look outside of the devices file for missing devname entries.
|
|
# A devname entry is used for a device that does not have a stable
|
|
# device id, e.g. wwid, so the unstable device name is used as
|
|
# the device id. After reboot, or if the device is reattached,
|
|
# the device name may change, in which case lvm will not find
|
|
# the expected PV on the device listed in the devices file.
|
|
# This setting controls whether lvm will search other devices,
|
|
# outside the devices file, to look for the missing PV on a
|
|
# renamed device. If "none", lvm will not look at other devices,
|
|
# and the PV may appear to be missing. If "auto", lvm will look
|
|
# at other devices, but only those that are likely to have the PV.
|
|
# If "all", lvm will look at all devices on the system.
|
|
# This configuration option has an automatic default value.
|
|
# search_for_devnames = "all"
|
|
|
|
# Configuration option devices/device_ids_refresh.
|
|
# Find PVs on new devices and update the device IDs in the devices file.
|
|
# If PVs are restored or moved to a new system with new devices, but
|
|
# an old system.devices remains with old device IDs, then search for
|
|
# the PVIDs on new devices and update the device IDs in system.devices.
|
|
# The original device IDs must also not be found on the new system.
|
|
# See device_ids_refresh_check for conditions that trigger the refresh.
|
|
# This configuration option has an automatic default value.
|
|
# device_ids_refresh = 1
|
|
|
|
# Configuration option devices/device_ids_refresh_checks.
|
|
# Conditions that trigger device_ids_refresh to locate PVIDs on new devices.
|
|
# product_uuid: refresh if /sys/devices/virtual/dmi/id/product_uuid does not
|
|
# match the value saved in system.devices.
|
|
# hostname: refresh if hostname does not match the value saved in system.devices.
|
|
# (hostname is used if product_uuid is not available.)
|
|
# Remove values from this list to prevent lvm from using them.
|
|
# This configuration option has an automatic default value.
|
|
# device_ids_refresh_checks = [ "product_uuid", "hostname" ]
|
|
|
|
# Configuration option devices/filter.
|
|
# Limit the block devices that are used by LVM commands.
|
|
# This is a list of regular expressions used to accept or reject block
|
|
# device path names. Each regex is delimited by a vertical bar '|'
|
|
# (or any character) and is preceded by 'a' to accept the path, or
|
|
# by 'r' to reject the path. The first regex in the list to match the
|
|
# path is used, producing the 'a' or 'r' result for the device.
|
|
# When multiple path names exist for a block device, if any path name
|
|
# matches an 'a' pattern before an 'r' pattern, then the device is
|
|
# accepted. If all the path names match an 'r' pattern first, then the
|
|
# device is rejected. Unmatching path names do not affect the accept
|
|
# or reject decision. If no path names for a device match a pattern,
|
|
# then the device is accepted. Be careful mixing 'a' and 'r' patterns,
|
|
# as the combination might produce unexpected results (test changes.)
|
|
# Run vgscan after changing the filter to regenerate the cache.
|
|
#
|
|
# Example
|
|
# Accept every block device:
|
|
# filter = [ "a|.*|" ]
|
|
# Reject the cdrom drive:
|
|
# filter = [ "r|/dev/cdrom|" ]
|
|
# Work with just loopback devices, e.g. for testing:
|
|
# filter = [ "a|loop|", "r|.*|" ]
|
|
# Accept all loop devices and ide drives except hdc:
|
|
# filter = [ "a|loop|", "r|/dev/hdc|", "a|/dev/ide|", "r|.*|" ]
|
|
# Use anchors to be very specific:
|
|
# filter = [ "a|^/dev/hda8$|", "r|.*|" ]
|
|
#
|
|
# This configuration option has an automatic default value.
|
|
# filter = [ "a|.*|" ]
|
|
|
|
# Configuration option devices/global_filter.
|
|
# Limit the block devices that are used by LVM system components.
|
|
# Because devices/filter may be overridden from the command line, it is
|
|
# not suitable for system-wide device filtering, e.g. udev.
|
|
# Use global_filter to hide devices from these LVM system components.
|
|
# The syntax is the same as devices/filter. Devices rejected by
|
|
# global_filter are not opened by LVM.
|
|
# This configuration option has an automatic default value.
|
|
# global_filter = [ "a|.*|" ]
|
|
|
|
# Configuration option devices/types.
|
|
# List of additional acceptable block device types.
|
|
# These are of device type names from /proc/devices, followed by the
|
|
# maximum number of partitions.
|
|
#
|
|
# Example
|
|
# types = [ "fd", 16 ]
|
|
#
|
|
# This configuration option is advanced.
|
|
# This configuration option does not have a default value defined.
|
|
|
|
# Configuration option devices/sysfs_scan.
|
|
# Restrict device scanning to block devices appearing in sysfs.
|
|
# This is a quick way of filtering out block devices that are not
|
|
# present on the system. sysfs must be part of the kernel and mounted.)
|
|
# This configuration option has an automatic default value.
|
|
# sysfs_scan = 1
|
|
|
|
# Configuration option devices/scan_lvs.
|
|
# Allow LVM LVs to be used as PVs. When enabled, LVM commands will
|
|
# scan active LVs to look for other PVs. Caution is required to
|
|
# avoid using PVs that belong to guest images stored on LVs.
|
|
# When enabled, the LVs scanned should be restricted using the
|
|
# devices file or the filter. This option does not enable autoactivation
|
|
# of layered VGs, which requires editing LVM udev rules (see LVM_PVSCAN_ON_LVS.)
|
|
# This configuration option has an automatic default value.
|
|
# scan_lvs = 0
|
|
|
|
# Configuration option devices/multipath_component_detection.
|
|
# Ignore devices that are components of DM multipath devices.
|
|
# This configuration option has an automatic default value.
|
|
# multipath_component_detection = 1
|
|
|
|
# Configuration option devices/multipath_wwids_file.
|
|
# The path to the multipath wwids file used for multipath component detection.
|
|
# Set this to an empty string to disable the use of the multipath wwids file.
|
|
# This configuration option has an automatic default value.
|
|
# multipath_wwids_file = "/etc/multipath/wwids"
|
|
|
|
# Configuration option devices/md_component_detection.
|
|
# Enable detection and exclusion of MD component devices.
|
|
# An MD component device is a block device that MD uses as part
|
|
# of a software RAID virtual device. When an LVM PV is created
|
|
# on an MD device, LVM must only use the top level MD device as
|
|
# the PV, and should ignore the underlying component devices.
|
|
# In cases where the MD superblock is located at the end of the
|
|
# component devices, it is more difficult for LVM to consistently
|
|
# identify an MD component, see the md_component_checks setting.
|
|
# This configuration option has an automatic default value.
|
|
# md_component_detection = 1
|
|
|
|
# Configuration option devices/md_component_checks.
|
|
# The checks LVM should use to detect MD component devices.
|
|
# MD component devices are block devices used by MD software RAID.
|
|
#
|
|
# Accepted values:
|
|
# auto
|
|
# LVM will skip scanning the end of devices when it has other
|
|
# indications that the device is not an MD component.
|
|
# start
|
|
# LVM will only scan the start of devices for MD superblocks.
|
|
# This does not incur extra I/O by LVM.
|
|
# full
|
|
|
|
--- lvm.conf active filter
|
|
$ grep -E '^\s*(filter|global_filter|use_devicesfile|obtain_device_list_from_udev)' /etc/lvm/lvm.conf 2>/dev/null
|
|
global_filter=["r|/dev/zd.*|","r|/dev/rbd.*|"]
|
|
|
|
###############################################################################
|
|
# 18. STORAGE: MULTIPATH
|
|
###############################################################################
|
|
|
|
--- multipath -ll
|
|
$ multipath -ll
|
|
/root/check.sh: line 45: multipath: command not found
|
|
[exit=127 / not installed or not permitted]
|
|
|
|
--- multipath -v3 -ll (verbose, capped)
|
|
$ multipath -v3 -ll
|
|
/root/check.sh: line 45: multipath: command not found
|
|
[exit=127 / not installed or not permitted]
|
|
|
|
--- multipath.conf
|
|
[missing: /etc/multipath.conf]
|
|
|
|
--- systemctl is-active multipathd
|
|
$ systemctl is-active multipathd
|
|
inactive
|
|
[exit=4 / not installed or not permitted]
|
|
|
|
###############################################################################
|
|
# 19. STORAGE: ZFS
|
|
###############################################################################
|
|
|
|
--- zfs version (userland)
|
|
$ zfs version
|
|
zfs-2.4.3-pve1
|
|
zfs-kmod-2.3.4-pve1
|
|
|
|
--- zpool version
|
|
$ zpool version
|
|
zfs-2.4.3-pve1
|
|
zfs-kmod-2.3.4-pve1
|
|
|
|
--- zpool list -v
|
|
$ zpool list -v
|
|
no pools available
|
|
|
|
--- zpool status -v
|
|
$ zpool status -v
|
|
no pools available
|
|
|
|
--- zpool key properties
|
|
$ zpool get name,size,alloc,free,expandsize,fragmentation,capacity,health,ashift,autotrim,autoreplace,cachefile,comment,listsnapshots,multihost,version,bootfs,delegation,failmode,freeing,leaked,readonly
|
|
|
|
--- zfs per-dataset key properties
|
|
$ zfs get -r -o name,property,value,source \
|
|
compression,atime,recordsize,volblocksize,sync,primarycache,secondarycache,checksum,xattr,acltype,aclinherit,copies,logbias,refreservation,reservation,quota,used,avail,refer,mountpoint,mounted,canmount,relative_path,snapdir,version,primarycache,redundant_metadata,encryption 2>/dev/null
|
|
[exit=2]
|
|
|
|
--- ARC stats
|
|
$ cat /proc/spl/kstat/zfs/arcstats
|
|
21 1 0x01 147 39984 38395389884 162897806159857
|
|
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 3163965184
|
|
c_min 4 3163965184
|
|
c_max 4 10125049856
|
|
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_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 101246885888
|
|
memory_free_bytes 4 67169845248
|
|
memory_available_bytes 3 63700415744
|
|
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 1012504985
|
|
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 3469429504
|
|
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 38375826540 162897807613626
|
|
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 38375825551 162897808945603
|
|
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 38375695230 162897811913320
|
|
name type data
|
|
struct_size 4 96
|
|
linear_cnt 4 0
|
|
linear_data_size 4 0
|
|
scatter_cnt 4 1
|
|
scatter_data_size 4 4096
|
|
scatter_chunk_waste 4 0
|
|
scatter_order_0 4 0
|
|
scatter_order_1 4 0
|
|
scatter_order_2 4 0
|
|
scatter_order_3 4 0
|
|
scatter_order_4 4 0
|
|
scatter_order_5 4 0
|
|
scatter_order_6 4 0
|
|
scatter_order_7 4 0
|
|
scatter_order_8 4 0
|
|
scatter_order_9 4 0
|
|
scatter_page_multi_chunk 4 1
|
|
scatter_page_multi_zone 4 0
|
|
scatter_page_alloc_retry 4 0
|
|
scatter_sg_table_retry 4 0
|
|
|
|
--- ZFS module parameters (perf-relevant)
|
|
$ for f in /sys/module/zfs/parameters/*; do
|
|
[ -r "$f" ] || continue
|
|
name="$(basename "$f")"
|
|
case "$name" in
|
|
zfs_arc_*|zfs_abd_*|zfs_dbuf_*|zfs_txg_*|zfs_vdev_*|zfs_sync_*|zfs_dirty_*|zfs_*io_*|zvol_*|l2arc_*|zfs_prefetch_*|zfs_*max_active|zfs_*_taskq*) ;;
|
|
*) continue ;;
|
|
esac
|
|
printf ' %-50s = %s\n' "$name" "$(cat "$f")"
|
|
done
|
|
l2arc_exclude_special = 0
|
|
l2arc_feed_again = 1
|
|
l2arc_feed_min_ms = 200
|
|
l2arc_feed_secs = 1
|
|
l2arc_headroom = 8
|
|
l2arc_headroom_boost = 200
|
|
l2arc_meta_percent = 33
|
|
l2arc_mfuonly = 0
|
|
l2arc_noprefetch = 1
|
|
l2arc_norw = 0
|
|
l2arc_rebuild_blocks_min_l2size = 1073741824
|
|
l2arc_rebuild_enabled = 1
|
|
l2arc_trim_ahead = 0
|
|
l2arc_write_boost = 33554432
|
|
l2arc_write_max = 33554432
|
|
zfs_abd_scatter_enabled = 1
|
|
zfs_abd_scatter_max_order = 9
|
|
zfs_abd_scatter_min_size = 1536
|
|
zfs_arc_average_blocksize = 8192
|
|
zfs_arc_dnode_limit = 0
|
|
zfs_arc_dnode_limit_percent = 10
|
|
zfs_arc_dnode_reduce_percent = 10
|
|
zfs_arc_evict_batch_limit = 10
|
|
zfs_arc_eviction_pct = 200
|
|
zfs_arc_evict_threads = 3
|
|
zfs_arc_grow_retry = 0
|
|
zfs_arc_lotsfree_percent = 10
|
|
zfs_arc_max = 10125049856
|
|
zfs_arc_meta_balance = 500
|
|
zfs_arc_min = 0
|
|
zfs_arc_min_prefetch_ms = 0
|
|
zfs_arc_min_prescient_prefetch_ms = 0
|
|
zfs_arc_pc_percent = 0
|
|
zfs_arc_prune_task_threads = 1
|
|
zfs_arc_shrinker_limit = 0
|
|
zfs_arc_shrinker_seeks = 2
|
|
zfs_arc_shrink_shift = 0
|
|
zfs_arc_sys_free = 0
|
|
zfs_dbuf_state_index = 0
|
|
zfs_dio_enabled = 1
|
|
zfs_dio_write_verify_events_per_second = 20
|
|
zfs_dirty_data_max = 4294967296
|
|
zfs_dirty_data_max_max = 4294967296
|
|
zfs_dirty_data_max_max_percent = 25
|
|
zfs_dirty_data_max_percent = 10
|
|
zfs_dirty_data_sync_percent = 20
|
|
zfs_prefetch_disable = 0
|
|
zfs_slow_io_events_per_second = 20
|
|
zfs_sync_pass_deferred_free = 2
|
|
zfs_sync_pass_dont_compress = 8
|
|
zfs_sync_pass_rewrite = 2
|
|
zfs_txg_history = 100
|
|
zfs_txg_timeout = 5
|
|
zfs_vdev_aggregation_limit = 1048576
|
|
zfs_vdev_aggregation_limit_non_rotating = 131072
|
|
zfs_vdev_async_read_max_active = 3
|
|
zfs_vdev_async_read_min_active = 1
|
|
zfs_vdev_async_write_active_max_dirty_percent = 60
|
|
zfs_vdev_async_write_active_min_dirty_percent = 30
|
|
zfs_vdev_async_write_max_active = 10
|
|
zfs_vdev_async_write_min_active = 2
|
|
zfs_vdev_default_ms_count = 200
|
|
zfs_vdev_default_ms_shift = 29
|
|
zfs_vdev_def_queue_depth = 32
|
|
zfs_vdev_direct_write_verify = 1
|
|
zfs_vdev_disk_classic = 0
|
|
zfs_vdev_disk_max_segs = 0
|
|
zfs_vdev_failfast_mask = 1
|
|
zfs_vdev_initializing_max_active = 1
|
|
zfs_vdev_initializing_min_active = 1
|
|
zfs_vdev_max_active = 1000
|
|
zfs_vdev_max_auto_ashift = 14
|
|
zfs_vdev_max_ms_shift = 34
|
|
zfs_vdev_min_auto_ashift = 9
|
|
zfs_vdev_min_ms_count = 16
|
|
zfs_vdev_mirror_non_rotating_inc = 0
|
|
zfs_vdev_mirror_non_rotating_seek_inc = 1
|
|
zfs_vdev_mirror_rotating_inc = 0
|
|
zfs_vdev_mirror_rotating_seek_inc = 5
|
|
zfs_vdev_mirror_rotating_seek_offset = 1048576
|
|
zfs_vdev_ms_count_limit = 131072
|
|
zfs_vdev_nia_credit = 5
|
|
zfs_vdev_nia_delay = 5
|
|
zfs_vdev_open_timeout_ms = 1000
|
|
zfs_vdev_queue_depth_pct = 1000
|
|
zfs_vdev_raidz_impl = cycle [fastest] original scalar sse2 ssse3
|
|
zfs_vdev_read_gap_limit = 32768
|
|
zfs_vdev_rebuild_max_active = 3
|
|
zfs_vdev_rebuild_min_active = 1
|
|
zfs_vdev_removal_max_active = 2
|
|
zfs_vdev_removal_min_active = 1
|
|
zfs_vdev_scheduler = unused
|
|
zfs_vdev_scrub_max_active = 3
|
|
zfs_vdev_scrub_min_active = 1
|
|
zfs_vdev_sync_read_max_active = 10
|
|
zfs_vdev_sync_read_min_active = 10
|
|
zfs_vdev_sync_write_max_active = 10
|
|
zfs_vdev_sync_write_min_active = 10
|
|
zfs_vdev_trim_max_active = 2
|
|
zfs_vdev_trim_min_active = 1
|
|
zfs_vdev_write_gap_limit = 4096
|
|
zfs_zil_clean_taskq_maxalloc = 1048576
|
|
zfs_zil_clean_taskq_minalloc = 1024
|
|
zfs_zil_clean_taskq_nthr_pct = 100
|
|
zvol_blk_mq_blocks_per_thread = 8
|
|
zvol_blk_mq_queue_depth = 128
|
|
zvol_enforce_quotas = 1
|
|
zvol_inhibit_dev = 0
|
|
zvol_major = 230
|
|
zvol_max_discard_blocks = 16384
|
|
zvol_num_taskqs = 0
|
|
zvol_open_timeout_ms = 1000
|
|
zvol_prefetch_bytes = 131072
|
|
zvol_request_sync = 0
|
|
zvol_threads = 0
|
|
zvol_use_blk_mq = 0
|
|
zvol_volmode = 1
|
|
|
|
--- zpool iostat snapshot
|
|
$ zpool iostat 1 1
|
|
no pools available
|
|
|
|
--- arc_summary (if present)
|
|
$ arc_summary
|
|
|
|
------------------------------------------------------------------------
|
|
ZFS Subsystem Report Sun Jul 26 16:30:19 2026
|
|
Linux 6.17.2-1-pve 2.3.4-pve1
|
|
Machine: pfv-tsys5 (x86_64) 2.3.4-pve1
|
|
|
|
ARC status:
|
|
Total memory size: 94.3 GiB
|
|
Min target size: 3.1 % 2.9 GiB
|
|
Max target size: 10.0 % 9.4 GiB
|
|
Target size (adaptive): < 0.1 % 2.9 GiB
|
|
Current size: < 0.1 % 1.9 KiB
|
|
Free memory size: 62.6 GiB
|
|
Available memory size: 59.3 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 12
|
|
brt_zap_default_ibs 12
|
|
brt_zap_prefetch 1
|
|
dbuf_cache_hiwater_pct 10
|
|
dbuf_cache_lowater_pct 10
|
|
dbuf_cache_max_bytes 18446744073709551615
|
|
dbuf_cache_shift 5
|
|
dbuf_metadata_cache_max_bytes 18446744073709551615
|
|
dbuf_metadata_cache_shift 6
|
|
dbuf_mutex_cache_shift 0
|
|
ddt_zap_default_bs 15
|
|
ddt_zap_default_ibs 15
|
|
dmu_ddt_copies 0
|
|
dmu_object_alloc_chunk_shift 7
|
|
dmu_prefetch_max 134217728
|
|
icp_aes_impl cycle [fastest] generic x86_64 aesni
|
|
icp_gcm_avx_chunk_size 32736
|
|
icp_gcm_impl cycle [fastest] generic pclmulqdq
|
|
l2arc_exclude_special 0
|
|
l2arc_feed_again 1
|
|
l2arc_feed_min_ms 200
|
|
l2arc_feed_secs 1
|
|
l2arc_headroom 8
|
|
l2arc_headroom_boost 200
|
|
l2arc_meta_percent 33
|
|
l2arc_mfuonly 0
|
|
l2arc_noprefetch 1
|
|
l2arc_norw 0
|
|
l2arc_rebuild_blocks_min_l2size 1073741824
|
|
l2arc_rebuild_enabled 1
|
|
l2arc_trim_ahead 0
|
|
l2arc_write_boost 33554432
|
|
l2arc_write_max 33554432
|
|
metaslab_aliquot 1048576
|
|
metaslab_bias_enabled 1
|
|
metaslab_debug_load 0
|
|
metaslab_debug_unload 0
|
|
metaslab_df_max_search 16777216
|
|
metaslab_df_use_largest_segment 0
|
|
metaslab_force_ganging 16777217
|
|
metaslab_force_ganging_pct 3
|
|
metaslab_fragmentation_factor_enabled 1
|
|
metaslab_lba_weighting_enabled 1
|
|
metaslab_preload_enabled 1
|
|
metaslab_preload_limit 10
|
|
metaslab_preload_pct 50
|
|
metaslab_unload_delay 32
|
|
metaslab_unload_delay_ms 600000
|
|
raidz_expand_max_copy_bytes 167772160
|
|
raidz_expand_max_reflow_bytes 0
|
|
raidz_io_aggregate_rows 4
|
|
send_holes_without_birth_time 1
|
|
spa_asize_inflation 24
|
|
spa_config_path /etc/zfs/zpool.cache
|
|
spa_cpus_per_allocator 4
|
|
spa_load_print_vdev_tree 0
|
|
spa_load_verify_data 1
|
|
spa_load_verify_metadata 1
|
|
spa_load_verify_shift 4
|
|
spa_num_allocators 4
|
|
spa_slop_shift 5
|
|
spa_upgrade_errlog_limit 0
|
|
vdev_file_logical_ashift 9
|
|
vdev_file_physical_ashift 9
|
|
vdev_removal_max_span 32768
|
|
vdev_validate_skip 0
|
|
zap_iterate_prefetch 1
|
|
zap_micro_max_size 131072
|
|
zap_shrink_enabled 1
|
|
zfetch_hole_shift 2
|
|
zfetch_max_distance 67108864
|
|
zfetch_max_idistance 134217728
|
|
zfetch_max_reorder 16777216
|
|
zfetch_max_sec_reap 2
|
|
zfetch_max_streams 8
|
|
zfetch_min_distance 4194304
|
|
zfetch_min_sec_reap 1
|
|
zfs_abd_scatter_enabled 1
|
|
zfs_abd_scatter_max_order 9
|
|
zfs_abd_scatter_min_size 1536
|
|
zfs_active_allocator dynamic
|
|
zfs_admin_snapshot 0
|
|
zfs_allow_redacted_dataset_mount 0
|
|
zfs_arc_average_blocksize 8192
|
|
zfs_arc_dnode_limit 0
|
|
zfs_arc_dnode_limit_percent 10
|
|
zfs_arc_dnode_reduce_percent 10
|
|
zfs_arc_evict_batch_limit 10
|
|
zfs_arc_evict_threads 3
|
|
zfs_arc_eviction_pct 200
|
|
zfs_arc_grow_retry 0
|
|
zfs_arc_lotsfree_percent 10
|
|
zfs_arc_max 10125049856
|
|
zfs_arc_meta_balance 500
|
|
zfs_arc_min 0
|
|
zfs_arc_min_prefetch_ms 0
|
|
zfs_arc_min_prescient_prefetch_ms 0
|
|
zfs_arc_pc_percent 0
|
|
zfs_arc_prune_task_threads 1
|
|
zfs_arc_shrink_shift 0
|
|
zfs_arc_shrinker_limit 0
|
|
zfs_arc_shrinker_seeks 2
|
|
zfs_arc_sys_free 0
|
|
zfs_async_block_max_blocks 18446744073709551615
|
|
zfs_autoimport_disable 1
|
|
zfs_bclone_enabled 1
|
|
zfs_bclone_wait_dirty 1
|
|
zfs_blake3_impl cycle [fastest] generic sse2 sse41
|
|
zfs_btree_verify_intensity 0
|
|
zfs_checksum_events_per_second 20
|
|
zfs_commit_timeout_pct 10
|
|
zfs_compressed_arc_enabled 1
|
|
zfs_condense_indirect_commit_entry_delay_ms 0
|
|
zfs_condense_indirect_obsolete_pct 25
|
|
zfs_condense_indirect_vdevs_enable 1
|
|
zfs_condense_max_obsolete_bytes 1073741824
|
|
zfs_condense_min_mapping_bytes 131072
|
|
zfs_dbgmsg_enable 1
|
|
zfs_dbgmsg_maxsize 4194304
|
|
zfs_dbuf_state_index 0
|
|
zfs_ddt_data_is_special 1
|
|
zfs_deadman_checktime_ms 60000
|
|
zfs_deadman_enabled 1
|
|
zfs_deadman_events_per_second 1
|
|
zfs_deadman_failmode wait
|
|
zfs_deadman_synctime_ms 600000
|
|
zfs_deadman_ziotime_ms 300000
|
|
zfs_dedup_log_cap 4294967295
|
|
zfs_dedup_log_flush_entries_max 4294967295
|
|
zfs_dedup_log_flush_entries_min 200
|
|
zfs_dedup_log_flush_flow_rate_txgs 10
|
|
zfs_dedup_log_flush_min_time_ms 1000
|
|
zfs_dedup_log_flush_txgs 100
|
|
zfs_dedup_log_hard_cap 0
|
|
zfs_dedup_log_mem_max 1012468858
|
|
zfs_dedup_log_mem_max_percent 1
|
|
zfs_dedup_log_txg_max 8
|
|
zfs_dedup_prefetch 0
|
|
zfs_default_bs 9
|
|
zfs_default_ibs 17
|
|
zfs_delay_min_dirty_percent 60
|
|
zfs_delay_scale 500000
|
|
zfs_delete_blocks 20480
|
|
zfs_dio_enabled 1
|
|
zfs_dio_write_verify_events_per_second 20
|
|
zfs_dirty_data_max 4294967296
|
|
zfs_dirty_data_max_max 4294967296
|
|
zfs_dirty_data_max_max_percent 25
|
|
zfs_dirty_data_max_percent 10
|
|
zfs_dirty_data_sync_percent 20
|
|
zfs_disable_ivset_guid_check 0
|
|
zfs_dmu_offset_next_sync 1
|
|
zfs_embedded_slog_min_ms 64
|
|
zfs_expire_snapshot 300
|
|
zfs_fallocate_reserve_percent 110
|
|
zfs_flags 0
|
|
zfs_fletcher_4_impl [fastest] scalar superscalar superscalar4 sse2 ssse3
|
|
zfs_free_bpobj_enabled 1
|
|
zfs_free_leak_on_eio 0
|
|
zfs_free_min_time_ms 1000
|
|
zfs_history_output_max 1048576
|
|
zfs_immediate_write_sz 32768
|
|
zfs_initialize_chunk_size 1048576
|
|
zfs_initialize_value 16045690984833335022
|
|
zfs_keep_log_spacemaps_at_export 0
|
|
zfs_key_max_salt_uses 400000000
|
|
zfs_livelist_condense_new_alloc 0
|
|
zfs_livelist_condense_sync_cancel 0
|
|
zfs_livelist_condense_sync_pause 0
|
|
zfs_livelist_condense_zthr_cancel 0
|
|
zfs_livelist_condense_zthr_pause 0
|
|
zfs_livelist_max_entries 500000
|
|
zfs_livelist_min_percent_shared 75
|
|
zfs_lua_max_instrlimit 100000000
|
|
zfs_lua_max_memlimit 104857600
|
|
zfs_max_async_dedup_frees 100000
|
|
zfs_max_dataset_nesting 50
|
|
zfs_max_log_walking 5
|
|
zfs_max_logsm_summary_length 10
|
|
zfs_max_missing_tvds 0
|
|
zfs_max_nvlist_src_size 0
|
|
zfs_max_recordsize 16777216
|
|
zfs_metaslab_find_max_tries 100
|
|
zfs_metaslab_fragmentation_threshold 77
|
|
zfs_metaslab_max_size_cache_sec 3600
|
|
zfs_metaslab_mem_limit 25
|
|
zfs_metaslab_segment_weight_enabled 1
|
|
zfs_metaslab_switch_threshold 2
|
|
zfs_metaslab_try_hard_before_gang 0
|
|
zfs_mg_fragmentation_threshold 95
|
|
zfs_mg_noalloc_threshold 0
|
|
zfs_min_metaslabs_to_flush 1
|
|
zfs_multihost_fail_intervals 10
|
|
zfs_multihost_history 0
|
|
zfs_multihost_import_intervals 20
|
|
zfs_multihost_interval 1000
|
|
zfs_multilist_num_sublists 0
|
|
zfs_no_scrub_io 0
|
|
zfs_no_scrub_prefetch 0
|
|
zfs_nocacheflush 0
|
|
zfs_nopwrite_enabled 1
|
|
zfs_object_mutex_size 64
|
|
zfs_obsolete_min_time_ms 500
|
|
zfs_override_estimate_recordsize 0
|
|
zfs_pd_bytes_max 52428800
|
|
zfs_per_txg_dirty_frees_percent 30
|
|
zfs_prefetch_disable 0
|
|
zfs_read_history 0
|
|
zfs_read_history_hits 0
|
|
zfs_rebuild_max_segment 1048576
|
|
zfs_rebuild_scrub_enabled 1
|
|
zfs_rebuild_vdev_limit 67108864
|
|
zfs_reconstruct_indirect_combinations_max 4096
|
|
zfs_recover 0
|
|
zfs_recv_best_effort_corrective 0
|
|
zfs_recv_queue_ff 20
|
|
zfs_recv_queue_length 16777216
|
|
zfs_recv_write_batch_size 1048576
|
|
zfs_removal_ignore_errors 0
|
|
zfs_removal_suspend_progress 0
|
|
zfs_remove_max_segment 16777216
|
|
zfs_resilver_defer_percent 10
|
|
zfs_resilver_disable_defer 0
|
|
zfs_resilver_min_time_ms 3000
|
|
zfs_scan_blkstats 0
|
|
zfs_scan_checkpoint_intval 7200
|
|
zfs_scan_fill_weight 3
|
|
zfs_scan_ignore_errors 0
|
|
zfs_scan_issue_strategy 0
|
|
zfs_scan_legacy 0
|
|
zfs_scan_max_ext_gap 2097152
|
|
zfs_scan_mem_lim_fact 20
|
|
zfs_scan_mem_lim_soft_fact 20
|
|
zfs_scan_report_txgs 0
|
|
zfs_scan_strict_mem_lim 0
|
|
zfs_scan_suspend_progress 0
|
|
zfs_scan_vdev_limit 16777216
|
|
zfs_scrub_after_expand 1
|
|
zfs_scrub_error_blocks_per_txg 4096
|
|
zfs_scrub_min_time_ms 1000
|
|
zfs_send_corrupt_data 0
|
|
zfs_send_no_prefetch_queue_ff 20
|
|
zfs_send_no_prefetch_queue_length 1048576
|
|
zfs_send_queue_ff 20
|
|
zfs_send_queue_length 16777216
|
|
zfs_send_unmodified_spill_blocks 1
|
|
zfs_sha256_impl cycle [fastest] generic x64 ssse3
|
|
zfs_sha512_impl cycle [fastest] generic x64
|
|
zfs_slow_io_events_per_second 20
|
|
zfs_snapshot_history_enabled 1
|
|
zfs_snapshot_no_setuid 0
|
|
zfs_spa_discard_memory_limit 16777216
|
|
zfs_special_class_metadata_reserve_pct 25
|
|
zfs_sync_pass_deferred_free 2
|
|
zfs_sync_pass_dont_compress 8
|
|
zfs_sync_pass_rewrite 2
|
|
zfs_traverse_indirect_prefetch_limit 32
|
|
zfs_trim_extent_bytes_max 134217728
|
|
zfs_trim_extent_bytes_min 32768
|
|
zfs_trim_metaslab_skip 0
|
|
zfs_trim_queue_limit 10
|
|
zfs_trim_txg_batch 32
|
|
zfs_txg_history 100
|
|
zfs_txg_timeout 5
|
|
zfs_unflushed_log_block_max 131072
|
|
zfs_unflushed_log_block_min 1000
|
|
zfs_unflushed_log_block_pct 400
|
|
zfs_unflushed_log_txg_max 1000
|
|
zfs_unflushed_max_mem_amt 1073741824
|
|
zfs_unflushed_max_mem_ppm 1000
|
|
zfs_unlink_suspend_progress 0
|
|
zfs_user_indirect_is_special 1
|
|
zfs_vdev_aggregation_limit 1048576
|
|
zfs_vdev_aggregation_limit_non_rotating 131072
|
|
zfs_vdev_async_read_max_active 3
|
|
zfs_vdev_async_read_min_active 1
|
|
zfs_vdev_async_write_active_max_dirty_percent 60
|
|
zfs_vdev_async_write_active_min_dirty_percent 30
|
|
zfs_vdev_async_write_max_active 10
|
|
zfs_vdev_async_write_min_active 2
|
|
zfs_vdev_def_queue_depth 32
|
|
zfs_vdev_default_ms_count 200
|
|
zfs_vdev_default_ms_shift 29
|
|
zfs_vdev_direct_write_verify 1
|
|
zfs_vdev_disk_classic 0
|
|
zfs_vdev_disk_max_segs 0
|
|
zfs_vdev_failfast_mask 1
|
|
zfs_vdev_initializing_max_active 1
|
|
zfs_vdev_initializing_min_active 1
|
|
zfs_vdev_max_active 1000
|
|
zfs_vdev_max_auto_ashift 14
|
|
zfs_vdev_max_ms_shift 34
|
|
zfs_vdev_min_auto_ashift 9
|
|
zfs_vdev_min_ms_count 16
|
|
zfs_vdev_mirror_non_rotating_inc 0
|
|
zfs_vdev_mirror_non_rotating_seek_inc 1
|
|
zfs_vdev_mirror_rotating_inc 0
|
|
zfs_vdev_mirror_rotating_seek_inc 5
|
|
zfs_vdev_mirror_rotating_seek_offset 1048576
|
|
zfs_vdev_ms_count_limit 131072
|
|
zfs_vdev_nia_credit 5
|
|
zfs_vdev_nia_delay 5
|
|
zfs_vdev_open_timeout_ms 1000
|
|
zfs_vdev_queue_depth_pct 1000
|
|
zfs_vdev_raidz_impl cycle [fastest] original scalar sse2 ssse3
|
|
zfs_vdev_read_gap_limit 32768
|
|
zfs_vdev_rebuild_max_active 3
|
|
zfs_vdev_rebuild_min_active 1
|
|
zfs_vdev_removal_max_active 2
|
|
zfs_vdev_removal_min_active 1
|
|
zfs_vdev_scheduler unused
|
|
zfs_vdev_scrub_max_active 3
|
|
zfs_vdev_scrub_min_active 1
|
|
zfs_vdev_sync_read_max_active 10
|
|
zfs_vdev_sync_read_min_active 10
|
|
zfs_vdev_sync_write_max_active 10
|
|
zfs_vdev_sync_write_min_active 10
|
|
zfs_vdev_trim_max_active 2
|
|
zfs_vdev_trim_min_active 1
|
|
zfs_vdev_write_gap_limit 4096
|
|
zfs_vnops_read_chunk_size 33554432
|
|
zfs_wrlog_data_max 8589934592
|
|
zfs_xattr_compat 0
|
|
zfs_zevent_len_max 512
|
|
zfs_zevent_retain_expire_secs 900
|
|
zfs_zevent_retain_max 2000
|
|
zfs_zil_clean_taskq_maxalloc 1048576
|
|
zfs_zil_clean_taskq_minalloc 1024
|
|
zfs_zil_clean_taskq_nthr_pct 100
|
|
zfs_zil_saxattr 1
|
|
zil_maxblocksize 131072
|
|
zil_maxcopied 7680
|
|
zil_nocacheflush 0
|
|
zil_replay_disable 0
|
|
zil_slog_bulk 67108864
|
|
zio_deadman_log_all 0
|
|
zio_dva_throttle_enabled 1
|
|
zio_requeue_io_start_cut_in_line 1
|
|
zio_slow_io_ms 30000
|
|
zio_taskq_batch_pct 80
|
|
zio_taskq_batch_tpq 0
|
|
zio_taskq_read fixed,1,8 null scale null
|
|
zio_taskq_write sync null scale null
|
|
zio_taskq_write_tpq 16
|
|
zstd_abort_size 131072
|
|
zstd_earlyabort_pass 1
|
|
zvol_blk_mq_blocks_per_thread 8
|
|
zvol_blk_mq_queue_depth 128
|
|
zvol_enforce_quotas 1
|
|
zvol_inhibit_dev 0
|
|
zvol_major 230
|
|
zvol_max_discard_blocks 16384
|
|
zvol_num_taskqs 0
|
|
zvol_open_timeout_ms 1000
|
|
zvol_prefetch_bytes 131072
|
|
zvol_request_sync 0
|
|
zvol_threads 0
|
|
zvol_use_blk_mq 0
|
|
zvol_volmode 1
|
|
|
|
ZIL committed transactions: 0
|
|
Commit requests: 0
|
|
Flushes to stable storage: 0
|
|
Transactions to SLOG storage pool: 0 Bytes 0
|
|
Transactions to non-SLOG storage pool: 0 Bytes 0
|
|
|
|
|
|
--- zpool events -v (recent)
|
|
$ zpool events -v
|
|
TIME CLASS
|
|
|
|
--- zpool history (last 30 events)
|
|
$ zpool history -il 2>/dev/null | tail -n 30
|
|
|
|
###############################################################################
|
|
# 20. STORAGE: DRIVE HEALTH
|
|
###############################################################################
|
|
|
|
--- nvme list
|
|
$ nvme list
|
|
/root/check.sh: line 45: nvme: command not found
|
|
[exit=127 / not installed or not permitted]
|
|
|
|
--- nvme smart-log per device
|
|
$ for n in /dev/nvme[0-9]*; do
|
|
[ -b "$n" ] || continue
|
|
echo "--- $n smart-log ---"
|
|
nvme smart-log "$n" 2>&1
|
|
echo "--- $n error-log (first 5) ---"
|
|
nvme error-log "$n" 2>&1 | head -n 80
|
|
done
|
|
|
|
--- nvme id-ctrl per device (key fields)
|
|
$ for n in /dev/nvme[0-9]*; do
|
|
[ -b "$n" ] || continue
|
|
echo "--- $n id-ctrl (filtered) ---"
|
|
nvme id-ctrl "$n" 2>&1 | grep -E '^(mn|sn|fn|fr|tnvmcap|vid|IEEE|cntlid|ver|rab|lpa|elpe|npdg|mdts|hmpre|hmmin|cap|frmw|lba|ws|awun|awupf|acwu|apsta)'
|
|
done
|
|
|
|
--- smartctl -a per disk
|
|
$ for d in $(ls /sys/block/ 2>/dev/null | grep -E '^(sd|vd)'); do
|
|
dev="/dev/$d"
|
|
[ -b "$dev" ] || continue
|
|
echo "--- smartctl -a $dev ---"
|
|
smartctl -a "$dev" 2>&1 | head -n 200
|
|
done
|
|
--- smartctl -a /dev/sda ---
|
|
smartctl 7.5 2025-04-30 r5714 [x86_64-linux-6.17.2-1-pve] (local build)
|
|
Copyright (C) 2002-25, Bruce Allen, Christian Franke, www.smartmontools.org
|
|
|
|
=== START OF INFORMATION SECTION ===
|
|
Model Family: Seagate IronWolf
|
|
Device Model: ST1000VN002-2EY102
|
|
Serial Number: Z9C13271
|
|
LU WWN Device Id: 5 000c50 0a1f41c72
|
|
Firmware Version: SC60
|
|
User Capacity: 1,000,204,886,016 bytes [1.00 TB]
|
|
Sector Sizes: 512 bytes logical, 4096 bytes physical
|
|
Rotation Rate: 5900 rpm
|
|
Form Factor: 3.5 inches
|
|
Device is: In smartctl database 7.5/5706
|
|
ATA Version is: ATA8-ACS T13/1699-D revision 4
|
|
SATA Version is: SATA 3.1, 6.0 Gb/s (current: 3.0 Gb/s)
|
|
Local Time is: Sun Jul 26 16:30:19 2026 CDT
|
|
SMART support is: Available - device has SMART capability.
|
|
SMART support is: Enabled
|
|
|
|
=== START OF READ SMART DATA SECTION ===
|
|
SMART overall-health self-assessment test result: PASSED
|
|
|
|
General SMART Values:
|
|
Offline data collection status: (0x82) Offline data collection activity
|
|
was completed without error.
|
|
Auto Offline Data Collection: Enabled.
|
|
Self-test execution status: ( 0) The previous self-test routine completed
|
|
without error or no self-test has ever
|
|
been run.
|
|
Total time to complete Offline
|
|
data collection: ( 592) seconds.
|
|
Offline data collection
|
|
capabilities: (0x7b) SMART execute Offline immediate.
|
|
Auto Offline data collection on/off support.
|
|
Suspend Offline collection upon new
|
|
command.
|
|
Offline surface scan supported.
|
|
Self-test supported.
|
|
Conveyance Self-test supported.
|
|
Selective Self-test supported.
|
|
SMART capabilities: (0x0003) Saves SMART data before entering
|
|
power-saving mode.
|
|
Supports SMART auto save timer.
|
|
Error logging capability: (0x01) Error logging supported.
|
|
General Purpose Logging supported.
|
|
Short self-test routine
|
|
recommended polling time: ( 1) minutes.
|
|
Extended self-test routine
|
|
recommended polling time: ( 125) minutes.
|
|
Conveyance self-test routine
|
|
recommended polling time: ( 2) minutes.
|
|
SCT capabilities: (0x10bf) SCT Status supported.
|
|
SCT Error Recovery Control supported.
|
|
SCT Feature Control supported.
|
|
SCT Data Table supported.
|
|
|
|
SMART Attributes Data Structure revision number: 10
|
|
Vendor Specific SMART Attributes with Thresholds:
|
|
ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE
|
|
1 Raw_Read_Error_Rate 0x000f 081 063 006 Pre-fail Always - 117604692
|
|
3 Spin_Up_Time 0x0003 097 097 000 Pre-fail Always - 0
|
|
4 Start_Stop_Count 0x0032 100 100 020 Old_age Always - 196
|
|
5 Reallocated_Sector_Ct 0x0033 100 100 010 Pre-fail Always - 0
|
|
7 Seek_Error_Rate 0x000f 084 060 045 Pre-fail Always - 291395598
|
|
9 Power_On_Hours 0x0032 057 057 000 Old_age Always - 38359
|
|
10 Spin_Retry_Count 0x0013 100 100 097 Pre-fail Always - 0
|
|
12 Power_Cycle_Count 0x0032 100 100 020 Old_age Always - 182
|
|
184 End-to-End_Error 0x0032 100 100 099 Old_age Always - 0
|
|
187 Reported_Uncorrect 0x0032 100 100 000 Old_age Always - 0
|
|
188 Command_Timeout 0x0032 100 100 000 Old_age Always - 0 0 0
|
|
189 High_Fly_Writes 0x003a 100 100 000 Old_age Always - 0
|
|
190 Airflow_Temperature_Cel 0x0022 065 061 040 Old_age Always - 35 (Min/Max 26/35)
|
|
193 Load_Cycle_Count 0x0032 100 100 000 Old_age Always - 1818
|
|
194 Temperature_Celsius 0x0022 035 014 000 Old_age Always - 35 (0 14 0 0 0)
|
|
195 Hardware_ECC_Recovered 0x001a 024 003 000 Old_age Always - 117604692
|
|
197 Current_Pending_Sector 0x0012 100 100 000 Old_age Always - 0
|
|
198 Offline_Uncorrectable 0x0010 100 100 000 Old_age Offline - 0
|
|
199 UDMA_CRC_Error_Count 0x003e 200 200 000 Old_age Always - 0
|
|
|
|
SMART Error Log Version: 1
|
|
No Errors Logged
|
|
|
|
SMART Self-test log structure revision number 1
|
|
No self-tests have been logged. [To run self-tests, use: smartctl -t]
|
|
|
|
SMART Selective self-test log data structure revision number 1
|
|
SPAN MIN_LBA MAX_LBA CURRENT_TEST_STATUS
|
|
1 0 0 Not_testing
|
|
2 0 0 Not_testing
|
|
3 0 0 Not_testing
|
|
4 0 0 Not_testing
|
|
5 0 0 Not_testing
|
|
Selective self-test flags (0x0):
|
|
After scanning selected spans, do NOT read-scan remainder of disk.
|
|
If Selective self-test is pending on power-up, resume after 0 minute delay.
|
|
|
|
The above only provides legacy SMART information - try 'smartctl -x' for more
|
|
|
|
--- smartctl -a /dev/sdb ---
|
|
smartctl 7.5 2025-04-30 r5714 [x86_64-linux-6.17.2-1-pve] (local build)
|
|
Copyright (C) 2002-25, Bruce Allen, Christian Franke, www.smartmontools.org
|
|
|
|
=== START OF INFORMATION SECTION ===
|
|
Model Family: Toshiba 3.5" DT01ACA... Desktop HDD
|
|
Device Model: TOSHIBA DT01ACA050
|
|
Serial Number: Z58M3U4KS
|
|
LU WWN Device Id: 5 000039 fe4e4e05d
|
|
Add. Product Id: DELL(tm)
|
|
Firmware Version: MS1OA7S0
|
|
User Capacity: 500,107,862,016 bytes [500 GB]
|
|
Sector Sizes: 512 bytes logical, 4096 bytes physical
|
|
Rotation Rate: 7200 rpm
|
|
Form Factor: 3.5 inches
|
|
Device is: In smartctl database 7.5/5706
|
|
ATA Version is: ATA8-ACS T13/1699-D revision 4
|
|
SATA Version is: SATA 3.0, 6.0 Gb/s (current: 3.0 Gb/s)
|
|
Local Time is: Sun Jul 26 16:30:19 2026 CDT
|
|
SMART support is: Available - device has SMART capability.
|
|
SMART support is: Enabled
|
|
|
|
=== START OF READ SMART DATA SECTION ===
|
|
SMART overall-health self-assessment test result: PASSED
|
|
|
|
General SMART Values:
|
|
Offline data collection status: (0x82) Offline data collection activity
|
|
was completed without error.
|
|
Auto Offline Data Collection: Enabled.
|
|
Self-test execution status: ( 0) The previous self-test routine completed
|
|
without error or no self-test has ever
|
|
been run.
|
|
Total time to complete Offline
|
|
data collection: ( 3547) seconds.
|
|
Offline data collection
|
|
capabilities: (0x5b) SMART execute Offline immediate.
|
|
Auto Offline data collection on/off support.
|
|
Suspend Offline collection upon new
|
|
command.
|
|
Offline surface scan supported.
|
|
Self-test supported.
|
|
No Conveyance Self-test supported.
|
|
Selective Self-test supported.
|
|
SMART capabilities: (0x0003) Saves SMART data before entering
|
|
power-saving mode.
|
|
Supports SMART auto save timer.
|
|
Error logging capability: (0x01) Error logging supported.
|
|
General Purpose Logging supported.
|
|
Short self-test routine
|
|
recommended polling time: ( 1) minutes.
|
|
Extended self-test routine
|
|
recommended polling time: ( 60) minutes.
|
|
SCT capabilities: (0x003d) SCT Status supported.
|
|
SCT Error Recovery Control supported.
|
|
SCT Feature Control supported.
|
|
SCT Data Table supported.
|
|
|
|
SMART Attributes Data Structure revision number: 16
|
|
Vendor Specific SMART Attributes with Thresholds:
|
|
ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE
|
|
1 Raw_Read_Error_Rate 0x000b 100 100 016 Pre-fail Always - 0
|
|
2 Throughput_Performance 0x0004 142 142 000 Old_age Offline - 69
|
|
3 Spin_Up_Time 0x0007 134 134 024 Pre-fail Always - 173 (Average 170)
|
|
4 Start_Stop_Count 0x0012 100 100 000 Old_age Always - 198
|
|
5 Reallocated_Sector_Ct 0x0033 100 100 005 Pre-fail Always - 0
|
|
7 Seek_Error_Rate 0x000a 100 100 000 Old_age Always - 0
|
|
8 Seek_Time_Performance 0x0004 108 108 000 Old_age Offline - 37
|
|
9 Power_On_Hours 0x0012 089 089 000 Old_age Always - 82290
|
|
10 Spin_Retry_Count 0x0012 100 100 000 Old_age Always - 0
|
|
12 Power_Cycle_Count 0x0032 100 100 000 Old_age Always - 197
|
|
192 Power-Off_Retract_Count 0x0032 100 100 000 Old_age Always - 294
|
|
193 Load_Cycle_Count 0x0012 100 100 000 Old_age Always - 294
|
|
194 Temperature_Celsius 0x0002 141 141 000 Old_age Always - 39 (Min/Max 21/47)
|
|
196 Reallocated_Event_Count 0x0032 100 100 000 Old_age Always - 0
|
|
197 Current_Pending_Sector 0x0022 100 100 000 Old_age Always - 0
|
|
198 Offline_Uncorrectable 0x0008 100 100 000 Old_age Offline - 0
|
|
199 UDMA_CRC_Error_Count 0x000a 200 200 000 Old_age Always - 0
|
|
240 Head_Flying_Hours 0x0012 089 089 000 Old_age Always - 82281
|
|
241 Total_LBAs_Written 0x0012 100 100 000 Old_age Always - 171552874496
|
|
242 Total_LBAs_Read 0x0012 100 100 000 Old_age Always - 131294831606
|
|
|
|
SMART Error Log Version: 1
|
|
No Errors Logged
|
|
|
|
SMART Self-test log structure revision number 1
|
|
Num Test_Description Status Remaining LifeTime(hours) LBA_of_first_error
|
|
# 1 Short offline Completed without error 00% 0 -
|
|
|
|
SMART Selective self-test log data structure revision number 1
|
|
SPAN MIN_LBA MAX_LBA CURRENT_TEST_STATUS
|
|
1 0 0 Not_testing
|
|
2 0 0 Not_testing
|
|
3 0 0 Not_testing
|
|
4 0 0 Not_testing
|
|
5 0 0 Not_testing
|
|
Selective self-test flags (0x0):
|
|
After scanning selected spans, do NOT read-scan remainder of disk.
|
|
If Selective self-test is pending on power-up, resume after 0 minute delay.
|
|
|
|
The above only provides legacy SMART information - try 'smartctl -x' for more
|
|
|
|
--- smartctl -a /dev/sdc ---
|
|
smartctl 7.5 2025-04-30 r5714 [x86_64-linux-6.17.2-1-pve] (local build)
|
|
Copyright (C) 2002-25, Bruce Allen, Christian Franke, www.smartmontools.org
|
|
|
|
=== START OF INFORMATION SECTION ===
|
|
Model Family: Samsung based SSDs
|
|
Device Model: Samsung SSD 860 PRO 256GB
|
|
Serial Number: S45GNG0K805039L
|
|
LU WWN Device Id: 5 002538 e70081ee4
|
|
Firmware Version: RVM01B6Q
|
|
User Capacity: 256,060,514,304 bytes [256 GB]
|
|
Sector Size: 512 bytes logical/physical
|
|
Rotation Rate: Solid State Device
|
|
Form Factor: 2.5 inches
|
|
TRIM Command: Available, deterministic, zeroed
|
|
Device is: In smartctl database 7.5/5706
|
|
ATA Version is: ACS-4 T13/BSR INCITS 529 revision 5
|
|
SATA Version is: SATA 3.1, 6.0 Gb/s (current: 1.5 Gb/s)
|
|
Local Time is: Sun Jul 26 16:30:21 2026 CDT
|
|
SMART support is: Available - device has SMART capability.
|
|
SMART support is: Enabled
|
|
|
|
=== START OF READ SMART DATA SECTION ===
|
|
SMART overall-health self-assessment test result: PASSED
|
|
|
|
General SMART Values:
|
|
Offline data collection status: (0x00) Offline data collection activity
|
|
was never started.
|
|
Auto Offline Data Collection: Disabled.
|
|
Self-test execution status: ( 0) The previous self-test routine completed
|
|
without error or no self-test has ever
|
|
been run.
|
|
Total time to complete Offline
|
|
data collection: ( 0) seconds.
|
|
Offline data collection
|
|
capabilities: (0x53) SMART execute Offline immediate.
|
|
Auto Offline data collection on/off support.
|
|
Suspend Offline collection upon new
|
|
command.
|
|
No Offline surface scan supported.
|
|
Self-test supported.
|
|
No Conveyance Self-test supported.
|
|
Selective Self-test supported.
|
|
SMART capabilities: (0x0003) Saves SMART data before entering
|
|
power-saving mode.
|
|
Supports SMART auto save timer.
|
|
Error logging capability: (0x01) Error logging supported.
|
|
General Purpose Logging supported.
|
|
Short self-test routine
|
|
recommended polling time: ( 2) minutes.
|
|
Extended self-test routine
|
|
recommended polling time: ( 85) minutes.
|
|
SCT capabilities: (0x003d) SCT Status supported.
|
|
SCT Error Recovery Control supported.
|
|
SCT Feature Control supported.
|
|
SCT Data Table supported.
|
|
|
|
SMART Attributes Data Structure revision number: 1
|
|
Vendor Specific SMART Attributes with Thresholds:
|
|
ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE
|
|
5 Reallocated_Sector_Ct 0x0033 100 100 010 Pre-fail Always - 0
|
|
9 Power_On_Hours 0x0032 090 090 000 Old_age Always - 48644
|
|
12 Power_Cycle_Count 0x0032 099 099 000 Old_age Always - 165
|
|
177 Wear_Leveling_Count 0x0013 083 083 000 Pre-fail Always - 375
|
|
179 Used_Rsvd_Blk_Cnt_Tot 0x0013 100 100 010 Pre-fail Always - 0
|
|
181 Program_Fail_Cnt_Total 0x0032 100 100 010 Old_age Always - 0
|
|
182 Erase_Fail_Count_Total 0x0032 100 100 010 Old_age Always - 0
|
|
183 Runtime_Bad_Block 0x0013 100 100 010 Pre-fail Always - 0
|
|
187 Uncorrectable_Error_Cnt 0x0032 100 100 000 Old_age Always - 0
|
|
190 Airflow_Temperature_Cel 0x0032 062 049 000 Old_age Always - 38
|
|
195 ECC_Error_Rate 0x001a 200 200 000 Old_age Always - 0
|
|
199 CRC_Error_Count 0x003e 099 099 000 Old_age Always - 8
|
|
235 POR_Recovery_Count 0x0012 099 099 000 Old_age Always - 162
|
|
241 Total_LBAs_Written 0x0032 099 099 000 Old_age Always - 71973678047
|
|
|
|
SMART Error Log Version: 1
|
|
No Errors Logged
|
|
|
|
SMART Self-test log structure revision number 1
|
|
No self-tests have been logged. [To run self-tests, use: smartctl -t]
|
|
|
|
SMART Selective self-test log data structure revision number 1
|
|
SPAN MIN_LBA MAX_LBA CURRENT_TEST_STATUS
|
|
1 0 0 Not_testing
|
|
2 0 0 Not_testing
|
|
3 0 0 Not_testing
|
|
4 0 0 Not_testing
|
|
5 0 0 Not_testing
|
|
Selective self-test flags (0x0):
|
|
After scanning selected spans, do NOT read-scan remainder of disk.
|
|
If Selective self-test is pending on power-up, resume after 0 minute delay.
|
|
|
|
The above only provides legacy SMART information - try 'smartctl -x' for more
|
|
|
|
--- smartctl -a /dev/sdd ---
|
|
smartctl 7.5 2025-04-30 r5714 [x86_64-linux-6.17.2-1-pve] (local build)
|
|
Copyright (C) 2002-25, Bruce Allen, Christian Franke, www.smartmontools.org
|
|
|
|
=== START OF INFORMATION SECTION ===
|
|
Model Family: Hitachi/HGST Ultrastar 7K4000
|
|
Device Model: HITACHI HUS724020ALA640
|
|
Serial Number: P2G2SZUJ
|
|
LU WWN Device Id: 5 000cca 24bc142d0
|
|
Firmware Version: MF6ONS00
|
|
User Capacity: 2,000,398,934,016 bytes [2.00 TB]
|
|
Sector Size: 512 bytes logical/physical
|
|
Rotation Rate: 7200 rpm
|
|
Form Factor: 3.5 inches
|
|
Device is: In smartctl database 7.5/5706
|
|
ATA Version is: ATA8-ACS T13/1699-D revision 4
|
|
SATA Version is: SATA 3.0, 6.0 Gb/s (current: 1.5 Gb/s)
|
|
Local Time is: Sun Jul 26 16:30:21 2026 CDT
|
|
SMART support is: Available - device has SMART capability.
|
|
SMART support is: Enabled
|
|
|
|
=== START OF READ SMART DATA SECTION ===
|
|
SMART overall-health self-assessment test result: PASSED
|
|
|
|
General SMART Values:
|
|
Offline data collection status: (0x00) Offline data collection activity
|
|
was never started.
|
|
Auto Offline Data Collection: Disabled.
|
|
Self-test execution status: ( 0) The previous self-test routine completed
|
|
without error or no self-test has ever
|
|
been run.
|
|
Total time to complete Offline
|
|
data collection: (19652) seconds.
|
|
Offline data collection
|
|
capabilities: (0x5b) SMART execute Offline immediate.
|
|
Auto Offline data collection on/off support.
|
|
Suspend Offline collection upon new
|
|
command.
|
|
Offline surface scan supported.
|
|
Self-test supported.
|
|
No Conveyance Self-test supported.
|
|
Selective Self-test supported.
|
|
SMART capabilities: (0x0003) Saves SMART data before entering
|
|
power-saving mode.
|
|
Supports SMART auto save timer.
|
|
Error logging capability: (0x01) Error logging supported.
|
|
General Purpose Logging supported.
|
|
Short self-test routine
|
|
recommended polling time: ( 1) minutes.
|
|
Extended self-test routine
|
|
recommended polling time: ( 328) minutes.
|
|
SCT capabilities: (0x003d) SCT Status supported.
|
|
SCT Error Recovery Control supported.
|
|
SCT Feature Control supported.
|
|
SCT Data Table supported.
|
|
|
|
SMART Attributes Data Structure revision number: 16
|
|
Vendor Specific SMART Attributes with Thresholds:
|
|
ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE
|
|
1 Raw_Read_Error_Rate 0x000b 100 100 016 Pre-fail Always - 0
|
|
2 Throughput_Performance 0x0005 100 100 054 Pre-fail Offline - 0
|
|
3 Spin_Up_Time 0x0007 214 214 024 Pre-fail Always - 269 (Average 315)
|
|
4 Start_Stop_Count 0x0012 100 100 000 Old_age Always - 107
|
|
5 Reallocated_Sector_Ct 0x0033 100 100 005 Pre-fail Always - 0
|
|
7 Seek_Error_Rate 0x000b 100 100 067 Pre-fail Always - 0
|
|
8 Seek_Time_Performance 0x0005 100 100 020 Pre-fail Offline - 0
|
|
9 Power_On_Hours 0x0012 093 093 000 Old_age Always - 52220
|
|
10 Spin_Retry_Count 0x0013 100 100 060 Pre-fail Always - 0
|
|
12 Power_Cycle_Count 0x0032 100 100 000 Old_age Always - 107
|
|
192 Power-Off_Retract_Count 0x0032 099 099 000 Old_age Always - 2001
|
|
193 Load_Cycle_Count 0x0012 099 099 000 Old_age Always - 2001
|
|
194 Temperature_Celsius 0x0002 142 142 000 Old_age Always - 42 (Min/Max 18/50)
|
|
196 Reallocated_Event_Count 0x0032 100 100 000 Old_age Always - 0
|
|
197 Current_Pending_Sector 0x0022 100 100 000 Old_age Always - 0
|
|
198 Offline_Uncorrectable 0x0008 100 100 000 Old_age Offline - 0
|
|
199 UDMA_CRC_Error_Count 0x000a 200 200 000 Old_age Always - 0
|
|
|
|
SMART Error Log Version: 1
|
|
No Errors Logged
|
|
|
|
SMART Self-test log structure revision number 1
|
|
No self-tests have been logged. [To run self-tests, use: smartctl -t]
|
|
|
|
SMART Selective self-test log data structure revision number 1
|
|
SPAN MIN_LBA MAX_LBA CURRENT_TEST_STATUS
|
|
1 0 0 Not_testing
|
|
2 0 0 Not_testing
|
|
3 0 0 Not_testing
|
|
4 0 0 Not_testing
|
|
5 0 0 Not_testing
|
|
Selective self-test flags (0x0):
|
|
After scanning selected spans, do NOT read-scan remainder of disk.
|
|
If Selective self-test is pending on power-up, resume after 0 minute delay.
|
|
|
|
The above only provides legacy SMART information - try 'smartctl -x' for more
|
|
|
|
--- smartctl -a /dev/sde ---
|
|
smartctl 7.5 2025-04-30 r5714 [x86_64-linux-6.17.2-1-pve] (local build)
|
|
Copyright (C) 2002-25, Bruce Allen, Christian Franke, www.smartmontools.org
|
|
|
|
=== START OF INFORMATION SECTION ===
|
|
Model Family: Seagate IronWolf
|
|
Device Model: ST1000VN002-2EY102
|
|
Serial Number: Z9C132K8
|
|
LU WWN Device Id: 5 000c50 0a1f40e9b
|
|
Firmware Version: SC60
|
|
User Capacity: 1,000,204,886,016 bytes [1.00 TB]
|
|
Sector Sizes: 512 bytes logical, 4096 bytes physical
|
|
Rotation Rate: 5900 rpm
|
|
Form Factor: 3.5 inches
|
|
Device is: In smartctl database 7.5/5706
|
|
ATA Version is: ATA8-ACS T13/1699-D revision 4
|
|
SATA Version is: SATA 3.1, 6.0 Gb/s (current: 3.0 Gb/s)
|
|
Local Time is: Sun Jul 26 16:30:22 2026 CDT
|
|
SMART support is: Available - device has SMART capability.
|
|
SMART support is: Enabled
|
|
|
|
=== START OF READ SMART DATA SECTION ===
|
|
SMART overall-health self-assessment test result: PASSED
|
|
|
|
General SMART Values:
|
|
Offline data collection status: (0x82) Offline data collection activity
|
|
was completed without error.
|
|
Auto Offline Data Collection: Enabled.
|
|
Self-test execution status: ( 0) The previous self-test routine completed
|
|
without error or no self-test has ever
|
|
been run.
|
|
Total time to complete Offline
|
|
data collection: ( 592) seconds.
|
|
Offline data collection
|
|
capabilities: (0x7b) SMART execute Offline immediate.
|
|
Auto Offline data collection on/off support.
|
|
Suspend Offline collection upon new
|
|
command.
|
|
Offline surface scan supported.
|
|
Self-test supported.
|
|
Conveyance Self-test supported.
|
|
Selective Self-test supported.
|
|
SMART capabilities: (0x0003) Saves SMART data before entering
|
|
power-saving mode.
|
|
Supports SMART auto save timer.
|
|
Error logging capability: (0x01) Error logging supported.
|
|
General Purpose Logging supported.
|
|
Short self-test routine
|
|
recommended polling time: ( 1) minutes.
|
|
Extended self-test routine
|
|
recommended polling time: ( 127) minutes.
|
|
Conveyance self-test routine
|
|
recommended polling time: ( 2) minutes.
|
|
SCT capabilities: (0x10bf) SCT Status supported.
|
|
SCT Error Recovery Control supported.
|
|
SCT Feature Control supported.
|
|
SCT Data Table supported.
|
|
|
|
SMART Attributes Data Structure revision number: 10
|
|
Vendor Specific SMART Attributes with Thresholds:
|
|
ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE
|
|
1 Raw_Read_Error_Rate 0x000f 069 063 006 Pre-fail Always - 10165040
|
|
3 Spin_Up_Time 0x0003 097 097 000 Pre-fail Always - 0
|
|
4 Start_Stop_Count 0x0032 100 100 020 Old_age Always - 194
|
|
5 Reallocated_Sector_Ct 0x0033 100 100 010 Pre-fail Always - 0
|
|
7 Seek_Error_Rate 0x000f 084 060 045 Pre-fail Always - 298847943
|
|
9 Power_On_Hours 0x0032 057 057 000 Old_age Always - 38363
|
|
10 Spin_Retry_Count 0x0013 100 100 097 Pre-fail Always - 0
|
|
12 Power_Cycle_Count 0x0032 100 100 020 Old_age Always - 182
|
|
184 End-to-End_Error 0x0032 100 100 099 Old_age Always - 0
|
|
187 Reported_Uncorrect 0x0032 100 100 000 Old_age Always - 0
|
|
188 Command_Timeout 0x0032 100 100 000 Old_age Always - 0 0 0
|
|
189 High_Fly_Writes 0x003a 098 098 000 Old_age Always - 2
|
|
190 Airflow_Temperature_Cel 0x0022 062 061 040 Old_age Always - 38 (Min/Max 26/39)
|
|
193 Load_Cycle_Count 0x0032 100 100 000 Old_age Always - 1852
|
|
194 Temperature_Celsius 0x0022 038 014 000 Old_age Always - 38 (0 14 0 0 0)
|
|
195 Hardware_ECC_Recovered 0x001a 034 013 000 Old_age Always - 10165040
|
|
197 Current_Pending_Sector 0x0012 100 100 000 Old_age Always - 0
|
|
198 Offline_Uncorrectable 0x0010 100 100 000 Old_age Offline - 0
|
|
199 UDMA_CRC_Error_Count 0x003e 200 200 000 Old_age Always - 0
|
|
|
|
SMART Error Log Version: 1
|
|
No Errors Logged
|
|
|
|
SMART Self-test log structure revision number 1
|
|
No self-tests have been logged. [To run self-tests, use: smartctl -t]
|
|
|
|
SMART Selective self-test log data structure revision number 1
|
|
SPAN MIN_LBA MAX_LBA CURRENT_TEST_STATUS
|
|
1 0 0 Not_testing
|
|
2 0 0 Not_testing
|
|
3 0 0 Not_testing
|
|
4 0 0 Not_testing
|
|
5 0 0 Not_testing
|
|
Selective self-test flags (0x0):
|
|
After scanning selected spans, do NOT read-scan remainder of disk.
|
|
If Selective self-test is pending on power-up, resume after 0 minute delay.
|
|
|
|
The above only provides legacy SMART information - try 'smartctl -x' for more
|
|
|
|
--- smartctl -a /dev/sdf ---
|
|
smartctl 7.5 2025-04-30 r5714 [x86_64-linux-6.17.2-1-pve] (local build)
|
|
Copyright (C) 2002-25, Bruce Allen, Christian Franke, www.smartmontools.org
|
|
|
|
=== START OF INFORMATION SECTION ===
|
|
Model Family: Seagate IronWolf
|
|
Device Model: ST1000VN002-2EY102
|
|
Serial Number: Z9C132TV
|
|
LU WWN Device Id: 5 000c50 0a1f41e07
|
|
Firmware Version: SC60
|
|
User Capacity: 1,000,204,886,016 bytes [1.00 TB]
|
|
Sector Sizes: 512 bytes logical, 4096 bytes physical
|
|
Rotation Rate: 5900 rpm
|
|
Form Factor: 3.5 inches
|
|
Device is: In smartctl database 7.5/5706
|
|
ATA Version is: ATA8-ACS T13/1699-D revision 4
|
|
SATA Version is: SATA 3.1, 6.0 Gb/s (current: 3.0 Gb/s)
|
|
Local Time is: Sun Jul 26 16:30:22 2026 CDT
|
|
SMART support is: Available - device has SMART capability.
|
|
SMART support is: Enabled
|
|
|
|
=== START OF READ SMART DATA SECTION ===
|
|
SMART overall-health self-assessment test result: PASSED
|
|
|
|
General SMART Values:
|
|
Offline data collection status: (0x82) Offline data collection activity
|
|
was completed without error.
|
|
Auto Offline Data Collection: Enabled.
|
|
Self-test execution status: ( 0) The previous self-test routine completed
|
|
without error or no self-test has ever
|
|
been run.
|
|
Total time to complete Offline
|
|
data collection: ( 602) seconds.
|
|
Offline data collection
|
|
capabilities: (0x7b) SMART execute Offline immediate.
|
|
Auto Offline data collection on/off support.
|
|
Suspend Offline collection upon new
|
|
command.
|
|
Offline surface scan supported.
|
|
Self-test supported.
|
|
Conveyance Self-test supported.
|
|
Selective Self-test supported.
|
|
SMART capabilities: (0x0003) Saves SMART data before entering
|
|
power-saving mode.
|
|
Supports SMART auto save timer.
|
|
Error logging capability: (0x01) Error logging supported.
|
|
General Purpose Logging supported.
|
|
Short self-test routine
|
|
recommended polling time: ( 1) minutes.
|
|
Extended self-test routine
|
|
recommended polling time: ( 129) minutes.
|
|
Conveyance self-test routine
|
|
recommended polling time: ( 2) minutes.
|
|
SCT capabilities: (0x10bf) SCT Status supported.
|
|
SCT Error Recovery Control supported.
|
|
SCT Feature Control supported.
|
|
SCT Data Table supported.
|
|
|
|
SMART Attributes Data Structure revision number: 10
|
|
Vendor Specific SMART Attributes with Thresholds:
|
|
ID# ATTRIBUTE_NAME FLAG VALUE WORST THRESH TYPE UPDATED WHEN_FAILED RAW_VALUE
|
|
1 Raw_Read_Error_Rate 0x000f 071 063 006 Pre-fail Always - 12623088
|
|
3 Spin_Up_Time 0x0003 097 097 000 Pre-fail Always - 0
|
|
4 Start_Stop_Count 0x0032 100 100 020 Old_age Always - 194
|
|
5 Reallocated_Sector_Ct 0x0033 100 100 010 Pre-fail Always - 0
|
|
7 Seek_Error_Rate 0x000f 084 060 045 Pre-fail Always - 295452791
|
|
9 Power_On_Hours 0x0032 057 057 000 Old_age Always - 38348
|
|
10 Spin_Retry_Count 0x0013 100 100 097 Pre-fail Always - 0
|
|
12 Power_Cycle_Count 0x0032 100 100 020 Old_age Always - 182
|
|
184 End-to-End_Error 0x0032 100 100 099 Old_age Always - 0
|
|
187 Reported_Uncorrect 0x0032 100 100 000 Old_age Always - 0
|
|
188 Command_Timeout 0x0032 100 094 000 Old_age Always - 0 0 12
|
|
189 High_Fly_Writes 0x003a 097 097 000 Old_age Always - 3
|
|
190 Airflow_Temperature_Cel 0x0022 063 059 040 Old_age Always - 37 (Min/Max 26/38)
|
|
193 Load_Cycle_Count 0x0032 100 100 000 Old_age Always - 1843
|
|
194 Temperature_Celsius 0x0022 037 015 000 Old_age Always - 37 (0 15 0 0 0)
|
|
195 Hardware_ECC_Recovered 0x001a 056 013 000 Old_age Always - 12623088
|
|
197 Current_Pending_Sector 0x0012 100 100 000 Old_age Always - 0
|
|
198 Offline_Uncorrectable 0x0010 100 100 000 Old_age Offline - 0
|
|
199 UDMA_CRC_Error_Count 0x003e 200 188 000 Old_age Always - 64
|
|
|
|
SMART Error Log Version: 1
|
|
No Errors Logged
|
|
|
|
SMART Self-test log structure revision number 1
|
|
No self-tests have been logged. [To run self-tests, use: smartctl -t]
|
|
|
|
SMART Selective self-test log data structure revision number 1
|
|
SPAN MIN_LBA MAX_LBA CURRENT_TEST_STATUS
|
|
1 0 0 Not_testing
|
|
2 0 0 Not_testing
|
|
3 0 0 Not_testing
|
|
4 0 0 Not_testing
|
|
5 0 0 Not_testing
|
|
Selective self-test flags (0x0):
|
|
After scanning selected spans, do NOT read-scan remainder of disk.
|
|
If Selective self-test is pending on power-up, resume after 0 minute delay.
|
|
|
|
The above only provides legacy SMART information - try 'smartctl -x' for more
|
|
|
|
|
|
###############################################################################
|
|
# 21. STORAGE: HBA / RAID CONTROLLERS
|
|
###############################################################################
|
|
|
|
###############################################################################
|
|
# 22. VIRTUAL MACHINES (qm)
|
|
###############################################################################
|
|
|
|
--- qm list
|
|
$ qm list
|
|
VMID NAME STATUS MEM(MB) BOOTDISK(GB) PID
|
|
500 DellOpenManageEnterprise stopped 20000 415.00 0
|
|
509 pfv-k8s-wnode-tsys5 running 32000 32.00 49689
|
|
515 hfnoc-uisp-preprod stopped 2048 100.00 0
|
|
5100 sectestbed-template stopped 4096 32.00 0
|
|
5101 sectestbed-siem running 10000 132.00 47873
|
|
5102 sectestbed-proxmox-pve stopped 4096 32.00 0
|
|
5103 sectestbed-proxmox-datacenter stopped 4096 32.00 0
|
|
5104 sectestbed-proxmox-pbs stopped 4096 32.00 0
|
|
5105 sectestbed-awx running 4096 288.00 47937
|
|
5106 sectestbed-k8s-cnode running 4096 32.00 48034
|
|
5107 sectestbed-k8s-wnode running 4096 32.00 48099
|
|
5108 sectestbed-librenms running 4096 32.00 48205
|
|
5109 sectestbed-netinfra running 4096 32.00 48303
|
|
5111 ultix-streaming running 9000 288.00 113938
|
|
5112 ultix-offstage running 6000 288.00 115366
|
|
5500 RestoreTemplate stopped 2048 32.00 0
|
|
6000 sectestbed-sandbox running 4096 32.00 88433
|
|
51010 sectestbed-tctc running 4096 32.00 48397
|
|
51011 sectestbed-cloudron running 4096 32.00 48474
|
|
51012 sectestbed-hfnoc running 4096 32.00 48576
|
|
51013 sectestbed-rancherplatform running 4096 32.00 48691
|
|
51014 sectestbed-proxmox-mailgw stopped 4096 32.00 0
|
|
53100 tsys-preprod-awx running 9000 160.00 48805
|
|
53101 tsys-preprod-siem running 12000 32.00 48921
|
|
53102 tsys-preprod-rancherplatform running 8000 32.00 49002
|
|
53103 tsys-preprod-proxmoxmailgw stopped 4096 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 500 ---
|
|
allow-ksm: 0
|
|
balloon: 0
|
|
bios: ovmf
|
|
boot: order=scsi0
|
|
cores: 4
|
|
cpu: host
|
|
efidisk0: D2:500/vm-500-disk-0.qcow2,efitype=4m,ms-cert=2023,pre-enrolled-keys=1,size=528K
|
|
ide2: none,media=cdrom
|
|
machine: q35
|
|
memory: 20000
|
|
meta: creation-qemu=10.1.2,ctime=1772164799
|
|
name: DellOpenManageEnterprise
|
|
net0: virtio=BC:24:11:AC:F4:6B,bridge=vmbr0,firewall=1
|
|
numa: 0
|
|
onboot: 1
|
|
ostype: l26
|
|
scsi0: D7:500/vm-500-disk-0.raw,iothread=1,size=415G
|
|
scsi1: D7:500/vm-500-disk-1.raw,iothread=1,size=415G
|
|
scsihw: virtio-scsi-single
|
|
smbios1: uuid=181654ee-e956-4ba8-bfcf-39e056af9b40
|
|
sockets: 1
|
|
vmgenid: 78d17ab1-dab8-46b0-89dc-f8b0111921ca
|
|
|
|
--- VM 509 ---
|
|
balloon: 0
|
|
boot: order=virtio0;ide2;net0
|
|
cores: 2
|
|
cpu: host
|
|
ide2: none,media=cdrom
|
|
memory: 32000
|
|
meta: creation-qemu=10.1.2,ctime=1770665145
|
|
name: pfv-k8s-wnode-tsys5
|
|
net0: virtio=BC:24:11:44:73:92,bridge=vmbr0,firewall=1
|
|
net1: virtio=BC:24:11:24:6C:FA,bridge=datanet,firewall=1
|
|
numa: 0
|
|
onboot: 1
|
|
ostype: l26
|
|
scsihw: virtio-scsi-single
|
|
smbios1: uuid=7fc2e612-45f8-4d13-9db6-6159296a9043
|
|
sockets: 4
|
|
virtio0: D2:509/vm-509-disk-0.qcow2,iothread=1,size=32G
|
|
vmgenid: b91f02dc-84ee-42ba-8947-f3c02939656b
|
|
|
|
--- VM 515 ---
|
|
balloon: 0
|
|
boot: order=scsi0;ide2;net0
|
|
cores: 2
|
|
cpu: host
|
|
ide2: local:iso/ubuntur-24.04.4.iso,media=cdrom,size=3226020K
|
|
memory: 2048
|
|
meta: creation-qemu=10.1.2,ctime=1776451466
|
|
name: hfnoc-uisp-preprod
|
|
net0: virtio=BC:24:11:74:D6:8A,bridge=vmbr0,firewall=1
|
|
numa: 0
|
|
onboot: 1
|
|
ostype: l26
|
|
scsi0: local-nonprod:515/vm-515-disk-0.qcow2,iothread=1,size=100G
|
|
scsihw: virtio-scsi-single
|
|
smbios1: uuid=ec5d795e-6814-46e4-920b-bd473959bd5f
|
|
sockets: 2
|
|
vmgenid: 18e1f03c-7660-428c-894f-c92c8c04f13e
|
|
|
|
--- VM 5100 ---
|
|
agent: 1
|
|
balloon: 0
|
|
boot: order=scsi0;ide2;net0
|
|
cores: 2
|
|
cpu: x86-64-v2-AES
|
|
ide2: local:iso/debian13.iso,media=cdrom,size=754M
|
|
memory: 4096
|
|
meta: creation-qemu=10.1.2,ctime=1784819584
|
|
name: sectestbed-template
|
|
net0: virtio=BC:24:11:BB:73:31,bridge=vmbr0
|
|
numa: 0
|
|
ostype: l26
|
|
scsi0: local-lvm:base-5100-disk-0,iothread=1,size=32G
|
|
scsihw: virtio-scsi-single
|
|
smbios1: uuid=c444ec6b-e601-46d9-a19f-204a91331f63
|
|
sockets: 2
|
|
template: 1
|
|
vmgenid: eeecff9b-c423-4d67-aa31-2d0c5f87f962
|
|
|
|
--- VM 5101 ---
|
|
agent: 1
|
|
balloon: 0
|
|
boot: order=scsi0;ide2;net0
|
|
cores: 2
|
|
cpu: x86-64-v2-AES
|
|
ide2: local:iso/ubuntur-24.04.4.iso,media=cdrom,size=3226020K
|
|
memory: 10000
|
|
meta: creation-qemu=10.1.2,ctime=1784819584
|
|
name: sectestbed-siem
|
|
net0: virtio=BC:24:11:C7:11:71,bridge=vmbr0
|
|
numa: 0
|
|
ostype: l26
|
|
scsi0: local-nonprod:5101/vm-5101-disk-0.qcow2,iothread=1,size=132G
|
|
scsihw: virtio-scsi-single
|
|
smbios1: uuid=79489ab0-c040-4479-b102-0f4772059356
|
|
sockets: 2
|
|
vmgenid: bc34e73d-14a5-4c4d-a91d-afc079b369d9
|
|
|
|
--- VM 5102 ---
|
|
agent: 1
|
|
balloon: 0
|
|
boot: order=scsi0;ide2;net0
|
|
cores: 2
|
|
cpu: x86-64-v2-AES
|
|
ide2: local:iso/debian13.iso,media=cdrom,size=754M
|
|
memory: 4096
|
|
meta: creation-qemu=10.1.2,ctime=1784819584
|
|
name: sectestbed-proxmox-pve
|
|
net0: virtio=BC:24:11:AC:1A:51,bridge=vmbr0
|
|
numa: 0
|
|
ostype: l26
|
|
scsi0: local-lvm:vm-5102-disk-0,iothread=1,size=32G
|
|
scsihw: virtio-scsi-single
|
|
smbios1: uuid=4fd9e0f1-3139-4c10-b5b8-460865aa4ff5
|
|
sockets: 2
|
|
vmgenid: 3182fc1a-0109-4125-a326-9856ad7c7503
|
|
|
|
--- VM 5103 ---
|
|
agent: 1
|
|
balloon: 0
|
|
boot: order=scsi0;ide2;net0
|
|
cores: 2
|
|
cpu: x86-64-v2-AES
|
|
ide2: local:iso/debian13.iso,media=cdrom,size=754M
|
|
memory: 4096
|
|
meta: creation-qemu=10.1.2,ctime=1784819584
|
|
name: sectestbed-proxmox-datacenter
|
|
net0: virtio=BC:24:11:DC:45:D0,bridge=vmbr0
|
|
numa: 0
|
|
ostype: l26
|
|
scsi0: local-lvm:vm-5103-disk-0,iothread=1,size=32G
|
|
scsihw: virtio-scsi-single
|
|
smbios1: uuid=58bdbcb6-19c9-488d-bcc1-c7270a683ce2
|
|
sockets: 2
|
|
vmgenid: 24a287c9-a823-4a87-a0d7-59b4aabc39b1
|
|
|
|
--- VM 5104 ---
|
|
agent: 1
|
|
balloon: 0
|
|
boot: order=scsi0;ide2;net0
|
|
cores: 2
|
|
cpu: x86-64-v2-AES
|
|
ide2: local:iso/debian13.iso,media=cdrom,size=754M
|
|
memory: 4096
|
|
meta: creation-qemu=10.1.2,ctime=1784819584
|
|
name: sectestbed-proxmox-pbs
|
|
net0: virtio=BC:24:11:8E:1B:23,bridge=vmbr0
|
|
numa: 0
|
|
ostype: l26
|
|
scsi0: local-lvm:vm-5104-disk-0,iothread=1,size=32G
|
|
scsihw: virtio-scsi-single
|
|
smbios1: uuid=e2ec6afd-0ff0-4228-8735-602e9ee5709a
|
|
sockets: 2
|
|
vmgenid: 5205599e-7b2b-4763-b796-6056338e7eca
|
|
|
|
--- VM 5105 ---
|
|
agent: 1
|
|
balloon: 0
|
|
boot: order=scsi0;ide2;net0
|
|
cores: 2
|
|
cpu: x86-64-v2-AES
|
|
ide2: local:iso/debian13.iso,media=cdrom,size=754M
|
|
memory: 4096
|
|
meta: creation-qemu=10.1.2,ctime=1784819584
|
|
name: sectestbed-awx
|
|
net0: virtio=BC:24:11:1E:FE:57,bridge=vmbr0
|
|
numa: 0
|
|
ostype: l26
|
|
scsi0: local-nonprod:5105/vm-5105-disk-0.qcow2,iothread=1,size=288G
|
|
scsihw: virtio-scsi-single
|
|
smbios1: uuid=02704679-75b0-4180-8906-071ca00a98a6
|
|
sockets: 2
|
|
vmgenid: 5106467f-6b7c-441a-8393-977045e0a36a
|
|
|
|
--- VM 5106 ---
|
|
agent: 1
|
|
balloon: 0
|
|
boot: order=scsi0;ide2;net0
|
|
cores: 2
|
|
cpu: x86-64-v2-AES
|
|
ide2: local:iso/debian13.iso,media=cdrom,size=754M
|
|
memory: 4096
|
|
meta: creation-qemu=10.1.2,ctime=1784819584
|
|
name: sectestbed-k8s-cnode
|
|
net0: virtio=BC:24:11:CA:B0:CD,bridge=vmbr0
|
|
numa: 0
|
|
ostype: l26
|
|
scsi0: local-nonprod:5106/vm-5106-disk-0.qcow2,iothread=1,size=32G
|
|
scsihw: virtio-scsi-single
|
|
smbios1: uuid=0eff8d5d-b8f3-4fdc-92b5-f93a9eeecc5e
|
|
sockets: 2
|
|
vmgenid: 5846c8f5-518f-4491-835c-a5df8ebae413
|
|
|
|
--- VM 5107 ---
|
|
agent: 1
|
|
balloon: 0
|
|
boot: order=scsi0;ide2;net0
|
|
cores: 2
|
|
cpu: x86-64-v2-AES
|
|
ide2: local:iso/debian13.iso,media=cdrom,size=754M
|
|
memory: 4096
|
|
meta: creation-qemu=10.1.2,ctime=1784819584
|
|
name: sectestbed-k8s-wnode
|
|
net0: virtio=BC:24:11:36:16:3C,bridge=vmbr0
|
|
numa: 0
|
|
ostype: l26
|
|
scsi0: local-nonprod:5107/vm-5107-disk-0.qcow2,iothread=1,size=32G
|
|
scsihw: virtio-scsi-single
|
|
smbios1: uuid=65d9c31b-b4db-4655-8ed9-5b58eb801b42
|
|
sockets: 2
|
|
vmgenid: 25a5ffef-5f47-4ef0-ac62-e158f09f7ca5
|
|
|
|
--- VM 5108 ---
|
|
agent: 1
|
|
balloon: 0
|
|
boot: order=scsi0;ide2;net0
|
|
cores: 2
|
|
cpu: x86-64-v2-AES
|
|
ide2: local:iso/debian13.iso,media=cdrom,size=754M
|
|
memory: 4096
|
|
meta: creation-qemu=10.1.2,ctime=1784819584
|
|
name: sectestbed-librenms
|
|
net0: virtio=BC:24:11:E2:1A:09,bridge=vmbr0
|
|
numa: 0
|
|
ostype: l26
|
|
scsi0: local-nonprod:5108/vm-5108-disk-0.qcow2,iothread=1,size=32G
|
|
scsihw: virtio-scsi-single
|
|
smbios1: uuid=0664920e-125a-4ef3-8505-56b8c4e0f31c
|
|
sockets: 2
|
|
vmgenid: 8c8641b5-50d0-4d87-8817-9c79f19c1c9a
|
|
|
|
--- VM 5109 ---
|
|
agent: 1
|
|
balloon: 0
|
|
boot: order=scsi0;ide2;net0
|
|
cores: 2
|
|
cpu: x86-64-v2-AES
|
|
ide2: local:iso/debian13.iso,media=cdrom,size=754M
|
|
memory: 4096
|
|
meta: creation-qemu=10.1.2,ctime=1784819584
|
|
name: sectestbed-netinfra
|
|
net0: virtio=BC:24:11:80:A1:3C,bridge=vmbr0
|
|
numa: 0
|
|
ostype: l26
|
|
scsi0: local-nonprod:5109/vm-5109-disk-0.qcow2,iothread=1,size=32G
|
|
scsihw: virtio-scsi-single
|
|
smbios1: uuid=f1664d3d-4dd1-451a-87b1-07724c12ca70
|
|
sockets: 2
|
|
vmgenid: 47f317dc-baaf-4aa7-832f-1d447d3f3392
|
|
|
|
--- VM 5111 ---
|
|
agent: 1
|
|
balloon: 0
|
|
boot: order=scsi0;net0
|
|
cores: 2
|
|
cpu: x86-64-v2-AES,flags=+nested-virt
|
|
ide2: local:iso/debian13.iso,media=cdrom,size=754M
|
|
memory: 9000
|
|
meta: creation-qemu=10.1.2,ctime=1784819584
|
|
name: ultix-streaming
|
|
net0: virtio=BC:24:11:1A:8F:6F,bridge=vmbr0
|
|
numa: 0
|
|
ostype: l26
|
|
scsi0: SSD:5111/vm-5111-disk-0.qcow2,iothread=1,size=288G
|
|
scsihw: virtio-scsi-single
|
|
smbios1: uuid=bc74eb91-b156-46e2-b946-808da9b4f037
|
|
sockets: 2
|
|
vmgenid: 06fc08de-c644-497a-a1e9-72304fefd32f
|
|
|
|
--- VM 5112 ---
|
|
agent: 1
|
|
balloon: 0
|
|
boot: order=scsi0
|
|
cores: 2
|
|
cpu: x86-64-v2-AES
|
|
ide2: local:iso/debian13.iso,media=cdrom,size=754M
|
|
memory: 6000
|
|
meta: creation-qemu=10.1.2,ctime=1784819584
|
|
name: ultix-offstage
|
|
net0: virtio=BC:24:11:1F:9D:83,bridge=vmbr0
|
|
numa: 0
|
|
ostype: l26
|
|
scsi0: local-lvm:vm-5112-disk-0,iothread=1,size=288G
|
|
scsihw: virtio-scsi-single
|
|
smbios1: uuid=8c783209-4cad-4b04-a66f-5b032ae902d5
|
|
sockets: 2
|
|
vmgenid: fa05fd3c-5f30-496c-9600-6335992cb45d
|
|
|
|
--- VM 5500 ---
|
|
agent: 1
|
|
allow-ksm: 0
|
|
balloon: 0
|
|
boot: order=scsi0;ide2;net0
|
|
cores: 2
|
|
cpu: host
|
|
ide2: none,media=cdrom
|
|
memory: 2048
|
|
meta: creation-qemu=10.1.2,ctime=1773957951
|
|
name: RestoreTemplate
|
|
net0: virtio=BC:24:11:E8:78:F3,bridge=vmbr0,firewall=1
|
|
numa: 0
|
|
onboot: 1
|
|
ostype: l26
|
|
scsi0: D1:5500/base-5500-disk-0.qcow2,size=32G
|
|
scsihw: virtio-scsi-pci
|
|
smbios1: uuid=0d66e977-633a-4111-83a7-cc5d03c5c3b2
|
|
sockets: 2
|
|
template: 1
|
|
vmgenid: c46b7a9e-6275-4ce9-811c-57380dbedbe9
|
|
|
|
--- VM 6000 ---
|
|
agent: 1
|
|
balloon: 0
|
|
boot: order=scsi0;ide2;net0
|
|
cores: 2
|
|
cpu: x86-64-v2-AES
|
|
ide2: local:iso/debian13.iso,media=cdrom,size=754M
|
|
memory: 4096
|
|
meta: creation-qemu=10.1.2,ctime=1784819584
|
|
name: sectestbed-sandbox
|
|
net0: virtio=BC:24:11:EB:F0:0F,bridge=vmbr0
|
|
numa: 0
|
|
ostype: l26
|
|
scsi0: local-nonprod:6000/vm-6000-disk-0.qcow2,iothread=1,size=32G
|
|
scsihw: virtio-scsi-single
|
|
smbios1: uuid=569a6be3-7977-40f5-a3f0-e05719d68f52
|
|
sockets: 2
|
|
vmgenid: 301382b6-e566-45ae-bc2e-c4f1cc36c299
|
|
|
|
--- VM 51010 ---
|
|
agent: 1
|
|
balloon: 0
|
|
boot: order=scsi0;ide2;net0
|
|
cores: 2
|
|
cpu: x86-64-v2-AES
|
|
ide2: local:iso/debian13.iso,media=cdrom,size=754M
|
|
memory: 4096
|
|
meta: creation-qemu=10.1.2,ctime=1784819584
|
|
name: sectestbed-tctc
|
|
net0: virtio=BC:24:11:6D:60:FB,bridge=vmbr0
|
|
numa: 0
|
|
ostype: l26
|
|
scsi0: local-nonprod:51010/vm-51010-disk-0.qcow2,iothread=1,size=32G
|
|
scsihw: virtio-scsi-single
|
|
smbios1: uuid=8c2d84f0-f416-436d-a0a1-df1453037d05
|
|
sockets: 2
|
|
vmgenid: 3f15c0ae-4c5c-457d-90e8-b9396b261209
|
|
|
|
--- VM 51011 ---
|
|
agent: 1
|
|
balloon: 0
|
|
boot: order=scsi0;ide2;net0
|
|
cores: 2
|
|
cpu: x86-64-v2-AES
|
|
ide2: local:iso/ubuntur-24.04.4.iso,media=cdrom,size=3226020K
|
|
memory: 4096
|
|
meta: creation-qemu=10.1.2,ctime=1784819584
|
|
name: sectestbed-cloudron
|
|
net0: virtio=BC:24:11:C3:DC:75,bridge=vmbr0
|
|
numa: 0
|
|
ostype: l26
|
|
scsi0: local-nonprod:51011/vm-51011-disk-0.qcow2,iothread=1,size=32G
|
|
scsihw: virtio-scsi-single
|
|
smbios1: uuid=d509a43d-a3d8-45e3-9e93-f6ddf148054e
|
|
sockets: 2
|
|
vmgenid: 01694276-61da-4219-a665-5b114a6d7155
|
|
|
|
--- VM 51012 ---
|
|
agent: 1
|
|
balloon: 0
|
|
boot: order=scsi0;ide2;net0
|
|
cores: 2
|
|
cpu: x86-64-v2-AES
|
|
ide2: local:iso/debian13.iso,media=cdrom,size=754M
|
|
memory: 4096
|
|
meta: creation-qemu=10.1.2,ctime=1784819584
|
|
name: sectestbed-hfnoc
|
|
net0: virtio=BC:24:11:7A:44:5F,bridge=vmbr0
|
|
numa: 0
|
|
ostype: l26
|
|
scsi0: local-nonprod:51012/vm-51012-disk-0.qcow2,iothread=1,size=32G
|
|
scsihw: virtio-scsi-single
|
|
smbios1: uuid=f3f05416-829c-4cfa-9c15-09034cdc18b6
|
|
sockets: 2
|
|
vmgenid: 5ca81070-ed5e-4d1f-a23a-39f5bd613819
|
|
|
|
--- VM 51013 ---
|
|
agent: 1
|
|
balloon: 0
|
|
boot: order=scsi0;ide2;net0
|
|
cores: 2
|
|
cpu: x86-64-v2-AES
|
|
ide2: local:iso/debian13.iso,media=cdrom,size=754M
|
|
memory: 4096
|
|
meta: creation-qemu=10.1.2,ctime=1784819584
|
|
name: sectestbed-rancherplatform
|
|
net0: virtio=BC:24:11:78:11:AC,bridge=vmbr0
|
|
numa: 0
|
|
ostype: l26
|
|
scsi0: local-nonprod:51013/vm-51013-disk-0.qcow2,iothread=1,size=32G
|
|
scsihw: virtio-scsi-single
|
|
smbios1: uuid=94efa581-b963-4fdd-b36a-ddb1b2000860
|
|
sockets: 2
|
|
vmgenid: f4ef5349-ef23-4f86-b22b-9053bd172dc3
|
|
|
|
--- VM 51014 ---
|
|
agent: 1
|
|
balloon: 0
|
|
boot: order=scsi0;ide2;net0
|
|
cores: 2
|
|
cpu: x86-64-v2-AES
|
|
ide2: local:iso/debian13.iso,media=cdrom,size=754M
|
|
memory: 4096
|
|
meta: creation-qemu=10.1.2,ctime=1784819584
|
|
name: sectestbed-proxmox-mailgw
|
|
net0: virtio=BC:24:11:8D:C0:F6,bridge=vmbr0
|
|
numa: 0
|
|
ostype: l26
|
|
scsi0: local-nonprod:51014/vm-51014-disk-0.qcow2,iothread=1,size=32G
|
|
scsihw: virtio-scsi-single
|
|
smbios1: uuid=1d9e15da-16c0-4c9c-8a6a-6a6868e88485
|
|
sockets: 2
|
|
vmgenid: 928b7e49-2a7c-4482-ad29-7ccbf2cc8411
|
|
|
|
--- VM 53100 ---
|
|
agent: 1
|
|
balloon: 0
|
|
boot: order=scsi0;ide2;net0
|
|
cores: 2
|
|
cpu: x86-64-v2-AES
|
|
ide2: local:iso/debian13.iso,media=cdrom,size=754M
|
|
memory: 9000
|
|
meta: creation-qemu=10.1.2,ctime=1784819584
|
|
name: tsys-preprod-awx
|
|
net0: virtio=BC:24:11:FB:7D:38,bridge=vmbr0
|
|
numa: 0
|
|
ostype: l26
|
|
scsi0: local-nonprod:53100/vm-53100-disk-0.qcow2,iothread=1,size=160G
|
|
scsihw: virtio-scsi-single
|
|
smbios1: uuid=36763d6b-c72e-4207-975c-fc8c46aebc56
|
|
sockets: 2
|
|
vmgenid: 176bfe48-2e3c-488b-a9b6-bcc070d4b7b0
|
|
|
|
--- VM 53101 ---
|
|
agent: 1
|
|
balloon: 0
|
|
boot: order=scsi0;ide2;net0
|
|
cores: 2
|
|
cpu: x86-64-v2-AES
|
|
ide2: local:iso/ubuntur-24.04.4.iso,media=cdrom,size=3226020K
|
|
memory: 12000
|
|
meta: creation-qemu=10.1.2,ctime=1784819584
|
|
name: tsys-preprod-siem
|
|
net0: virtio=BC:24:11:CB:F7:AA,bridge=vmbr0
|
|
numa: 0
|
|
ostype: l26
|
|
scsi0: local-nonprod:53101/vm-53101-disk-0.qcow2,iothread=1,size=32G
|
|
scsihw: virtio-scsi-single
|
|
smbios1: uuid=e29825a2-eebb-444b-b590-46377075023b
|
|
sockets: 2
|
|
vmgenid: 35ccbc15-72e2-465b-9890-784792df8412
|
|
|
|
--- VM 53102 ---
|
|
agent: 1
|
|
balloon: 0
|
|
boot: order=scsi0;ide2;net0
|
|
cores: 2
|
|
cpu: x86-64-v2-AES
|
|
ide2: local:iso/debian13.iso,media=cdrom,size=754M
|
|
memory: 8000
|
|
meta: creation-qemu=10.1.2,ctime=1784819584
|
|
name: tsys-preprod-rancherplatform
|
|
net0: virtio=BC:24:11:6F:B0:06,bridge=vmbr0
|
|
numa: 0
|
|
ostype: l26
|
|
scsi0: local-nonprod:53102/vm-53102-disk-0.qcow2,iothread=1,size=32G
|
|
scsihw: virtio-scsi-single
|
|
smbios1: uuid=f3de9511-0212-4907-8d30-ef58891b5568
|
|
sockets: 2
|
|
vmgenid: 3654bc7e-8744-4561-ab07-a6c7aa357387
|
|
|
|
--- VM 53103 ---
|
|
agent: 1
|
|
balloon: 0
|
|
boot: order=scsi0;ide2;net0
|
|
cores: 2
|
|
cpu: x86-64-v2-AES
|
|
ide2: local:iso/debian13.iso,media=cdrom,size=754M
|
|
memory: 4096
|
|
meta: creation-qemu=10.1.2,ctime=1784819584
|
|
name: tsys-preprod-proxmoxmailgw
|
|
net0: virtio=BC:24:11:EA:01:CD,bridge=vmbr0
|
|
numa: 0
|
|
ostype: l26
|
|
scsi0: local-nonprod:53103/vm-53103-disk-0.qcow2,iothread=1,size=32G
|
|
scsihw: virtio-scsi-single
|
|
smbios1: uuid=6cbc9c35-beed-4090-ad0f-8e80ac7bdc2c
|
|
sockets: 2
|
|
vmgenid: b774c009-2573-4a34-87a1-caecb8e8fddd
|
|
|
|
|
|
--- 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 500 runtime ---
|
|
--- VM 509 runtime ---
|
|
--- VM 515 runtime ---
|
|
--- VM 5100 runtime ---
|
|
--- VM 5101 runtime ---
|
|
--- VM 5102 runtime ---
|
|
--- VM 5103 runtime ---
|
|
--- VM 5104 runtime ---
|
|
--- VM 5105 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" : 6480,
|
|
"rx-dropped" : 0,
|
|
"rx-errs" : 0,
|
|
"rx-packets" : 80,
|
|
"tx-bytes" : 6480,
|
|
"tx-dropped" : 0,
|
|
"tx-errs" : 0,
|
|
"tx-packets" : 80
|
|
}
|
|
},
|
|
{
|
|
"hardware-address" : "bc:24:11:1e:fe:57",
|
|
"ip-addresses" : [
|
|
{
|
|
"ip-address" : "192.168.3.57",
|
|
"ip-address-type" : "ipv4",
|
|
"prefix" : 22
|
|
},
|
|
{
|
|
"ip-address" : "2600:1700:1d1:eb00::42",
|
|
"ip-address-type" : "ipv6",
|
|
"prefix" : 128
|
|
},
|
|
--- VM 5106 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" : 6480,
|
|
"rx-dropped" : 0,
|
|
"rx-errs" : 0,
|
|
"rx-packets" : 80,
|
|
"tx-bytes" : 6480,
|
|
"tx-dropped" : 0,
|
|
"tx-errs" : 0,
|
|
"tx-packets" : 80
|
|
}
|
|
},
|
|
{
|
|
"hardware-address" : "bc:24:11:ca:b0:cd",
|
|
"ip-addresses" : [
|
|
{
|
|
"ip-address" : "192.168.3.74",
|
|
"ip-address-type" : "ipv4",
|
|
"prefix" : 22
|
|
},
|
|
{
|
|
"ip-address" : "2600:1700:1d1:eb00::3d",
|
|
"ip-address-type" : "ipv6",
|
|
"prefix" : 128
|
|
},
|
|
--- VM 5107 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" : 6480,
|
|
"rx-dropped" : 0,
|
|
"rx-errs" : 0,
|
|
"rx-packets" : 80,
|
|
"tx-bytes" : 6480,
|
|
"tx-dropped" : 0,
|
|
"tx-errs" : 0,
|
|
"tx-packets" : 80
|
|
}
|
|
},
|
|
{
|
|
"hardware-address" : "bc:24:11:36:16:3c",
|
|
"ip-addresses" : [
|
|
{
|
|
"ip-address" : "192.168.3.56",
|
|
"ip-address-type" : "ipv4",
|
|
"prefix" : 22
|
|
},
|
|
{
|
|
"ip-address" : "2600:1700:1d1:eb00::35",
|
|
"ip-address-type" : "ipv6",
|
|
"prefix" : 128
|
|
},
|
|
--- VM 5108 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" : 6480,
|
|
"rx-dropped" : 0,
|
|
"rx-errs" : 0,
|
|
"rx-packets" : 80,
|
|
"tx-bytes" : 6480,
|
|
"tx-dropped" : 0,
|
|
"tx-errs" : 0,
|
|
"tx-packets" : 80
|
|
}
|
|
},
|
|
{
|
|
"hardware-address" : "bc:24:11:e2:1a:09",
|
|
"ip-addresses" : [
|
|
{
|
|
"ip-address" : "192.168.3.73",
|
|
"ip-address-type" : "ipv4",
|
|
"prefix" : 22
|
|
},
|
|
{
|
|
"ip-address" : "2600:1700:1d1:eb00::3c",
|
|
"ip-address-type" : "ipv6",
|
|
"prefix" : 128
|
|
},
|
|
--- VM 5109 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" : 6480,
|
|
"rx-dropped" : 0,
|
|
"rx-errs" : 0,
|
|
"rx-packets" : 80,
|
|
"tx-bytes" : 6480,
|
|
"tx-dropped" : 0,
|
|
"tx-errs" : 0,
|
|
"tx-packets" : 80
|
|
}
|
|
},
|
|
{
|
|
"hardware-address" : "bc:24:11:80:a1:3c",
|
|
"ip-addresses" : [
|
|
{
|
|
"ip-address" : "192.168.3.72",
|
|
"ip-address-type" : "ipv4",
|
|
"prefix" : 22
|
|
},
|
|
{
|
|
"ip-address" : "2600:1700:1d1:eb00::1a",
|
|
"ip-address-type" : "ipv6",
|
|
"prefix" : 128
|
|
},
|
|
--- VM 5111 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" : 145240,
|
|
"rx-dropped" : 0,
|
|
"rx-errs" : 0,
|
|
"rx-packets" : 943,
|
|
"tx-bytes" : 145240,
|
|
"tx-dropped" : 0,
|
|
"tx-errs" : 0,
|
|
"tx-packets" : 943
|
|
}
|
|
},
|
|
{
|
|
"hardware-address" : "bc:24:11:1a:8f:6f",
|
|
"ip-addresses" : [
|
|
{
|
|
"ip-address" : "192.168.3.78",
|
|
"ip-address-type" : "ipv4",
|
|
"prefix" : 22
|
|
},
|
|
{
|
|
"ip-address" : "2600:1700:1d1:eb00:5fe9:f442:d1df:2bb7",
|
|
"ip-address-type" : "ipv6",
|
|
"prefix" : 64
|
|
},
|
|
--- VM 5112 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" : 20606,
|
|
"rx-dropped" : 0,
|
|
"rx-errs" : 0,
|
|
"rx-packets" : 164,
|
|
"tx-bytes" : 20606,
|
|
"tx-dropped" : 0,
|
|
"tx-errs" : 0,
|
|
"tx-packets" : 164
|
|
}
|
|
},
|
|
{
|
|
"hardware-address" : "bc:24:11:1f:9d:83",
|
|
"ip-addresses" : [
|
|
{
|
|
"ip-address" : "192.168.3.79",
|
|
"ip-address-type" : "ipv4",
|
|
"prefix" : 22
|
|
},
|
|
{
|
|
"ip-address" : "2600:1700:1d1:eb00:1fdf:55cf:7034:f5d2",
|
|
"ip-address-type" : "ipv6",
|
|
"prefix" : 64
|
|
},
|
|
--- VM 5500 runtime ---
|
|
--- VM 6000 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" : 0,
|
|
"rx-dropped" : 0,
|
|
"rx-errs" : 0,
|
|
"rx-packets" : 0,
|
|
"tx-bytes" : 0,
|
|
"tx-dropped" : 0,
|
|
"tx-errs" : 0,
|
|
"tx-packets" : 0
|
|
}
|
|
},
|
|
{
|
|
"hardware-address" : "bc:24:11:eb:f0:0f",
|
|
"ip-addresses" : [
|
|
{
|
|
"ip-address" : "192.168.3.50",
|
|
"ip-address-type" : "ipv4",
|
|
"prefix" : 22
|
|
},
|
|
{
|
|
"ip-address" : "2600:1700:1d1:eb00::10",
|
|
"ip-address-type" : "ipv6",
|
|
"prefix" : 128
|
|
},
|
|
--- VM 51010 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" : 6480,
|
|
"rx-dropped" : 0,
|
|
"rx-errs" : 0,
|
|
"rx-packets" : 80,
|
|
"tx-bytes" : 6480,
|
|
"tx-dropped" : 0,
|
|
"tx-errs" : 0,
|
|
"tx-packets" : 80
|
|
}
|
|
},
|
|
{
|
|
"hardware-address" : "bc:24:11:6d:60:fb",
|
|
"ip-addresses" : [
|
|
{
|
|
"ip-address" : "192.168.3.71",
|
|
"ip-address-type" : "ipv4",
|
|
"prefix" : 22
|
|
},
|
|
{
|
|
"ip-address" : "2600:1700:1d1:eb00::44",
|
|
"ip-address-type" : "ipv6",
|
|
"prefix" : 128
|
|
},
|
|
--- VM 51011 runtime ---
|
|
--- VM 51012 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" : 6480,
|
|
"rx-dropped" : 0,
|
|
"rx-errs" : 0,
|
|
"rx-packets" : 80,
|
|
"tx-bytes" : 6480,
|
|
"tx-dropped" : 0,
|
|
"tx-errs" : 0,
|
|
"tx-packets" : 80
|
|
}
|
|
},
|
|
{
|
|
"hardware-address" : "bc:24:11:7a:44:5f",
|
|
"ip-addresses" : [
|
|
{
|
|
"ip-address" : "192.168.3.59",
|
|
"ip-address-type" : "ipv4",
|
|
"prefix" : 22
|
|
},
|
|
{
|
|
"ip-address" : "2600:1700:1d1:eb00::32",
|
|
"ip-address-type" : "ipv6",
|
|
"prefix" : 128
|
|
},
|
|
--- VM 51013 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" : 6480,
|
|
"rx-dropped" : 0,
|
|
"rx-errs" : 0,
|
|
"rx-packets" : 80,
|
|
"tx-bytes" : 6480,
|
|
"tx-dropped" : 0,
|
|
"tx-errs" : 0,
|
|
"tx-packets" : 80
|
|
}
|
|
},
|
|
{
|
|
"hardware-address" : "bc:24:11:78:11:ac",
|
|
"ip-addresses" : [
|
|
{
|
|
"ip-address" : "192.168.3.70",
|
|
"ip-address-type" : "ipv4",
|
|
"prefix" : 22
|
|
},
|
|
{
|
|
"ip-address" : "2600:1700:1d1:eb00::23",
|
|
"ip-address-type" : "ipv6",
|
|
"prefix" : 128
|
|
},
|
|
--- VM 51014 runtime ---
|
|
--- VM 53100 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" : 6480,
|
|
"rx-dropped" : 0,
|
|
"rx-errs" : 0,
|
|
"rx-packets" : 80,
|
|
"tx-bytes" : 6480,
|
|
"tx-dropped" : 0,
|
|
"tx-errs" : 0,
|
|
"tx-packets" : 80
|
|
}
|
|
},
|
|
{
|
|
"hardware-address" : "bc:24:11:fb:7d:38",
|
|
"ip-addresses" : [
|
|
{
|
|
"ip-address" : "192.168.3.69",
|
|
"ip-address-type" : "ipv4",
|
|
"prefix" : 22
|
|
},
|
|
{
|
|
"ip-address" : "2600:1700:1d1:eb00::31",
|
|
"ip-address-type" : "ipv6",
|
|
"prefix" : 128
|
|
},
|
|
--- VM 53101 runtime ---
|
|
--- VM 53102 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" : 6480,
|
|
"rx-dropped" : 0,
|
|
"rx-errs" : 0,
|
|
"rx-packets" : 80,
|
|
"tx-bytes" : 6480,
|
|
"tx-dropped" : 0,
|
|
"tx-errs" : 0,
|
|
"tx-packets" : 80
|
|
}
|
|
},
|
|
{
|
|
"hardware-address" : "bc:24:11:6f:b0:06",
|
|
"ip-addresses" : [
|
|
{
|
|
"ip-address" : "192.168.3.68",
|
|
"ip-address-type" : "ipv4",
|
|
"prefix" : 22
|
|
},
|
|
{
|
|
"ip-address" : "2600:1700:1d1:eb00::2e",
|
|
"ip-address-type" : "ipv6",
|
|
"prefix" : 128
|
|
},
|
|
--- VM 53103 runtime ---
|
|
|
|
--- /etc/pve/qemu-server
|
|
lrwxr-xr-x 1 root www-data 27 Dec 31 1969 /etc/pve/qemu-server -> nodes/pfv-tsys5/qemu-server
|
|
|
|
--- /etc/pve/firewall
|
|
total 0
|
|
drwxr-xr-x 2 root www-data 0 Feb 26 09:06 .
|
|
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
|
|
fsidd.service loaded active running NFS FSID Daemon
|
|
getty@tty1.service loaded active running Getty on tty1
|
|
glances.service loaded active running Glances
|
|
iperf3.service loaded active running iperf3 server
|
|
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
|
|
nfs-idmapd.service loaded active running NFSv4 ID-name mapping service
|
|
nfs-mountd.service loaded active running NFS Mount Daemon
|
|
nfsdcld.service loaded active running NFSv4 Client Tracking Daemon
|
|
polkit.service loaded active running Authorization Manager
|
|
postfix.service loaded active running Postfix Mail Transport Agent (main/default instance)
|
|
proxmox-firewall.service loaded active running Proxmox nftables firewall
|
|
pve-cluster.service loaded active running The Proxmox VE cluster filesystem
|
|
pve-firewall.service loaded active running Proxmox VE firewall
|
|
pve-ha-crm.service loaded active running PVE Cluster HA Resource Manager Daemon
|
|
pve-ha-lrm.service loaded active running PVE Local HA Resource Manager Daemon
|
|
pve-lxc-syscalld.service loaded active running Proxmox VE LXC Syscall Daemon
|
|
pvedaemon.service loaded active running PVE API Daemon
|
|
pvefw-logger.service loaded active running Proxmox VE firewall logger
|
|
pveproxy.service loaded active running PVE API Proxy Server
|
|
pvescheduler.service loaded active running Proxmox VE scheduler
|
|
pvestatd.service loaded active running PVE Status Daemon
|
|
qmeventd.service loaded active running PVE Qemu Event Daemon
|
|
rpc-statd.service loaded active running NFS status monitor for NFSv2/3 locking.
|
|
rpcbind.service loaded active running RPC bind portmap service
|
|
rrdcached.service loaded active running Data caching daemon for rrdtool
|
|
smartmontools.service loaded active running Self Monitoring and Reporting Technology (SMART) Daemon
|
|
spiceproxy.service loaded active running PVE SPICE Proxy Server
|
|
ssh.service loaded active running OpenBSD Secure Shell server
|
|
systemd-journald.service loaded active running Journal Service
|
|
systemd-logind.service loaded active running User Login Management
|
|
systemd-udevd.service loaded active running Rule-based Manager for Device Events and Files
|
|
tailscaled.service loaded active running Tailscale node agent
|
|
tuned.service loaded active running Dynamic System Tuning Daemon
|
|
user@0.service loaded active running User Manager for UID 0
|
|
watchdog-mux.service loaded active running Proxmox VE watchdog multiplexer
|
|
zfs-zed.service loaded active running ZFS Event Daemon (zed)
|
|
|
|
Legend: LOAD → Reflects whether the unit definition was properly loaded.
|
|
ACTIVE → The high-level unit activation state, i.e. generalization of SUB.
|
|
SUB → The low-level unit activation state, values depend on unit type.
|
|
|
|
45 loaded units listed.
|
|
|
|
--- failed services
|
|
$ systemctl --failed --no-pager
|
|
UNIT LOAD ACTIVE SUB DESCRIPTION
|
|
|
|
0 loaded units listed.
|
|
|
|
--- enabled services
|
|
$ systemctl list-unit-files --state=enabled --no-pager
|
|
UNIT FILE STATE PRESET
|
|
apparmor.service enabled enabled
|
|
beszel-agent.service enabled enabled
|
|
blk-availability.service enabled enabled
|
|
chrony.service enabled enabled
|
|
console-setup.service enabled enabled
|
|
corosync.service enabled enabled
|
|
cron.service enabled enabled
|
|
e2scrub_reap.service enabled enabled
|
|
fsidd.service enabled enabled
|
|
getty@.service enabled enabled
|
|
glances.service enabled enabled
|
|
grub-common.service enabled enabled
|
|
iperf3.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
|
|
nfs-server.service enabled enabled
|
|
open-iscsi.service enabled enabled
|
|
postfix.service enabled enabled
|
|
proxmox-boot-cleanup.service enabled enabled
|
|
proxmox-firewall.service enabled enabled
|
|
pve-cluster.service enabled enabled
|
|
pve-firewall-commit.service enabled enabled
|
|
pve-firewall.service enabled enabled
|
|
pve-guests.service enabled enabled
|
|
pve-ha-crm.service enabled enabled
|
|
pve-ha-lrm.service enabled enabled
|
|
pve-lxc-syscalld.service enabled enabled
|
|
pve-query-machine-capabilities.service enabled enabled
|
|
pve-sdn-commit.service enabled enabled
|
|
pvebanner.service enabled enabled
|
|
pvedaemon.service enabled enabled
|
|
pvefw-logger.service enabled enabled
|
|
pvenetcommit.service enabled enabled
|
|
pveproxy.service enabled enabled
|
|
pvescheduler.service enabled enabled
|
|
pvestatd.service enabled enabled
|
|
qmeventd.service enabled enabled
|
|
rbdmap.service enabled enabled
|
|
rpcbind.service enabled enabled
|
|
rrdcached.service enabled enabled
|
|
smartmontools.service enabled enabled
|
|
spiceproxy.service enabled enabled
|
|
ssh.service enabled enabled
|
|
sshd-keygen.service enabled enabled
|
|
systemd-pstore.service enabled enabled
|
|
tailscaled.service enabled enabled
|
|
tuned.service enabled enabled
|
|
wtmpdb-update-boot.service enabled enabled
|
|
zfs-import-cache.service enabled enabled
|
|
zfs-mount.service enabled enabled
|
|
zfs-share.service enabled enabled
|
|
zfs-volume-wait.service enabled enabled
|
|
zfs-zed.service enabled enabled
|
|
system-xfs_scrub.slice enabled enabled
|
|
dm-event.socket enabled enabled
|
|
iscsid.socket enabled enabled
|
|
lvm2-lvmpolld.socket enabled enabled
|
|
netavark-dhcp-proxy.socket enabled enabled
|
|
rpcbind.socket enabled enabled
|
|
rrdcached.socket enabled enabled
|
|
ceph-fuse.target enabled enabled
|
|
ceph.target enabled enabled
|
|
nfs-client.target enabled enabled
|
|
remote-fs.target enabled enabled
|
|
zfs-import.target enabled enabled
|
|
zfs-volumes.target enabled enabled
|
|
zfs.target enabled enabled
|
|
apt-daily-upgrade.timer enabled enabled
|
|
apt-daily.timer enabled enabled
|
|
beszel-agent-update.timer enabled enabled
|
|
dpkg-db-backup.timer enabled enabled
|
|
e2scrub_all.timer enabled enabled
|
|
fstrim.timer enabled enabled
|
|
logrotate.timer enabled enabled
|
|
man-db.timer enabled enabled
|
|
pve-daily-update.timer enabled enabled
|
|
xfs_scrub_all.timer enabled enabled
|
|
|
|
87 unit files listed.
|
|
|
|
--- pve-* service status
|
|
$ systemctl status pve-cluster pvedaemon pveproxy pve-firewall pve-ha-crm pve-ha-lrm pvestatd pvebanner --no-pager 2>&1 | head -n 120
|
|
● pve-cluster.service - The Proxmox VE cluster filesystem
|
|
Loaded: loaded (/usr/lib/systemd/system/pve-cluster.service; enabled; preset: enabled)
|
|
Active: active (running) since Sun 2026-07-26 12:29:15 CDT; 4h 2min ago
|
|
Invocation: bca2beeb6a4f4d329bf280b314c421ea
|
|
Main PID: 645934 (pmxcfs)
|
|
Tasks: 7 (limit: 115754)
|
|
Memory: 58M (peak: 67M)
|
|
CPU: 25.479s
|
|
CGroup: /system.slice/pve-cluster.service
|
|
└─645934 /usr/bin/pmxcfs
|
|
|
|
Jul 26 12:29:14 pfv-tsys5 systemd[1]: Starting pve-cluster.service - The Proxmox VE cluster filesystem...
|
|
Jul 26 12:29:14 pfv-tsys5 pmxcfs[645933]: [main] notice: resolved node name 'pfv-tsys5' to '192.168.100.2' for default node IP address
|
|
Jul 26 12:29:14 pfv-tsys5 pmxcfs[645933]: [main] notice: resolved node name 'pfv-tsys5' to '192.168.100.2' for default node IP address
|
|
Jul 26 12:29:15 pfv-tsys5 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 Fri 2026-07-24 19:17:43 CDT; 1 day 21h ago
|
|
Invocation: f312baf644aa409885b856e383af00cf
|
|
Process: 646772 ExecReload=/usr/bin/pvedaemon restart (code=exited, status=0/SUCCESS)
|
|
Main PID: 1910 (pvedaemon)
|
|
Tasks: 4 (limit: 115754)
|
|
Memory: 191.9M (peak: 50.9G)
|
|
CPU: 13min 15.696s
|
|
CGroup: /system.slice/pvedaemon.service
|
|
├─ 1910 pvedaemon
|
|
├─674904 "pvedaemon worker"
|
|
├─675037 "pvedaemon worker"
|
|
└─678254 "pvedaemon worker"
|
|
|
|
Jul 26 14:09:37 pfv-tsys5 pvedaemon[674904]: <root@pam> successful auth for user 'root@pam'
|
|
Jul 26 14:15:11 pfv-tsys5 pvedaemon[646829]: worker exit
|
|
Jul 26 14:15:11 pfv-tsys5 pvedaemon[1910]: worker 646829 finished
|
|
Jul 26 14:15:11 pfv-tsys5 pvedaemon[1910]: starting 1 worker(s)
|
|
Jul 26 14:15:11 pfv-tsys5 pvedaemon[1910]: worker 678254 started
|
|
Jul 26 14:25:37 pfv-tsys5 pvedaemon[678254]: <root@pam> successful auth for user 'root@pam'
|
|
Jul 26 14:40:37 pfv-tsys5 pvedaemon[674904]: <root@pam> successful auth for user 'root@pam'
|
|
Jul 26 14:56:37 pfv-tsys5 pvedaemon[678254]: <root@pam> successful auth for user 'root@pam'
|
|
Jul 26 15:11:37 pfv-tsys5 pvedaemon[674904]: <root@pam> successful auth for user 'root@pam'
|
|
Jul 26 16:19:27 pfv-tsys5 pvedaemon[674904]: <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 Sat 2026-07-25 01:10:35 CDT; 1 day 15h ago
|
|
Invocation: 268be364e92e441cb7609cbeaa9a7ef8
|
|
Process: 646809 ExecReload=/usr/bin/pveproxy restart (code=exited, status=0/SUCCESS)
|
|
Main PID: 86999 (pveproxy)
|
|
Tasks: 4 (limit: 115754)
|
|
Memory: 314.7M (peak: 507.5M)
|
|
CPU: 7min 47.060s
|
|
CGroup: /system.slice/pveproxy.service
|
|
├─ 86999 pveproxy
|
|
├─697082 "pveproxy worker"
|
|
├─697593 "pveproxy worker"
|
|
└─698675 "pveproxy worker"
|
|
|
|
Jul 26 15:15:00 pfv-tsys5 pveproxy[86999]: starting 1 worker(s)
|
|
Jul 26 15:15:00 pfv-tsys5 pveproxy[86999]: worker 697082 started
|
|
Jul 26 15:16:19 pfv-tsys5 pveproxy[683623]: worker exit
|
|
Jul 26 15:16:19 pfv-tsys5 pveproxy[86999]: worker 683623 finished
|
|
Jul 26 15:16:19 pfv-tsys5 pveproxy[86999]: starting 1 worker(s)
|
|
Jul 26 15:16:19 pfv-tsys5 pveproxy[86999]: worker 697593 started
|
|
Jul 26 15:18:01 pfv-tsys5 pveproxy[684579]: worker exit
|
|
Jul 26 15:18:01 pfv-tsys5 pveproxy[86999]: worker 684579 finished
|
|
Jul 26 15:18:01 pfv-tsys5 pveproxy[86999]: starting 1 worker(s)
|
|
Jul 26 15:18:01 pfv-tsys5 pveproxy[86999]: worker 698675 started
|
|
|
|
● pve-firewall.service - Proxmox VE firewall
|
|
Loaded: loaded (/usr/lib/systemd/system/pve-firewall.service; enabled; preset: enabled)
|
|
Active: active (running) since Fri 2026-07-24 19:17:42 CDT; 1 day 21h ago
|
|
Invocation: 3b6cc1c640c64ce9a42a74cfce5f3df5
|
|
Main PID: 1884 (pve-firewall)
|
|
Tasks: 1 (limit: 115754)
|
|
Memory: 113.7M (peak: 217.5M)
|
|
CPU: 23min 9.290s
|
|
CGroup: /system.slice/pve-firewall.service
|
|
└─1884 pve-firewall
|
|
|
|
Jul 24 19:17:38 pfv-tsys5 systemd[1]: Starting pve-firewall.service - Proxmox VE firewall...
|
|
Jul 24 19:17:42 pfv-tsys5 pve-firewall[1884]: starting server
|
|
Jul 24 19:17:42 pfv-tsys5 systemd[1]: Started pve-firewall.service - Proxmox VE firewall.
|
|
Jul 26 12:29:19 pfv-tsys5 systemd[1]: Reloading pve-firewall.service - Proxmox VE firewall...
|
|
Jul 26 12:29:20 pfv-tsys5 pve-firewall[646188]: send HUP to 1884
|
|
Jul 26 12:29:20 pfv-tsys5 pve-firewall[1884]: received signal HUP
|
|
Jul 26 12:29:20 pfv-tsys5 pve-firewall[1884]: server shutdown (restart)
|
|
Jul 26 12:29:20 pfv-tsys5 systemd[1]: Reloaded pve-firewall.service - Proxmox VE firewall.
|
|
Jul 26 12:29:22 pfv-tsys5 pve-firewall[1884]: restarting server
|
|
|
|
● pve-ha-crm.service - PVE Cluster HA Resource Manager Daemon
|
|
Loaded: loaded (/usr/lib/systemd/system/pve-ha-crm.service; enabled; preset: enabled)
|
|
Active: active (running) since Sun 2026-07-26 12:29:34 CDT; 4h 2min ago
|
|
Invocation: 28417510bf604d3eb0bdb8127a4bda66
|
|
Main PID: 646665 (pve-ha-crm)
|
|
Tasks: 1 (limit: 115754)
|
|
Memory: 118.1M (peak: 137.6M)
|
|
CPU: 3.145s
|
|
CGroup: /system.slice/pve-ha-crm.service
|
|
└─646665 pve-ha-crm
|
|
|
|
Jul 26 12:29:32 pfv-tsys5 systemd[1]: Starting pve-ha-crm.service - PVE Cluster HA Resource Manager Daemon...
|
|
Jul 26 12:29:34 pfv-tsys5 pve-ha-crm[646665]: starting server
|
|
Jul 26 12:29:34 pfv-tsys5 pve-ha-crm[646665]: status change startup => wait_for_quorum
|
|
Jul 26 12:29:34 pfv-tsys5 systemd[1]: Started pve-ha-crm.service - PVE Cluster HA Resource Manager Daemon.
|
|
|
|
● pve-ha-lrm.service - PVE Local HA Resource Manager Daemon
|
|
Loaded: loaded (/usr/lib/systemd/system/pve-ha-lrm.service; enabled; preset: enabled)
|
|
Active: active (running) since Sun 2026-07-26 12:29:29 CDT; 4h 2min ago
|
|
Invocation: 469bf827bee94a0d8e44358af268a847
|
|
Main PID: 646555 (pve-ha-lrm)
|
|
Tasks: 1 (limit: 115754)
|
|
Memory: 117.1M (peak: 137M)
|
|
CPU: 3.986s
|
|
CGroup: /system.slice/pve-ha-lrm.service
|
|
└─646555 pve-ha-lrm
|
|
|
|
Jul 26 12:29:27 pfv-tsys5 systemd[1]: Starting pve-ha-lrm.service - PVE Local HA Resource Manager Daemon...
|
|
Jul 26 12:29:29 pfv-tsys5 pve-ha-lrm[646555]: starting server
|
|
Jul 26 12:29:29 pfv-tsys5 pve-ha-lrm[646555]: status change startup => wait_for_agent_lock
|
|
Jul 26 12:29:29 pfv-tsys5 systemd[1]: Started pve-ha-lrm.service - PVE Local HA Resource Manager Daemon.
|
|
|
|
--- storage-related service status
|
|
$ systemctl status nfs-kernel-server nfs-server rpcbind rpc-statd zfs-import zfs-mount zfs-target smartd nvme-stat multipathd --no-pager 2>&1 | head -n 80
|
|
Unit zfs-target.service could not be found.
|
|
● nfs-server.service - NFS server and services
|
|
Loaded: loaded (/usr/lib/systemd/system/nfs-server.service; enabled; preset: enabled)
|
|
Drop-In: /run/systemd/generator/nfs-server.service.d
|
|
└─order-with-mounts.conf
|
|
Active: active (exited) since Sat 2026-07-25 11:30:47 CDT; 1 day 5h ago
|
|
Invocation: b4f2507005fc4a0cb6b0829be9a29948
|
|
Docs: man:rpc.nfsd(8)
|
|
man:exportfs(8)
|
|
Main PID: 253539 (code=exited, status=0/SUCCESS)
|
|
Mem peak: 2.2M
|
|
CPU: 24ms
|
|
|
|
Jul 25 11:30:46 pfv-tsys5 systemd[1]: Starting nfs-server.service - NFS server and services...
|
|
Jul 25 11:30:47 pfv-tsys5 sh[253541]: nfsdctl: lockd configuration failure
|
|
Jul 25 11:30:47 pfv-tsys5 systemd[1]: Finished nfs-server.service - NFS server and services.
|
|
|
|
● nfs-server.service - NFS server and services
|
|
Loaded: loaded (/usr/lib/systemd/system/nfs-server.service; enabled; preset: enabled)
|
|
Drop-In: /run/systemd/generator/nfs-server.service.d
|
|
└─order-with-mounts.conf
|
|
Active: active (exited) since Sat 2026-07-25 11:30:47 CDT; 1 day 5h ago
|
|
Invocation: b4f2507005fc4a0cb6b0829be9a29948
|
|
Docs: man:rpc.nfsd(8)
|
|
man:exportfs(8)
|
|
Main PID: 253539 (code=exited, status=0/SUCCESS)
|
|
Mem peak: 2.2M
|
|
CPU: 24ms
|
|
|
|
Jul 25 11:30:46 pfv-tsys5 systemd[1]: Starting nfs-server.service - NFS server and services...
|
|
Jul 25 11:30:47 pfv-tsys5 sh[253541]: nfsdctl: lockd configuration failure
|
|
Jul 25 11:30:47 pfv-tsys5 systemd[1]: Finished nfs-server.service - NFS server and services.
|
|
|
|
● rpcbind.service - RPC bind portmap service
|
|
Loaded: loaded (/usr/lib/systemd/system/rpcbind.service; enabled; preset: enabled)
|
|
Active: active (running) since Fri 2026-07-24 19:16:51 CDT; 1 day 21h ago
|
|
Invocation: d9e9d2199b934a0cafaf6e3a9acaae0d
|
|
TriggeredBy: ● rpcbind.socket
|
|
Docs: man:rpcbind(8)
|
|
Main PID: 1147 (rpcbind)
|
|
Tasks: 1 (limit: 115754)
|
|
Memory: 1.2M (peak: 2.8M)
|
|
CPU: 2min 19.741s
|
|
CGroup: /system.slice/rpcbind.service
|
|
└─1147 /usr/sbin/rpcbind -f -w
|
|
|
|
Jul 24 19:16:51 pfv-tsys5 systemd[1]: Starting rpcbind.service - RPC bind portmap service...
|
|
Jul 24 19:16:51 pfv-tsys5 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: active (running) since Sat 2026-07-25 11:25:54 CDT; 1 day 5h ago
|
|
Invocation: ad03f166ed574f71b952af3756ad6555
|
|
Docs: man:rpc.statd(8)
|
|
Main PID: 251818 (rpc.statd)
|
|
Tasks: 1 (limit: 115754)
|
|
Memory: 580K (peak: 1.9M)
|
|
CPU: 13ms
|
|
CGroup: /system.slice/rpc-statd.service
|
|
└─251818 /usr/sbin/rpc.statd
|
|
|
|
Jul 25 11:25:54 pfv-tsys5 systemd[1]: Starting rpc-statd.service - NFS status monitor for NFSv2/3 locking....
|
|
Jul 25 11:25:54 pfv-tsys5 rpc.statd[251818]: Version 2.8.3 starting
|
|
Jul 25 11:25:54 pfv-tsys5 rpc.statd[251818]: Flags: TI-RPC
|
|
Jul 25 11:25:54 pfv-tsys5 systemd[1]: Started rpc-statd.service - NFS status monitor for NFSv2/3 locking..
|
|
|
|
○ 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 Fri 2026-07-24 19:16:50 CDT; 1 day 21h ago
|
|
Invocation: 1e162984cb5c4402be1795e71e0d324e
|
|
Docs: man:zfs(8)
|
|
Main PID: 1102 (code=exited, status=0/SUCCESS)
|
|
Mem peak: 1.7M
|
|
CPU: 14ms
|
|
|
|
Jul 24 19:16:50 pfv-tsys5 systemd[1]: Starting zfs-mount.service - Mount ZFS filesystems...
|
|
|
|
###############################################################################
|
|
# 25. TIMERS / CRON
|
|
###############################################################################
|
|
|
|
--- systemctl list-timers
|
|
$ systemctl list-timers --all --no-pager
|
|
NEXT LEFT LAST PASSED UNIT ACTIVATES
|
|
Sun 2026-07-26 19:31:33 CDT 2h 59min Sat 2026-07-25 19:31:33 CDT 21h ago systemd-tmpfiles-clean.timer systemd-tmpfiles-clean.service
|
|
Sun 2026-07-26 20:42:10 CDT 4h 10min Sun 2026-07-26 09:42:15 CDT 6h ago apt-daily.timer apt-daily.service
|
|
Mon 2026-07-27 00:00:00 CDT 7h Sun 2026-07-26 00:00:15 CDT 16h ago dpkg-db-backup.timer dpkg-db-backup.service
|
|
Mon 2026-07-27 00:05:35 CDT 7h Mon 2026-07-20 01:34:46 CDT - fstrim.timer fstrim.service
|
|
Mon 2026-07-27 00:46:36 CDT 8h Sun 2026-07-26 00:16:15 CDT 16h ago logrotate.timer logrotate.service
|
|
Mon 2026-07-27 01:34:01 CDT 9h Sun 2026-07-26 01:17:35 CDT 15h ago pve-daily-update.timer pve-daily-update.service
|
|
Mon 2026-07-27 02:13:38 CDT 9h Sun 2026-07-26 03:03:15 CDT 13h ago beszel-agent-update.timer beszel-agent-update.service
|
|
Mon 2026-07-27 06:15:22 CDT 13h Sun 2026-07-26 06:41:15 CDT 9h ago apt-daily-upgrade.timer apt-daily-upgrade.service
|
|
Mon 2026-07-27 07:08:37 CDT 14h Sun 2026-07-26 11:07:15 CDT 5h 24min ago man-db.timer man-db.service
|
|
Sun 2026-08-02 03:10:11 CDT 6 days Sun 2026-07-26 03:10:15 CDT 13h ago e2scrub_all.timer e2scrub_all.service
|
|
Sun 2026-08-02 03:10:20 CDT 6 days Sun 2026-07-26 03:11:15 CDT 13h ago xfs_scrub_all.timer xfs_scrub_all.service
|
|
|
|
11 timers listed.
|
|
|
|
--- /etc/cron.d
|
|
total 20
|
|
drwxr-xr-x 2 root root 4096 Jul 26 12:28 .
|
|
drwxr-xr-x 106 root root 4096 Jul 26 16:28 ..
|
|
-rw-r--r-- 1 root root 188 Jul 30 2025 e2scrub_all
|
|
-rw-r--r-- 1 root root 102 Jun 13 2025 .placeholder
|
|
lrwxrwxrwx 1 root root 20 Feb 26 09:06 vzdump -> /etc/pve/vzdump.cron
|
|
-rw-r--r-- 1 root root 377 Aug 26 2025 zfsutils-linux
|
|
|
|
--- /etc/cron.daily
|
|
total 28
|
|
drwxr-xr-x 2 root root 4096 Jul 22 20:18 .
|
|
drwxr-xr-x 106 root root 4096 Jul 26 16:28 ..
|
|
-rwxr-xr-x 1 root root 1478 Jun 24 2025 apt-compat
|
|
-rwxr-xr-x 1 root root 123 May 27 2025 dpkg
|
|
-rwxr-xr-x 1 root root 377 Jul 14 2024 logrotate
|
|
-rwxr-xr-x 1 root root 1395 May 2 2025 man-db
|
|
-rw-r--r-- 1 root root 102 Jun 13 2025 .placeholder
|
|
|
|
--- /etc/cron.hourly
|
|
total 12
|
|
drwxr-xr-x 2 root root 4096 Feb 26 09:02 .
|
|
drwxr-xr-x 106 root root 4096 Jul 26 16:28 ..
|
|
-rw-r--r-- 1 root root 102 Jun 13 2025 .placeholder
|
|
|
|
--- /etc/cron.weekly
|
|
total 16
|
|
drwxr-xr-x 2 root root 4096 Feb 26 09:03 .
|
|
drwxr-xr-x 106 root root 4096 Jul 26 16:28 ..
|
|
-rwxr-xr-x 1 root root 1055 May 2 2025 man-db
|
|
-rw-r--r-- 1 root root 102 Jun 13 2025 .placeholder
|
|
|
|
--- crontabs
|
|
--- /etc/crontab ---
|
|
# /etc/crontab: system-wide crontab
|
|
# Unlike any other crontab you don't have to run the `crontab'
|
|
# command to install the new version when you edit this file
|
|
# and files in /etc/cron.d. These files also have username fields,
|
|
# that none of the other crontabs do.
|
|
|
|
SHELL=/bin/sh
|
|
PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
|
|
|
|
# Example of job definition:
|
|
# .---------------- minute (0 - 59)
|
|
# | .------------- hour (0 - 23)
|
|
# | | .---------- day of month (1 - 31)
|
|
# | | | .------- month (1 - 12) OR jan,feb,mar,apr ...
|
|
# | | | | .---- day of week (0 - 6) (Sunday=0 or 7) OR sun,mon,tue,wed,thu,fri,sat
|
|
# | | | | |
|
|
# * * * * * user-name command to be executed
|
|
17 * * * * root cd / && run-parts --report /etc/cron.hourly
|
|
25 6 * * * root test -x /usr/sbin/anacron || { cd / && run-parts --report /etc/cron.daily; }
|
|
47 6 * * 7 root test -x /usr/sbin/anacron || { cd / && run-parts --report /etc/cron.weekly; }
|
|
52 6 1 * * root test -x /usr/sbin/anacron || { cd / && run-parts --report /etc/cron.monthly; }
|
|
#
|
|
|
|
--- root crontab
|
|
$ crontab -l 2>/dev/null || echo " [no root crontab]"
|
|
[no root crontab]
|
|
|
|
###############################################################################
|
|
# 26. LIVE PERFORMANCE SNAPSHOT
|
|
###############################################################################
|
|
|
|
--- /proc/loadavg
|
|
$ cat /proc/loadavg
|
|
1.37 1.37 1.09 2/546 722369
|
|
|
|
--- 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 65413980 37512 455180 0 0 8552 2452 6760 11 1 2 88 4 0 5
|
|
0 0 0 65427032 37520 455304 0 0 792 76 7977 10856 4 4 90 1 0 2
|
|
0 0 0 65442316 37528 455304 0 0 0 64 7714 11187 0 1 97 0 0 2
|
|
|
|
--- mpstat 1 3 (per-cpu)
|
|
$ mpstat 1 3
|
|
/root/check.sh: line 45: mpstat: command not found
|
|
[exit=127 / not installed or not permitted]
|
|
|
|
--- iostat -xz 1 3
|
|
$ iostat -xz 1 3
|
|
/root/check.sh: line 45: iostat: command not found
|
|
[exit=127 / not installed or not permitted]
|
|
|
|
--- sar -dp 1 2
|
|
$ sar -dp 1 2
|
|
/root/check.sh: line 45: sar: command not found
|
|
[exit=127 / not installed or not permitted]
|
|
|
|
--- sar -n DEV 1 2
|
|
$ sar -n DEV 1 2
|
|
/root/check.sh: line 45: sar: command not found
|
|
[exit=127 / not installed or not permitted]
|
|
|
|
--- sar -n NFS,NFSD 1 2
|
|
$ sar -n NFS,NFSD 1 2
|
|
/root/check.sh: line 45: sar: command not found
|
|
[exit=127 / not installed or not permitted]
|
|
|
|
--- sar -n SOCK 1 1
|
|
$ sar -n SOCK 1 1
|
|
/root/check.sh: line 45: sar: command not found
|
|
[exit=127 / not installed or not permitted]
|
|
|
|
--- sar -n TCP,ETCP 1 2
|
|
$ sar -n TCP,ETCP 1 2
|
|
/root/check.sh: line 45: sar: command not found
|
|
[exit=127 / not installed or not permitted]
|
|
|
|
--- pidstat -d 1 2 (top disk)
|
|
$ pidstat -d 1 2
|
|
/root/check.sh: line 45: pidstat: command not found
|
|
[exit=127 / not installed or not permitted]
|
|
|
|
--- pidstat -u 1 2 (top cpu)
|
|
$ pidstat -u 1 2
|
|
/root/check.sh: line 45: pidstat: command not found
|
|
[exit=127 / not installed or not permitted]
|
|
|
|
--- top (single snapshot, top 30)
|
|
$ top -b -n 1
|
|
top - 16:32:08 up 1 day, 21:16, 2 users, load average: 1.37, 1.37, 1.09
|
|
Tasks: 305 total, 1 running, 304 sleeping, 0 stopped, 0 zombie
|
|
%Cpu(s): 2.8 us, 3.8 sy, 0.0 ni, 91.5 id, 1.9 wa, 0.0 hi, 0.0 si, 0.0 st
|
|
MiB Mem : 96556.6 total, 63911.8 free, 33051.3 used, 481.4 buff/cache
|
|
MiB Swap: 8192.0 total, 8192.0 free, 0.0 used. 63505.2 avail Mem
|
|
|
|
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+ COMMAND
|
|
113938 root 20 0 13.1g 8.9g 17656 S 18.2 9.4 12,58 kvm
|
|
48303 root 20 0 5050956 696832 13412 S 9.1 0.7 38:29.63 kvm
|
|
1 root 20 0 25760 16396 10776 S 0.0 0.0 0:40.11 systemd
|
|
2 root 20 0 0 0 0 S 0.0 0.0 0:00.05 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+
|
|
11 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:04.34 ksoftir+
|
|
15 root 20 0 0 0 0 I 0.0 0.0 1:27.48 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.57 migrati+
|
|
19 root -51 0 0 0 0 S 0.0 0.0 0:00.00 idle_in+
|
|
20 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/0
|
|
21 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/1
|
|
22 root -51 0 0 0 0 S 0.0 0.0 0:00.00 idle_in+
|
|
23 root rt 0 0 0 0 S 0.0 0.0 0:01.49 migrati+
|
|
24 root 20 0 0 0 0 S 0.0 0.0 0:02.88 ksoftir+
|
|
26 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
27 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/2
|
|
28 root -51 0 0 0 0 S 0.0 0.0 0:00.00 idle_in+
|
|
29 root rt 0 0 0 0 S 0.0 0.0 0:01.49 migrati+
|
|
30 root 20 0 0 0 0 S 0.0 0.0 0:00.99 ksoftir+
|
|
32 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
33 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/3
|
|
34 root -51 0 0 0 0 S 0.0 0.0 0:00.00 idle_in+
|
|
35 root rt 0 0 0 0 S 0.0 0.0 0:01.50 migrati+
|
|
36 root 20 0 0 0 0 S 0.0 0.0 0:19.15 ksoftir+
|
|
38 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
39 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/4
|
|
40 root -51 0 0 0 0 S 0.0 0.0 0:00.00 idle_in+
|
|
41 root rt 0 0 0 0 S 0.0 0.0 0:01.42 migrati+
|
|
42 root 20 0 0 0 0 S 0.0 0.0 0:00.65 ksoftir+
|
|
44 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
45 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/5
|
|
46 root -51 0 0 0 0 S 0.0 0.0 0:00.00 idle_in+
|
|
47 root rt 0 0 0 0 S 0.0 0.0 0:01.43 migrati+
|
|
48 root 20 0 0 0 0 S 0.0 0.0 0:02.61 ksoftir+
|
|
50 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
51 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/6
|
|
52 root -51 0 0 0 0 S 0.0 0.0 0:00.00 idle_in+
|
|
53 root rt 0 0 0 0 S 0.0 0.0 0:01.42 migrati+
|
|
54 root 20 0 0 0 0 S 0.0 0.0 0:00.54 ksoftir+
|
|
56 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
57 root 20 0 0 0 0 S 0.0 0.0 0:00.00 cpuhp/7
|
|
58 root -51 0 0 0 0 S 0.0 0.0 0:00.00 idle_in+
|
|
59 root rt 0 0 0 0 S 0.0 0.0 0:01.42 migrati+
|
|
60 root 20 0 0 0 0 S 0.0 0.0 0:00.54 ksoftir+
|
|
62 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
63 root 20 0 0 0 0 S 0.0 0.0 0:00.00 kdevtmp+
|
|
64 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
65 root 20 0 0 0 0 I 0.0 0.0 0:00.00 rcu_tas+
|
|
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.04 kauditd
|
|
69 root 20 0 0 0 0 S 0.0 0.0 0:00.10 khungta+
|
|
71 root 20 0 0 0 0 S 0.0 0.0 0:00.00 oom_rea+
|
|
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:04.55 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.72 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:00.00 irq/9-a+
|
|
84 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 -51 0 0 0 0 S 0.0 0.0 0:00.00 watchdo+
|
|
91 root 0 -20 0 0 0 I 0.0 0.0 0:01.26 kworker+
|
|
92 root 20 0 0 0 0 S 0.0 0.0 0:00.00 kswapd0
|
|
93 root 20 0 0 0 0 S 0.0 0.0 0:00.00 ecryptf+
|
|
94 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
95 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
97 root 20 0 0 0 0 S 0.0 0.0 0:00.00 scsi_eh+
|
|
98 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
99 root 20 0 0 0 0 S 0.0 0.0 0:00.00 scsi_eh+
|
|
100 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
102 root 20 0 0 0 0 S 0.0 0.0 0:00.00 scsi_eh+
|
|
103 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
104 root 20 0 0 0 0 S 0.0 0.0 0:00.00 scsi_eh+
|
|
105 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+
|
|
110 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
111 root 0 -20 0 0 0 I 0.0 0.0 0:05.28 kworker+
|
|
112 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
118 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
129 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
130 root 0 -20 0 0 0 I 0.0 0.0 0:29.12 kworker+
|
|
158 root 0 -20 0 0 0 I 0.0 0.0 0:01.38 kworker+
|
|
162 root 0 -20 0 0 0 I 0.0 0.0 0:01.33 kworker+
|
|
173 root 0 -20 0 0 0 I 0.0 0.0 0:01.59 kworker+
|
|
184 root 0 -20 0 0 0 I 0.0 0.0 0:01.21 kworker+
|
|
194 root 0 -20 0 0 0 I 0.0 0.0 0:01.24 kworker+
|
|
207 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
208 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
209 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
210 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
211 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
220 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
231 root 20 0 0 0 0 S 0.0 0.0 0:00.00 scsi_eh+
|
|
232 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+
|
|
267 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
269 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
270 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
295 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
296 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.00 kworker+
|
|
298 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
337 root 20 0 0 0 0 S 0.0 0.0 0:04.63 jbd2/dm+
|
|
338 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
385 root 20 0 96916 68748 67148 S 0.0 0.1 0:05.21 systemd+
|
|
426 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 spl_sys+
|
|
427 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 spl_del+
|
|
428 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 spl_dyn+
|
|
429 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 spl_kme+
|
|
433 root 20 0 36724 10204 7828 S 0.0 0.0 0:01.11 systemd+
|
|
435 root 20 0 77296 22300 9124 S 0.0 0.0 0:08.38 dmeventd
|
|
436 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 zvol_tq+
|
|
437 root 0 -20 0 0 0 S 0.0 0.0 0:00.00 zvol_tq+
|
|
438 root 20 0 0 0 0 S 0.0 0.0 0:00.00 arc_pru+
|
|
439 root 20 0 0 0 0 S 0.0 0.0 0:00.00 arc_evi+
|
|
440 root 20 0 0 0 0 S 0.0 0.0 0:00.00 arc_evi+
|
|
441 root 20 0 0 0 0 S 0.0 0.0 0:00.00 arc_evi+
|
|
442 root 20 0 0 0 0 S 0.0 0.0 0:00.00 arc_flu+
|
|
443 root 20 0 0 0 0 S 0.0 0.0 0:02.64 arc_evi+
|
|
444 root 39 19 0 0 0 S 0.0 0.0 0:02.68 arc_reap
|
|
445 root 20 0 0 0 0 S 0.0 0.0 0:00.00 dbu_evi+
|
|
446 root 39 19 0 0 0 S 0.0 0.0 0:02.58 dbuf_ev+
|
|
447 root 39 19 0 0 0 S 0.0 0.0 0:00.00 z_vdev_+
|
|
448 root 20 0 0 0 0 S 0.0 0.0 0:02.25 l2arc_f+
|
|
449 root 20 0 0 0 0 I 0.0 0.0 0:26.61 kworker+
|
|
459 root -2 0 0 0 0 S 0.0 0.0 0:00.00 psimon
|
|
1080 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
1088 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
1089 root -51 0 0 0 0 S 0.0 0.0 0:00.00 card0-c+
|
|
1090 root -51 0 0 0 0 S 0.0 0.0 0:00.00 card0-c+
|
|
1147 _rpc 20 0 6704 3920 3364 S 0.0 0.0 2:19.74 rpcbind
|
|
1195 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
1196 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
1232 root 20 0 5256 1696 1468 S 0.0 0.0 0:00.00 blkmapd
|
|
1263 message+ 20 0 8756 5348 4252 S 0.0 0.0 0:19.75 dbus-da+
|
|
1270 root 20 0 276136 3560 3268 S 0.0 0.0 0:00.00 pve-lxc+
|
|
1273 root 20 0 626044 8484 6924 S 0.0 0.0 0:51.06 rrdcach+
|
|
1278 root 20 0 19248 9172 7760 S 0.0 0.0 0:01.28 systemd+
|
|
1285 root 20 0 1421392 112636 26412 S 0.0 0.1 10:59.57 tailsca+
|
|
1286 root 20 0 7216 2324 1980 S 0.0 0.0 0:03.14 ksmtuned
|
|
1288 root 20 0 2432 1564 1464 S 0.0 0.0 0:05.39 watchdo+
|
|
1296 root 20 0 159064 2508 2140 S 0.0 0.0 0:00.01 lxcfs
|
|
1376 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
1531 root 20 0 5984 3552 2712 S 0.0 0.0 0:01.33 dhclient
|
|
1568 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
1638 beszel 20 0 2231764 18188 10412 S 0.0 0.0 2:04.45 beszel-+
|
|
1639 root 20 0 506252 52696 17348 S 0.0 0.1 0:00.81 glances
|
|
1641 _lldpd 20 0 21376 6572 5404 S 0.0 0.0 0:00.14 lldpd
|
|
1642 root 20 0 5520 2548 2300 S 0.0 0.0 0:00.00 lxc-mon+
|
|
1652 root 20 0 340044 32872 15420 S 0.0 0.0 0:29.12 tuned
|
|
1656 root 20 0 8168 2592 2364 S 0.0 0.0 0:00.01 agetty
|
|
1680 root 20 0 11776 7764 6532 S 0.0 0.0 0:00.20 sshd
|
|
1689 _lldpd 20 0 21504 2932 1736 S 0.0 0.0 0:06.67 lldpd
|
|
1743 root 20 0 6864 2960 2712 S 0.0 0.0 0:00.37 cron
|
|
1837 root 20 0 43984 4800 4156 S 0.0 0.0 0:00.62 master
|
|
1839 postfix 20 0 44524 7700 7008 S 0.0 0.0 0:00.11 qmgr
|
|
1843 polkitd 20 0 306704 8340 7176 S 0.0 0.0 0:03.81 polkitd
|
|
1884 root 20 0 179208 135656 30152 S 0.0 0.1 8:34.70 pve-fir+
|
|
1893 root 20 0 207252 151800 33024 S 0.0 0.2 55:07.48 pvestatd
|
|
1910 root 20 0 230080 182896 32672 S 0.0 0.2 0:04.56 pvedaem+
|
|
1933 www-data 20 0 99228 69624 17580 S 0.0 0.1 0:04.47 spicepr+
|
|
2049 root 20 0 209788 155832 32720 S 0.0 0.2 0:16.56 pvesche+
|
|
2079 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
2085 root 20 0 0 0 0 I 0.0 0.0 0:00.00 NFSv4 c+
|
|
40515 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
46341 root 20 0 0 0 0 S 0.0 0.0 0:06.16 jbd2/sd+
|
|
46342 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
46364 root 20 0 0 0 0 S 0.0 0.0 0:00.07 jbd2/sd+
|
|
46365 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
47606 root 20 0 0 0 0 S 0.0 0.0 0:02.50 jbd2/sd+
|
|
47607 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
47873 root 20 0 10.7g 1.5g 11032 S 0.0 1.6 34:30.67 kvm
|
|
47904 root 20 0 0 0 0 S 0.0 0.0 0:00.00 kvm-pit+
|
|
47937 root 20 0 5138104 717916 11080 S 0.0 0.7 39:30.73 kvm
|
|
47969 root 20 0 0 0 0 S 0.0 0.0 0:00.00 kvm-pit+
|
|
48034 root 20 0 5025420 700040 11084 S 0.0 0.7 38:12.89 kvm
|
|
48066 root 20 0 0 0 0 S 0.0 0.0 0:00.00 kvm-pit+
|
|
48099 root 20 0 5063460 676016 11028 S 0.0 0.7 38:19.64 kvm
|
|
48130 root 20 0 0 0 0 S 0.0 0.0 0:00.00 kvm-pit+
|
|
48205 root 20 0 5100464 682060 11148 S 0.0 0.7 39:21.36 kvm
|
|
48238 root 20 0 0 0 0 S 0.0 0.0 0:00.00 kvm-pit+
|
|
48337 root 20 0 0 0 0 S 0.0 0.0 0:00.00 kvm-pit+
|
|
48397 root 20 0 5048036 686440 11100 S 0.0 0.7 38:35.36 kvm
|
|
48440 root 20 0 0 0 0 S 0.0 0.0 0:00.00 kvm-pit+
|
|
48474 root 20 0 5122800 1.3g 11352 S 0.0 1.4 34:05.75 kvm
|
|
48522 root 20 0 0 0 0 S 0.0 0.0 0:00.01 kvm-pit+
|
|
48576 root 20 0 5032620 726320 11040 S 0.0 0.7 40:03.04 kvm
|
|
48615 root 20 0 0 0 0 S 0.0 0.0 0:00.00 kvm-pit+
|
|
48691 root 20 0 5098412 687100 11132 S 0.0 0.7 39:16.48 kvm
|
|
48727 root 20 0 0 0 0 S 0.0 0.0 0:00.01 kvm-pit+
|
|
48805 root 20 0 9936.5m 807880 11084 S 0.0 0.8 39:52.69 kvm
|
|
48850 root 20 0 0 0 0 S 0.0 0.0 0:00.00 kvm-pit+
|
|
48921 root 20 0 12.5g 1.5g 11008 S 0.0 1.6 36:08.23 kvm
|
|
48953 root 20 0 0 0 0 S 0.0 0.0 0:00.01 kvm-pit+
|
|
49002 root 20 0 9059956 776132 13636 S 0.0 0.8 40:49.42 kvm
|
|
49055 root 20 0 0 0 0 S 0.0 0.0 0:00.01 kvm-pit+
|
|
49689 root 20 0 32.6g 1.4g 11352 S 0.0 1.5 49:20.95 kvm
|
|
49809 root 20 0 0 0 0 S 0.0 0.0 0:00.01 kvm-pit+
|
|
50459 root 20 0 0 0 0 S 0.0 0.0 0:00.26 jbd2/sd+
|
|
50460 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
51445 root 20 0 0 0 0 S 0.0 0.0 0:00.06 jbd2/sd+
|
|
51446 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
54010 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
84667 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
86999 www-data 20 0 231368 184248 32752 S 0.0 0.2 0:06.47 pveproxy
|
|
88433 root 20 0 6897740 2.2g 13640 S 0.0 2.4 53:31.25 kvm
|
|
88471 root 20 0 0 0 0 S 0.0 0.0 0:00.00 kvm-pit+
|
|
111284 root 20 0 0 0 0 I 0.0 0.0 0:20.13 kworker+
|
|
113986 root 20 0 0 0 0 S 0.0 0.0 0:00.00 kvm-pit+
|
|
115366 root 20 0 7025332 5.9g 13392 S 0.0 6.3 93:52.28 kvm
|
|
115416 root 20 0 0 0 0 S 0.0 0.0 0:00.00 kvm-pit+
|
|
246438 root 20 0 0 0 0 I 0.0 0.0 0:14.29 kworker+
|
|
251811 root 20 0 5464 3880 3540 S 0.0 0.0 0:00.00 fsidd
|
|
251818 statd 20 0 4552 2028 1680 S 0.0 0.0 0:00.00 rpc.sta+
|
|
251827 root 20 0 5620 2956 2440 S 0.0 0.0 0:00.01 nfsdcld
|
|
253532 root 20 0 2944 2472 2192 S 0.0 0.0 0:00.01 rpc.idm+
|
|
253535 root 20 0 8952 4276 3208 S 0.0 0.0 0:49.97 rpc.mou+
|
|
253543 root 20 0 0 0 0 I 0.0 0.0 0:00.00 lockd
|
|
253544 root 20 0 0 0 0 I 0.0 0.0 0:00.00 nfsd
|
|
253545 root 20 0 0 0 0 I 0.0 0.0 0:00.72 nfsd
|
|
253546 root 20 0 0 0 0 I 0.0 0.0 0:00.00 nfsd
|
|
253547 root 20 0 0 0 0 I 0.0 0.0 0:00.00 nfsd
|
|
253548 root 20 0 0 0 0 I 0.0 0.0 0:00.00 nfsd
|
|
253549 root 20 0 0 0 0 I 0.0 0.0 0:00.00 nfsd
|
|
253550 root 20 0 0 0 0 I 0.0 0.0 0:00.00 nfsd
|
|
253551 root 20 0 0 0 0 I 0.0 0.0 0:00.84 nfsd
|
|
253552 root 20 0 0 0 0 I 0.0 0.0 0:00.07 nfsd
|
|
253553 root 20 0 0 0 0 I 0.0 0.0 0:00.00 nfsd
|
|
253554 root 20 0 0 0 0 I 0.0 0.0 0:00.00 nfsd
|
|
253555 root 20 0 0 0 0 I 0.0 0.0 0:03.79 nfsd
|
|
253556 root 20 0 0 0 0 I 0.0 0.0 0:20.29 nfsd
|
|
253557 root 20 0 0 0 0 I 0.0 0.0 0:33.91 nfsd
|
|
253558 root 20 0 0 0 0 I 0.0 0.0 0:48.95 nfsd
|
|
253559 root 20 0 0 0 0 I 0.0 0.0 0:54.45 nfsd
|
|
341661 root 20 0 0 0 0 I 0.0 0.0 0:11.70 kworker+
|
|
358594 root 20 0 0 0 0 I 0.0 0.0 0:11.33 kworker+
|
|
385022 root 0 -20 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
451802 root 20 0 0 0 0 I 0.0 0.0 0:13.41 kworker+
|
|
609934 root 20 0 0 0 0 I 0.0 0.0 0:02.18 kworker+
|
|
628773 root 20 0 22436 12688 10084 S 0.0 0.0 0:00.44 systemd
|
|
628775 root 20 0 24404 3840 2040 S 0.0 0.0 0:00.00 (sd-pam)
|
|
628783 root -2 0 0 0 0 S 0.0 0.0 0:00.00 psimon
|
|
628923 root 20 0 7168 2612 1920 S 0.0 0.0 0:00.03 screen
|
|
628924 root 20 0 7448 4204 3516 S 0.0 0.0 0:00.00 bash
|
|
631847 root 20 0 10736 6700 4752 S 0.0 0.0 0:00.15 smartd
|
|
632292 _chrony 20 0 19940 5656 4888 S 0.0 0.0 0:00.11 chronyd
|
|
632296 _chrony 20 0 11612 2308 1680 S 0.0 0.0 0:00.00 chronyd
|
|
645851 root 20 0 104420 6340 5188 S 0.0 0.0 0:00.00 zed
|
|
645934 root 20 0 547456 60232 45084 S 0.0 0.1 0:25.46 pmxcfs
|
|
646054 root 20 0 79620 2304 2092 S 0.0 0.0 0:01.65 pvefw-l+
|
|
646280 root 20 0 13584 5580 4720 S 0.0 0.0 0:01.39 proxmox+
|
|
646391 root 20 0 5748 2276 2036 S 0.0 0.0 0:00.02 qmeventd
|
|
646555 root 20 0 213188 124472 5220 S 0.0 0.1 0:02.42 pve-ha-+
|
|
646665 root 20 0 214172 125548 5260 S 0.0 0.1 0:01.56 pve-ha-+
|
|
646730 root -2 0 0 0 0 S 0.0 0.0 0:00.00 psimon
|
|
646842 www-data 20 0 99360 56224 4036 S 0.0 0.1 0:00.52 spicepr+
|
|
674904 root 20 0 239172 164272 11944 S 0.0 0.2 0:17.54 pvedaem+
|
|
675037 root 20 0 239200 163960 11692 S 0.0 0.2 0:17.02 pvedaem+
|
|
678254 root 20 0 239144 164108 11872 S 0.0 0.2 0:14.87 pvedaem+
|
|
690036 root 20 0 0 0 0 I 0.0 0.0 0:00.69 kworker+
|
|
697082 www-data 20 0 286316 212692 13252 S 0.0 0.2 0:04.15 pveprox+
|
|
697593 www-data 20 0 274716 200716 12948 S 0.0 0.2 0:02.91 pveprox+
|
|
698675 www-data 20 0 286232 212076 12784 S 0.0 0.2 0:03.01 pveprox+
|
|
705198 root 20 0 0 0 0 I 0.0 0.0 0:00.35 kworker+
|
|
709362 root 20 0 0 0 0 I 0.0 0.0 0:00.37 kworker+
|
|
711723 root 20 0 0 0 0 I 0.0 0.0 0:00.19 kworker+
|
|
711984 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
713683 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
713757 iperf3 20 0 11076 4456 3760 S 0.0 0.0 0:00.00 iperf3
|
|
715236 root 20 0 0 0 0 I 0.0 0.0 0:00.25 kworker+
|
|
715833 postfix 20 0 44472 7800 7080 S 0.0 0.0 0:00.00 pickup
|
|
715992 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
716044 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
716059 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
716073 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
716170 root 20 0 0 0 0 I 0.0 0.0 0:00.11 kworker+
|
|
716846 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
717520 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
717540 root 20 0 19652 11584 9816 S 0.0 0.0 0:00.02 sshd-se+
|
|
717547 root 20 0 19908 7380 5336 S 0.0 0.0 0:00.00 sshd-se+
|
|
717548 root 20 0 7316 3712 3180 S 0.0 0.0 0:00.72 bash
|
|
720764 root 20 0 0 0 0 I 0.0 0.0 0:00.05 kworker+
|
|
720765 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
722271 root 20 0 5580 2148 2036 S 0.0 0.0 0:00.00 sleep
|
|
722322 root 20 0 0 0 0 I 0.0 0.0 0:00.00 kworker+
|
|
722403 root 20 0 7316 2260 1728 S 0.0 0.0 0:00.00 bash
|
|
722404 root 20 0 5588 2132 2020 S 0.0 0.0 0:00.00 head
|
|
722405 root 20 0 10424 5440 3348 R 0.0 0.0 0:00.01 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
|
|
16:32:09 0 0 0 0 0 0 0 1.9K 2.9G 59.3G
|
|
16:32:10 0 0 0 0 0 0 0 1.9K 2.9G 59.3G
|
|
|
|
--- /proc/net/dev delta (1s)
|
|
$ awk '{print $1}' /proc/net/dev
|
|
echo "--- t0 ---"
|
|
cat /proc/net/dev
|
|
sleep 1
|
|
echo "--- t1 (1s later) ---"
|
|
cat /proc/net/dev
|
|
Inter-|
|
|
face
|
|
lo:
|
|
nic0:
|
|
nic1:
|
|
nic2:
|
|
tailscale0:
|
|
vmbr0:
|
|
bond0:
|
|
datanet:
|
|
tap5101i0:
|
|
tap5105i0:
|
|
tap5106i0:
|
|
tap5107i0:
|
|
tap5108i0:
|
|
tap5109i0:
|
|
tap51010i0:
|
|
tap51011i0:
|
|
tap51012i0:
|
|
tap51013i0:
|
|
tap53100i0:
|
|
tap53101i0:
|
|
tap53102i0:
|
|
tap509i0:
|
|
fwbr509i0:
|
|
fwpr509p0:
|
|
fwln509i0:
|
|
tap509i1:
|
|
fwbr509i1:
|
|
fwpr509p1:
|
|
fwln509i1:
|
|
tap6000i0:
|
|
tap5111i0:
|
|
tap5112i0:
|
|
--- t0 ---
|
|
Inter-| Receive | Transmit
|
|
face |bytes packets errs drop fifo frame compressed multicast|bytes packets errs drop fifo colls carrier compressed
|
|
lo: 66130558 212454 0 0 0 0 0 0 66130558 212454 0 0 0 0 0 0
|
|
nic0: 27941517692 26953213 0 36910 0 0 0 4093194 1482873716 4246158 0 0 0 0 0 0
|
|
nic1: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
|
nic2: 13468623509 12276389 1 0 0 1 0 142567 2255164074 7943769 0 0 0 0 0 0
|
|
tailscale0: 140701289 484518 0 0 0 0 0 0 587024386 333769 0 0 0 0 0 0
|
|
vmbr0: 1486317725 6679543 0 0 0 0 0 3506707 760173625 945986 0 0 0 0 0 0
|
|
bond0: 13468623509 12276389 1 5430 0 1 0 142567 2255164074 7943769 0 0 0 0 0 0
|
|
datanet: 13244826557 12265915 0 10 0 0 0 137136 2177345494 7098328 0 1 0 0 0 0
|
|
tap5101i0: 1480802 15798 0 0 0 0 0 0 509654336 4808675 0 0 0 0 0 0
|
|
tap5105i0: 1210968 12495 0 0 0 0 0 0 500909066 4805111 0 362 0 0 0 0
|
|
tap5106i0: 1215132 12499 0 0 0 0 0 0 500879784 4804868 0 483 0 0 0 0
|
|
tap5107i0: 1222121 12522 0 0 0 0 0 0 500869191 4804731 0 525 0 0 0 0
|
|
tap5108i0: 1205451 12443 0 0 0 0 0 0 500803064 4804099 0 884 0 0 0 0
|
|
tap5109i0: 1206687 12457 0 0 0 0 0 0 500750576 4803630 0 1090 0 0 0 0
|
|
tap51010i0: 1203107 12447 0 0 0 0 0 0 500738299 4803439 0 1138 0 0 0 0
|
|
tap51011i0: 1408571 15240 0 0 0 0 0 0 508987754 4805552 0 1404 0 0 0 0
|
|
tap51012i0: 1278258 13224 0 0 0 0 0 0 500909506 4803164 0 1091 0 0 0 0
|
|
tap51013i0: 1209021 12428 0 0 0 0 0 0 500628097 4802440 0 1439 0 0 0 0
|
|
tap53100i0: 1199945 12400 0 0 0 0 0 0 500583040 4801979 0 1634 0 0 0 0
|
|
tap53101i0: 1433599 15534 0 0 0 0 0 0 510249763 4804624 0 1701 0 0 0 0
|
|
tap53102i0: 1836437 15252 0 0 0 0 0 0 501044734 4804440 0 1596 0 0 0 0
|
|
tap509i0: 106424948 510343 0 0 0 0 0 0 752424914 5660235 0 4546 0 0 0 0
|
|
fwbr509i0: 430415505 4781650 0 6120 0 0 0 3237586 0 0 0 0 0 0 0 0
|
|
fwpr509p0: 107676173 515368 0 5025 0 0 0 0 752926326 5664781 0 0 0 0 0 0
|
|
fwln509i0: 752926326 5664781 0 5025 0 0 0 0 107676173 515368 0 0 0 0 0 0
|
|
tap509i1: 0 0 0 0 0 0 0 0 60 1 0 138926 0 0 0 0
|
|
fwbr509i1: 10987306 134955 0 10 0 0 0 127094 0 0 0 0 0 0 0 0
|
|
fwpr509p1: 1251225 5025 0 5025 0 0 0 0 14128599 139990 0 0 0 0 0 0
|
|
fwln509i1: 14128599 139990 0 5025 0 0 0 0 1251225 5025 0 0 0 0 0 0
|
|
tap6000i0: 6487167 44904 0 0 0 0 0 0 702346522 4518859 0 35911 0 0 0 0
|
|
tap5111i0: 493969798 1495624 0 0 0 0 0 0 15971521692 7655084 0 0 0 0 0 0
|
|
tap5112i0: 34139107 357912 0 0 0 0 0 0 6120937702 5155565 0 32 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: 66130558 212454 0 0 0 0 0 0 66130558 212454 0 0 0 0 0 0
|
|
nic0: 27941530711 26953267 0 36910 0 0 0 4093206 1482878815 4246174 0 0 0 0 0 0
|
|
nic1: 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
|
|
nic2: 13468624371 12276398 1 0 0 1 0 142567 2255186144 7943786 0 0 0 0 0 0
|
|
tailscale0: 140701289 484518 0 0 0 0 0 0 587024386 333769 0 0 0 0 0 0
|
|
vmbr0: 1486319241 6679566 0 0 0 0 0 3506715 760173943 945988 0 0 0 0 0 0
|
|
bond0: 13468624371 12276398 1 5430 0 1 0 142567 2255186144 7943786 0 0 0 0 0 0
|
|
datanet: 13244827257 12265924 0 10 0 0 0 137136 2177366836 7098335 0 1 0 0 0 0
|
|
tap5101i0: 1480802 15798 0 0 0 0 0 0 509655856 4808696 0 0 0 0 0 0
|
|
tap5105i0: 1210968 12495 0 0 0 0 0 0 500910586 4805132 0 362 0 0 0 0
|
|
tap5106i0: 1215132 12499 0 0 0 0 0 0 500881304 4804889 0 483 0 0 0 0
|
|
tap5107i0: 1222121 12522 0 0 0 0 0 0 500870711 4804752 0 525 0 0 0 0
|
|
tap5108i0: 1205451 12443 0 0 0 0 0 0 500804584 4804120 0 884 0 0 0 0
|
|
tap5109i0: 1206687 12457 0 0 0 0 0 0 500752096 4803651 0 1090 0 0 0 0
|
|
tap51010i0: 1203107 12447 0 0 0 0 0 0 500739819 4803460 0 1138 0 0 0 0
|
|
tap51011i0: 1408571 15240 0 0 0 0 0 0 508989274 4805573 0 1404 0 0 0 0
|
|
tap51012i0: 1278258 13224 0 0 0 0 0 0 500911026 4803185 0 1091 0 0 0 0
|
|
tap51013i0: 1209021 12428 0 0 0 0 0 0 500629617 4802461 0 1439 0 0 0 0
|
|
tap53100i0: 1199945 12400 0 0 0 0 0 0 500584560 4802000 0 1634 0 0 0 0
|
|
tap53101i0: 1433599 15534 0 0 0 0 0 0 510251283 4804645 0 1701 0 0 0 0
|
|
tap53102i0: 1836437 15252 0 0 0 0 0 0 501046254 4804461 0 1596 0 0 0 0
|
|
tap509i0: 106424948 510343 0 0 0 0 0 0 752426434 5660256 0 4546 0 0 0 0
|
|
fwbr509i0: 430416731 4781671 0 6120 0 0 0 3237594 0 0 0 0 0 0 0 0
|
|
fwpr509p0: 107676173 515368 0 5025 0 0 0 0 752927846 5664802 0 0 0 0 0 0
|
|
fwln509i0: 752927846 5664802 0 5025 0 0 0 0 107676173 515368 0 0 0 0 0 0
|
|
tap509i1: 0 0 0 0 0 0 0 0 60 1 0 138926 0 0 0 0
|
|
fwbr509i1: 10987306 134955 0 10 0 0 0 127094 0 0 0 0 0 0 0 0
|
|
fwpr509p1: 1251225 5025 0 5025 0 0 0 0 14128599 139990 0 0 0 0 0 0
|
|
fwln509i1: 14128599 139990 0 5025 0 0 0 0 1251225 5025 0 0 0 0 0 0
|
|
tap6000i0: 6487339 44906 0 0 0 0 0 0 702348241 4518882 0 35911 0 0 0 0
|
|
tap5111i0: 493972014 1495632 0 0 0 0 0 0 15971531300 7655129 0 0 0 0 0 0
|
|
tap5112i0: 34139107 357912 0 0 0 0 0 0 6120939222 5155586 0 32 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-tsys5.knel.net pfv-tsys5
|
|
|
|
# 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
|
|
r
|
|
|
|
|
|
--- /etc/ntp.conf
|
|
[missing: /etc/ntp.conf]
|
|
|
|
--- /etc/chrony/chrony.conf
|
|
--- /etc/chrony/chrony.conf ---
|
|
# Welcome to the chrony configuration file. See chrony.conf(5) for more
|
|
# information about usable directives.
|
|
|
|
# Use Debian vendor zone.
|
|
pool 2.debian.pool.ntp.org iburst
|
|
|
|
# Use time sources from DHCP.
|
|
sourcedir /run/chrony-dhcp
|
|
|
|
# Use NTP sources found in /etc/chrony/sources.d.
|
|
sourcedir /etc/chrony/sources.d
|
|
|
|
# This directive specifies the location of the file containing ID/key pairs for
|
|
# NTP authentication.
|
|
keyfile /etc/chrony/chrony.keys
|
|
|
|
# This directive specifies the file into which chronyd will store the rate
|
|
# information.
|
|
driftfile /var/lib/chrony/chrony.drift
|
|
|
|
# Save NTS keys and cookies.
|
|
ntsdumpdir /var/lib/chrony
|
|
|
|
# Uncomment the following line to turn logging on.
|
|
#log tracking measurements statistics
|
|
|
|
# Log files location.
|
|
logdir /var/log/chrony
|
|
|
|
# Stop bad estimates upsetting machine clock.
|
|
maxupdateskew 100.0
|
|
|
|
# This directive enables kernel synchronisation (every 11 minutes) of the
|
|
# real-time clock. Note that it can't be used along with the 'rtcfile' directive.
|
|
rtcsync
|
|
|
|
# Step the system clock instead of slewing it if the adjustment is larger than
|
|
# one second, but only in the first three clock updates.
|
|
makestep 1 3
|
|
|
|
# Get TAI-UTC offset and leap seconds from the system tz database.
|
|
# This directive must be commented out when using time sources serving
|
|
# leap-smeared time.
|
|
leapseclist /usr/share/zoneinfo/leap-seconds.list
|
|
|
|
# Include configuration files found in /etc/chrony/conf.d.
|
|
confdir /etc/chrony/conf.d
|
|
|
|
--- timedatectl
|
|
$ timedatectl
|
|
Local time: Sun 2026-07-26 16:32:11 CDT
|
|
Universal time: Sun 2026-07-26 21:32:11 UTC
|
|
RTC time: Sun 2026-07-26 21:32:11
|
|
Time zone: America/Chicago (CDT, -0500)
|
|
System clock synchronized: yes
|
|
NTP service: active
|
|
RTC in local TZ: no
|
|
|
|
--- chronyc tracking
|
|
$ chronyc tracking
|
|
Reference ID : 95F80CA7 (149.248.12.167.vultrusercontent.com)
|
|
Stratum : 4
|
|
Ref time (UTC) : Sun Jul 26 21:26:36 2026
|
|
System time : 0.000408659 seconds slow of NTP time
|
|
Last offset : +0.000118423 seconds
|
|
RMS offset : 0.000465766 seconds
|
|
Frequency : 5.558 ppm fast
|
|
Residual freq : +0.007 ppm
|
|
Skew : 0.133 ppm
|
|
Root delay : 0.038353302 seconds
|
|
Root dispersion : 0.001228930 seconds
|
|
Update interval : 1030.6 seconds
|
|
Leap status : Normal
|
|
|
|
--- chronyc sources
|
|
$ chronyc sources
|
|
MS Name/IP address Stratum Poll Reach LastRx Last sample
|
|
===============================================================================
|
|
^+ arm1.maxhost.io 2 10 377 942 +1639us[+1728us] +/- 51ms
|
|
^* 149.248.12.167.vultruser> 3 10 377 335 -2403us[-2285us] +/- 19ms
|
|
^+ 172-104-209-204.ip.linod> 5 10 377 794 +2002us[+2098us] +/- 48ms
|
|
^- linode1.ernest-doss.org 3 10 377 128 -9317us[-9317us] +/- 94ms
|
|
|
|
--- ntpq peers
|
|
$ ntpq -pn
|
|
/root/check.sh: line 45: ntpq: command not found
|
|
[exit=127 / not installed or not permitted]
|
|
|
|
###############################################################################
|
|
# 28. FIREWALL / SECURITY
|
|
###############################################################################
|
|
|
|
--- pve-firewall status
|
|
$ pve-firewall status
|
|
Status: disabled/running
|
|
|
|
--- nft ruleset (count)
|
|
$ nft list ruleset
|
|
|
|
--- nft ruleset (head)
|
|
$ nft list ruleset
|
|
|
|
--- iptables-save (legacy)
|
|
$ iptables-save
|
|
# Generated by iptables-save v1.8.11 on Sun Jul 26 16:32:13 2026
|
|
*raw
|
|
:PREROUTING ACCEPT [17517187:14854209126]
|
|
:OUTPUT ACCEPT [8524299:3476189142]
|
|
COMMIT
|
|
# Completed on Sun Jul 26 16:32:13 2026
|
|
# Generated by iptables-save v1.8.11 on Sun Jul 26 16:32:13 2026
|
|
*mangle
|
|
:PREROUTING ACCEPT [17517800:14854367425]
|
|
:INPUT ACCEPT [14426681:14478813976]
|
|
:FORWARD ACCEPT [0:0]
|
|
:OUTPUT ACCEPT [8524797:3476260386]
|
|
:POSTROUTING ACCEPT [8524797:3476260386]
|
|
-A PREROUTING -m conntrack --ctstate RELATED,ESTABLISHED -j CONNMARK --restore-mark --nfmask 0xff0000 --ctmask 0xff0000
|
|
-A OUTPUT -m conntrack --ctstate NEW -m mark ! --mark 0x0/0xff0000 -j CONNMARK --save-mark --nfmask 0xff0000 --ctmask 0xff0000
|
|
COMMIT
|
|
# Completed on Sun Jul 26 16:32:13 2026
|
|
# Generated by iptables-save v1.8.11 on Sun Jul 26 16:32:13 2026
|
|
*nat
|
|
:PREROUTING ACCEPT [3466611:409010848]
|
|
:INPUT ACCEPT [486156:58020060]
|
|
:OUTPUT ACCEPT [177631:12168299]
|
|
:POSTROUTING ACCEPT [177631:12168299]
|
|
:ts-postrouting - [0:0]
|
|
-A POSTROUTING -j ts-postrouting
|
|
-A ts-postrouting -m mark --mark 0x40000/0xff0000 -j MASQUERADE
|
|
COMMIT
|
|
# Completed on Sun Jul 26 16:32:13 2026
|
|
# Generated by iptables-save v1.8.11 on Sun Jul 26 16:32:13 2026
|
|
*filter
|
|
:INPUT ACCEPT [13242986:14130167405]
|
|
:FORWARD ACCEPT [0:0]
|
|
:OUTPUT ACCEPT [8524797:3476260386]
|
|
: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.87.135.12/32 -i lo -j ACCEPT
|
|
-A ts-input -i tailscale0 -j ACCEPT
|
|
-A ts-input -p udp -m udp --dport 41641 -j ACCEPT
|
|
-A ts-input -s 100.115.92.0/23 ! -i tailscale0 -j RETURN
|
|
-A ts-input -s 100.64.0.0/10 ! -i tailscale0 -j DROP
|
|
COMMIT
|
|
# Completed on Sun Jul 26 16:32:13 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 (632292)
|
|
/usr/sbin/chronyd (632296)
|
|
/usr/sbin/dhclient (1531) /{,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
|
|
113938 root 9283372 13691436 34.1 9.3 kvm
|
|
115366 root 6202904 7025332 4.1 6.2 kvm
|
|
88433 root 2339972 6897740 2.2 2.3 kvm
|
|
48921 root 1583692 13122972 1.4 1.6 kvm
|
|
47873 root 1573360 11255792 1.3 1.5 kvm
|
|
49689 root 1472952 34193344 1.9 1.4 kvm
|
|
48474 root 1384796 5122800 1.3 1.4 kvm
|
|
48805 root 807880 10175008 1.5 0.8 kvm
|
|
49002 root 776132 9059956 1.6 0.7 kvm
|
|
48576 root 726320 5032620 1.5 0.7 kvm
|
|
|
|
--- top 10 CPU hogs
|
|
$ ps -eo pid,user,pcpu,pmem,rss,comm --sort=-pcpu | head -n 11
|
|
PID USER %CPU %MEM RSS COMMAND
|
|
722470 root 100 0.0 4424 ps
|
|
113938 root 34.1 9.3 9283372 kvm
|
|
115366 root 4.1 6.2 6202904 kvm
|
|
722417 root 3.9 0.0 7720 systemd-timedat
|
|
88433 root 2.2 2.3 2339972 kvm
|
|
1893 root 2.0 0.1 151800 pvestatd
|
|
49689 root 1.9 1.4 1472952 kvm
|
|
49002 root 1.6 0.7 776132 kvm
|
|
48576 root 1.5 0.7 726320 kvm
|
|
48805 root 1.5 0.8 807880 kvm
|
|
|
|
--- 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=215 systemd
|
|
48397 fd=124 kvm
|
|
48205 fd=124 kvm
|
|
48099 fd=124 kvm
|
|
48034 fd=124 kvm
|
|
47937 fd=124 kvm
|
|
47873 fd=124 kvm
|
|
48303 fd=123 kvm
|
|
1837 fd=94 master
|
|
385 fd=60 systemd-journal
|
|
1263 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 48M Mar 17 09:28 /var/log/journal/1033b7ad6caf44c09874b4bf08c7d334/system@5957d200c9d3431993ce31ca8d3cfe13-0000000000013798-00064cce94cc9a71.journal
|
|
-rw-r-----+ 1 root systemd-journal 48M Mar 12 02:20 /var/log/journal/1033b7ad6caf44c09874b4bf08c7d334/system@5957d200c9d3431993ce31ca8d3cfe13-000000000000467b-00064c4a10ef1d68.journal
|
|
-rw-r-----+ 1 root systemd-journal 48M Jul 7 19:51 /var/log/journal/1033b7ad6caf44c09874b4bf08c7d334/system@5957d200c9d3431993ce31ca8d3cfe13-000000000004efab-000653aa9998326e.journal
|
|
-rw-r-----+ 1 root systemd-journal 48M Jul 26 16:32 /var/log/journal/1033b7ad6caf44c09874b4bf08c7d334/system.journal
|
|
-rw-r-----+ 1 root systemd-journal 40M May 7 22:49 /var/log/journal/1033b7ad6caf44c09874b4bf08c7d334/system@5957d200c9d3431993ce31ca8d3cfe13-000000000003554c-00064ee1f0d36d1e.journal
|
|
-rw-r-----+ 1 root systemd-journal 40M Jun 7 09:20 /var/log/journal/1033b7ad6caf44c09874b4bf08c7d334/system@5957d200c9d3431993ce31ca8d3cfe13-0000000000041e97-000651464a0de8f7.journal
|
|
-rw-r-----+ 1 root systemd-journal 32M Mar 24 19:56 /var/log/journal/1033b7ad6caf44c09874b4bf08c7d334/system@00064e3f7f0af53c-3a6be8acbb9c24a0.journal~
|
|
-rw-r-----+ 1 root systemd-journal 32M Apr 6 10:57 /var/log/journal/1033b7ad6caf44c09874b4bf08c7d334/system@00064ee1f0d9163d-f6d8187336fe6b43.journal~
|
|
-rw-r-----+ 1 root systemd-journal 16M Mar 5 11:14 /var/log/journal/1033b7ad6caf44c09874b4bf08c7d334/system@5957d200c9d3431993ce31ca8d3cfe13-0000000000000001-00064bbb754fe33c.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)"
|
|
bond0 : 10 Mbps (UP) <-- sub-10GbE; suspect if this carries storage/migration
|
|
nic0 : 1000 Mbps (UP) <-- sub-10GbE; suspect if this carries storage/migration
|
|
nic2 : 10 Mbps (UP) <-- sub-10GbE; suspect if this carries storage/migration
|
|
[exit=1]
|
|
|
|
|
|
--- [B] MTU not jumbo on carrier-up interfaces
|
|
$ hits=0
|
|
for ifc in $NETIFS; do
|
|
m=$(cat "/sys/class/net/$ifc/mtu" 2>/dev/null)
|
|
c=$(cat "/sys/class/net/$ifc/carrier" 2>/dev/null)
|
|
[ "$c" = "1" ] || continue
|
|
if [ -n "$m" ] && [ "$m" != "9000" ]; then
|
|
printf ' %s : mtu=%s\n' "$ifc" "$m"
|
|
hits=$((hits+1))
|
|
fi
|
|
done
|
|
[ "$hits" = "0" ] && echo " all carrier-up interfaces have MTU 9000 (or none are up)"
|
|
bond0 : mtu=1500
|
|
datanet : mtu=1500
|
|
fwbr509i0 : mtu=1500
|
|
fwbr509i1 : mtu=1500
|
|
fwln509i0 : mtu=1500
|
|
fwln509i1 : mtu=1500
|
|
fwpr509p0 : mtu=1500
|
|
fwpr509p1 : mtu=1500
|
|
nic0 : mtu=1500
|
|
nic2 : mtu=1500
|
|
tap509i0 : mtu=1500
|
|
tap509i1 : mtu=1500
|
|
tap51010i0 : mtu=1500
|
|
tap51011i0 : mtu=1500
|
|
tap51012i0 : mtu=1500
|
|
tap51013i0 : mtu=1500
|
|
tap5101i0 : mtu=1500
|
|
tap5105i0 : mtu=1500
|
|
tap5106i0 : mtu=1500
|
|
tap5107i0 : mtu=1500
|
|
tap5108i0 : mtu=1500
|
|
tap5109i0 : mtu=1500
|
|
tap5111i0 : mtu=1500
|
|
tap5112i0 : mtu=1500
|
|
tap53100i0 : mtu=1500
|
|
tap53101i0 : mtu=1500
|
|
tap53102i0 : mtu=1500
|
|
tap6000i0 : 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
|
|
cpufreq driver not loaded (governor unknown)
|
|
|
|
|
|
--- [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= (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=1 dirty_ratio=40 dirty_background_ratio=10
|
|
<-- swappiness not 10 (Proxmox default)
|
|
|
|
|
|
--- [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=10125049856 bytes RAM total=101246885888 bytes
|
|
ARC max is 10% 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 500: ide-disk
|
|
VM 509: ide-disk no-iothread
|
|
VM 515: ide-disk
|
|
VM 5100: ide-disk
|
|
VM 5101: ide-disk
|
|
VM 5102: ide-disk
|
|
VM 5103: ide-disk
|
|
VM 5104: ide-disk
|
|
VM 5105: ide-disk
|
|
VM 5106: ide-disk
|
|
VM 5107: ide-disk
|
|
VM 5108: ide-disk
|
|
VM 5109: ide-disk
|
|
VM 5111: ide-disk
|
|
VM 5112: ide-disk
|
|
VM 5500: ide-disk scsihw!=virtio-scsi-single no-iothread
|
|
VM 6000: ide-disk
|
|
VM 51010: ide-disk
|
|
VM 51011: ide-disk
|
|
VM 51012: ide-disk
|
|
VM 51013: ide-disk
|
|
VM 51014: ide-disk
|
|
VM 53100: ide-disk
|
|
VM 53101: ide-disk
|
|
VM 53102: ide-disk
|
|
VM 53103: ide-disk
|
|
[exit=1]
|
|
|
|
|
|
--- [J] NFS client mount option red flags
|
|
$ if ! command -v nfsstat >/dev/null 2>&1; then
|
|
echo " nfsstat not available"
|
|
else
|
|
nfsstat -m 2>/dev/null | awk '
|
|
/^.*:/ {mp=$0; next}
|
|
/Flags:/ {
|
|
gsub(/Flags:|,/,"",$0)
|
|
line=$0
|
|
if (line !~ /noatime/) print " "mp" : missing noatime"
|
|
if (line !~ /nconnect/) print " "mp" : missing nconnect (kernel >=5.3)"
|
|
if (line !~ /rsize=1048576/) print " "mp" : rsize<1M"
|
|
if (line !~ /wsize=1048576/) print " "mp" : wsize<1M"
|
|
if (line ~ /sync/) print " "mp" : sync mount (slow)"
|
|
}
|
|
'
|
|
fi
|
|
|
|
|
|
--- [K] Softnet / NIC drops (non-zero)
|
|
$ awk 'NR<=32 && ($2+0 > 0 || $4+0 > 0) {printf " cpu%d: dropped=%d time_squeezed=%d\n", NR-1, $2, $4}' /proc/net/softnet_stat
|
|
echo " (also check ethtool -S sections above for rx_dropped/rx_missed_errors)"
|
|
(also check ethtool -S sections above for rx_dropped/rx_missed_errors)
|
|
|
|
|
|
--- [L] Failed systemd services
|
|
$ failed=$(systemctl --failed --no-legend 2>/dev/null | head -n 10)
|
|
if [ -n "$failed" ]; then
|
|
echo "$failed" | sed 's/^/ /'
|
|
else
|
|
echo " no failed services"
|
|
fi
|
|
no failed services
|
|
|
|
|
|
--- [M] Filesystem usage > 80%
|
|
$ df -h 2>/dev/null | awk 'NR>1 && $5+0 > 80 {print " "$0}'
|
|
|
|
|
|
--- [N] SMART / NVMe health warnings
|
|
$ if command -v nvme >/dev/null 2>&1; then
|
|
for n in /dev/nvme[0-9]*; do
|
|
[ -b "$n" ] || continue
|
|
crit=$(nvme smart-log "$n" 2>/dev/null | grep -iE 'critical_warning|media_and_data_integrity|available_spare' | head -n 5)
|
|
[ -n "$crit" ] && echo " $n: $crit" | tr '\n' ' '
|
|
done
|
|
fi
|
|
if command -v smartctl >/dev/null 2>&1; then
|
|
for d in $(ls /sys/block/ 2>/dev/null | grep -E '^sd'); do
|
|
dev="/dev/$d"
|
|
[ -b "$dev" ] || continue
|
|
chk=$(smartctl -H "$dev" 2>/dev/null | grep -iE 'result|health|passed|failed')
|
|
echo "$chk" | grep -qi fail && echo " $dev: $chk"
|
|
done
|
|
fi
|
|
echo " (see section 20 for full smartctl/nvme output)"
|
|
(see section 20 for full smartctl/nvme output)
|
|
|
|
###############################################################################
|
|
# Collection complete: pfv-tsys5
|
|
# Output: /root/pfv-tsys5.log
|
|
# Size: 1047437 bytes / 17552 lines
|
|
# Elapsed: 419 seconds
|
|
###############################################################################
|