X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=vnfs%2FvCPE%2Fscripts%2Fkea-dhcp4_no_hook.conf;fp=vnfs%2FvCPE%2Fscripts%2Fkea-dhcp4_no_hook.conf;h=5db8dccbef83a39d279191f1ea1b9a7ad4f98552;hb=d47f0cd6bb286fa013bcc1bf7321cdbc37cac400;hp=170b8f3cc750f15ef65d746f7cf0950370371f8a;hpb=8043ce8591b6c5f2d5296b4bbbd6716815716d44;p=demo.git diff --git a/vnfs/vCPE/scripts/kea-dhcp4_no_hook.conf b/vnfs/vCPE/scripts/kea-dhcp4_no_hook.conf index 170b8f3c..5db8dccb 100644 --- a/vnfs/vCPE/scripts/kea-dhcp4_no_hook.conf +++ b/vnfs/vCPE/scripts/kea-dhcp4_no_hook.conf @@ -2,8 +2,9 @@ "Dhcp4": { # For testing, you can use veth pair as described in README.md +# eth1 is the 10.2.0.1 interface on the vDHCP/vDNS server (CPE_PUBLIC) "interfaces-config": { - "interfaces": ["eth0" ] + "interfaces": ["eth1" ] }, "lease-database": { @@ -25,14 +26,18 @@ # otherwise the options won't be added at all. # Also keep in mind that if kea doesn't receive the desired values for some # reason, these values will be sent to the client. +# 10.2.0.10 is assigned to the webserver so reserve 10-19 for hosts on the CPE_PUBLIC network "subnet4": [ - { "subnet": "10.3.0.0/24", - "pools" : [ { "pool": "10.3.0.2 - 10.3.0.255"} ], - "next-server": "10.3.0.1", + { "subnet": "10.2.0.0/24", + "pools" : [ + { "pool": "10.2.0.2 - 10.2.0.9"}, + { "pool": "10.2.0.20 - 10.2.0.255"} + ], + "next-server": "10.2.0.1", "option-data": [ { "name": "routers", - "data": "10.3.0.1" + "data": "10.2.0.1" } ] }