Navigation


Changeset 1396:188c82b6690b in freeDiameter for doc


Ignore:
Timestamp:
Nov 15, 2019, 7:38:30 PM (4 years ago)
Author:
Thomas Klausner <tk@giga.or.at>
Branch:
default
Phase:
public
Message:

Add ProcessingPeersPattern? and ProcessingPeersMinimum? parameters.

If this is configured, the process will accept all connections from
peers matching ProcessingPeersPattern?, but will NOT accept connections
from other peers until ProcessingPeersMinimum? peers of the first
type are connected.

This allows relays to only go online if there are enough worker
peers connected behind them.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • doc/freediameter.conf.sample

    r1326 r1396  
    8888# Default: 5 unidentified clients in paralel.
    8989#ThreadsPerServer = 5;
     90
     91# If this host is used as relay or proxy, it can be useful to limit
     92# connections from "outside" until enough processing nodes are available.
     93# This parameter defines a regex pattern for recognizing such nodes;
     94# Default: NO DEFAULT
     95#ProcessingPeersPattern = "worker[0-9]*.example.com";
     96
     97# This next parameter defines how many of these processing peers
     98# must be connected before CERs from other hosts are accepted.
     99# If this is set, ProcessingPeersPattern must also be defined.
     100# If unset or less than 1, ProcessingPeersPattern and this variable do nothing.
     101# Default: 0
     102#ProcessingPeersMinimum = 0;
    90103
    91104##############################################################
Note: See TracChangeset for help on using the changeset viewer.