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
109 lines
2.7 KiB
Plaintext
109 lines
2.7 KiB
Plaintext
!###############################################################################
|
|
!# pfv-r3-tor-stor
|
|
!#
|
|
!# Rack 3 storage TOR (VLAN1000 storage + VLAN1).
|
|
!# Carries the 4-port LACP to pfv-core-sw01 (Rack 5).
|
|
!# Most important switch for cross-rack storage throughput.
|
|
!#
|
|
!# Paste from enable mode after `terminal datadump` (DNOS 4/6) or
|
|
!# `terminal length 0` (DNOS 9 / OS9). Capture to returned-logs/pfv-r3-tor-stor.log
|
|
!###############################################################################
|
|
|
|
enable
|
|
terminal datadump
|
|
terminal length 0
|
|
|
|
! --- Identify ---------------------------------------------------------------
|
|
show version
|
|
show system
|
|
show inventory
|
|
show running-config
|
|
show bootvar
|
|
show cpu utilization
|
|
show cpu
|
|
show memory
|
|
show processes
|
|
show logging
|
|
|
|
! --- Interfaces (most important section) ------------------------------------
|
|
show interface status
|
|
show interface description
|
|
show interface counters
|
|
show interface counters errors
|
|
show interface counters detail
|
|
show interfaces status
|
|
show interfaces description
|
|
show interfaces counters
|
|
show interfaces counters errors
|
|
show interfaces configuration
|
|
|
|
! --- LACP / port-channel (the 4-port LAG to Rack 5) ------------------------
|
|
show port-channel summary
|
|
show port-channel detail
|
|
show port-channel 1
|
|
show port-channel 2
|
|
show port-channel 3
|
|
show port-channel 4
|
|
show interfaces port-channel
|
|
show lacp
|
|
show lacp neighbor
|
|
show lacp 1
|
|
show lag
|
|
|
|
! --- VLANs (VLAN1000 is the storage VLAN) ----------------------------------
|
|
show vlan
|
|
show vlan brief
|
|
show vlan id 1000
|
|
show vlan detail
|
|
show interfaces vlan 1000
|
|
show interfaces switchport
|
|
|
|
! --- Spanning tree ----------------------------------------------------------
|
|
show spanning-tree
|
|
show spanning-tree summary
|
|
show spanning-tree active
|
|
show spanning-tree detail
|
|
show spanning-tree mst
|
|
|
|
! --- Multicast / IGMP (storage traffic) -------------------------------------
|
|
show ip igmp snooping
|
|
show ip igmp snooping vlan 1000
|
|
show ip igmp snooping vlan 1
|
|
|
|
! --- QoS / CoS / DCB / PFC (matters for storage) ---------------------------
|
|
show qos
|
|
show qos interface
|
|
show class-of-service
|
|
show dcb
|
|
show dcb priority
|
|
show priority-flow-control
|
|
show pfc
|
|
|
|
! --- Jumbo / storm / MTU ----------------------------------------------------
|
|
show ports jumbo-frame
|
|
show storm-control
|
|
show interfaces mtu
|
|
|
|
! --- FDB / ARP / routing ----------------------------------------------------
|
|
show mac address-table
|
|
show mac-address-table
|
|
show arp
|
|
show ip route
|
|
|
|
! --- Environment / hardware / optics ---------------------------------------
|
|
show environment
|
|
show fan
|
|
show power supplies
|
|
show power
|
|
show hardware
|
|
show inventory
|
|
show transceiver
|
|
show interface transceiver
|
|
show media
|
|
|
|
! --- Flow control (important for storage) ----------------------------------
|
|
show flowcontrol
|
|
show interfaces flowcontrol
|
|
|
|
exit
|