Lines Matching +full:drop +full:- +full:out
15 .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
23 .Nd drop TCP connections
26 .Ar local-address
27 .Ar local-port
28 .Ar foreign-address
29 .Ar foreign-port
35 .Fl C Ar cc-algo
40 .Op Fl C Ar cc-algo
45 .Op Fl C Ar cc-algo
51 command may be used to drop TCP connections from the command line.
57 will attempt to drop all TCP connections.
60 .Fl C Ar cc-algo
63 will attempt to drop all connections using the TCP congestion control algorithm
64 .Ar cc-algo .
70 will attempt to drop all connections using the TCP stack
77 will attempt to drop all TCP connections being in the state
92 .Fl C Ar cc-algo ,
98 will attempt to drop all TCP connections using the congestion control algorithm
99 .Ar cc-algo ,
123 options to list the tcpdrop invocation to drop all corresponding TCP
134 .Ar local-address ,
136 .Ar local-port ,
138 .Ar foreign-address ,
140 .Ar foreign-port ,
149 .Ex -std
153 is causing congestion on a network link, one can drop the TCP session
155 .Bd -literal -offset indent
156 # sockstat -c | grep httpd
161 The following command will drop the connection:
162 .Bd -literal -offset indent
166 The following command will drop all connections but those to or from
169 .Bd -literal -offset indent
170 # tcpdrop -l -a | grep -vw 22 | sh
173 To drop all TCP connections using the new-reno congestion control algorithm use:
174 .Bd -literal -offset indent
175 # tcpdrop -C new-reno
178 The following command will drop all connections using the TCP stack
180 .Bd -literal -offset indent
181 # tcpdrop -S rack
184 To drop all TCP connections in the LAST_ACK state use:
185 .Bd -literal -offset indent
186 # tcpdrop -s LAST_ACK
189 To drop all TCP connections using the congestion control algorithm new-reno and
191 .Bd -literal -offset indent
192 # tcpdrop -C new-reno -S rack -s LAST_ACK