Update INFO.yaml with new PTL
[demo.git] / vnfs / vCPE / scripts / kea-dhcp4_no_hook.conf
1 {
2 "Dhcp4":
3   {
4 # For testing, you can use veth pair as described in README.md
5 # eth1 is the 10.2.0.1 interface on the vDHCP/vDNS server (CPE_PUBLIC)
6   "interfaces-config": {
7     "interfaces": ["eth1" ]
8   },
9
10   "lease-database": {
11     "type": "memfile"
12   },
13
14   "expired-leases-processing": {
15     "reclaim-timer-wait-time": 10,
16     "flush-reclaimed-timer-wait-time": 25,
17     "hold-reclaimed-time": 3600,
18     "max-reclaim-leases": 100,
19     "max-reclaim-time": 250,
20     "unwarned-reclaim-cycles": 5
21   },
22
23   "valid-lifetime": 300,
24
25 # Ensure you set some sensible defaults for the siaddr and option-data,
26 # otherwise the options won't be added at all.
27 # Also keep in mind that if kea doesn't receive the desired values for some
28 # reason, these values will be sent to the client.
29 #   10.2.0.10 is assigned to the webserver so reserve 10-19 for hosts on the CPE_PUBLIC network
30   "subnet4": [
31       { "subnet": "10.2.0.0/24",
32             "pools" : [
33                   { "pool": "10.2.0.2 - 10.2.0.9"},
34                   { "pool": "10.2.0.20 - 10.2.0.255"}
35                 ],
36             "next-server": "10.2.0.1",
37             "option-data": [
38                        {
39                            "name": "routers",
40                            "data": "10.2.0.1"
41                        }
42                 ]
43       }
44   ]
45
46 },
47
48 "Logging":
49 {
50   "loggers": [
51     {
52       "name": "kea-dhcp4",
53       "output_options": [
54           {
55             "output": "/var/log/kea-dhcp4.log"
56           }
57       ],
58       "severity": "DEBUG",
59       "debuglevel": 0
60     },
61   ]
62 }
63
64 }