]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - share/man/man4/blackhole.4
This commit was generated by cvs2svn to compensate for changes in r52744,
[FreeBSD/FreeBSD.git] / share / man / man4 / blackhole.4
1 .\"
2 .\" blackhole - drop refused TCP or UDP connects
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\"
13 .\"
14 .\" $FreeBSD$
15 .Dd August 17, 1999
16 .Dt BLACKHOLE 4
17 .Os FreeBSD 
18 .Sh NAME
19 .Nm blackhole 
20 .Nd a
21 .Xr sysctl 8
22 MIB for manipulating behaviour in respect of refused TCP or UDP connection
23 attempts.
24 .Sh SYNOPSIS
25 .Cd sysctl net.inet.tcp.blackhole
26 .Cd sysctl net.inet.udp.blackhole
27 .Pp
28 .Cd sysctl -w net.inet.tcp.blackhole=[0 | 1 | 2]
29 .Cd sysctl -w net.inet.udp.blackhole=[0 | 1]
30 .Sh DESCRIPTION
31 The
32 .Nm
33 .Xr sysctl 8
34 MIB is used to control system behaviour when connection requests
35 are received on TCP or UDP ports where there is no socket listening.
36 .Pp
37 Normal behaviour, when a TCP SYN segment is received on a port where
38 there is no socket accepting connections, is for the system to return
39 a RST segment, and drop the connection.  The connecting system will
40 see this as a "Connection reset by peer".  By turning the TCP black
41 hole MIB on to a numeric value of one, the incoming SYN segment 
42 is merely dropped, and no RST is sent, making the system appear
43 as a blackhole.  By setting the MIB value to two, any segment arriving
44 on a closed port is dropped without returning a RST.  This provides
45 some degree of protection against stealth port scans.
46 .Pp
47 In the UDP instance, enabling blackhole behaviour turns off the sending
48 of an ICMP port unreachable message in response to a UDP datagram which
49 arrives on a port where there is no socket listening.  It must be noted
50 that this behaviour will prevent remote systems from running
51 .Xr traceroute 8
52 to your system.
53 .Pp
54 The blackhole behaviour is useful to slow down anyone who is port scanning
55 your system, in order to try and detect vulnerable services on your system.
56 It could potentially also slow down someone who is attempting a denial
57 of service against your system.
58 .Pp
59 .Sh WARNING
60 The TCP and UDP blackhole features should not be regarded as a replacement
61 for
62 .Xr ipfw 8
63 as a tool for firewalling your system.  In order to create a highly
64 secure system, you should use
65 .Xr ipfw 8
66 to protect your system, and not the blackhole feature.
67 .Pp
68 This mechanism is not a substitute for securing your system,
69 but should be used together with other security mechanisms.
70 .Pp
71 .Sh SEE ALSO
72 .Xr ip 4 ,
73 .Xr tcp 4 ,
74 .Xr udp 4 ,
75 .Xr ipfw 8 ,
76 .Xr sysctl 8
77 .Sh AUTHORS
78 .An Geoffrey M. Rehmet
79 .Sh HISTORY
80 The TCP and UDP
81 .Nm 
82 MIBs
83 first appeared in
84 .Fx 4.0 .