Merge tag 'for-linus' of git://github.com/openrisc/linux
[linux/fpc-iii.git] / Documentation / networking / ip_dynaddr.rst
blobeacc0c780c7fd086780972786254ec583c555d71
1 .. SPDX-License-Identifier: GPL-2.0
3 ==================================
4 IP dynamic address hack-port v0.03
5 ==================================
7 This stuff allows diald ONESHOT connections to get established by
8 dynamically changing packet source address (and socket's if local procs).
9 It is implemented for TCP diald-box connections(1) and IP_MASQuerading(2).
11 If enabled\ [#]_ and forwarding interface has changed:
13   1)  Socket (and packet) source address is rewritten ON RETRANSMISSIONS
14       while in SYN_SENT state (diald-box processes).
15   2)  Out-bounded MASQueraded source address changes ON OUTPUT (when
16       internal host does retransmission) until a packet from outside is
17       received by the tunnel.
19 This is specially helpful for auto dialup links (diald), where the
20 ``actual`` outgoing address is unknown at the moment the link is
21 going up. So, the *same* (local AND masqueraded) connections requests that
22 bring the link up will be able to get established.
24 .. [#] At boot, by default no address rewriting is attempted.
26   To enable::
28      # echo 1 > /proc/sys/net/ipv4/ip_dynaddr
30   To enable verbose mode::
32     # echo 2 > /proc/sys/net/ipv4/ip_dynaddr
34   To disable (default)::
36      # echo 0 > /proc/sys/net/ipv4/ip_dynaddr
38 Enjoy!
40 Juanjo  <jjciarla@raiz.uncu.edu.ar>