aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPerry Mason <crazypark2@yahoo.dk>2009-03-06 16:51:05 +0100
committerPerry Mason <crazypark2@yahoo.dk>2009-03-06 16:51:05 +0100
commit0054eca5a325e34b4f9f463d982685b6b92deff2 (patch)
tree54c9e9b10e0be98e48ba6aedbce0f01a6f065eb7
parent9154cf219365944fe9b1423ac1622f2df4390849 (diff)
downloadpfsense-packages-0054eca5a325e34b4f9f463d982685b6b92deff2.tar.gz
pfsense-packages-0054eca5a325e34b4f9f463d982685b6b92deff2.tar.bz2
pfsense-packages-0054eca5a325e34b4f9f463d982685b6b92deff2.zip
Fit123 says to git track them all
-rw-r--r--config/Fit123/bin/code-red/background.gifbin0 -> 112090 bytes
-rw-r--r--config/Fit123/bin/code-red/footer.pngbin0 -> 23360 bytes
-rw-r--r--config/Fit123/bin/code-red/header.pngbin0 -> 31124 bytes
-rw-r--r--config/Fit123/bin/ltsp/services_dhcp.abc642
-rw-r--r--config/Fit123/ddns.xml69
-rw-r--r--config/Fit123/fit123.inc281
-rw-r--r--config/Fit123/fit123.xml75
7 files changed, 1067 insertions, 0 deletions
diff --git a/config/Fit123/bin/code-red/background.gif b/config/Fit123/bin/code-red/background.gif
new file mode 100644
index 00000000..3f0dc770
--- /dev/null
+++ b/config/Fit123/bin/code-red/background.gif
Binary files differ
diff --git a/config/Fit123/bin/code-red/footer.png b/config/Fit123/bin/code-red/footer.png
new file mode 100644
index 00000000..b668a615
--- /dev/null
+++ b/config/Fit123/bin/code-red/footer.png
Binary files differ
diff --git a/config/Fit123/bin/code-red/header.png b/config/Fit123/bin/code-red/header.png
new file mode 100644
index 00000000..06921877
--- /dev/null
+++ b/config/Fit123/bin/code-red/header.png
Binary files differ
diff --git a/config/Fit123/bin/ltsp/services_dhcp.abc b/config/Fit123/bin/ltsp/services_dhcp.abc
new file mode 100644
index 00000000..89548502
--- /dev/null
+++ b/config/Fit123/bin/ltsp/services_dhcp.abc
@@ -0,0 +1,642 @@
+<?php
+/* $Id$ */
+/*
+ services_dhcp.php
+ part of m0n0wall (http://m0n0.ch/wall)
+
+ Copyright (C) 2003-2004 Manuel Kasper <mk@neon1.net>.
+ All rights reserved.
+
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions are met:
+
+ 1. Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+
+ 2. Redistributions in binary form must reproduce the above copyright
+ notice, this list of conditions and the following disclaimer in the
+ documentation and/or other materials provided with the distribution.
+
+ THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
+ INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
+ AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
+ AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
+ OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
+ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+ INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
+ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ POSSIBILITY OF SUCH DAMAGE.
+*/
+
+require("guiconfig.inc");
+
+$if = $_GET['if'];
+if ($_POST['if'])
+ $if = $_POST['if'];
+
+/* if OLSRD is enabled, allow WAN to house DHCP. */
+if($config['installedpackages']['olsrd']) {
+ foreach($config['installedpackages']['olsrd']['config'] as $olsrd) {
+ if($olsrd['enable']) {
+ $iflist = array("lan" => "LAN", "wan" => "WAN");
+ $is_olsr_enabled = true;
+ break;
+ }
+ }
+}
+
+if(!$iflist)
+ $iflist = array("lan" => "LAN");
+
+for ($i = 1; isset($config['interfaces']['opt' . $i]); $i++) {
+ $oc = $config['interfaces']['opt' . $i];
+
+ if (isset($oc['enable']) && $oc['if'] && (!$oc['bridge'])) {
+ $iflist['opt' . $i] = $oc['descr'];
+ }
+}
+
+if (!$if || !isset($iflist[$if]))
+ $if = "lan";
+
+$pconfig['range_from'] = $config['dhcpd'][$if]['range']['from'];
+$pconfig['range_to'] = $config['dhcpd'][$if]['range']['to'];
+$pconfig['deftime'] = $config['dhcpd'][$if]['defaultleasetime'];
+$pconfig['maxtime'] = $config['dhcpd'][$if]['maxleasetime'];
+$pconfig['gateway'] = $config['dhcpd'][$if]['gateway'];
+list($pconfig['wins1'],$pconfig['wins2']) = $config['dhcpd'][$if]['winsserver'];
+list($pconfig['dns1'],$pconfig['dns2']) = $config['dhcpd'][$if]['dnsserver'];
+$pconfig['enable'] = isset($config['dhcpd'][$if]['enable']);
+$pconfig['denyunknown'] = isset($config['dhcpd'][$if]['denyunknown']);
+$pconfig['staticarp'] = isset($config['dhcpd'][$if]['staticarp']);
+$pconfig['ddnsdomain'] = $config['dhcpd'][$if]['ddnsdomain'];
+$pconfig['ddnsupdate'] = isset($config['dhcpd'][$if]['ddnsupdate']);
+list($pconfig['ntp1'],$pconfig['ntp2']) = $config['dhcpd'][$if]['ntpserver'];
+$pconfig['netboot'] = isset($config['dhcpd'][$if]['netboot']);
+$pconfig['nextserver'] = $config['dhcpd'][$if]['next-server'];
+$pconfig['filename'] = $config['dhcpd'][$if]['filename'];
+$pconfig['rootpath'] = $config['dhcpd'][$if]['rootpath'];
+$pconfig['failover_peerip'] = $config['dhcpd'][$if]['failover_peerip'];
+$pconfig['netmask'] = $config['dhcpd'][$if]['netmask'];
+
+$ifcfg = $config['interfaces'][$if];
+
+/* set the enabled flag which will tell us if DHCP relay is enabled
+ * on any interface. We will use this to disable DHCP server since
+ * the two are not compatible with each other.
+ */
+
+$dhcrelay_enabled = false;
+$dhcrelaycfg = $config['dhcrelay'];
+
+if(is_array($dhcrelaycfg)) {
+ foreach ($dhcrelaycfg as $dhcrelayif => $dhcrelayifconf) {
+ if (isset($dhcrelayifconf['enable']) &&
+ (($dhcrelayif == "lan") ||
+ (isset($config['interfaces'][$dhcrelayif]['enable']) &&
+ $config['interfaces'][$dhcrelayif]['if'] && (!$config['interfaces'][$dhcrelayif]['bridge']))))
+ $dhcrelay_enabled = true;
+ }
+}
+
+
+if (!is_array($config['dhcpd'][$if]['staticmap'])) {
+ $config['dhcpd'][$if]['staticmap'] = array();
+}
+staticmaps_sort($if);
+$a_maps = &$config['dhcpd'][$if]['staticmap'];
+
+function is_inrange($test, $start, $end) {
+ if ( (ip2long($test) < ip2long($end)) && (ip2long($test) > ip2long($start)) )
+ return true;
+ else
+ return false;
+}
+
+if ($_POST) {
+
+ unset($input_errors);
+
+ $pconfig = $_POST;
+
+ /* input validation */
+ if ($_POST['enable']) {
+ $reqdfields = explode(" ", "range_from range_to");
+ $reqdfieldsn = explode(",", "Range begin,Range end");
+
+ do_input_validation($_POST, $reqdfields, $reqdfieldsn, &$input_errors);
+
+ foreach($a_maps as $mapent) {
+ if(is_inrange($mapent['ipaddr'], $_POST['range_from'], $_POST['range_to'])) {
+ $input_errors[] = "{$mapent['ipaddr']} is inside the range you specified.";
+ }
+
+ }
+
+ if (($_POST['range_from'] && !is_ipaddr($_POST['range_from']))) {
+ $input_errors[] = "A valid range must be specified.";
+ }
+ if (($_POST['range_to'] && !is_ipaddr($_POST['range_to']))) {
+ $input_errors[] = "A valid range must be specified.";
+ }
+ if (($_POST['gateway'] && !is_ipaddr($_POST['gateway']))) {
+ $input_errors[] = "A valid IP address must be specified for the gateway.";
+ }
+ if (($_POST['wins1'] && !is_ipaddr($_POST['wins1'])) || ($_POST['wins2'] && !is_ipaddr($_POST['wins2']))) {
+ $input_errors[] = "A valid IP address must be specified for the primary/secondary WINS servers.";
+ }
+ if (($_POST['dns1'] && !is_ipaddr($_POST['dns1'])) || ($_POST['dns2'] && !is_ipaddr($_POST['dns2']))) {
+ $input_errors[] = "A valid IP address must be specified for the primary/secondary DNS servers.";
+ }
+ if ($_POST['deftime'] && (!is_numeric($_POST['deftime']) || ($_POST['deftime'] < 60))) {
+ $input_errors[] = "The default lease time must be at least 60 seconds.";
+ }
+ if ($_POST['maxtime'] && (!is_numeric($_POST['maxtime']) || ($_POST['maxtime'] < 60) || ($_POST['maxtime'] <= $_POST['deftime']))) {
+ $input_errors[] = "The maximum lease time must be at least 60 seconds and higher than the default lease time.";
+ }
+ if (($_POST['ddnsdomain'] && !is_domain($_POST['ddnsdomain']))) {
+ $input_errors[] = "A valid domain name must be specified for the dynamic DNS registration.";
+ }
+ if (($_POST['ntp1'] && !is_ipaddr($_POST['ntp1'])) || ($_POST['ntp2'] && !is_ipaddr($_POST['ntp2']))) {
+ $input_errors[] = "A valid IP address must be specified for the primary/secondary NTP servers.";
+ }
+ if (($_POST['nextserver'] && !is_ipaddr($_POST['nextserver']))) {
+ $input_errors[] = "A valid IP address must be specified for the network boot server.";
+ }
+
+
+ if (!$input_errors) {
+ /* make sure the range lies within the current subnet */
+ $subnet_start = (ip2long($ifcfg['ipaddr']) & gen_subnet_mask_long($ifcfg['subnet']));
+ $subnet_end = (ip2long($ifcfg['ipaddr']) | (~gen_subnet_mask_long($ifcfg['subnet'])));
+
+ if ((ip2long($_POST['range_from']) < $subnet_start) || (ip2long($_POST['range_from']) > $subnet_end) ||
+ (ip2long($_POST['range_to']) < $subnet_start) || (ip2long($_POST['range_to']) > $subnet_end)) {
+ $input_errors[] = "The specified range lies outside of the current subnet.";
+ }
+
+ if (ip2long($_POST['range_from']) > ip2long($_POST['range_to']))
+ $input_errors[] = "The range is invalid (first element higher than second element).";
+
+ /* make sure that the DHCP Relay isn't enabled on this interface */
+ if (isset($config['dhcrelay'][$if]['enable']))
+ $input_errors[] = "You must disable the DHCP relay on the {$iflist[$if]} interface before enabling the DHCP server.";
+ }
+ }
+
+ if (!$input_errors) {
+ $config['dhcpd'][$if]['range']['from'] = $_POST['range_from'];
+ $config['dhcpd'][$if]['range']['to'] = $_POST['range_to'];
+ $config['dhcpd'][$if]['defaultleasetime'] = $_POST['deftime'];
+ $config['dhcpd'][$if]['maxleasetime'] = $_POST['maxtime'];
+ $config['dhcpd'][$if]['netmask'] = $_POST['netmask'];
+ $previous = $config['dhcpd'][$if]['failover_peerip'];
+ if($previous <> $_POST['failover_peerip']) {
+ mwexec("rm -rf /var/dhcpd/var/db/*");
+ }
+ $config['dhcpd'][$if]['failover_peerip'] = $_POST['failover_peerip'];
+
+ unset($config['dhcpd'][$if]['winsserver']);
+ if ($_POST['wins1'])
+ $config['dhcpd'][$if]['winsserver'][] = $_POST['wins1'];
+ if ($_POST['wins2'])
+ $config['dhcpd'][$if]['winsserver'][] = $_POST['wins2'];
+
+ unset($config['dhcpd'][$if]['dnsserver']);
+ if ($_POST['dns1'])
+ $config['dhcpd'][$if]['dnsserver'][] = $_POST['dns1'];
+ if ($_POST['dns2'])
+ $config['dhcpd'][$if]['dnsserver'][] = $_POST['dns2'];
+
+ $config['dhcpd'][$if]['gateway'] = $_POST['gateway'];
+ $config['dhcpd'][$if]['denyunknown'] = ($_POST['denyunknown']) ? true : false;
+ $config['dhcpd'][$if]['enable'] = ($_POST['enable']) ? true : false;
+ $config['dhcpd'][$if]['staticarp'] = ($_POST['staticarp']) ? true : false;
+ $config['dhcpd'][$if]['ddnsdomain'] = $_POST['ddnsdomain'];
+ $config['dhcpd'][$if]['ddnsupdate'] = ($_POST['ddnsupdate']) ? true : false;
+
+ unset($config['dhcpd'][$if]['ntpserver']);
+ if ($_POST['ntp1'])
+ $config['dhcpd'][$if]['ntpserver'][] = $_POST['ntp1'];
+ if ($_POST['ntp2'])
+ $config['dhcpd'][$if]['ntpserver'][] = $_POST['ntp2'];
+
+ $config['dhcpd'][$if]['netboot'] = ($_POST['netboot']) ? true : false;
+ $config['dhcpd'][$if]['next-server'] = $_POST['nextserver'];
+ $config['dhcpd'][$if]['filename'] = $_POST['filename'];
+ $config['dhcpd'][$if]['rootpath'] = $_POST['rootpath'];
+
+ write_config();
+
+ /* static arp configuration */
+ interfaces_staticarp_configure($if);
+
+ $retval = 0;
+ $retvaldhcp = 0;
+ $retvaldns = 0;
+ config_lock();
+ /* dnsmasq_configure calls dhcpd_configure */
+ /* no need to restart dhcpd twice */
+ if (isset($config['dnsmasq']['regdhcpstatic'])) {
+ $retvaldns = services_dnsmasq_configure();
+ if ($retvaldns == 0) {
+ if (file_exists($d_hostsdirty_path))
+ unlink($d_hostsdirty_path);
+ if (file_exists($d_staticmapsdirty_path))
+ unlink($d_staticmapsdirty_path);
+ }
+ } else {
+ $retvaldhcp = services_dhcpd_configure();
+ if ($retvaldhcp == 0) {
+ if (file_exists($d_staticmapsdirty_path))
+ unlink($d_staticmapsdirty_path);
+ }
+ }
+ config_unlock();
+ if($retvaldhcp == 1 || $retvaldns == 1)
+ $retval = 1;
+ $savemsg = get_std_save_message($retval);
+ }
+}
+
+if ($_GET['act'] == "del") {
+ if ($a_maps[$_GET['id']]) {
+ unset($a_maps[$_GET['id']]);
+ write_config();
+ if(isset($config['dhcpd'][$if]['enable'])) {
+ touch($d_staticmapsdirty_path);
+ if (isset($config['dnsmasq']['regdhcpstatic']))
+ touch($d_hostsdirty_path);
+ }
+ header("Location: services_dhcp.php?if={$if}");
+ exit;
+ }
+}
+
+$pgtitle = "Services: DHCP server";
+include("head.inc");
+
+?>
+
+<script type="text/javascript" language="JavaScript">
+
+function enable_change(enable_over) {
+ var endis;
+ endis = !(document.iform.enable.checked || enable_over);
+ document.iform.range_from.disabled = endis;
+ document.iform.range_to.disabled = endis;
+ document.iform.wins1.disabled = endis;
+ document.iform.wins2.disabled = endis;
+ document.iform.dns1.disabled = endis;
+ document.iform.dns2.disabled = endis;
+ document.iform.deftime.disabled = endis;
+ document.iform.maxtime.disabled = endis;
+ document.iform.gateway.disabled = endis;
+ document.iform.failover_peerip.disabled = endis;
+ document.iform.staticarp.disabled = endis;
+ document.iform.ddnsdomain.disabled = endis;
+ document.iform.ddnsupdate.disabled = endis;
+ document.iform.ntp1.disabled = endis;
+ document.iform.ntp2.disabled = endis;
+ document.iform.netboot.disabled = endis;
+ document.iform.nextserver.disabled = endis;
+ document.iform.filename.disabled = endis;
+ document.iform.rootpath.disabled = endis;
+ document.iform.denyunknown.disabled = endis;
+}
+
+function show_ddns_config() {
+ document.getElementById("showddnsbox").innerHTML='';
+ aodiv = document.getElementById('showddns');
+ aodiv.style.display = "block";
+}
+
+function show_ntp_config() {
+ document.getElementById("showntpbox").innerHTML='';
+ aodiv = document.getElementById('showntp');
+ aodiv.style.display = "block";
+}
+
+function show_netboot_config() {
+ document.getElementById("shownetbootbox").innerHTML='';
+ aodiv = document.getElementById('shownetboot');
+ aodiv.style.display = "block";
+}
+
+</script>
+
+<body link="#0000CC" vlink="#0000CC" alink="#0000CC">
+<?php include("fbegin.inc"); ?>
+<p class="pgtitle"><?=$pgtitle?></p>
+<form action="services_dhcp.php" method="post" name="iform" id="iform">
+<?php if ($input_errors) print_input_errors($input_errors); ?>
+<?php if ($savemsg) print_info_box($savemsg); ?>
+<?php
+ if ($dhcrelay_enabled) {
+ echo "DHCP Relay is currently enabled. Cannot enable the DHCP Server service while the DHCP Relay is enabled on any interface.";
+ include("fend.inc");
+ echo "</body>";
+ echo "</html>";
+ exit;
+ }
+?>
+<?php if (file_exists($d_staticmapsdirty_path)): ?><p>
+<?php print_info_box_np("The static mapping configuration has been changed.<br>You must apply the changes in order for them to take effect.");?><br>
+<?php endif; ?>
+<table width="100%" border="0" cellpadding="0" cellspacing="0">
+ <tr><td>
+ <?php
+ /* active tabs */
+ $tab_array = array();
+ $tabscounter = 0;
+ $i = 0;
+ foreach ($iflist as $ifent => $ifname) {
+ if ($ifent == $if)
+ $active = true;
+ else
+ $active = false;
+ $tab_array[] = array($ifname, $active, "services_dhcp.php?if={$ifent}");
+ }
+ display_top_tabs($tab_array);
+ ?>
+ </td></tr>
+ <tr>
+ <td>
+ <div id="mainarea">
+ <table class="tabcont" width="100%" border="0" cellpadding="6" cellspacing="0">
+ <tr>
+ <td width="22%" valign="top" class="vtable">&nbsp;</td>
+ <td width="78%" class="vtable">
+ <input name="enable" type="checkbox" value="yes" <?php if ($pconfig['enable']) echo "checked"; ?> onClick="enable_change(false)">
+ <strong>Enable DHCP server on
+ <?=htmlspecialchars($iflist[$if]);?>
+ interface</strong></td>
+ </tr>
+ <tr>
+ <td width="22%" valign="top" class="vtable">&nbsp;</td>
+ <td width="78%" class="vtable">
+ <input name="denyunknown" id="denyunknown" type="checkbox" value="yes" <?php if ($pconfig['denyunknown']) echo "checked"; ?>>
+ <strong>Deny unknown clients</strong><br>
+ If this is checked, only the clients defined below will get DHCP leases from this server. </td>
+ </tr>
+ <tr>
+ <td width="22%" valign="top" class="vncellreq">Subnet</td>
+ <td width="78%" class="vtable">
+ <?=gen_subnet($ifcfg['ipaddr'], $ifcfg['subnet']);?>
+ </td>
+ </tr>
+ <tr>
+ <td width="22%" valign="top" class="vncellreq">Subnet
+ mask</td>
+ <td width="78%" class="vtable">
+ <?=gen_subnet_mask($ifcfg['subnet']);?>
+ </td>
+ </tr>
+ <tr>
+ <td width="22%" valign="top" class="vncellreq">Available
+ range</td>
+ <td width="78%" class="vtable">
+ <?=long2ip(ip2long($ifcfg['ipaddr']) & gen_subnet_mask_long($ifcfg['subnet']));?>
+ -
+ <?=long2ip(ip2long($ifcfg['ipaddr']) | (~gen_subnet_mask_long($ifcfg['subnet']))); ?>
+ </td>
+ </tr>
+ <?php if($is_olsr_enabled): ?>
+ <tr>
+ <td width="22%" valign="top" class="vncellreq">Subnet Mask</td>
+ <td width="78%" class="vtable">
+ <select name="netmask" class="formfld" id="netmask">
+ <?php
+ for ($i = 32; $i > 0; $i--) {
+ if($i <> 31) {
+ echo "<option value=\"{$i}\" ";
+ if ($i == $pconfig['netmask']) echo "selected";
+ echo ">" . $i . "</option>";
+ }
+ }
+ ?>
+ </select>
+ </td>
+ </tr>
+ <?php endif; ?>
+ <tr>
+ <td width="22%" valign="top" class="vncellreq">Range</td>
+ <td width="78%" class="vtable">
+ <input name="range_from" type="text" class="formfld" id="range_from" size="20" value="<?=htmlspecialchars($pconfig['range_from']);?>">
+ &nbsp;to&nbsp; <input name="range_to" type="text" class="formfld" id="range_to" size="20" value="<?=htmlspecialchars($pconfig['range_to']);?>">
+ </td>
+ </tr>
+ <tr>
+ <td width="22%" valign="top" class="vncell">WINS servers</td>
+ <td width="78%" class="vtable">
+ <input name="wins1" type="text" class="formfld" id="wins1" size="20" value="<?=htmlspecialchars($pconfig['wins1']);?>"><br>
+ <input name="wins2" type="text" class="formfld" id="wins2" size="20" value="<?=htmlspecialchars($pconfig['wins2']);?>">
+ </td>
+ </tr>
+ <tr>
+ <td width="22%" valign="top" class="vncell">DNS servers</td>
+ <td width="78%" class="vtable">
+ <input name="dns1" type="text" class="formfld" id="dns1" size="20" value="<?=htmlspecialchars($pconfig['dns1']);?>"><br>
+ <input name="dns2" type="text" class="formfld" id="dns2" size="20" value="<?=htmlspecialchars($pconfig['dns2']);?>"><br>
+ NOTE: leave blank to use the system default DNS servers - this interface's IP if DNS forwarder is enabled, otherwise the servers configured on the General page.
+ </td>
+ </tr>
+ <tr>
+ <td width="22%" valign="top" class="vncell">Gateway</td>
+ <td width="78%" class="vtable">
+ <input name="gateway" type="text" class="formfld" id="gateway" size="20" value="<?=htmlspecialchars($pconfig['gateway']);?>"><br>
+ The default is to use the IP on this interface of the firewall as the gateway. Specify an alternate gateway here if this is not the correct gateway for your network.
+ </td>
+ </tr>
+ <tr>
+ <td width="22%" valign="top" class="vncell">Default lease
+ time</td>
+ <td width="78%" class="vtable">
+ <input name="deftime" type="text" class="formfld" id="deftime" size="10" value="<?=htmlspecialchars($pconfig['deftime']);?>">
+ seconds<br>
+ This is used for clients that do not ask for a specific
+ expiration time.<br>
+ The default is 7200 seconds.
+ </td>
+ </tr>
+ <tr>
+ <td width="22%" valign="top" class="vncell">Maximum lease
+ time</td>
+ <td width="78%" class="vtable">
+ <input name="maxtime" type="text" class="formfld" id="maxtime" size="10" value="<?=htmlspecialchars($pconfig['maxtime']);?>">
+ seconds<br>
+ This is the maximum lease time for clients that ask
+ for a specific expiration time.<br>
+ The default is 86400 seconds.
+ </td>
+ </tr>
+ <tr>
+ <td width="22%" valign="top" class="vncell">Failover peer IP:</td>
+ <td width="78%" class="vtable">
+ <input name="failover_peerip" type="text" class="formfld" id="failover_peerip" size="20" value="<?=htmlspecialchars($pconfig['failover_peerip']);?>"><br>
+ Leave blank to disable. Enter the REAL address of the other machine. Machines must be using CARP.
+ </td>
+ </tr>
+ <tr>
+ <td width="22%" valign="top" class="vncell">Static ARP</td>
+ <td width="78%" class="vtable">
+ <table>
+ <tr>
+ <td>
+ <input valign="middle" type="checkbox" value="yes" name="staticarp" id="staticarp" <?php if($pconfig['staticarp']) echo " checked"; ?>>&nbsp;
+ </td>
+ <td>
+ <b>Enable Static ARP entries</b>
+ </td>
+ </tr>
+ <tr>
+ <td>
+ &nbsp;
+ </td>
+ <td>
+ <span class="red"><strong>Note:</strong></span> Only the machines listed below will be able to communicate with the firewall on this NIC.
+ </td>
+ </tr>
+ </table>
+ </td>
+ </tr>
+ <tr>
+ <td width="22%" valign="top" class="vncell">Dynamic DNS</td>
+ <td width="78%" class="vtable">
+ <div id="showddnsbox">
+ <input type="button" onClick="show_ddns_config()" value="Advanced"></input> - Show Dynamic DNS</a>
+ </div>
+ <div id="showddns" style="display:none">
+ <input valign="middle" type="checkbox" value="yes" name="ddnsupdate" id="ddnsupdate" <?php if($pconfig['ddnsupdate']) echo " checked"; ?>>&nbsp;
+ <b>Enable registration of DHCP client names in DNS.</b><br />
+ <p>
+ <input name="ddnsdomain" type="text" class="formfld" id="ddnsdomain" size="20" value="<?=htmlspecialchars($pconfig['ddnsdomain']);?>"><br />
+ Note: Leave blank to disable dynamic DNS registration.<br />
+ Enter the dynamic DNS domain which will be used to register client names in the DNS server.
+ </div>
+ </td>
+ </tr>
+ <tr>
+ <td width="22%" valign="top" class="vncell">NTP servers</td>
+ <td width="78%" class="vtable">
+ <div id="showntpbox">
+ <input type="button" onClick="show_ntp_config()" value="Advanced"></input> - Show NTP configuration</a>
+ </div>
+ <div id="showntp" style="display:none">
+ <input name="ntp1" type="text" class="formfld" id="ntp1" size="20" value="<?=htmlspecialchars($pconfig['ntp1']);?>"><br>
+ <input name="ntp2" type="text" class="formfld" id="ntp2" size="20" value="<?=htmlspecialchars($pconfig['ntp2']);?>">
+ </div>
+ </td>
+ </tr>
+ <tr>
+ <td width="22%" valign="top" class="vncell">Enable Network booting</td>
+ <td width="78%" class="vtable">
+ <div id="shownetbootbox">
+ <input type="button" onClick="show_netboot_config()" value="Advanced"></input> - Show Network booting</a>
+ </div>
+ <div id="shownetboot" style="display:none">
+ <input valign="middle" type="checkbox" value="yes" name="netboot" id="netboot" <?php if($pconfig['netboot']) echo " checked"; ?>>&nbsp;
+ <b>Enables network booting.</b>
+ <p>
+ <input name="nextserver" type="text" class="formfld" id="nextserver" size="20" value="<?=htmlspecialchars($pconfig['nextserver']);?>"><br>
+ Enter the IP address from the network boot server.
+ <p>
+ <input name="filename" type="text" class="formfld" id="filename" size="20" value="<?=htmlspecialchars($pconfig['filename']);?>"><br>
+ Enter the filename used for network booting.<br />
+ Note: You need both a filename and a boot server configured for this to work!<br />
+ <p>
+ <input name="rootpath" type="text" class="formfld" id="rootpath" size="20" value="<?=htmlspecialchars($pconfig['rootpath']);?>"><br>
+ Enter option root-path.
+ </div>
+ </td>
+ </tr>
+ <tr>
+ <td width="22%" valign="top">&nbsp;</td>
+ <td width="78%">
+ <input name="if" type="hidden" value="<?=$if;?>">
+ <input name="Submit" type="submit" class="formbtn" value="Save" onclick="enable_change(true)">
+ </td>
+ </tr>
+ <tr>
+ <td width="22%" valign="top">&nbsp;</td>
+ <td width="78%"> <p><span class="vexpl"><span class="red"><strong>Note:<br>
+ </strong></span>The DNS servers entered in <a href="system.php">System:
+ General setup</a> (or the <a href="services_dnsmasq.php">DNS
+ forwarder</a>, if enabled) </span><span class="vexpl">will
+ be assigned to clients by the DHCP server.<br>
+ <br>
+ The DHCP lease table can be viewed on the <a href="diag_dhcp_leases.php">Status:
+ DHCP leases</a> page.<br>
+ </span></p>
+ </td>
+ </tr>
+ </table>
+ <table class="tabcont" width="100%" border="0" cellpadding="0" cellspacing="0">
+ <tr>
+ <td width="25%" class="listhdrr">MAC address</td>
+ <td width="15%" class="listhdrr">IP address</td>
+ <td width="20%" class="listhdrr">Hostname</td>
+ <td width="30%" class="listhdr">Description</td>
+ <td width="10%" class="list">
+ <table border="0" cellspacing="0" cellpadding="1">
+ <tr>
+ <td valign="middle" width="17"></td>
+ <td valign="middle"><a href="services_dhcp_edit.php?if=<?=$if;?>"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_plus.gif" width="17" height="17" border="0"></a></td>
+ </tr>
+ </table>
+ </td>
+ </tr>
+ <?php if(is_array($a_maps)): ?>
+ <?php $i = 0; foreach ($a_maps as $mapent): ?>
+ <?php if($mapent['mac'] <> "" or $mapent['ipaddr'] <> ""): ?>
+ <tr>
+ <td class="listlr" ondblclick="document.location='services_dhcp_edit.php?if=<?=$if;?>&id=<?=$i;?>';">
+ <?=htmlspecialchars($mapent['mac']);?>
+ </td>
+ <td class="listr" ondblclick="document.location='services_dhcp_edit.php?if=<?=$if;?>&id=<?=$i;?>';">
+ <?=htmlspecialchars($mapent['ipaddr']);?>&nbsp;
+ </td>
+ <td class="listr" ondblclick="document.location='services_dhcp_edit.php?if=<?=$if;?>&id=<?=$i;?>';">
+ <?=htmlspecialchars($mapent['hostname']);?>&nbsp;
+ </td>
+ <td class="listbg" ondblclick="document.location='services_dhcp_edit.php?if=<?=$if;?>&id=<?=$i;?>';">
+ <font color="#FFFFFF"><?=htmlspecialchars($mapent['descr']);?>&nbsp;</font>
+ </td>
+ <td valign="middle" nowrap class="list">
+ <table border="0" cellspacing="0" cellpadding="1">
+ <tr>
+ <td valign="middle"><a href="services_dhcp_edit.php?if=<?=$if;?>&id=<?=$i;?>"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_e.gif" width="17" height="17" border="0"></a></td>
+ <td valign="middle"><a href="services_dhcp.php?if=<?=$if;?>&act=del&id=<?=$i;?>" onclick="return confirm('Do you really want to delete this mapping?')"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_x.gif" width="17" height="17" border="0"></a></td>
+ </tr>
+ </table>
+ </td>
+ </tr>
+ <?php endif; ?>
+ <?php $i++; endforeach; ?>
+ <?php endif; ?>
+ <tr>
+ <td class="list" colspan="4"></td>
+ <td class="list">
+ <table border="0" cellspacing="0" cellpadding="1">
+ <tr>
+ <td valign="middle" width="17"></td>
+ <td valign="middle"><a href="services_dhcp_edit.php?if=<?=$if;?>"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_plus.gif" width="17" height="17" border="0"></a></td>
+ </tr>
+ </table>
+ </td>
+ </tr>
+ </table>
+ </div>
+ </td>
+ </tr>
+</table>
+</form>
+<script language="JavaScript">
+<!--
+enable_change(false);
+//-->
+</script>
+<?php include("fend.inc"); ?>
+</body>
+</html>
diff --git a/config/Fit123/ddns.xml b/config/Fit123/ddns.xml
new file mode 100644
index 00000000..95c74f88
--- /dev/null
+++ b/config/Fit123/ddns.xml
@@ -0,0 +1,69 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<!DOCTYPE packagegui SYSTEM "../schema/packages.dtd">
+<?xml-stylesheet type="text/xsl" href="./xsl/package.xsl"?>
+<packagegui>
+ <copyright></copyright>
+ <description>Describe your package here</description>
+ <requirements>Describe your package requirements here</requirements>
+ <faq>Currently there are no FAQ items provided.</faq>
+ <name>ddns</name>
+ <title>DDNS</title>
+ <include_file>/usr/local/pkg/fit123.inc</include_file>
+ <tabs>
+ <tab>
+ <text>Fit123</text>
+ <url>/pkg_edit.php?xml=fit123.xml&amp;id=0</url>
+ <active/>
+ </tab>
+ <tab>
+ <text>DDNS</text>
+ <url>/pkg_edit.php?xml=ddns.xml&amp;id=0</url>
+ </tab>
+ </tabs>
+ <fields>
+ <field>
+ <fielddescr>Dynamic DNS</fielddescr>
+ <fieldname>enable</fieldname>
+ <description>
+ A more customize way to update dynamic dns and mainly for IP's that doesn't change very often.&lt;br&gt;
+ Will check for ip change every 5 min via local shell script and will only contact provider on change.&lt;br&gt;
+ (needs a reboot, hopefully it can be changed )
+ </description>
+ <type>checkbox</type>
+ </field>
+ <field>
+ <fielddescr>Enter string that should be phrased</fielddescr>
+ <fieldname>line1</fieldname>
+ <description>
+ String for OpenDNS should look like:&lt;br&gt;
+ https://username:password@updates.opendns.com/nic/update?hostname=
+ </description>
+ <type>textarea</type>
+ <cols>80</cols>
+ <rows>1</rows>
+ </field>
+ <field>
+ <fielddescr>Enter 2th string that should be phrased</fielddescr>
+ <fieldname>line2</fieldname>
+ <description>Leave empty if not used</description>
+ <type>textarea</type>
+ <cols>80</cols>
+ <rows>1</rows>
+ </field>
+ <field>
+ <fielddescr>Enter 3th string that should be phrased</fielddescr>
+ <fieldname>line3</fieldname>
+ <description>Leave empty if not used</description>
+ <type>textarea</type>
+ <cols>80</cols>
+ <rows>1</rows>
+ </field>
+ </fields>
+ <custom_add_php_command></custom_add_php_command>
+ <custom_php_command_before_form>ddns_config();</custom_php_command_before_form>
+ <custom_php_after_form_command></custom_php_after_form_command>
+ <custom_php_validation_command></custom_php_validation_command>
+ <custom_php_resync_config_command></custom_php_resync_config_command>
+ <custom_php_install_command>Fit123_install_config();</custom_php_install_command>
+ <custom_php_deinstall_command>Fit123_install_deinstall();</custom_php_deinstall_command>
+</packagegui>
diff --git a/config/Fit123/fit123.inc b/config/Fit123/fit123.inc
new file mode 100644
index 00000000..d5856f01
--- /dev/null
+++ b/config/Fit123/fit123.inc
@@ -0,0 +1,281 @@
+<?php
+
+function Fit123_install_deinstall() {
+ conf_mount_rw();
+ config_lock();
+ exec("cd ..");
+ exec("rm -d -R /usr/local/pkg/Fit123");
+ conf_mount_ro();
+ config_unlock();
+}
+
+function Fit123_install_config() {
+ conf_mount_rw();
+ config_lock();
+ exec("cd ..");
+//Creating backup directory
+ exec("mkdir /usr/local/pkg/Fit123");
+ exec("mkdir /usr/local/pkg/Fit123/backup");
+//Copy orignal files to backup dir
+ //Date
+ exec("cp /usr/local/www/index.php /usr/local/pkg/Fit123/backup/");
+ //Code-Red Nervecenter Theme
+ exec("cp /usr/local/www/themes/nervecenter/all.css /usr/local/pkg/Fit123/backup/");
+ exec("cp /usr/local/www/themes/nervecenter/images/background.gif /usr/local/pkg/Fit123/backup/");
+ exec("cp /usr/local/www/themes/nervecenter/images/footer.png /usr/local/pkg/Fit123/backup/");
+ exec("cp /usr/local/www/themes/nervecenter/images/header.png /usr/local/pkg/Fit123/backup/");
+ //LTSP network boot Option
+ exec("cp /etc/inc/services.inc /usr/local/pkg/Fit123/backup/");
+ exec("cp /usr/local/www/services_dhcp.php /usr/local/pkg/Fit123/backup/");
+//Greate directories and downloading files to them
+ //Date
+ exec("mkdir /usr/local/pkg/Fit123/date");
+ exec("fetch -o /usr/local/pkg/Fit123/date/index.php http://pfsense.comuf.com/packages/config/Fit123/bin/date/index.abc");
+ //Code-Red Nervecenter Theme
+ exec("mkdir /usr/local/pkg/Fit123/code-red");
+ exec("fetch -o /usr/local/pkg/Fit123/code-red/ http://pfsense.comuf.com/packages/config/Fit123/bin/code-red/all.css");
+ exec("fetch -o /usr/local/pkg/Fit123/code-red/ http://pfsense.comuf.com/packages/config/Fit123/bin/code-red/background.gif");
+ exec("fetch -o /usr/local/pkg/Fit123/code-red/ http://pfsense.comuf.com/packages/config/Fit123/bin/code-red/footer.png");
+ exec("fetch -o /usr/local/pkg/Fit123/code-red/ http://pfsense.comuf.com/packages/config/Fit123/bin/code-red/header.png");
+ //LTSP 3th network boot Option
+ exec("mkdir /usr/local/pkg/Fit123/LTSP");
+ exec("fetch -o /usr/local/pkg/Fit123/LTSP/ http://pfsense.comuf.com/packages/config/Fit123/bin/ltsp/services.inc");
+ exec("fetch -o /usr/local/pkg/Fit123/LTSP/services_dhcp.php http://pfsense.comuf.com/packages/config/Fit123/bin/ltsp/services_dhcp.abc");
+ //AFC Reset's states after filter change
+ exec("fetch -o /usr/local/bin/reset_states.sh http://pfsense.comuf.com/packages/config/Fit123/bin/afc/reset_states.sh");
+ //DDNS
+ exec("mkdir /usr/local/pkg/Fit123/ddns");
+ conf_mount_ro();
+ config_unlock();
+}
+
+function Fit123_config() {
+global $config;
+
+ $adddate = $config['installedpackages']['fit123']['config'][0]['adddate'];
+ if($adddate)
+ exec("cp /usr/local/pkg/Fit123/date/index.php /usr/local/www/index.php");
+ else
+ exec("cp /usr/local/pkg/Fit123/backup/index.php /usr/local/www/index.php");
+
+ $codered = $config['installedpackages']['fit123']['config'][0]['codered'];
+ if($codered){
+ exec("cp /usr/local/pkg/Fit123/code-red/all.css /usr/local/www/themes/nervecenter/all.css");
+ exec("cp /usr/local/pkg/Fit123/code-red/background.gif /usr/local/www/themes/nervecenter/images/background.gif");
+ exec("cp /usr/local/pkg/Fit123/code-red/footer.png /usr/local/www/themes/nervecenter/images/footer.png");
+ exec("cp /usr/local/pkg/Fit123/code-red/header.png /usr/local/www/themes/nervecenter/images/header.png");
+ }
+ else
+ {
+ exec("cp /usr/local/pkg/Fit123/backup/all.css /usr/local/www/themes/nervecenter/all.css");
+ exec("cp /usr/local/pkg/Fit123/backup/background.gif /usr/local/www/themes/nervecenter/images/background.gif");
+ exec("cp /usr/local/pkg/Fit123/backup/footer.png /usr/local/www/themes/nervecenter/images/footer.png");
+ exec("cp /usr/local/pkg/Fit123/backup/header.png /usr/local/www/themes/nervecenter/images/header.png");
+ }
+
+ $ltsp = $config['installedpackages']['fit123']['config'][0]['ltsp'];
+ if($ltsp){
+ exec("cp /usr/local/pkg/Fit123/LTSP/services.inc /etc/inc/services.inc");
+ exec("cp /usr/local/pkg/Fit123/LTSP/services_dhcp.php /usr/local/www/services_dhcp.php");
+ }
+ else
+ {
+ exec("cp /usr/local/pkg/Fit123/backup/services.inc /etc/inc/services.inc");
+ exec("cp /usr/local/pkg/Fit123/backup/services_dhcp.php /usr/local/www/services_dhcp.php");
+ }
+
+ $afc = $config['installedpackages']['fit123']['config'][0]['afc'];
+ if($afc)
+ $config['system']['afterfilterchangeshellcmd'] = "/usr/local/bin/reset_states.sh";
+ else
+ $config['system']['afterfilterchangeshellcmd'] = "";
+}
+
+function ddns_config(){
+global $config;
+
+// Is DDNS enable or not
+ $hoba = $config['installedpackages']['ddns']['config'][0]['enable'];
+ if($hoba){
+ // Is DDNS.sh already added as a conjob
+ $task_key = '/usr/local/pkg/Fit123/ddns/DDNS.sh';
+ $x_name='';
+ $x=0;
+ foreach($config['cron']['item'] as $item) {
+ if($item['command']==$task_key) {
+ $x_name = $x;
+ }
+ $x++;
+ }
+ unset($x);
+ if(!$x_name > 0)
+ {
+ // Add cron job DDNS.sh to config.xml
+ $cron_item = array();
+ $cron_item['minute'] = "*/5";
+ $cron_item['hour'] = "*";
+ $cron_item['mday'] = "*";
+ $cron_item['month'] = "*";
+ $cron_item['wday'] = "*";
+ $cron_item['who'] = "root";
+ $cron_item['command'] = "/usr/local/pkg/Fit123/ddns/DDNS.sh";
+ $config['cron']['item'][] = $cron_item;
+ write_config();
+ configure_cron();
+ }
+ }
+ else
+ {
+ // Remove DDNS.sh cron entry from config.xml
+ $task_key = '/usr/local/pkg/Fit123/ddns/DDNS.sh';
+ $x_name='';
+ $x=0;
+ foreach($config['cron']['item'] as $item) {
+ if($item['command']==$task_key) {
+ $x_name = $x;
+ }
+ $x++;
+ }
+ unset($x);
+ if($x_name > 0)
+ {
+ unset($config['cron']['item'][$x_name]);
+ write_config();
+ }
+ configure_cron();
+ }
+
+// Created DDNS updater file ddns.php
+
+ //Get user entry from config.xml
+ $line1text = $config['installedpackages']['ddns']['config'][0]['line1'];
+ $line2text = $config['installedpackages']['ddns']['config'][0]['line2'];
+ $line3text = $config['installedpackages']['ddns']['config'][0]['line3'];
+
+ // Open ddns.php for writing
+ $hf = fopen("/usr/local/pkg/Fit123/ddns/ddns.php","w");
+ if(!$hf) {
+ log_error("could not open /usr/local/pkg/Fit123/ddns/ddns.php for writing");
+ exit;
+ }
+
+ // The start of the config file
+ fwrite($hf, '<?php');
+ fwrite($hf, "\n");
+ fwrite($hf, '$ch = curl_init();');
+ fwrite($hf, "\n");
+ fwrite($hf, 'curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);');
+ fwrite($hf, "\n");
+ // add to config file
+ if ($line1text != ""){
+ fwrite($hf, 'curl_setopt($ch, CURLOPT_URL, "');
+ fwrite($hf, $line1text);
+ fwrite($hf, '");');
+ fwrite($hf, "\n");
+ fwrite($hf, '$result = curl_exec($ch);');
+ fwrite($hf, "\n");
+ }
+ if ($line2text != ""){
+ fwrite($hf, 'curl_setopt($ch, CURLOPT_URL, "');
+ fwrite($hf, $line2text);
+ fwrite($hf, '");');
+ fwrite($hf, "\n");
+ fwrite($hf, '$result = curl_exec($ch);');
+ fwrite($hf, "\n");
+ }
+ if ($line3text != ""){
+ fwrite($hf, 'curl_setopt($ch, CURLOPT_URL, "');
+ fwrite($hf, $line3text);
+ fwrite($hf, '");');
+ fwrite($hf, "\n");
+ fwrite($hf, '$result = curl_exec($ch);');
+ fwrite($hf, "\n");
+ }
+ // The end of the config file
+ fwrite($hf, 'curl_close ($ch);');
+ fwrite($hf, "\n");
+ fwrite($hf, '?>');
+ fwrite($hf, "\n");
+ fclose($hf);
+
+// Create local shell script to watch for wan ip change
+
+ // Get WAN nic name from config.xml
+ $wannic = $config['interfaces']['wan']['if'];
+
+ //Open DDNS.sh for writing
+ $hfd = fopen("/usr/local/pkg/Fit123/ddns/DDNS.sh","w");
+ if(!$hfd) {
+ log_error("could not open /usr/local/pkg/Fit123/ddns/DDNS.sh for writing");
+ exit;
+ }
+ // The start of the config file
+ fwrite($hfd, '#!/bin/sh');
+ fwrite($hfd, "\n");
+ fwrite($hfd, 'ext_if="');
+ fwrite($hfd, $wannic);
+ fwrite($hfd, '"');
+ fwrite($hfd, "\n");
+ fwrite($hfd, 'dns_file="/usr/local/pkg/Fit123/ddns/DDNS.ip"');
+ fwrite($hfd, "\n");
+ fwrite($hfd, 'update_file="/usr/local/bin/php /usr/local/pkg/Fit123/ddns/ddns.php"');
+ fwrite($hfd, "\n");
+ fwrite($hfd, 'EXIT_SUCCESS=0');
+ fwrite($hfd, "\n");
+ fwrite($hfd, 'EXIT_FAILURE=1');
+ fwrite($hfd, "\n");
+ fwrite($hfd, 'if [ `id -u` -ne 0 ]');
+ fwrite($hfd, "\n");
+ fwrite($hfd, 'then');
+ fwrite($hfd, "\n");
+ fwrite($hfd, ' echo "Only root may run this program."');
+ fwrite($hfd, "\n");
+ fwrite($hfd, ' exit $EXIT_FAILURE');
+ fwrite($hfd, "\n");
+ fwrite($hfd, 'fi');
+ fwrite($hfd, "\n");
+ fwrite($hfd, 'get_ip(){');
+ fwrite($hfd, "\n");
+ fwrite($hfd, ' if [ -f $dns_file ]');
+ fwrite($hfd, "\n");
+ fwrite($hfd, ' then');
+ fwrite($hfd, "\n");
+ fwrite($hfd, ' registered_ip=`cat ${dns_file}`');
+ fwrite($hfd, "\n");
+ fwrite($hfd, ' else');
+ fwrite($hfd, "\n");
+ fwrite($hfd, ' registered_ip=""');
+ fwrite($hfd, "\n");
+ fwrite($hfd, ' fi');
+ fwrite($hfd, "\n");
+ fwrite($hfd, ' current_ip=`ifconfig ${ext_if} | awk ');
+ fwrite($hfd, "'");
+ fwrite($hfd, '/inet / { print $2 }');
+ fwrite($hfd, "'");
+ fwrite($hfd, '`');
+ fwrite($hfd, "\n");
+ fwrite($hfd, '}');
+ fwrite($hfd, "\n");
+ fwrite($hfd, 'update_hosts(){');
+ fwrite($hfd, "\n");
+ fwrite($hfd, ' if [ "$registered_ip" != "$current_ip" ]');
+ fwrite($hfd, "\n");
+ fwrite($hfd, ' then');
+ fwrite($hfd, "\n");
+ fwrite($hfd, ' $update_file');
+ fwrite($hfd, "\n");
+ fwrite($hfd, ' echo $current_ip > $dns_file');
+ fwrite($hfd, "\n");
+ fwrite($hfd, ' fi');
+ fwrite($hfd, "\n");
+ fwrite($hfd, '}');
+ fwrite($hfd, "\n");
+ fwrite($hfd, 'get_ip');
+ fwrite($hfd, "\n");
+ fwrite($hfd, 'update_hosts');
+ fwrite($hfd, "\n");
+ fwrite($hfd, 'exit $EXIT_SUCCESS');
+ fwrite($hfd, "\n");
+ fclose($hfd);
+}
+?>
diff --git a/config/Fit123/fit123.xml b/config/Fit123/fit123.xml
new file mode 100644
index 00000000..3e39eed3
--- /dev/null
+++ b/config/Fit123/fit123.xml
@@ -0,0 +1,75 @@
+<?xml version="1.0" encoding="utf-8" ?>
+<!DOCTYPE packagegui SYSTEM "../schema/packages.dtd">
+<?xml-stylesheet type="text/xsl" href="./xsl/package.xsl"?>
+<packagegui>
+ <copyright></copyright>
+ <description>Describe your package here</description>
+ <requirements>Describe your package requirements here</requirements>
+ <faq>Currently there are no FAQ items provided.</faq>
+ <name>Fit123</name>
+ <version>0.0.0.1</version>
+ <title>Fit123</title>
+ <include_file>/usr/local/pkg/fit123.inc</include_file>
+ <menu>
+ <name>Fit123</name>
+ <tooltiptext></tooltiptext>
+ <section>Status</section>
+ <url>/pkg_edit.php?xml=fit123.xml&amp;id=0</url>
+ </menu>
+ <tabs>
+ <tab>
+ <text>Fit123</text>
+ <url>/pkg_edit.php?xml=fit123.xml&amp;id=0</url>
+ <active/>
+ </tab>
+ <tab>
+ <text>DDNS</text>
+ <url>/pkg_edit.php?xml=ddns.xml&amp;id=0</url>
+ </tab>
+ </tabs>
+ <additional_files_needed>
+ <prefix>/usr/local/pkg/</prefix>
+ <chmod>0644</chmod>
+ <item>http://pfsense.comuf.com/packages/config/Fit123/fit123.inc</item>
+ </additional_files_needed>
+ <additional_files_needed>
+ <prefix>/usr/local/pkg/</prefix>
+ <chmod>0644</chmod>
+ <item>http://pfsense.comuf.com/packages/config/Fit123/ddns.xml</item>
+ </additional_files_needed>
+ <fields>
+ <field>
+ <fielddescr>Date</fielddescr>
+ <fieldname>adddate</fieldname>
+ <description>Adds current date to front page</description>
+ <type>checkbox</type>
+ </field>
+ <field>
+ <fielddescr>Code-red</fielddescr>
+ <fieldname>codered</fieldname>
+ <description>Change nervecenter Theme to Code-red</description>
+ <type>checkbox</type>
+ </field>
+ <field>
+ <fielddescr>LTSP</fielddescr>
+ <fieldname>ltsp</fieldname>
+ <description>Adds 3th network boot option</description>
+ <type>checkbox</type>
+ </field>
+ <field>
+ <fielddescr>After Filter Change</fielddescr>
+ <fieldname>afc</fieldname>
+ <description>
+ When using voip behind a multiwan failover setup, states needs to be cleared.&lt;br&gt;
+ (Press save twice to activate and deactivate)
+ </description>
+ <type>checkbox</type>
+ </field>
+ </fields>
+ <custom_php_command_before_form>Fit123_config();</custom_php_command_before_form>
+ <custom_php_after_form_command></custom_php_after_form_command>
+ <custom_php_validation_command></custom_php_validation_command>
+ <custom_php_resync_config_command></custom_php_resync_config_command>
+ <custom_php_install_command>Fit123_install_config();</custom_php_install_command>
+ <custom_php_deinstall_command>Fit123_install_deinstall();</custom_php_deinstall_command>
+</packagegui>