2005-02-06 10:47:12 +00:00
|
|
|
.\" $OpenBSD: tcpdrop.8,v 1.5 2004/05/24 13:57:31 jmc Exp $
|
|
|
|
.\"
|
2009-06-01 06:49:09 +00:00
|
|
|
.\" Copyright (c) 2009 Juli Mallett <jmallett@FreeBSD.org>
|
2005-02-06 10:47:12 +00:00
|
|
|
.\" Copyright (c) 2004 Markus Friedl <markus@openbsd.org>
|
|
|
|
.\"
|
|
|
|
.\" Permission to use, copy, modify, and distribute this software for any
|
|
|
|
.\" purpose with or without fee is hereby granted, provided that the above
|
|
|
|
.\" copyright notice and this permission notice appear in all copies.
|
|
|
|
.\"
|
|
|
|
.\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
.\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
.\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
.\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
.\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
.\"
|
|
|
|
.\" $FreeBSD$
|
|
|
|
.\"
|
2017-09-14 20:42:19 +00:00
|
|
|
.Dd September 14, 2017
|
2005-02-06 10:47:12 +00:00
|
|
|
.Dt TCPDROP 8
|
|
|
|
.Os
|
|
|
|
.Sh NAME
|
|
|
|
.Nm tcpdrop
|
2009-06-01 06:49:09 +00:00
|
|
|
.Nd drop TCP connections
|
2005-02-06 10:47:12 +00:00
|
|
|
.Sh SYNOPSIS
|
|
|
|
.Nm tcpdrop
|
2009-06-01 06:49:09 +00:00
|
|
|
.Ar local-address
|
|
|
|
.Ar local-port
|
|
|
|
.Ar foreign-address
|
|
|
|
.Ar foreign-port
|
|
|
|
.Nm tcpdrop
|
|
|
|
.Op Fl l
|
|
|
|
.Fl a
|
2017-09-12 13:39:44 +00:00
|
|
|
.Nm tcpdrop
|
|
|
|
.Op Fl l
|
|
|
|
.Fl S Ar stack
|
|
|
|
.Nm tcpdrop
|
|
|
|
.Op Fl l
|
|
|
|
.Fl s Ar state
|
|
|
|
.Nm tcpdrop
|
|
|
|
.Op Fl l
|
|
|
|
.Fl S Ar stack
|
|
|
|
.Fl s Ar state
|
2005-02-06 10:47:12 +00:00
|
|
|
.Sh DESCRIPTION
|
|
|
|
The
|
|
|
|
.Nm
|
2009-06-01 06:49:09 +00:00
|
|
|
command may be used to drop TCP connections from the command line.
|
|
|
|
.Pp
|
|
|
|
If
|
|
|
|
.Fl a
|
|
|
|
is specified then
|
|
|
|
.Nm
|
2017-09-12 13:39:44 +00:00
|
|
|
will attempt to drop all TCP connections.
|
|
|
|
.Pp
|
|
|
|
If
|
|
|
|
.Fl S Ar stack
|
|
|
|
is specified then
|
|
|
|
.Nm
|
|
|
|
will attempt to drop all connections using the TCP stack
|
|
|
|
.Ar stack .
|
|
|
|
.Pp
|
|
|
|
If
|
|
|
|
.Fl s Ar state
|
|
|
|
is specified then
|
|
|
|
.Nm
|
|
|
|
will attempt to drop all TCP connections being in the state
|
|
|
|
.Ar state .
|
|
|
|
.Ar state
|
|
|
|
is one of
|
|
|
|
.Dv SYN_SENT ,
|
|
|
|
.Dv SYN_RCVD ,
|
|
|
|
.Dv ESTABLISHED ,
|
|
|
|
.Dv CLOSE_WAIT ,
|
|
|
|
.Dv FIN_WAIT_1 ,
|
|
|
|
.Dv CLOSING ,
|
|
|
|
.Dv LAST_ACK ,
|
|
|
|
.Dv FIN_WAIT_2 , or
|
|
|
|
.Dv TIME_WAIT .
|
|
|
|
.Pp
|
2017-09-14 18:50:40 +00:00
|
|
|
If
|
|
|
|
.Fl S Ar stack
|
|
|
|
and
|
|
|
|
.Fl s Ar state
|
|
|
|
are specified,
|
|
|
|
.Nm
|
|
|
|
will attempt to drop all TCP connections being in the state
|
|
|
|
.Ar state
|
|
|
|
and using the TCP stack
|
|
|
|
.Ar stack .
|
2017-09-14 20:42:19 +00:00
|
|
|
Since TCP connections in the
|
2017-09-14 18:50:40 +00:00
|
|
|
.Dv TIME_WAIT
|
|
|
|
state are not tied to any TCP stack, using the option
|
|
|
|
.Fl s Dv TIME_WAIT
|
|
|
|
in combination with the
|
|
|
|
.Fl S Ar stack
|
|
|
|
option results in
|
|
|
|
.Nm
|
|
|
|
not dropping any TCP connection.
|
|
|
|
.Pp
|
2009-06-01 06:49:09 +00:00
|
|
|
The
|
|
|
|
.Fl l
|
2017-09-12 13:39:44 +00:00
|
|
|
flag may be given in addition to the
|
|
|
|
.Fl a ,
|
|
|
|
.Fl S ,
|
|
|
|
or
|
|
|
|
.Fl s
|
|
|
|
options to list the tcpdrop invocation to drop all corresponding TCP
|
2009-06-01 06:49:09 +00:00
|
|
|
connections one at a time.
|
|
|
|
.Pp
|
2017-09-12 13:39:44 +00:00
|
|
|
If none of the
|
|
|
|
.Fl a ,
|
|
|
|
.Fl S ,
|
|
|
|
or
|
|
|
|
.Fl s
|
|
|
|
options are specified then only the connection between the given local
|
2009-06-01 06:49:09 +00:00
|
|
|
address
|
|
|
|
.Ar local-address ,
|
2005-02-06 10:47:12 +00:00
|
|
|
port
|
2009-06-01 06:49:09 +00:00
|
|
|
.Ar local-port ,
|
2005-02-06 10:47:12 +00:00
|
|
|
and the foreign address
|
2009-06-01 06:49:09 +00:00
|
|
|
.Ar foreign-address ,
|
2005-02-06 10:47:12 +00:00
|
|
|
port
|
2009-06-01 06:49:09 +00:00
|
|
|
.Ar foreign-port ,
|
|
|
|
will be dropped.
|
|
|
|
.Pp
|
|
|
|
Addresses and ports may be specified by name or numeric value.
|
|
|
|
Both IPv4 and IPv6 address formats are supported.
|
2013-01-30 18:24:29 +00:00
|
|
|
.Pp
|
|
|
|
The addresses and ports may be separated by periods or colons
|
|
|
|
instead of spaces.
|
2005-02-06 10:47:12 +00:00
|
|
|
.Sh EXIT STATUS
|
|
|
|
.Ex -std
|
|
|
|
.Sh EXAMPLES
|
|
|
|
If a connection to
|
2009-06-01 06:49:09 +00:00
|
|
|
.Xr httpd 8
|
2005-02-06 10:47:12 +00:00
|
|
|
is causing congestion on a network link, one can drop the TCP session
|
|
|
|
in charge:
|
|
|
|
.Bd -literal -offset indent
|
2005-03-14 14:12:29 +00:00
|
|
|
# sockstat -c | grep httpd
|
2005-03-14 12:15:43 +00:00
|
|
|
www httpd 16525 3 tcp4 \e
|
|
|
|
192.168.5.41:80 192.168.5.1:26747
|
2005-02-06 10:47:12 +00:00
|
|
|
.Ed
|
|
|
|
.Pp
|
|
|
|
The following command will drop the connection:
|
|
|
|
.Bd -literal -offset indent
|
|
|
|
# tcpdrop 192.168.5.41 80 192.168.5.1 26747
|
|
|
|
.Ed
|
2009-06-01 06:49:09 +00:00
|
|
|
.Pp
|
|
|
|
The following command will drop all connections but those to or from
|
|
|
|
port 22, the port used by
|
|
|
|
.Xr sshd 8 :
|
|
|
|
.Bd -literal -offset indent
|
|
|
|
# tcpdrop -l -a | grep -vw 22 | sh
|
|
|
|
.Ed
|
2017-09-12 13:39:44 +00:00
|
|
|
.Pp
|
|
|
|
The following command will drop all connections using the TCP stack
|
|
|
|
fastack:
|
|
|
|
.Bd -literal -offset indent
|
|
|
|
# tcpdrop -S fastack
|
|
|
|
.Ed
|
|
|
|
.Pp
|
|
|
|
To drop all TCP connections in the LAST_ACK state use:
|
|
|
|
.Bd -literal -offset indent
|
|
|
|
# tcpdrop -s LAST_ACK
|
|
|
|
.Ed
|
|
|
|
.Pp
|
|
|
|
To drop all TCP connections using the TCP stack fastack and being in the
|
|
|
|
LAST_ACK state use:
|
|
|
|
.Bd -literal -offset indent
|
|
|
|
# tcpdrop -S fastack -s LAST_ACK
|
|
|
|
.Ed
|
2005-02-06 10:47:12 +00:00
|
|
|
.Sh SEE ALSO
|
2005-03-14 12:24:34 +00:00
|
|
|
.Xr netstat 1 ,
|
|
|
|
.Xr sockstat 1
|
2005-02-06 10:47:12 +00:00
|
|
|
.Sh AUTHORS
|
2014-06-20 09:57:27 +00:00
|
|
|
.An Markus Friedl Aq Mt markus@openbsd.org
|
|
|
|
.An Juli Mallett Aq Mt jmallett@FreeBSD.org
|