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(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'); $egw = new Form_Input( 'gateway', 'Gateway', 'text', ($pconfig['dynamic'] ? 'dynamic' : $pconfig['gateway']) ); $egw->setHelp('Gateway IP address'); if ($pconfig['dynamic']) { $egw->setReadonly(); } $section->addInput($egw); $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.'); $section->addInput(new Form_Checkbox( 'action_disable', 'Gateway Action', 'Disable Gateway Monitoring Action', $pconfig['action_disable'] ))->setHelp('No action will be taken on gateway events. The gateway is always considered 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('A description may be entered here for reference (not parsed).'); // Add a button to provide access to the advanced fields $btnadv = new Form_Button( 'btnadvopts', 'Display Advanced', null, 'fa-cog' ); $btnadv->setAttribute('type','button')->addClass('btn-info btn-sm'); $section->addInput(new Form_StaticText( null, $btnadv )); $form->add($section); $section = new Form_Section('Advanced'); $section->addClass('adnlopts'); $section->addInput(new Form_Select( 'weight', 'Weight', $pconfig['weight'], array_combine(range(1, 30), range(1, 30)) ))->setHelp('Weight for this gateway when used in a Gateway Group.'); $section->addInput(new Form_Input( 'data_payload', 'Data Payload', 'number', $pconfig['data_payload'], ['placeholder' => $dpinger_default['data_payload']] ))->setHelp('Define data payload to send on ICMP packets to gateway monitor IP.'); $group = new Form_Group('Latency thresholds'); $group->add(new Form_Input( 'latencylow', 'From', 'number', $pconfig['latencylow'], ['placeholder' => $dpinger_default['latencylow']] )); $group->add(new Form_Input( 'latencyhigh', 'To', 'number', $pconfig['latencyhigh'], ['placeholder' => $dpinger_default['latencyhigh']] )); $group->setHelp('Low and high thresholds for latency in milliseconds. ' . 'Default is %1$d/%2$d.', $dpinger_default['latencylow'], $dpinger_default['latencyhigh']); $section->add($group); $group = new Form_Group('Packet Loss thresholds'); $group->add(new Form_Input( 'losslow', 'From', 'number', $pconfig['losslow'], ['placeholder' => $dpinger_default['losslow']] )); $group->add(new Form_Input( 'losshigh', 'To', 'number', $pconfig['losshigh'], ['placeholder' => $dpinger_default['losshigh']] )); $group->setHelp('Low and high thresholds for packet loss in %%. ' . 'Default is %1$d/%2$d.', $dpinger_default['losslow'], $dpinger_default['losshigh']); $section->add($group); $section->addInput(new Form_Input( 'interval', 'Probe Interval', 'number', $pconfig['interval'], [ 'placeholder' => $dpinger_default['interval'], 'max' => 86400 ] ))->setHelp('How often an ICMP probe will be sent in milliseconds. Default is %d.', $dpinger_default['interval']); $section->addInput(new Form_Input( 'loss_interval', 'Loss Interval', 'number', $pconfig['loss_interval'], ['placeholder' => $dpinger_default['loss_interval']] ))->setHelp('Time interval in milliseconds before packets are treated as lost. '. 'Default is %d.', $dpinger_default['loss_interval']); $group = new Form_Group('Time Period'); $group->add(new Form_Input( 'time_period', null, 'number', $pconfig['time_period'], [ 'placeholder' => $dpinger_default['time_period'] ] )); $group->setHelp('Time period in milliseconds over which results are averaged. Default is %d.', $dpinger_default['time_period']); $section->add($group); $group = new Form_Group('Alert interval'); $group->add(new Form_Input( 'alert_interval', null, 'number', $pconfig['alert_interval'], [ 'placeholder' => $dpinger_default['alert_interval'] ] )); $group->setHelp('Time interval in milliseconds between checking for an alert condition. Default is %d.', $dpinger_default['alert_interval']); $section->add($group); $section->addInput(new Form_StaticText( gettext('Additional information'), ''. gettext('The time period, probe interval and loss interval are closely related. The ' . 'ratio between these values control the accuracy of the numbers reported and ' . 'the timeliness of alerts.') . '

' . gettext('A longer time period will provide smoother results for round trip time ' . 'and loss, but will increase the time before a latency or loss alert is triggered.') . '

' . gettext('A shorter probe interval will decrease the time required before a latency ' . 'or loss alert is triggered, but will use more network resource. Longer ' . 'probe intervals will degrade the accuracy of the quality graphs.') . '

' . gettext('The ratio of the probe interval to the time period (minus the loss interval) ' . 'also controls the resolution of loss reporting. To determine the resolution, ' . 'the following formula can be used:') . '

' . gettext('    100 * probe interval / (time period - loss interval)') . '

' . gettext('Rounding up to the nearest whole number will yield the resolution of loss ' . 'reporting in percent. The default values provide a resolution of 1%.') . '

' . gettext('The default settings are recommended for most use cases. However if ' . 'changing the settings, please observe the following restrictions:') . '

' . gettext('- The time period must be greater than twice the probe interval plus the loss ' . 'interval. This guarantees there is at least one completed probe at all times. ') . '

' . gettext('- The alert interval must be greater than or equal to the probe interval. There ' . 'is no point checking for alerts more often than probes are done.') . '

' . gettext('- The loss interval must be greater than or equal to the high latency threshold.') . '
' )); $section->addInput(new Form_Checkbox( 'nonlocalgateway', 'Use non-local gateway', 'Use non-local gateway through interface specific route.', $pconfig['nonlocalgateway'] ))->setHelp('This will allow use of a gateway outside of this interface\'s subnet. This is usually indicative of a configuration error, but is required for some scenarios.'); $form->add($section); print $form; ?>