Initial import from FreeBSD RELENG_4:
[dragonfly.git] / sbin / natd / natd.8
1 .\" $FreeBSD: src/sbin/natd/natd.8,v 1.27.2.13 2003/02/23 21:17:43 trhodes Exp $
2 .Dd June 27, 2000
3 .Dt NATD 8
4 .Os
5 .Sh NAME
6 .Nm natd
7 .Nd Network Address Translation daemon
8 .Sh SYNOPSIS
9 .Nm
10 .Bk -words
11 .Op Fl unregistered_only | u
12 .Op Fl log | l
13 .Op Fl proxy_only
14 .Op Fl reverse
15 .Op Fl deny_incoming | d
16 .Op Fl use_sockets | s
17 .Op Fl same_ports | m
18 .Op Fl verbose | v
19 .Op Fl dynamic
20 .Op Fl in_port | i Ar port
21 .Op Fl out_port | o Ar port
22 .Op Fl port | p Ar port
23 .Op Fl alias_address | a Ar address
24 .Op Fl target_address | t Ar address
25 .Op Fl interface | n Ar interface
26 .Op Fl proxy_rule Ar proxyspec
27 .Op Fl redirect_port Ar linkspec
28 .Op Fl redirect_proto Ar linkspec
29 .Op Fl redirect_address Ar linkspec
30 .Op Fl config | f Ar configfile
31 .Op Fl log_denied
32 .Op Fl log_facility Ar facility_name
33 .Op Fl punch_fw Ar firewall_range
34 .Op Fl log_ipfw_denied
35 .Ek
36 .Sh DESCRIPTION
37 The
38 .Nm
39 utility provides a Network Address Translation facility for use
40 with
41 .Xr divert 4
42 sockets under
43 .Fx .
44 It is intended for use with NICs - if you want to do NAT on a PPP link,
45 use the
46 .Fl nat
47 switch to
48 .Xr ppp 8 .
49 .Pp
50 The
51 .Nm
52 utility normally runs in the background as a daemon.
53 It is passed raw IP packets as they travel into and out of the machine,
54 and will possibly change these before re-injecting them back into the
55 IP packet stream.
56 .Pp
57 It changes all packets destined for another host so that their source
58 IP number is that of the current machine.
59 For each packet changed in this manner, an internal table entry is
60 created to record this fact.
61 The source port number is also changed to indicate the table entry
62 applying to the packet.
63 Packets that are received with a target IP of the current host are
64 checked against this internal table.
65 If an entry is found, it is used to determine the correct target IP
66 number and port to place in the packet.
67 .Pp
68 The following command line options are available:
69 .Bl -tag -width Fl
70 .It Fl log | l
71 Log various aliasing statistics and information to the file
72 .Pa /var/log/alias.log .
73 This file is truncated each time
74 .Nm
75 is started.
76 .It Fl deny_incoming | d
77 Do not pass incoming packets that have no
78 entry in the internal translation table.
79 .Pp
80 If this option is not used, then such a packet will be altered
81 using the rules in
82 .Fl target_address
83 below, and the entry will be made in the internal translation table.
84 .It Fl log_denied
85 Log denied incoming packets via
86 .Xr syslog 3
87 (see also
88 .Fl log_facility ) .
89 .It Fl log_facility Ar facility_name
90 Use specified log facility when logging information via
91 .Xr syslog 3 .
92 Argument
93 .Ar facility_name
94 is one of the keywords specified in
95 .Xr syslog.conf 5 .
96 .It Fl use_sockets | s
97 Allocate a
98 .Xr socket 2
99 in order to establish an FTP data or IRC DCC send connection.
100 This option uses more system resources, but guarantees successful
101 connections when port numbers conflict.
102 .It Fl same_ports | m
103 Try to keep the same port number when altering outgoing packets.
104 With this option, protocols such as RPC will have a better chance
105 of working.
106 If it is not possible to maintain the port number, it will be silently
107 changed as per normal.
108 .It Fl verbose | v
109 Do not call
110 .Xr daemon 3
111 on startup.
112 Instead, stay attached to the controlling terminal and display all packet
113 alterations to the standard output.
114 This option should only be used for debugging purposes.
115 .It Fl unregistered_only | u
116 Only alter outgoing packets with an
117 .Em unregistered
118 source address.
119 According to RFC 1918, unregistered source addresses are 10.0.0.0/8,
120 172.16.0.0/12 and 192.168.0.0/16.
121 .It Fl redirect_port Ar proto Xo
122 .Ar targetIP Ns : Ns Xo
123 .Ar targetPORT Ns Op - Ns Ar targetPORT Xc
124 .Op Ar aliasIP Ns : Ns Xo
125 .Ar aliasPORT Ns Op - Ns Ar aliasPORT Xc
126 .Oo Ar remoteIP Ns Oo : Ns
127 .Ar remotePORT Ns Op - Ns Ar remotePORT
128 .Oc Oc
129 .Xc
130 Redirect incoming connections arriving to given port(s) to another host
131 and port(s).
132 Argument
133 .Ar proto
134 is either
135 .Ar tcp
136 or
137 .Ar udp ,
138 .Ar targetIP
139 is the desired target IP number,
140 .Ar targetPORT
141 is the desired target port number or range,
142 .Ar aliasPORT
143 is the requested port number or range, and
144 .Ar aliasIP
145 is the aliasing address.
146 Arguments
147 .Ar remoteIP
148 and
149 .Ar remotePORT
150 can be used to specify the connection more accurately if necessary.
151 The
152 .Ar targetPORT
153 range and
154 .Ar aliasPORT
155 range need not be the same numerically, but must have the same size.
156 If
157 .Ar remotePORT
158 is not specified, it is assumed to be all ports.
159 If
160 .Ar remotePORT
161 is specified, it must match the size of
162 .Ar targetPORT ,
163 or be 0 (all ports).
164 For example, the argument
165 .Pp
166 .Dl Ar tcp inside1:telnet 6666
167 .Pp
168 means that incoming TCP packets destined for port 6666 on this machine
169 will be sent to the telnet port on the inside1 machine.
170 .Pp
171 .Dl Ar tcp inside2:2300-2399 3300-3399
172 .Pp
173 will redirect incoming connections on ports 3300-3399 to host
174 inside2, ports 2300-2399.
175 The mapping is 1:1 meaning port 3300 maps to 2300, 3301 maps to 2301, etc.
176 .It Fl redirect_proto Ar proto localIP Oo
177 .Ar publicIP Op Ar remoteIP
178 .Oc
179 Redirect incoming IP packets of protocol
180 .Ar proto
181 (see
182 .Xr protocols 5 )
183 destined for
184 .Ar publicIP
185 address to a
186 .Ar localIP
187 address and vice versa.
188 .Pp
189 If
190 .Ar publicIP
191 is not specified, then the default aliasing address is used.
192 If
193 .Ar remoteIP
194 is specified, then only packets coming from/to
195 .Ar remoteIP
196 will match the rule.
197 .It Fl redirect_address Ar localIP publicIP
198 Redirect traffic for public IP address to a machine on the local
199 network.
200 This function is known as
201 .Em static NAT .
202 Normally static NAT is useful if your ISP has allocated a small block
203 of IP addresses to you, but it can even be used in the case of single
204 address:
205 .Pp
206 .Dl Ar redirect_address 10.0.0.8 0.0.0.0
207 .Pp
208 The above command would redirect all incoming traffic
209 to machine 10.0.0.8.
210 .Pp
211 If several address aliases specify the same public address
212 as follows
213 .Bd -literal -offset indent
214 .Ar redirect_address 192.168.0.2 public_addr
215 .Ar redirect_address 192.168.0.3 public_addr
216 .Ar redirect_address 192.168.0.4 public_addr
217 .Ed
218 .Pp
219 the incoming traffic will be directed to the last
220 translated local address (192.168.0.4), but outgoing
221 traffic from the first two addresses will still be aliased
222 to appear from the specified
223 .Ar public_addr .
224 .It Fl redirect_port Ar proto Xo
225 .Ar targetIP Ns : Ns Xo
226 .Ar targetPORT Ns Oo , Ns
227 .Ar targetIP Ns : Ns Xo
228 .Ar targetPORT Ns Oo , Ns
229 .Ar ...\&
230 .Oc Oc
231 .Xc
232 .Xc
233 .Op Ar aliasIP Ns : Ns Xo
234 .Ar aliasPORT
235 .Xc
236 .Oo Ar remoteIP Ns
237 .Op : Ns Ar remotePORT
238 .Oc
239 .Xc
240 .It Fl redirect_address Xo
241 .Ar localIP Ns Oo , Ns
242 .Ar localIP Ns Oo , Ns
243 .Ar ...\&
244 .Oc Oc
245 .Ar publicIP
246 .Xc
247 These forms of
248 .Fl redirect_port
249 and
250 .Fl redirect_address
251 are used to transparently offload network load on a single server and
252 distribute the load across a pool of servers.
253 This function is known as
254 .Em LSNAT
255 (RFC 2391).
256 For example, the argument
257 .Pp
258 .Dl Ar tcp www1:http,www2:http,www3:http www:http
259 .Pp
260 means that incoming HTTP requests for host www will be transparently
261 redirected to one of the www1, www2 or www3, where a host is selected
262 simply on a round-robin basis, without regard to load on the net.
263 .It Fl dynamic
264 If the
265 .Fl n
266 or
267 .Fl interface
268 option is used,
269 .Nm
270 will monitor the routing socket for alterations to the
271 .Ar interface
272 passed.
273 If the interface's IP number is changed,
274 .Nm
275 will dynamically alter its concept of the alias address.
276 .It Fl in_port | i Ar port
277 Read from and write to
278 .Xr divert 4
279 port
280 .Ar port ,
281 treating all packets as
282 .Dq incoming .
283 .It Fl out_port | o Ar port
284 Read from and write to
285 .Xr divert 4
286 port
287 .Ar port ,
288 treating all packets as
289 .Dq outgoing .
290 .It Fl port | p Ar port
291 Read from and write to
292 .Xr divert 4
293 port
294 .Ar port ,
295 distinguishing packets as
296 .Dq incoming
297 or
298 .Dq outgoing
299 using the rules specified in
300 .Xr divert 4 .
301 If
302 .Ar port
303 is not numeric, it is searched for in the
304 .Xr services 5
305 database.
306 If this option is not specified, the divert port named
307 .Ar natd
308 will be used as a default.
309 .It Fl alias_address | a Ar address
310 Use
311 .Ar address
312 as the aliasing address.
313 If this option is not specified, the
314 .Fl interface
315 option must be used.
316 The specified address is usually the address assigned to the
317 .Dq public
318 network interface.
319 .Pp
320 All data passing
321 .Em out
322 will be rewritten with a source address equal to
323 .Ar address .
324 All data coming
325 .Em in
326 will be checked to see if it matches any already-aliased outgoing
327 connection.
328 If it does, the packet is altered accordingly.
329 If not, all
330 .Fl redirect_port ,
331 .Fl redirect_proto
332 and
333 .Fl redirect_address
334 assignments are checked and actioned.
335 If no other action can be made and if
336 .Fl deny_incoming
337 is not specified, the packet is delivered to the local machine
338 using the rules specified in
339 .Fl target_address
340 option below.
341 .It Fl t | target_address Ar address
342 Set the target address.
343 When an incoming packet not associated with any pre-existing link
344 arrives at the host machine, it will be sent to the specified
345 .Ar address .
346 .Pp
347 The target address may be set to
348 .Ar 255.255.255.255 ,
349 in which case all new incoming packets go to the alias address set by
350 .Fl alias_address
351 or
352 .Fl interface .
353 .Pp
354 If this option is not used, or called with the argument
355 .Ar 0.0.0.0 ,
356 then all new incoming packets go to the address specified in
357 the packet.
358 This allows external machines to talk directly to internal machines if
359 they can route packets to the machine in question.
360 .It Fl interface | n Ar interface
361 Use
362 .Ar interface
363 to determine the aliasing address.
364 If there is a possibility that the IP number associated with
365 .Ar interface
366 may change, the
367 .Fl dynamic
368 option should also be used.
369 If this option is not specified, the
370 .Fl alias_address
371 option must be used.
372 .Pp
373 The specified
374 .Ar interface
375 is usually the
376 .Dq public
377 (or
378 .Dq external )
379 network interface.
380 .It Fl config | f Ar file
381 Read configuration from
382 .Ar file .
383 A
384 .Ar file
385 should contain a list of options, one per line, in the same form
386 as the long form of the above command line options.
387 For example, the line
388 .Pp
389 .Dl alias_address 158.152.17.1
390 .Pp
391 would specify an alias address of 158.152.17.1.
392 Options that do not take an argument are specified with an argument of
393 .Ar yes
394 or
395 .Ar no
396 in the configuration file.
397 For example, the line
398 .Pp
399 .Dl log yes
400 .Pp
401 is synonymous with
402 .Fl log .
403 .Pp
404 Trailing spaces and empty lines are ignored.
405 A
406 .Ql \&#
407 sign will mark the rest of the line as a comment.
408 .It Fl reverse
409 This option makes
410 .Nm
411 reverse the way it handles
412 .Dq incoming
413 and
414 .Dq outgoing
415 packets, allowing it to operate on the
416 .Dq internal
417 network interface rather than the
418 .Dq external
419 one.
420 .Pp
421 This can be useful in some transparent proxying situations
422 when outgoing traffic is redirected to the local machine
423 and
424 .Nm
425 is running on the internal interface (it usually runs on the
426 external interface).
427 .It Fl proxy_only
428 Force
429 .Nm
430 to perform transparent proxying only.
431 Normal address translation is not performed.
432 .It Fl proxy_rule Xo
433 .Op Ar type encode_ip_hdr | encode_tcp_stream
434 .Ar port xxxx
435 .Ar server a.b.c.d:yyyy
436 .Xc
437 Enable transparent proxying.
438 Outgoing TCP packets with the given port going through this
439 host to any other host are redirected to the given server and port.
440 Optionally, the original target address can be encoded into the packet.
441 Use
442 .Ar encode_ip_hdr
443 to put this information into the IP option field or
444 .Ar encode_tcp_stream
445 to inject the data into the beginning of the TCP stream.
446 .It Fl punch_fw Xo
447 .Ar basenumber Ns : Ns Ar count
448 .Xc
449 This option directs
450 .Nm
451 to
452 .Dq punch holes
453 in an
454 .Xr ipfirewall 4
455 based firewall for FTP/IRC DCC connections.
456 This is done dynamically by installing temporary firewall rules which
457 allow a particular connection (and only that connection) to go through
458 the firewall.
459 The rules are removed once the corresponding connection terminates.
460 .Pp
461 A maximum of
462 .Ar count
463 rules starting from the rule number
464 .Ar basenumber
465 will be used for punching firewall holes.
466 The range will be cleared for all rules on startup.
467 .It Fl log_ipfw_denied
468 Log when a packet cannot be re-injected because an
469 .Xr ipfw 8
470 rule blocks it.
471 This is the default with
472 .Fl verbose .
473 .El
474 .Sh RUNNING NATD
475 The following steps are necessary before attempting to run
476 .Nm :
477 .Bl -enum
478 .It
479 Build a custom kernel with the following options:
480 .Bd -literal -offset indent
481 options IPFIREWALL
482 options IPDIVERT
483 .Ed
484 .Pp
485 Refer to the handbook for detailed instructions on building a custom
486 kernel.
487 .It
488 Ensure that your machine is acting as a gateway.
489 This can be done by specifying the line
490 .Pp
491 .Dl gateway_enable=YES
492 .Pp
493 in the
494 .Pa /etc/rc.conf
495 file or using the command
496 .Pp
497 .Dl "sysctl net.inet.ip.forwarding=1"
498 .Pp
499 .It
500 If you use the
501 .Fl interface
502 option, make sure that your interface is already configured.
503 If, for example, you wish to specify
504 .Ql tun0
505 as your
506 .Ar interface ,
507 and you are using
508 .Xr ppp 8
509 on that interface, you must make sure that you start
510 .Nm ppp
511 prior to starting
512 .Nm .
513 .El
514 .Pp
515 Running
516 .Nm
517 is fairly straight forward.
518 The line
519 .Pp
520 .Dl natd -interface ed0
521 .Pp
522 should suffice in most cases (substituting the correct interface name).
523 Please check
524 .Xr rc.conf 5
525 on how to configure it to be started automatically during boot.
526 Once
527 .Nm
528 is running, you must ensure that traffic is diverted to
529 .Nm :
530 .Bl -enum
531 .It
532 You will need to adjust the
533 .Pa /etc/rc.firewall
534 script to taste.
535 If you are not interested in having a firewall, the
536 following lines will do:
537 .Bd -literal -offset indent
538 /sbin/ipfw -f flush
539 /sbin/ipfw add divert natd all from any to any via ed0
540 /sbin/ipfw add pass all from any to any
541 .Ed
542 .Pp
543 The second line depends on your interface (change
544 .Ql ed0
545 as appropriate).
546 .Pp
547 You should be aware of the fact that, with these firewall settings,
548 everyone on your local network can fake his source-address using your
549 host as gateway.
550 If there are other hosts on your local network, you are strongly
551 encouraged to create firewall rules that only allow traffic to and
552 from trusted hosts.
553 .Pp
554 If you specify real firewall rules, it is best to specify line 2 at
555 the start of the script so that
556 .Nm
557 sees all packets before they are dropped by the firewall.
558 .Pp
559 After translation by
560 .Nm ,
561 packets re-enter the firewall at the rule number following the rule number
562 that caused the diversion (not the next rule if there are several at the
563 same number).
564 .It
565 Enable your firewall by setting
566 .Pp
567 .Dl firewall_enable=YES
568 .Pp
569 in
570 .Pa /etc/rc.conf .
571 This tells the system startup scripts to run the
572 .Pa /etc/rc.firewall
573 script.
574 If you do not wish to reboot now, just run this by hand from the console.
575 NEVER run this from a remote session unless you put it into the background.
576 If you do, you will lock yourself out after the flush takes place, and
577 execution of
578 .Pa /etc/rc.firewall
579 will stop at this point - blocking all accesses permanently.
580 Running the script in the background should be enough to prevent this
581 disaster.
582 .El
583 .Sh SEE ALSO
584 .Xr divert 4 ,
585 .Xr protocols 5 ,
586 .Xr rc.conf 5 ,
587 .Xr services 5 ,
588 .Xr syslog.conf 5 ,
589 .Xr ipfw 8 ,
590 .Xr ppp 8
591 .Sh AUTHORS
592 This program is the result of the efforts of many people at different
593 times:
594 .Pp
595 .An Archie Cobbs Aq archie@FreeBSD.org
596 (divert sockets)
597 .An Charles Mott Aq cmott@scientech.com
598 (packet aliasing)
599 .An Eivind Eklund Aq perhaps@yes.no
600 (IRC support & misc additions)
601 .An Ari Suutari Aq suutari@iki.fi
602 (natd)
603 .An Dru Nelson Aq dnelson@redwoodsoft.com
604 (early PPTP support)
605 .An Brian Somers Aq brian@awfulhak.org
606 (glue)
607 .An Ruslan Ermilov Aq ru@FreeBSD.org
608 (natd, packet aliasing, glue)