diff options
author | ficus <ficus@robocracy.org> | 2012-09-25 19:01:13 +0200 |
---|---|---|
committer | ficus <ficus@robocracy.org> | 2012-09-25 19:01:13 +0200 |
commit | 73d125b250b0e1741f8f7298226107566b33de61 (patch) | |
tree | 81620003c209d7a9c7d0d835beb57506f80f6aa3 /torouterui/templates/lan.html | |
parent | 79b260db495e94430d499906f321dc022c68fec1 (diff) | |
download | tui-73d125b250b0e1741f8f7298226107566b33de61.tar.gz tui-73d125b250b0e1741f8f7298226107566b33de61.zip |
dhcp settings for lan and wifi
Diffstat (limited to 'torouterui/templates/lan.html')
-rw-r--r-- | torouterui/templates/lan.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/torouterui/templates/lan.html b/torouterui/templates/lan.html index 09bcf0a..9b260bf 100644 --- a/torouterui/templates/lan.html +++ b/torouterui/templates/lan.html @@ -14,11 +14,14 @@ <legend>Address Configuration</legend> {{ lib.forminput(form, formerr, 'ipv4addr', 'IPv4 Address', '0.0.0.0') }} {{ lib.forminput(form, formerr, 'ipv4netmask', 'Netmask', '255.255.0.0') }} -{{ lib.forminput(form, formerr, 'ipv4gateway', 'Gateway IP Address', '0.0.0.0') }} <legend>DHCP Configuration</legend> +Make sure that the assigned addresses all fall within the netmask range +specified above! + {{ lib.forminput(form, formerr, 'dhcpbase', 'DHCP Range Base', '192.168.1.100') }} {{ lib.forminput(form, formerr, 'dhcptop', 'DHCP Range Top', '192.168.1.200') }} +{{ lib.forminput(form, formerr, 'dhcpnetmask', 'DHCP Netmask', '255.255.255.0') }} {{ lib.forminput(form, formerr, 'dhcptime', 'Lease Time', '12h') }} <div class="pull-right"> |