diff options
author | Francis Dupont <fdupont@isc.org> | 2017-01-28 22:51:45 +0100 |
---|---|---|
committer | Francis Dupont <fdupont@isc.org> | 2017-01-28 22:51:45 +0100 |
commit | 621218befb91c2db2e7f7201127c68e212cdc159 (patch) | |
tree | 8759f016673bc8f06de6d03534140122ab2b6faf /doc/examples/kea4/backends.json | |
parent | [5061] Added unit test and pgsql support (diff) | |
download | kea-621218befb91c2db2e7f7201127c68e212cdc159.tar.xz kea-621218befb91c2db2e7f7201127c68e212cdc159.zip |
[5061] Updated backends.json examples
Diffstat (limited to 'doc/examples/kea4/backends.json')
-rw-r--r-- | doc/examples/kea4/backends.json | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/doc/examples/kea4/backends.json b/doc/examples/kea4/backends.json index f097d3b055..5bafec0e7f 100644 --- a/doc/examples/kea4/backends.json +++ b/doc/examples/kea4/backends.json @@ -22,6 +22,7 @@ # dependencies or services running. # "lease-database": { # "type": "memfile", +# "persist": true, # "lfc-interval": 3600 # }, @@ -36,6 +37,7 @@ # "type": "mysql", # "name": "keatest", # "host": "localhost", +# "port": 3306, # "user": "keatest", # "password": "secret1", # "connect-timeout": 3 @@ -52,8 +54,10 @@ # "type": "pgsql", # "name": "keatest", # "host": "localhost", +# "port": 5432, # "user": "keatest", -# "password": "secret1" +# "password": "secret1", +# "connect-timeout": 3 # }, # 4. CQL (Cassandra) backend. Leases will be stored in Cassandra database. Make @@ -66,7 +70,8 @@ # "lease-database": { # "type": "cql", # "keyspace": "keatest", -# "contact_points": "192.0.2.1,192.0.2.2,192.0.2.3" +# "contact_points": "192.0.2.1,192.0.2.2,192.0.2.3", +# "port": 9042 # }, # Addresses will be assigned with a lifetime of 4000 seconds. |