Document TCP options for clients and home servers.
[freeradius.git] / raddb / proxy.conf
index a577616..26ade44 100644 (file)
@@ -114,6 +114,8 @@ home_server localhost {
        #       acct      - Handles Accounting-Request packets
        #       auth+acct - Handles Access-Request packets at "port",
        #                   and Accounting-Request packets at "port + 1"
+       #       coa       - Handles CoA-Request and Disconnect-Request packets.
+       #                   See also raddb/sites-available/originate-coa
        type = auth
 
        #
@@ -162,10 +164,23 @@ home_server localhost {
        #
        #  Usually 1812 for type "auth", and  1813 for type "acct".
        #  Older servers may use 1645 and 1646.
+       #  Use 3799 for type "coa"
        #
        port = 1812
 
        #
+       #  The transport protocol.
+       #
+       #  If unspecified, defaults to "udp", which is the traditional
+       #  RADIUS transport.  It may also be "tcp", in which case TCP
+       #  will be used to talk to this home server.
+       #
+       #  When home servers are put into pools, the pool can contain
+       #  home servers with both UDP and TCP transports.
+       #
+       #proto = udp
+
+       #
        #  The shared secret use to "encrypt" and "sign" packets between
        #  FreeRADIUS and the home server.
        #
@@ -190,18 +205,71 @@ home_server localhost {
        ############################################################
 
        #
-       #  If the home server doesn't respond to the request within
-       #  this time, this server will consider the request dead, and
-       #  respond to the NAS with an Access-Reject.
+       #  You can optionally specify the source IP address used when
+       #  proxying requests to this home server.  When the src_ipaddr
+       #  it set, the server will automatically create a proxy
+       #  listener for that IP address.
+       #
+       #  If you specify this field for one home server, you will
+       #  likely need to specify it for ALL home servers.
+       #
+       #  If you don't care about the source IP address, leave this
+       #  entry commented.
+       #
+#      src_ipaddr = 127.0.0.1
+
+       #  RFC 5080 suggests that all clients SHOULD include it in an
+       #  Access-Request.  The configuration item below tells the
+       #  proxying server (i.e. this one) whether or not the home
+       #  server requires a Message-Authenticator attribute.  If it
+       #  is required (value set to "yes"), then all Access-Request
+       #  packets sent to that home server will have a
+       #  Message-Authenticator attribute.
+       #
+       #  allowed values: yes, no
+       require_message_authenticator = no
+
+       #
+       #  If the home server does not respond to a request within
+       #  this time, this server will initiate "zombie_period".
+       #
+       #  The response window is large because responses MAY be slow,
+       #  especially when proxying across the Internet.
        #
        #  Useful range of values: 5 to 60
        response_window = 20
 
        #
-       #  If the home server does not respond to ANY packets for
-       #  a certain time, consider it dead.  This time period is
-       #  called the "zombie" period, because the server is neither
-       #  alive nor dead.
+       #  If you want the old behavior of the server rejecting
+       #  proxied requests after "response_window" timeout, set
+       #  the following configuration item to "yes".
+       #
+       #  This configuration WILL be removed in a future release
+       #  If you believe you need it, email the freeradius-users
+       #  list, and explain why it should stay in the server.
+       #
+#      no_response_fail = no
+
+       #
+       #  If the home server does not respond to ANY packets during
+       #  the "zombie period", it will be considered to be dead.
+       #
+       #  A home server that is marked "zombie" will be used for
+       #  proxying as a low priority.  If there are live servers,
+       #  they will always be preferred to a zombie.  Requests will
+       #  be proxied to a zombie server ONLY when there are no
+       #  live servers.
+       #
+       #  Any request that is proxied to a home server will continue
+       #  to be sent to that home server until the home server is
+       #  marked dead.  At that point, it will fail over to another
+       #  server, if a live server is available.  If none is available,
+       #  then the "post-proxy-type fail" handler will be called.
+       #
+       #  If "status_check" below is something other than "none", then
+       #  the server will start sending status checks at the start of
+       #  the zombie period.  It will continue sending status checks
+       #  until the home server is marked "alive".
        #
        #  Useful range of values: 20 to 120
        zombie_period = 40
@@ -251,9 +319,9 @@ home_server localhost {
        #  As a result, we recommend enabling status checks, and
        #  we do NOT recommend using "revive_interval".
        #
-       #  If the "status_check" entry below is not "none", then the
-       #  "revive_interval" entry can be deleted, as it will not be
-       #  used.
+       #  The "revive_interval" is used ONLY if the "status_check"
+       #  entry below is not "none".  Otherwise, it will not be used,
+       #  and should be deleted.
        #
        #  Useful range of values: 60 to 3600
        revive_interval = 120
@@ -322,6 +390,85 @@ home_server localhost {
        #
        #  Useful range of values: 3 to 10
        num_answers_to_alive = 3
+
+       #
+       #  The configuration items in the next sub-section are used ONLY
+       #  when "type = coa".  It is ignored for all other type of home
+       #  servers.
+       #
+       #  See RFC 5080 for the definitions of the following terms.
+       #  RAND is a function (internal to FreeRADIUS) returning
+       #  random numbers between -0.1 and +0.1
+       #
+       #  First Re-transmit occurs after:
+       #
+       #        RT = IRT + RAND*IRT
+       #
+       #  Subsequent Re-transmits occur after:
+       #
+       #       RT = 2 * RTprev + RAND * RTprev
+       #
+       #  Re-trasnmits are capped at:
+       #
+       #       if (MRT && (RT > MRT)) RT = MRT + RAND * MRT
+       #
+       #  For a maximum number of attempts: MRC
+       #
+       #  For a maximum (total) period of time: MRD.
+       #
+       coa {
+               # Initial retransmit interval: 1..5
+               irt = 2
+
+               # Maximum Retransmit Timeout: 1..30 (0 == no maximum)
+               mrt = 16
+
+               # Maximum Retransmit Count: 1..20 (0 == retransmit forever)
+               mrc = 5
+
+               # Maximum Retransmit Duration: 5..60
+               mrd = 30
+       }
+
+       #
+       #  Connection limiting for home servers with "proto = tcp".
+       #
+       #  This section is ignored for other home servers.
+       #
+       limit {
+             #
+             #  Limit the number of TCP connections to the home server.
+             #
+             #  The default is 16.
+             #  Setting this to 0 means "no limit"
+             max_connections = 16
+
+             #
+             #  Limit the total number of requests sent over one
+             #  TCP connection.  After this number of requests, the
+             #  connection will be closed.  Any new packets that are
+             #  proxied to the home server will result in a new TCP
+             #  connection being made.
+             #
+             #  Setting this to 0 means "no limit"
+             max_requests = 0
+
+             #
+             #  The lifetime, in seconds, of a TCP connection.  After
+             #  this lifetime, the connection will be closed.
+             #
+             #  Setting this to 0 means "forever".
+             lifetime = 0
+
+             #
+             #  The idle timeout, in seconds, of a TCP connection.
+             #  If no packets have been sent over the connection for
+             #  this time, the connection will be closed.
+             #
+             #  Setting this to 0 means "no timeout".
+             idle_timeout = 0
+       }
+
 }
 
 # Sample virtual home server.