Adding office DHCP config
Change-Id: I91fd00eab5153ab4a53856dff7b58846feab1b4d
Showing
2 changed files
with
25 additions
and
1 deletions
... | @@ -4,5 +4,5 @@ export ONOS_NIC="10.1.10.*" | ... | @@ -4,5 +4,5 @@ export ONOS_NIC="10.1.10.*" |
4 | export OC1="10.1.10.223" | 4 | export OC1="10.1.10.223" |
5 | 5 | ||
6 | unset ONOS_USE_SSH | 6 | unset ONOS_USE_SSH |
7 | -export ONOS_APPS="drivers,openflow,fwd,proxyarp,mobility" | 7 | +export ONOS_APPS="drivers,openflow,fwd,proxyarp,mobility,dhcp" |
8 | 8 | ... | ... |
tools/test/configs/office-dhcp.json
0 → 100644
1 | +{ | ||
2 | + "apps": { | ||
3 | + "org.onosproject.dhcp" : { | ||
4 | + "dhcp" : { | ||
5 | + "ip": "10.1.11.50", | ||
6 | + "mac": "ca:fe:ca:fe:ca:fe", | ||
7 | + "subnet": "255.255.252.0", | ||
8 | + "broadcast": "10.1.11.255", | ||
9 | + "router": "10.1.8.1", | ||
10 | + "domain": "8.8.8.8", | ||
11 | + "ttl": "63", | ||
12 | + "lease": "300", | ||
13 | + "renew": "150", | ||
14 | + "rebind": "200" | ||
15 | + }, | ||
16 | + "dhcpstore" : { | ||
17 | + "delay": "3", | ||
18 | + "timeout": "150", | ||
19 | + "startip": "10.1.11.51", | ||
20 | + "endip": "10.1.11.100" | ||
21 | + } | ||
22 | + } | ||
23 | + } | ||
24 | +} |
-
Please register or login to post a comment