Adding office DHCP config
Change-Id: I91fd00eab5153ab4a53856dff7b58846feab1b4d
diff --git a/tools/test/cells/office b/tools/test/cells/office
index 2e282c6..c8dc599 100644
--- a/tools/test/cells/office
+++ b/tools/test/cells/office
@@ -4,5 +4,5 @@
export OC1="10.1.10.223"
unset ONOS_USE_SSH
-export ONOS_APPS="drivers,openflow,fwd,proxyarp,mobility"
+export ONOS_APPS="drivers,openflow,fwd,proxyarp,mobility,dhcp"
diff --git a/tools/test/configs/office-dhcp.json b/tools/test/configs/office-dhcp.json
new file mode 100644
index 0000000..994f5b9
--- /dev/null
+++ b/tools/test/configs/office-dhcp.json
@@ -0,0 +1,24 @@
+{
+ "apps": {
+ "org.onosproject.dhcp" : {
+ "dhcp" : {
+ "ip": "10.1.11.50",
+ "mac": "ca:fe:ca:fe:ca:fe",
+ "subnet": "255.255.252.0",
+ "broadcast": "10.1.11.255",
+ "router": "10.1.8.1",
+ "domain": "8.8.8.8",
+ "ttl": "63",
+ "lease": "300",
+ "renew": "150",
+ "rebind": "200"
+ },
+ "dhcpstore" : {
+ "delay": "3",
+ "timeout": "150",
+ "startip": "10.1.11.51",
+ "endip": "10.1.11.100"
+ }
+ }
+ }
+}