FSTAT(1) - General Commands Manual # FSTAT(1) - General Commands Manual
NAME # fstat - display status of open files
SYNOPSIS # fstat [-fnosv] [-M core] [-N system] [-p pid] [-u user] [file …]
DESCRIPTION # fstat identifies open files. A file is considered open by a process if it was explicitly opened, is the working directory, root directory, active executable text, or kernel trace file for that process. If no options are specified, fstat reports on all open files in the system.
...
Vmstat,
Top,
Fstat,
Tcpbench,
Netintro,
Protocols,
Systat,
Ps,
Services,
Trpt,
Iostat,
Pstat,
Tcpdrop,
Inet_ntop,
Hosts,
Nfsstat,
Portmap,
Route,
Netstat NETSTAT(1) - General Commands Manual # NETSTAT(1) - General Commands Manual
NAME # netstat - show network status
SYNOPSIS # netstat [-AaBln] [-M core] [-N system] [-p protocol] [-T rtable]
netstat -WÂ interface
netstat -m
netstat -I interface | -i [-bdehnq]
netstat -w wait [-bdehnq] [-c count] [-I interface]
netstat -s [-gru] [-f address_family] [-p protocol]
netstat -g [-lnu] [-f address_family]
netstat -R
netstat -r [-AFu] [-f address_family] [-M core] [-N system] [-T rtable]
...
Tcpbench,
Netintro,
Getsockopt,
Ipsecctl,
Socket,
Inet,
Inet6,
Tcpdrop,
Ip6,
Ip,
Tcp TCP(4) - Device Drivers Manual # TCP(4) - Device Drivers Manual
NAME # tcp - Internet Transmission Control Protocol
SYNOPSIS # #include <sys/socket.h>
#include <netinet/in.h>
#include <netinet/tcp.h>
int
socket(AF_INET, SOCK_STREAM, 0);
int
socket(AF_INET6, SOCK_STREAM, 0);
DESCRIPTION # The TCP protocol provides a reliable, flow-controlled, two-way transmission of data. It is a byte-stream protocol used to support the SOCK_STREAM abstraction. TCP uses the standard Internet address format and, in addition, provides a per-host collection of “port addresses”.
...
TCPDROP(8) - System Manager’s Manual # TCPDROP(8) - System Manager’s Manual
NAME # tcpdrop - drop a TCP connection
SYNOPSIS # tcpdrop local-addr local-port remote-addr remote-port
DESCRIPTION # The tcpdrop command drops the TCP connection specified by the local address local-addr, port local-port and the foreign address remote-addr, port remote-port. Addresses and ports can be specified by name or numeric value.
To simplify dropping TCP connections using the output of fstat(1) and netstat(1), tcpdrop also supports a two-argument form where the address and port are separated by a colon (’:’) or dot (’.
...