|
limits
|
# System resource limits
|
|
|
sysctl -a | egrep "nmbcluster|mbuf"
|
# to see free mbuf
|
|
|
netstat.nn vr1
|
# netstat + awk == shows network bandwidth in Mbyte/sec
|
|
netstat -s
|
# lots of info
|
|
netstat -s | grep dropped
|
# reason for dropped packets
|
|
netstat -i
|
# collisions, errors
|
|
netstat -m
|
# to see mbuf
|
|
netstat -bdhI vr1 1
|
# drop packets, collisions, errors
|
|
netstat -na
|
|
|
systat -vmstat 1
|
# BSD summary of system statistics (1 s intervals)
|
|
systat -tcp 1
|
# BSD tcp connections
|
|
systat -netstat 1
|
# BSD active network connections
|
|
systat -ifstat 1
|
# BSD network traffic through active interfaces
|
|
systat -iostat 1
|
# BSD CPU and and disk throughput
|
|
systat -ip
|
# bar graph
|
|
|
vmstat 2
|
# display virtual memory statistics
|
|
vmstat -z
|
# lots of info
|
|
vmstat -z | egrep "ITEM|mbuf"
|
# shows free mbuff
|
|
vmstat -m
|
# memory usage
|
|
vmstat -i
|
# check interrupts
|
|
|
procstat -at | grep em\[01\]
|
|
mpstat 1
|
# display processors related statistics
|
|
iostat 2
|
# display I/O statistics (2 s intervals)
|
|
|
bmon
|
# Transmit and Receive ascii graph
|
|
cnd
|
|
ifstat
|
# like netstat ( tx and rx )
|
|
nload devices vr1
|
# ascii bar graph ( tx and rx )
|
|
slurm -i vr1
|
# ascii bar graph ( tx and rx )
|
|
tcpstat -i vr1
|
# epochtime vs total bytes
|
|
trafshow
|
# show by protocols src/dst
|
|
pload
|