40 lines
1.1 KiB
Plaintext
40 lines
1.1 KiB
Plaintext
#
|
|
# Define a network where clients may be dynamically defined.
|
|
client dynamic {
|
|
#
|
|
# You MUST specify a netmask!
|
|
# IPv4 /32 or IPv6 /128 are NOT allowed!
|
|
ipaddr = 0.0.0.0/0
|
|
|
|
#
|
|
# Any other configuration normally found in a "client"
|
|
# entry can be used here.
|
|
|
|
#
|
|
# A shared secret does NOT have to be defined. It can
|
|
# be left out.
|
|
|
|
#
|
|
# Define the virtual server used to discover dynamic clients.
|
|
dynamic_clients = dynamic_clients
|
|
|
|
#
|
|
# The directory where client definitions are stored. This
|
|
# needs to be used ONLY if the client definitions are stored
|
|
# in flat-text files. Each file in that directory should be
|
|
# ONE and only one client definition. The name of the file
|
|
# should be the IP address of the client.
|
|
#
|
|
# If you are storing clients in SQL, this entry should not
|
|
# be used.
|
|
# directory = ${confdir}/dynamic-clients/
|
|
|
|
#
|
|
# Define the lifetime (in seconds) for dynamic clients.
|
|
# They will be cached for this lifetime, and deleted afterwards.
|
|
#
|
|
# If the lifetime is "0", then the dynamic client is never
|
|
# deleted. The only way to delete the client is to re-start
|
|
# the server.
|
|
lifetime = 10
|
|
} |