"") && is_ipaddr($_POST['gateway']) && $_POST['gateway'] != "dynamic") { if (is_ipaddrv6($_POST['gateway']) && ($_POST['ipprotocol'] == "inet")) { $input_errors[] = gettext("The IPv6 gateway address '{$_POST['gateway']}' can not be used as a IPv4 gateway'."); } if (is_ipaddrv4($_POST['gateway']) && ($_POST['ipprotocol'] == "inet6")) { $input_errors[] = gettext("The IPv4 gateway address '{$_POST['gateway']}' can not be used as a IPv6 gateway'."); } } /* only allow correct IPv4 and IPv6 monitor addresses */ if (($_POST['monitor'] <> "") && is_ipaddr($_POST['monitor']) && $_POST['monitor'] != "dynamic") { if (is_ipaddrv6($_POST['monitor']) && ($_POST['ipprotocol'] == "inet")) { $input_errors[] = gettext("The IPv6 monitor address '{$_POST['monitor']}' can not be used on a IPv4 gateway'."); } if (is_ipaddrv4($_POST['monitor']) && ($_POST['ipprotocol'] == "inet6")) { $input_errors[] = gettext("The IPv4 monitor address '{$_POST['monitor']}' can not be used on a IPv6 gateway'."); } } if (isset($_POST['name'])) { /* check for overlaps */ foreach ($a_gateways as $gateway) { if (isset($id) && ($a_gateways[$id]) && ($a_gateways[$id] === $gateway)) { if ($gateway['name'] != $_POST['name']) { $input_errors[] = gettext("Changing name on a gateway is not allowed."); } continue; } if ($_POST['name'] <> "") { if (($gateway['name'] <> "") && ($_POST['name'] == $gateway['name']) && ($gateway['attribute'] !== "system")) { $input_errors[] = sprintf(gettext('The gateway name "%s" already exists.'), $_POST['name']); break; } } if (is_ipaddr($_POST['gateway'])) { if (($gateway['gateway'] <> "") && ($_POST['gateway'] == $gateway['gateway']) && ($gateway['attribute'] !== "system")) { $input_errors[] = sprintf(gettext('The gateway IP address "%s" already exists.'), $_POST['gateway']); break; } } if (is_ipaddr($_POST['monitor'])) { if (($gateway['monitor'] <> "") && ($_POST['monitor'] == $gateway['monitor']) && ($gateway['attribute'] !== "system")) { $input_errors[] = sprintf(gettext('The monitor IP address "%s" is already in use. You must choose a different monitor IP.'), $_POST['monitor']); break; } } } } /* input validation of apinger advanced parameters */ if ($_POST['latencylow']) { if (!is_numeric($_POST['latencylow'])) { $input_errors[] = gettext("The low latency threshold needs to be a numeric value."); } else { if ($_POST['latencylow'] < 1) { $input_errors[] = gettext("The low latency threshold needs to be positive."); } } } if ($_POST['latencyhigh']) { if (!is_numeric($_POST['latencyhigh'])) { $input_errors[] = gettext("The high latency threshold needs to be a numeric value."); } else { if ($_POST['latencyhigh'] < 1) { $input_errors[] = gettext("The high latency threshold needs to be positive."); } } } if ($_POST['losslow']) { if (!is_numeric($_POST['losslow'])) { $input_errors[] = gettext("The low Packet Loss threshold needs to be a numeric value."); } else { if ($_POST['losslow'] < 1) { $input_errors[] = gettext("The low Packet Loss threshold needs to be positive."); } if ($_POST['losslow'] >= 100) { $input_errors[] = gettext("The low Packet Loss threshold needs to be less than 100."); } } } if ($_POST['losshigh']) { if (!is_numeric($_POST['losshigh'])) { $input_errors[] = gettext("The high Packet Loss threshold needs to be a numeric value."); } else { if ($_POST['losshigh'] < 1) { $input_errors[] = gettext("The high Packet Loss threshold needs to be positive."); } if ($_POST['losshigh'] > 100) { $input_errors[] = gettext("The high Packet Loss threshold needs to be 100 or less."); } } } if (($_POST['latencylow']) && ($_POST['latencyhigh'])) { if ((is_numeric($_POST['latencylow'])) && (is_numeric($_POST['latencyhigh']))) { if (($_POST['latencylow'] > $_POST['latencyhigh'])) { $input_errors[] = gettext("The high latency threshold needs to be higher than the low latency threshold"); } } } else { if ($_POST['latencylow']) { if (is_numeric($_POST['latencylow'])) { if ($_POST['latencylow'] > $apinger_default['latencyhigh']) { $input_errors[] = gettext(sprintf("The low latency threshold needs to be less than the default high latency threshold (%d)", $apinger_default['latencyhigh'])); } } } if ($_POST['latencyhigh']) { if (is_numeric($_POST['latencyhigh'])) { if ($_POST['latencyhigh'] < $apinger_default['latencylow']) { $input_errors[] = gettext(sprintf("The high latency threshold needs to be higher than the default low latency threshold (%d)", $apinger_default['latencylow'])); } } } } if (($_POST['losslow']) && ($_POST['losshigh'])) { if ((is_numeric($_POST['losslow'])) && (is_numeric($_POST['losshigh']))) { if ($_POST['losslow'] > $_POST['losshigh']) { $input_errors[] = gettext("The high Packet Loss threshold needs to be higher than the low Packet Loss threshold"); } } } else { if ($_POST['losslow']) { if (is_numeric($_POST['losslow'])) { if ($_POST['losslow'] > $apinger_default['losshigh']) { $input_errors[] = gettext(sprintf("The low Packet Loss threshold needs to be less than the default high Packet Loss threshold (%d)", $apinger_default['losshigh'])); } } } if ($_POST['losshigh']) { if (is_numeric($_POST['losshigh'])) { if ($_POST['losshigh'] < $apinger_default['losslow']) { $input_errors[] = gettext(sprintf("The high Packet Loss threshold needs to be higher than the default low Packet Loss threshold (%d)", $apinger_default['losslow'])); } } } } if ($_POST['interval']) { if (!is_numeric($_POST['interval'])) { $input_errors[] = gettext("The probe interval needs to be a numeric value."); } else { if ($_POST['interval'] < 1) { $input_errors[] = gettext("The probe interval needs to be positive."); } } } if ($_POST['down']) { if (!is_numeric($_POST['down'])) { $input_errors[] = gettext("The down time setting needs to be a numeric value."); } else { if ($_POST['down'] < 1) { $input_errors[] = gettext("The down time setting needs to be positive."); } } } if (($_POST['interval']) && ($_POST['down'])) { if ((is_numeric($_POST['interval'])) && (is_numeric($_POST['down']))) { if ($_POST['interval'] > $_POST['down']) { $input_errors[] = gettext("The probe interval needs to be less than the down time setting."); } } } else { if ($_POST['interval']) { if (is_numeric($_POST['interval'])) { if ($_POST['interval'] > $apinger_default['down']) { $input_errors[] = gettext(sprintf("The probe interval needs to be less than the default down time setting (%d)", $apinger_default['down'])); } } } if ($_POST['down']) { if (is_numeric($_POST['down'])) { if ($_POST['down'] < $apinger_default['interval']) { $input_errors[] = gettext(sprintf("The down time setting needs to be higher than the default probe interval (%d)", $apinger_default['interval'])); } } } } if ($_POST['avg_delay_samples']) { if (!is_numeric($_POST['avg_delay_samples'])) { $input_errors[] = gettext("The average delay replies qty needs to be a numeric value."); } else { if ($_POST['avg_delay_samples'] < 1) { $input_errors[] = gettext("The average delay replies qty needs to be positive."); } } } if ($_POST['avg_loss_samples']) { if (!is_numeric($_POST['avg_loss_samples'])) { $input_errors[] = gettext("The average packet loss probes qty needs to be a numeric value."); } else { if ($_POST['avg_loss_samples'] < 1) { $input_errors[] = gettext("The average packet loss probes qty needs to be positive."); } } } if ($_POST['avg_loss_delay_samples']) { if (!is_numeric($_POST['avg_loss_delay_samples'])) { $input_errors[] = gettext("The lost probe delay needs to be a numeric value."); } else { if ($_POST['avg_loss_delay_samples'] < 1) { $input_errors[] = gettext("The lost probe delay needs to be positive."); } } } if (!$input_errors) { $reloadif = ""; $gateway = array(); if (empty($_POST['interface'])) { $gateway['interface'] = $pconfig['friendlyiface']; } else { $gateway['interface'] = $_POST['interface']; } if (is_ipaddr($_POST['gateway'])) { $gateway['gateway'] = $_POST['gateway']; } else { $gateway['gateway'] = "dynamic"; } $gateway['name'] = $_POST['name']; $gateway['weight'] = $_POST['weight']; $gateway['ipprotocol'] = $_POST['ipprotocol']; $gateway['interval'] = $_POST['interval']; $gateway['avg_delay_samples'] = $_POST['avg_delay_samples']; if ($_POST['avg_delay_samples_calculated'] == "yes" || $_POST['avg_delay_samples_calculated'] == "on") { $gateway['avg_delay_samples_calculated'] = true; } $gateway['avg_loss_samples'] = $_POST['avg_loss_samples']; if ($_POST['avg_loss_samples_calculated'] == "yes" || $_POST['avg_loss_samples_calculated'] == "on") { $gateway['avg_loss_samples_calculated'] = true; } $gateway['avg_loss_delay_samples'] = $_POST['avg_loss_delay_samples']; if ($_POST['avg_loss_delay_samples_calculated'] == "yes" || $_POST['avg_loss_delay_samples_calculated'] == "on") { $gateway['avg_loss_delay_samples_calculated'] = true; } $gateway['descr'] = $_POST['descr']; if ($_POST['monitor_disable'] == "yes") { $gateway['monitor_disable'] = true; } if ($_POST['force_down'] == "yes") { $gateway['force_down'] = true; } if (is_ipaddr($_POST['monitor'])) { $gateway['monitor'] = $_POST['monitor']; } /* NOTE: If monitor ip is changed need to cleanup the old static route */ if ($_POST['monitor'] != "dynamic" && !empty($a_gateway_item[$realid]) && is_ipaddr($a_gateway_item[$realid]['monitor']) && $_POST['monitor'] != $a_gateway_item[$realid]['monitor'] && $gateway['gateway'] != $a_gateway_item[$realid]['monitor']) { if (is_ipaddrv4($a_gateway_item[$realid]['monitor'])) { mwexec("/sbin/route delete " . escapeshellarg($a_gateway_item[$realid]['monitor'])); } else { mwexec("/sbin/route delete -inet6 " . escapeshellarg($a_gateway_item[$realid]['monitor'])); } } if ($_POST['defaultgw'] == "yes" || $_POST['defaultgw'] == "on") { $i = 0; /* remove the default gateway bits for all gateways with the same address family */ foreach ($a_gateway_item as $gw) { if ($gateway['ipprotocol'] == $gw['ipprotocol']) { unset($config['gateways']['gateway_item'][$i]['defaultgw']); if ($gw['interface'] != $_POST['interface'] && $gw['defaultgw']) { $reloadif = $gw['interface']; } } $i++; } $gateway['defaultgw'] = true; } if ($_POST['latencylow']) { $gateway['latencylow'] = $_POST['latencylow']; } if ($_POST['latencyhigh']) { $gateway['latencyhigh'] = $_POST['latencyhigh']; } if ($_POST['losslow']) { $gateway['losslow'] = $_POST['losslow']; } if ($_POST['losshigh']) { $gateway['losshigh'] = $_POST['losshigh']; } if ($_POST['down']) { $gateway['down'] = $_POST['down']; } if (isset($_POST['disabled'])) { $gateway['disabled'] = true; } else { unset($gateway['disabled']); } /* when saving the manual gateway we use the attribute which has the corresponding id */ if (isset($realid) && $a_gateway_item[$realid]) { $a_gateway_item[$realid] = $gateway; } else { $a_gateway_item[] = $gateway; } mark_subsystem_dirty('staticroutes'); write_config(); if ($_REQUEST['isAjax']) { echo $_POST['name']; exit; } else if (!empty($reloadif)) { send_event("interface reconfigure {$reloadif}"); } header("Location: system_gateways.php"); exit; } else { if ($_REQUEST['isAjax']) { header("HTTP/1.0 500 Internal Server Error"); header("Content-type: text/plain"); foreach ($input_errors as $error) { echo("$error\n"); } exit; } $pconfig = $_POST; if (empty($_POST['friendlyiface'])) { $pconfig['friendlyiface'] = $_POST['interface']; } } } $pgtitle = array(gettext("System"), gettext("Gateways"), gettext("Edit gateway")); $shortcut_section = "gateways"; include("head.inc"); if ($input_errors) print_input_errors($input_errors); ?> addGlobal(new Form_Input( 'attribute', null, 'hidden', $pconfig['attribute'] )); } if (isset($id) && $a_gateways[$id]) { $form->addGlobal(new Form_Input( 'id', null, 'hidden', $id )); } $form->addGlobal(new Form_Input( 'friendlyiface', null, 'hidden', $pconfig['friendlyiface'] )); $section = new Form_Section('Edit gateway'); $section->addInput(new Form_Checkbox( 'disabled', 'Disabled', 'Disable this gateway', $pconfig['disabled'] ))->setHelp('Set this option to disable this gateway without removing it from the '. 'list.'); $section->addInput(new Form_Select( 'interface', 'Interface', $pconfig['friendlyiface'], get_configured_interface_with_descr(false, true) ))->setHelp('Choose which interface this gateway applies to.'); $section->addInput(new Form_Select( 'ipprotocol', 'Address Family', $pconfig['ipprotocol'], array( "inet" => "IPv4", "inet6" => "IPv6" ) ))->setHelp('Choose the Internet Protocol this gateway uses.'); $section->addInput(new Form_Input( 'name', 'Name', 'text', $pconfig['name'] ))->setHelp('Gateway name'); $section->addInput(new Form_Input( 'gateway', 'Gateway', 'text', ($pconfig['dynamic'] ? 'dynamic' : $pconfig['gateway']) ))->setHelp('Gateway IP address'); $section->addInput(new Form_Checkbox( 'defaultgw', 'Default Gateway', 'This will select the above gateway as the default gateway', $pconfig['defaultgw'] )); $section->addInput(new Form_Checkbox( 'monitor_disable', 'Gateway Monitoring', 'Disable Gateway Monitoring', $pconfig['monitor_disable'] ))->toggles('.toggle-monitor-ip')->setHelp('This will consider this gateway as always being up'); $group = new Form_Group('Monitor IP'); $group->addClass('toggle-monitor-ip', 'collapse'); if (!$pconfig['monitor_disable']) $group->addClass('in'); $group->add(new Form_Input( 'monitor', null, 'text', ($pconfig['gateway'] == $pconfig['monitor'] ? '' : $pconfig['monitor']) ))->setHelp('Enter an alternative address here to be '. 'used to monitor the link. This is used for the quality RRD graphs as well as the '. 'load balancer entries. Use this if the gateway does not respond to ICMP echo '. 'requests (pings).'); $section->add($group); $section->addInput(new Form_Checkbox( 'force_down', 'Force state', 'Mark Gateway as Down', $pconfig['force_down'] ))->setHelp('This will force this gateway to be considered Down'); $section->addInput(new Form_Input( 'descr', 'Description', 'text', $pconfig['descr'] ))->setHelp('You may enter a description here for your reference (not parsed).'); // If any of the advanced options are non-default, we will not show the "Advanced" button // and will display the advanced section if (!(!empty($pconfig['latencylow']) || !empty($pconfig['latencyhigh']) || !empty($pconfig['losslow']) || !empty($pconfig['losshigh']) || (isset($pconfig['weight']) && $pconfig['weight'] > 1) || (isset($pconfig['interval']) && ($pconfig['interval'] > $apinger_default['interval'])) || (isset($pconfig['down']) && !($pconfig['down'] == $apinger_default['down'])))) { $btnadvanced = new Form_Button( 'toggle-advanced', 'Advanced options' ); $advdflt = true; $btnadvanced->toggles('.advanced-options')->setAttribute('type', 'button'); $btnadvanced->removeClass('btn-primary')->addClass('btn-default'); $section->addInput(new Form_StaticText( null, $btnadvanced )); } $form->add($section); $section = new Form_Section('Advanced'); if(isset($advdflt)) { $section->addClass('collapse'); } $section->addClass('advanced-options'); $section->addInput(new Form_Select( 'weight', 'Weight', $pconfig['weight'], array_combine(range(1, 5), range(1, 5)) ))->setHelp('Weight for this gateway when used in a Gateway Group.'); $group = new Form_Group('Latency thresholds'); $group->add(new Form_Input( 'latencylow', 'From', 'number', $pconfig['latencylow'], ['placeholder' => $apinger_default['latencylow']] )); $group->add(new Form_Input( 'latencyhigh', 'To', 'number', $pconfig['latencyhigh'], ['placeholder' => $apinger_default['latencyhigh']] )); $group->setHelp('Low and high thresholds for latency in milliseconds. Default is %d/%d.', [$apinger_default['latencylow'], $apinger_default['latencyhigh']]); $section->add($group); $group = new Form_Group('Packet Loss thresholds'); $group->add(new Form_Input( 'losslow', 'From', 'number', $pconfig['losslow'], ['placeholder' => $apinger_default['losslow']] )); $group->add(new Form_Input( 'losshigh', 'To', 'number', $pconfig['losshigh'], ['placeholder' => $apinger_default['losshigh']] )); $group->setHelp('Low and high thresholds for packet loss in milliseconds. Default is %d/%d.', [$apinger_default['losslow'], $apinger_default['losshigh']]); $section->add($group); $section->addInput(new Form_Input( 'interval', 'Probe Interval', 'number', $pconfig['interval'], [ 'placeholder' => $apinger_default['interval'], 'max' => 86400 ] ))->setHelp('How often an ICMP probe will be sent in seconds. Default is %d.'. 'NOTE: The quality graph is averaged over seconds, not intervals, so as '. 'the probe interval is increased the accuracy of the quality graph is '. 'decreased.', [$apinger_default['interval']]); $section->addInput(new Form_Input( 'down', 'Down', 'number', $pconfig['down'], ['placeholder' => $apinger_default['down']] ))->setHelp('The number of seconds of failed probes before the alarm '. 'will fire. Default is %d.', [$apinger_default['down']]); $group = new Form_Group('Avg. Delay Replies Qty'); $group->add(new Form_Input( 'avg_delay_samples', null, 'number', $pconfig['avg_delay_samples'], [ 'placeholder' => $apinger_default['avg_delay_samples'], 'max' => 100 ] )); $group->add(new Form_Checkbox( 'avg_delay_samples_calculated', null, 'Use calculated value.', $pconfig['avg_delay_samples_calculated'] )); $group->setHelp('How many replies should be used to compute average delay for '. 'controlling "delay" alarms? Default is %d.', [$apinger_default['avg_delay_samples']]); $section->add($group); $group = new Form_Group('Avg. Packet Loss Probes'); $group->add(new Form_Input( 'avg_loss_samples', null, 'number', $pconfig['avg_loss_samples'], [ 'placeholder' => $apinger_default['avg_loss_samples'], 'max' => 1000 ] )); $group->add(new Form_Checkbox( 'avg_loss_samples_calculated', null, 'Use calculated value.', $pconfig['avg_loss_samples_calculated'] )); $group->setHelp('How many probes should be useds to compute average packet loss? '. 'Default is %d.', [$apinger_default['avg_loss_samples']]); $section->add($group); $group = new Form_Group('Lost Probe Delay'); $group->add(new Form_Input( 'avg_loss_delay_samples', null, 'number', $pconfig['avg_loss_delay_samples'], [ 'placeholder' => $apinger_default['avg_loss_delay_samples'], 'max' => 200 ] )); $group->add(new Form_Checkbox( 'avg_loss_delay_samples_calculated', null, 'Use calculated value.', $pconfig['avg_loss_samples_calculated'] )); $group->setHelp('The delay (in qty of probe samples) after which loss is '. 'computed. Without this, delays longer than the probe interval would be '. 'treated as packet loss. Default is %d.', [$apinger_default['avg_loss_delay_samples']]); $section->add($group); $section->addInput(new Form_StaticText( 'Additional information', ''. gettext('The probe interval must be less than the down time, otherwise the '. 'gateway will seem to go down then come up again at the next probe.'). '

'. gettext('The down time defines the length of time before the gateway is marked '. 'as down, but the accuracy is controlled by the probe interval. For example, '. 'if your down time is 40 seconds but on a 30 second probe interval, only one '. 'probe would have to fail before the gateway is marked down at the 40 second '. 'mark. By default, the gateway is considered down after 10 seconds, and the '. 'probe interval is 1 second, so 10 probes would have to fail before the gateway '. 'is marked down.'). '
' )); $form->add($section); print $form; include("foot.inc");