Commit f90ae806 authored by Ad Schellevis's avatar Ad Schellevis

whitespace (tab->space)

parent 12f25c7d
<?php <?php
/* /*
Copyright (C) 2014 Deciso B.V. Copyright (C) 2014 Deciso B.V.
Copyright (C) 2009 Janne Enberg <janne.enberg@lietu.net> Copyright (C) 2009 Janne Enberg <janne.enberg@lietu.net>
Copyright (C) 2004 Scott Ullrich Copyright (C) 2004 Scott Ullrich
Copyright (C) 2003-2004 Manuel Kasper <mk@neon1.net> Copyright (C) 2003-2004 Manuel Kasper <mk@neon1.net>
All rights reserved. All rights reserved.
Redistribution and use in source and binary forms, with or without Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met: modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice, 1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer. this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright 2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution. documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) 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 ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
POSSIBILITY OF SUCH DAMAGE. POSSIBILITY OF SUCH DAMAGE.
*/ */
require_once("guiconfig.inc"); require_once("guiconfig.inc");
...@@ -44,133 +44,133 @@ require_once("filter.inc"); ...@@ -44,133 +44,133 @@ require_once("filter.inc");
* boolean - true if item was found and deleted * boolean - true if item was found and deleted
******/ ******/
function delete_id($id, &$array){ function delete_id($id, &$array){
// Index to delete // Index to delete
$delete_index = NULL; $delete_index = NULL;
if (!is_array($array)) if (!is_array($array))
return false; return false;
// Search for the item in the array // Search for the item in the array
foreach ($array as $key => $item){ foreach ($array as $key => $item){
// If this item is the one we want to delete // If this item is the one we want to delete
if(isset($item['associated-rule-id']) && $item['associated-rule-id']==$id ){ if(isset($item['associated-rule-id']) && $item['associated-rule-id']==$id ){
$delete_index = $key; $delete_index = $key;
break; break;
} }
} }
// If we found the item, unset it // If we found the item, unset it
if( $delete_index!==NULL ){ if( $delete_index!==NULL ){
unset($array[$delete_index]); unset($array[$delete_index]);
return true; return true;
} else { } else {
return false; return false;
} }
} }
if (!is_array($config['nat']['rule'])) { if (!is_array($config['nat']['rule'])) {
$config['nat']['rule'] = array(); $config['nat']['rule'] = array();
} }
$a_nat = &$config['nat']['rule']; $a_nat = &$config['nat']['rule'];
if ($_SERVER['REQUEST_METHOD'] === 'POST') { if ($_SERVER['REQUEST_METHOD'] === 'POST') {
$pconfig = $_POST; $pconfig = $_POST;
if (isset($pconfig['id']) && isset($a_nat[$pconfig['id']])) { if (isset($pconfig['id']) && isset($a_nat[$pconfig['id']])) {
// id found and valid // id found and valid
$id = $pconfig['id']; $id = $pconfig['id'];
} }
if (isset($pconfig['apply'])) { if (isset($pconfig['apply'])) {
write_config(); write_config();
filter_configure(); filter_configure();
$savemsg = get_std_save_message(); $savemsg = get_std_save_message();
clear_subsystem_dirty('natconf'); clear_subsystem_dirty('natconf');
clear_subsystem_dirty('filter'); clear_subsystem_dirty('filter');
} elseif (isset($pconfig['act']) && $pconfig['act'] == 'del' && isset($id)) { } elseif (isset($pconfig['act']) && $pconfig['act'] == 'del' && isset($id)) {
// delete nat rule and associated rule if it exists // delete nat rule and associated rule if it exists
if (isset($a_nat[$id]['associated-rule-id'])) { if (isset($a_nat[$id]['associated-rule-id'])) {
delete_id($a_nat[$id]['associated-rule-id'], $config['filter']['rule']); delete_id($a_nat[$id]['associated-rule-id'], $config['filter']['rule']);
mark_subsystem_dirty('filter'); mark_subsystem_dirty('filter');
} }
unset($a_nat[$id]); unset($a_nat[$id]);
if (write_config()) { if (write_config()) {
mark_subsystem_dirty('natconf'); mark_subsystem_dirty('natconf');
} }
header("Location: firewall_nat.php"); header("Location: firewall_nat.php");
exit; exit;
} elseif (isset($pconfig['act']) && $pconfig['act'] == 'del_x' && isset($pconfig['rule']) && count($pconfig['rule']) > 0) { } elseif (isset($pconfig['act']) && $pconfig['act'] == 'del_x' && isset($pconfig['rule']) && count($pconfig['rule']) > 0) {
/* delete selected rules */ /* delete selected rules */
foreach ($pconfig['rule'] as $rulei) { foreach ($pconfig['rule'] as $rulei) {
if (isset($a_nat[$rulei])) { if (isset($a_nat[$rulei])) {
$target = $rule['target']; $target = $rule['target'];
// Check for filter rule associations // Check for filter rule associations
if (isset($a_nat[$rulei]['associated-rule-id'])){ if (isset($a_nat[$rulei]['associated-rule-id'])){
delete_id($a_nat[$rulei]['associated-rule-id'], $config['filter']['rule']); delete_id($a_nat[$rulei]['associated-rule-id'], $config['filter']['rule']);
mark_subsystem_dirty('filter'); mark_subsystem_dirty('filter');
} }
unset($a_nat[$rulei]); unset($a_nat[$rulei]);
} }
} }
if (write_config()) { if (write_config()) {
mark_subsystem_dirty('natconf'); mark_subsystem_dirty('natconf');
} }
header("Location: firewall_nat.php"); header("Location: firewall_nat.php");
exit; exit;
} elseif ( isset($pconfig['act']) && $pconfig['act'] == 'move') { } elseif ( isset($pconfig['act']) && $pconfig['act'] == 'move') {
// move records // move records
if (isset($pconfig['rule']) && count($pconfig['rule']) > 0) { if (isset($pconfig['rule']) && count($pconfig['rule']) > 0) {
// if rule not set/found, move to end // if rule not set/found, move to end
if (!isset($id)) { if (!isset($id)) {
$id = count($a_nat); $id = count($a_nat);
} }
$a_nat_new = array(); $a_nat_new = array();
/* copy all rules < $id and not selected */ /* copy all rules < $id and not selected */
for ($i = 0; $i < $id; $i++) { for ($i = 0; $i < $id; $i++) {
if (!in_array($i, $pconfig['rule'])) { if (!in_array($i, $pconfig['rule'])) {
$a_nat_new[] = $a_nat[$i]; $a_nat_new[] = $a_nat[$i];
} }
} }
/* copy all selected rules */ /* copy all selected rules */
for ($i = 0; $i < count($a_nat); $i++) { for ($i = 0; $i < count($a_nat); $i++) {
if ($i == $id) if ($i == $id)
continue; continue;
if (in_array($i, $pconfig['rule'])) { if (in_array($i, $pconfig['rule'])) {
$a_nat_new[] = $a_nat[$i]; $a_nat_new[] = $a_nat[$i];
} }
} }
/* copy $id rule */ /* copy $id rule */
if ($id < count($a_nat)) { if ($id < count($a_nat)) {
$a_nat_new[] = $a_nat[$id]; $a_nat_new[] = $a_nat[$id];
} }
/* copy all rules > $id and not selected */ /* copy all rules > $id and not selected */
for ($i = $id+1; $i < count($a_nat); $i++) { for ($i = $id+1; $i < count($a_nat); $i++) {
if (!in_array($i, $pconfig['rule'])) { if (!in_array($i, $pconfig['rule'])) {
$a_nat_new[] = $a_nat[$i]; $a_nat_new[] = $a_nat[$i];
} }
} }
$a_nat = $a_nat_new; $a_nat = $a_nat_new;
} }
if (write_config()) { if (write_config()) {
mark_subsystem_dirty('natconf'); mark_subsystem_dirty('natconf');
} }
header("Location: firewall_nat.php"); header("Location: firewall_nat.php");
exit; exit;
} elseif (isset($pconfig['act']) && $pconfig['act'] == 'toggle' && isset($id)) { } elseif (isset($pconfig['act']) && $pconfig['act'] == 'toggle' && isset($id)) {
// toggle item // toggle item
if(isset($a_nat[$id]['disabled'])) { if(isset($a_nat[$id]['disabled'])) {
unset($a_nat[$id]['disabled']); unset($a_nat[$id]['disabled']);
} else { } else {
$a_nat[$id]['disabled'] = true; $a_nat[$id]['disabled'] = true;
} }
if (write_config("Firewall: NAT: Outbound, enable/disable NAT rule")) { if (write_config("Firewall: NAT: Outbound, enable/disable NAT rule")) {
mark_subsystem_dirty('natconf'); mark_subsystem_dirty('natconf');
} }
header("Location: firewall_nat.php"); header("Location: firewall_nat.php");
exit; exit;
} }
} }
$closehead = false; $closehead = false;
...@@ -180,303 +180,303 @@ include("head.inc"); ...@@ -180,303 +180,303 @@ include("head.inc");
legacy_html_escape_form_data($a_nat); legacy_html_escape_form_data($a_nat);
$main_buttons = array( $main_buttons = array(
array('label'=>'Add', 'href'=>'firewall_nat_edit.php?after=-1'), array('label'=>'Add', 'href'=>'firewall_nat_edit.php?after=-1'),
); );
?> ?>
<body> <body>
<script type="text/javascript"> <script type="text/javascript">
$( document ).ready(function() { $( document ).ready(function() {
// link delete buttons // link delete buttons
$(".act_delete").click(function(){ $(".act_delete").click(function(){
var id = $(this).attr("id").split('_').pop(-1); var id = $(this).attr("id").split('_').pop(-1);
if (id != 'x') { if (id != 'x') {
// delete single // delete single
BootstrapDialog.show({ BootstrapDialog.show({
type:BootstrapDialog.TYPE_INFO, type:BootstrapDialog.TYPE_INFO,
title: "<?= gettext("Port Forward");?>", title: "<?= gettext("Port Forward");?>",
message: "<?=gettext("Do you really want to delete this rule?");?>", message: "<?=gettext("Do you really want to delete this rule?");?>",
buttons: [{ buttons: [{
label: "<?= gettext("No");?>", label: "<?= gettext("No");?>",
action: function(dialogRef) { action: function(dialogRef) {
dialogRef.close(); dialogRef.close();
}}, { }}, {
label: "<?= gettext("Yes");?>", label: "<?= gettext("Yes");?>",
action: function(dialogRef) { action: function(dialogRef) {
$("#id").val(id); $("#id").val(id);
$("#action").val("del"); $("#action").val("del");
$("#iform").submit() $("#iform").submit()
} }
}] }]
}); });
} else { } else {
// delete selected // delete selected
BootstrapDialog.show({ BootstrapDialog.show({
type:BootstrapDialog.TYPE_INFO, type:BootstrapDialog.TYPE_INFO,
title: "<?= gettext("Port Forward");?>", title: "<?= gettext("Port Forward");?>",
message: "<?=gettext("Do you really want to delete the selected rules?");?>", message: "<?=gettext("Do you really want to delete the selected rules?");?>",
buttons: [{ buttons: [{
label: "<?= gettext("No");?>", label: "<?= gettext("No");?>",
action: function(dialogRef) { action: function(dialogRef) {
dialogRef.close(); dialogRef.close();
}}, { }}, {
label: "<?= gettext("Yes");?>", label: "<?= gettext("Yes");?>",
action: function(dialogRef) { action: function(dialogRef) {
$("#id").val(""); $("#id").val("");
$("#action").val("del_x"); $("#action").val("del_x");
$("#iform").submit() $("#iform").submit()
} }
}] }]
}); });
} }
}); });
// link move buttons // link move buttons
$(".act_move").click(function(){ $(".act_move").click(function(){
var id = $(this).attr("id").split('_').pop(-1); var id = $(this).attr("id").split('_').pop(-1);
$("#id").val(id); $("#id").val(id);
$("#action").val("move"); $("#action").val("move");
$("#iform").submit(); $("#iform").submit();
}); });
// link toggle buttons // link toggle buttons
$(".act_toggle").click(function(){ $(".act_toggle").click(function(){
var id = $(this).attr("id").split('_').pop(-1); var id = $(this).attr("id").split('_').pop(-1);
$("#id").val(id); $("#id").val(id);
$("#action").val("toggle"); $("#action").val("toggle");
$("#iform").submit(); $("#iform").submit();
}); });
}); });
</script> </script>
<?php include("fbegin.inc"); ?> <?php include("fbegin.inc"); ?>
<section class="page-content-main"> <section class="page-content-main">
<div class="container-fluid"> <div class="container-fluid">
<div class="row"> <div class="row">
<?php if (isset($savemsg)) print_info_box($savemsg); ?> <?php if (isset($savemsg)) print_info_box($savemsg); ?>
<?php if (is_subsystem_dirty('natconf')): ?> <?php if (is_subsystem_dirty('natconf')): ?>
<?php print_info_box_apply(gettext("The NAT configuration has been changed") . ".<br />" . gettext("You must apply the changes in order for them to take effect."));?><br /> <?php print_info_box_apply(gettext("The NAT configuration has been changed") . ".<br />" . gettext("You must apply the changes in order for them to take effect."));?><br />
<?php endif; ?> <?php endif; ?>
<section class="col-xs-12"> <section class="col-xs-12">
<?php <?php
$tab_array = array(); $tab_array = array();
$tab_array[] = array(gettext("Port Forward"), true, "firewall_nat.php"); $tab_array[] = array(gettext("Port Forward"), true, "firewall_nat.php");
$tab_array[] = array(gettext("1:1"), false, "firewall_nat_1to1.php"); $tab_array[] = array(gettext("1:1"), false, "firewall_nat_1to1.php");
$tab_array[] = array(gettext("Outbound"), false, "firewall_nat_out.php"); $tab_array[] = array(gettext("Outbound"), false, "firewall_nat_out.php");
$tab_array[] = array(gettext("NPt"), false, "firewall_nat_npt.php"); $tab_array[] = array(gettext("NPt"), false, "firewall_nat_npt.php");
display_top_tabs($tab_array); display_top_tabs($tab_array);
?> ?>
<div class="tab-content content-box col-xs-12"> <div class="tab-content content-box col-xs-12">
<form action="firewall_nat.php" method="post" name="iform" id="iform"> <form action="firewall_nat.php" method="post" name="iform" id="iform">
<input type="hidden" id="id" name="id" value="" /> <input type="hidden" id="id" name="id" value="" />
<input type="hidden" id="action" name="act" value="" /> <input type="hidden" id="action" name="act" value="" />
<div class="table-responsive"> <div class="table-responsive">
<table class="table table-striped"> <table class="table table-striped">
<thead> <thead>
<tr> <tr>
<td colspan="5"> </td> <td colspan="5"> </td>
<td class="hidden-xs hidden-sm" colspan="2"><?=gettext("Source");?></td> <td class="hidden-xs hidden-sm" colspan="2"><?=gettext("Source");?></td>
<td class="hidden-xs hidden-sm" colspan="2"><?=gettext("Destination");?></td> <td class="hidden-xs hidden-sm" colspan="2"><?=gettext("Destination");?></td>
<td colspan="2"><?=gettext("NAT");?></td> <td colspan="2"><?=gettext("NAT");?></td>
<td colspan="2"> </td> <td colspan="2"> </td>
</tr> </tr>
<tr> <tr>
<th width="2%">&nbsp;</th> <th width="2%">&nbsp;</th>
<th width="2%">&nbsp;</th> <th width="2%">&nbsp;</th>
<th width="2%">&nbsp;</th> <th width="2%">&nbsp;</th>
<th><?=gettext("If");?></th> <th><?=gettext("If");?></th>
<th><?=gettext("Proto");?></th> <th><?=gettext("Proto");?></th>
<th class="hidden-xs hidden-sm"><?=gettext("Address");?></th> <th class="hidden-xs hidden-sm"><?=gettext("Address");?></th>
<th class="hidden-xs hidden-sm"><?=gettext("Ports");?></th> <th class="hidden-xs hidden-sm"><?=gettext("Ports");?></th>
<th class="hidden-xs hidden-sm"><?=gettext("Address");?></th> <th class="hidden-xs hidden-sm"><?=gettext("Address");?></th>
<th class="hidden-xs hidden-sm"><?=gettext("Ports");?></th> <th class="hidden-xs hidden-sm"><?=gettext("Ports");?></th>
<th><?=gettext("IP");?></th> <th><?=gettext("IP");?></th>
<th><?=gettext("Ports");?></th> <th><?=gettext("Ports");?></th>
<th><?=gettext("Description");?></th> <th><?=gettext("Description");?></th>
<th>&nbsp;</th> <th>&nbsp;</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<?php if (isset($config['interfaces']['lan'])) { <?php if (isset($config['interfaces']['lan'])) {
$lockout_intf_name = empty($config['interfaces']['lan']['descr']) ? "LAN" :$config['interfaces']['lan']['descr']; $lockout_intf_name = empty($config['interfaces']['lan']['descr']) ? "LAN" :$config['interfaces']['lan']['descr'];
} elseif (isset($config['interfaces']['wan'])) { } elseif (isset($config['interfaces']['wan'])) {
$lockout_intf_name = empty($config['interfaces']['lan']['descr']) ? "WAN" :$config['interfaces']['lan']['descr']; $lockout_intf_name = empty($config['interfaces']['lan']['descr']) ? "WAN" :$config['interfaces']['lan']['descr'];
} else { } else {
$lockout_intf_name = null; $lockout_intf_name = null;
} }
// show anti-lockout when enabled // show anti-lockout when enabled
if ($lockout_intf_name !== null && !isset($config['system']['webgui']['noantilockout'])): if ($lockout_intf_name !== null && !isset($config['system']['webgui']['noantilockout'])):
?> ?>
<tr> <tr>
<td></td> <td></td>
<td><i class="fa fa-exclamation text-success"></i></td> <td><i class="fa fa-exclamation text-success"></i></td>
<td></td> <td></td>
<td><?=$lockout_intf_name?></td> <td><?=$lockout_intf_name?></td>
<td>TCP</td> <td>TCP</td>
<td class="hidden-xs hidden-sm">*</td> <td class="hidden-xs hidden-sm">*</td>
<td class="hidden-xs hidden-sm">*</td> <td class="hidden-xs hidden-sm">*</td>
<td class="hidden-xs hidden-sm"><?=$lockout_intf_name?> <?=gettext("address");?></td> <td class="hidden-xs hidden-sm"><?=$lockout_intf_name?> <?=gettext("address");?></td>
<td class="hidden-xs hidden-sm"><?=implode('<br />', filter_get_antilockout_ports(true));?></td> <td class="hidden-xs hidden-sm"><?=implode('<br />', filter_get_antilockout_ports(true));?></td>
<td>*</td> <td>*</td>
<td>*</td> <td>*</td>
<td><?=gettext("Anti-Lockout Rule");?></td> <td><?=gettext("Anti-Lockout Rule");?></td>
<td></td> <td></td>
</tr> </tr>
<?php endif; ?> <?php endif; ?>
<?php $nnats = 0; <?php $nnats = 0;
foreach ($a_nat as $natent): foreach ($a_nat as $natent):
?> ?>
<tr <?=isset($natent['disabled'])?"class=\"text-muted\"":"";?> ondblclick="document.location='firewall_nat_edit.php?id=<?=$nnats;?>';"> <tr <?=isset($natent['disabled'])?"class=\"text-muted\"":"";?> ondblclick="document.location='firewall_nat_edit.php?id=<?=$nnats;?>';">
<td> <td>
<input type="checkbox" name="rule[]" value="<?=$nnats;?>" /> <input type="checkbox" name="rule[]" value="<?=$nnats;?>" />
</td> </td>
<td> <td>
<?php if (isset($natent['nordr'])): ?> <?php if (isset($natent['nordr'])): ?>
<i class="fa fa-exclamation <?=isset($natent['disabled']) ? "text-muted" : "text-success" ;?>"></i> <i class="fa fa-exclamation <?=isset($natent['disabled']) ? "text-muted" : "text-success" ;?>"></i>
<?php endif; ?> <?php endif; ?>
</td> </td>
<td> <td>
<a href="#" class="act_toggle" id="toggle_<?=$nnats;?>" data-toggle="tooltip" data-placement="left" title="<?=gettext("click to toggle enabled/disabled status");?>"> <a href="#" class="act_toggle" id="toggle_<?=$nnats;?>" data-toggle="tooltip" data-placement="left" title="<?=gettext("click to toggle enabled/disabled status");?>">
<?php if (!empty($natent['associated-rule-id'])): ?> <?php if (!empty($natent['associated-rule-id'])): ?>
<?php if(isset($natent['disabled'])):?> <?php if(isset($natent['disabled'])):?>
<span class="glyphicon glyphicon-resize-horizontal text-muted"></span> <span class="glyphicon glyphicon-resize-horizontal text-muted"></span>
<? else:?> <? else:?>
<span class="glyphicon glyphicon-resize-horizontal text-success"></span> <span class="glyphicon glyphicon-resize-horizontal text-success"></span>
<?php endif; ?> <?php endif; ?>
<? elseif(isset($natent['disabled'])):?> <? elseif(isset($natent['disabled'])):?>
<span class="glyphicon glyphicon-play text-muted"></span> <span class="glyphicon glyphicon-play text-muted"></span>
<? else:?> <? else:?>
<span class="glyphicon glyphicon-play text-success"></span> <span class="glyphicon glyphicon-play text-success"></span>
<?php endif; ?> <?php endif; ?>
</a> </a>
</td> </td>
<td> <td>
<?=htmlspecialchars(convert_friendly_interface_to_friendly_descr(isset($natent['interface']) ? $natent['interface'] : "wan"));?> <?=htmlspecialchars(convert_friendly_interface_to_friendly_descr(isset($natent['interface']) ? $natent['interface'] : "wan"));?>
</td> </td>
<td> <td>
<?=strtoupper($natent['protocol']);?> <?=strtoupper($natent['protocol']);?>
</td> </td>
<td class="hidden-xs hidden-sm"> <td class="hidden-xs hidden-sm">
<?=htmlspecialchars(pprint_address($natent['source']));?> <?=htmlspecialchars(pprint_address($natent['source']));?>
<?php if (isset($natent['source']['address']) && is_alias($natent['source']['address'])): ?> <?php if (isset($natent['source']['address']) && is_alias($natent['source']['address'])): ?>
&nbsp;<a href="/firewall_aliases_edit.php?name=<?=htmlspecialchars($natent['source']['address']);?>"><i class="fa fa-list"></i> </a> &nbsp;<a href="/firewall_aliases_edit.php?name=<?=htmlspecialchars($natent['source']['address']);?>"><i class="fa fa-list"></i> </a>
<?php endif; ?> <?php endif; ?>
</td> </td>
<td class="hidden-xs hidden-sm"> <td class="hidden-xs hidden-sm">
<?=htmlspecialchars(pprint_port($natent['source']['port']));?> <?=htmlspecialchars(pprint_port($natent['source']['port']));?>
<?php if (is_alias($natent['source']['port'])): ?> <?php if (is_alias($natent['source']['port'])): ?>
&nbsp;<a href="/firewall_aliases_edit.php?name=<?=htmlspecialchars($natent['source']['port']);?>"><i class="fa fa-list"></i> </a> &nbsp;<a href="/firewall_aliases_edit.php?name=<?=htmlspecialchars($natent['source']['port']);?>"><i class="fa fa-list"></i> </a>
<?php endif; ?> <?php endif; ?>
</td> </td>
<td class="hidden-xs hidden-sm"> <td class="hidden-xs hidden-sm">
<?=htmlspecialchars(pprint_address($natent['destination']));?> <?=htmlspecialchars(pprint_address($natent['destination']));?>
<?php if (isset($natent['destination']['address']) && is_alias($natent['destination']['address'])): ?> <?php if (isset($natent['destination']['address']) && is_alias($natent['destination']['address'])): ?>
&nbsp;<a href="/firewall_aliases_edit.php?name=<?=htmlspecialchars($natent['destination']['address']);?>"><i class="fa fa-list"></i> </a> &nbsp;<a href="/firewall_aliases_edit.php?name=<?=htmlspecialchars($natent['destination']['address']);?>"><i class="fa fa-list"></i> </a>
<?php endif; ?> <?php endif; ?>
</td> </td>
<td class="hidden-xs hidden-sm"> <td class="hidden-xs hidden-sm">
<?=htmlspecialchars(pprint_port($natent['destination']['port']));?> <?=htmlspecialchars(pprint_port($natent['destination']['port']));?>
<?php if (is_alias($natent['destination']['port'])): ?> <?php if (is_alias($natent['destination']['port'])): ?>
&nbsp;<a href="/firewall_aliases_edit.php?name=<?=htmlspecialchars($natent['destination']['port']);?>"><i class="fa fa-list"></i> </a> &nbsp;<a href="/firewall_aliases_edit.php?name=<?=htmlspecialchars($natent['destination']['port']);?>"><i class="fa fa-list"></i> </a>
<?php endif; ?> <?php endif; ?>
</td> </td>
<td> <td>
<?=$natent['target'];?> <?=$natent['target'];?>
<?php if (is_alias($natent['target'])): ?> <?php if (is_alias($natent['target'])): ?>
&nbsp;<a href="/firewall_aliases_edit.php?name=<?=$natent['target'];?>"><i class="fa fa-list"></i> </a> &nbsp;<a href="/firewall_aliases_edit.php?name=<?=$natent['target'];?>"><i class="fa fa-list"></i> </a>
<?php endif; ?> <?php endif; ?>
</td> </td>
<td> <td>
<?php <?php
$localport = $natent['local-port']; $localport = $natent['local-port'];
if (strpos($natent['destination']['port'],'-') !== false) { if (strpos($natent['destination']['port'],'-') !== false) {
list($dstbeginport, $dstendport) = explode("-", $natent['destination']['port']); list($dstbeginport, $dstendport) = explode("-", $natent['destination']['port']);
$localendport = $natent['local-port'] + $dstendport - $dstbeginport; $localendport = $natent['local-port'] + $dstendport - $dstbeginport;
$localport .= '-' . $localendport; $localport .= '-' . $localendport;
} }
?> ?>
<?=htmlspecialchars(pprint_port($localport));?> <?=htmlspecialchars(pprint_port($localport));?>
<?php if (is_alias($localport)): ?> <?php if (is_alias($localport)): ?>
&nbsp;<a href="/firewall_aliases_edit.php?name=<?=htmlspecialchars($localport);?>"><i class="fa fa-list"></i> </a> &nbsp;<a href="/firewall_aliases_edit.php?name=<?=htmlspecialchars($localport);?>"><i class="fa fa-list"></i> </a>
<?php endif; ?> <?php endif; ?>
</td> </td>
<td> <td>
<?=$natent['descr'];?> <?=$natent['descr'];?>
</td> </td>
<td> <td>
<a type="submit" id="move_<?=$nnats;?>" name="move_<?=$nnats;?>_x" data-toggle="tooltip" data-placement="left" title="<?=gettext("move selected rules before this rule");?>" class="act_move btn btn-default btn-xs"> <a type="submit" id="move_<?=$nnats;?>" name="move_<?=$nnats;?>_x" data-toggle="tooltip" data-placement="left" title="<?=gettext("move selected rules before this rule");?>" class="act_move btn btn-default btn-xs">
<span class="glyphicon glyphicon-arrow-left"></span> <span class="glyphicon glyphicon-arrow-left"></span>
</a> </a>
<a href="firewall_nat_edit.php?id=<?=$nnats;?>" data-toggle="tooltip" data-placement="left" title="<?=gettext("edit this rule");?>" class="btn btn-default btn-xs"> <a href="firewall_nat_edit.php?id=<?=$nnats;?>" data-toggle="tooltip" data-placement="left" title="<?=gettext("edit this rule");?>" class="btn btn-default btn-xs">
<span class="glyphicon glyphicon-pencil"></span> <span class="glyphicon glyphicon-pencil"></span>
</a> </a>
<a id="del_<?=$nnats;?>" title="<?=gettext("delete this rule"); ?>" data-toggle="tooltip" class="act_delete btn btn-default btn-xs"> <a id="del_<?=$nnats;?>" title="<?=gettext("delete this rule"); ?>" data-toggle="tooltip" class="act_delete btn btn-default btn-xs">
<span class="glyphicon glyphicon-remove"></span> <span class="glyphicon glyphicon-remove"></span>
</a> </a>
<a href="firewall_nat_edit.php?dup=<?=$nnats;?>" class="btn btn-default btn-xs" data-toggle="tooltip" data-placement="left" title="<?=gettext("add new rule based on this one");?>"> <a href="firewall_nat_edit.php?dup=<?=$nnats;?>" class="btn btn-default btn-xs" data-toggle="tooltip" data-placement="left" title="<?=gettext("add new rule based on this one");?>">
<span class="glyphicon glyphicon-plus"></span> <span class="glyphicon glyphicon-plus"></span>
</a> </a>
</td> </td>
</tr> </tr>
<?php $nnats++; endforeach; ?> <?php $nnats++; endforeach; ?>
<tr> <tr>
<td colspan="8"></td> <td colspan="8"></td>
<td class="hidden-xs hidden-sm" colspan="4"> </td> <td class="hidden-xs hidden-sm" colspan="4"> </td>
<td> <td>
<?php if ($nnats == 0): ?> <?php if ($nnats == 0): ?>
<span class="btn btn-default btn-xs text-muted"> <span class="btn btn-default btn-xs text-muted">
<span class="glyphicon glyphicon-arrow-left"></span> <span class="glyphicon glyphicon-arrow-left"></span>
</span> </span>
<?php else: ?> <?php else: ?>
<a type="submit" id="move_<?=$nnats;?>" name="move_<?=$nnats;?>_x" data-toggle="tooltip" data-placement="left" title="<?=gettext("move selected rules to end");?>" class="act_move btn btn-default btn-xs"> <a type="submit" id="move_<?=$nnats;?>" name="move_<?=$nnats;?>_x" data-toggle="tooltip" data-placement="left" title="<?=gettext("move selected rules to end");?>" class="act_move btn btn-default btn-xs">
<span class="glyphicon glyphicon-arrow-left"></span> <span class="glyphicon glyphicon-arrow-left"></span>
</a> </a>
<?php endif; ?> <?php endif; ?>
<?php if (count($a_nat) == 0): ?> <?php if (count($a_nat) == 0): ?>
<span class="btn btn-default btn-xs text-muted" data-toggle="tooltip" data-placement="left" title="<?=gettext("delete selected rules");?>"><span class="glyphicon glyphicon-remove" ></span></span> <span class="btn btn-default btn-xs text-muted" data-toggle="tooltip" data-placement="left" title="<?=gettext("delete selected rules");?>"><span class="glyphicon glyphicon-remove" ></span></span>
<?php else: ?> <?php else: ?>
<a id="del_x" title="<?=gettext("delete selected rules"); ?>" data-toggle="tooltip" class="act_delete btn btn-default btn-xs"> <a id="del_x" title="<?=gettext("delete selected rules"); ?>" data-toggle="tooltip" class="act_delete btn btn-default btn-xs">
<span class="glyphicon glyphicon-remove"></span> <span class="glyphicon glyphicon-remove"></span>
</a> </a>
<?php endif; ?> <?php endif; ?>
<a href="firewall_nat_edit.php?after=-1" class="btn btn-default btn-xs" data-toggle="tooltip" data-placement="left" title="<?=gettext("add new rule");?>"> <a href="firewall_nat_edit.php?after=-1" class="btn btn-default btn-xs" data-toggle="tooltip" data-placement="left" title="<?=gettext("add new rule");?>">
<span class="glyphicon glyphicon-plus"></span> <span class="glyphicon glyphicon-plus"></span>
</a> </a>
</td> </td>
</tr> </tr>
</tbody> </tbody>
<tfoot> <tfoot>
<tr> <tr>
<td colspan="13">&nbsp;</td> <td colspan="13">&nbsp;</td>
</tr> </tr>
<tr> <tr>
<td width="16"><span class="glyphicon glyphicon-play text-success"></span></td> <td width="16"><span class="glyphicon glyphicon-play text-success"></span></td>
<td colspan="12"><?=gettext("Enabled rule"); ?></td> <td colspan="12"><?=gettext("Enabled rule"); ?></td>
</tr> </tr>
<tr> <tr>
<td><span class="glyphicon glyphicon-play text-muted"></span></td> <td><span class="glyphicon glyphicon-play text-muted"></span></td>
<td colspan="12"><?=gettext("Disabled rule"); ?></td> <td colspan="12"><?=gettext("Disabled rule"); ?></td>
</tr> </tr>
<tr> <tr>
<td><i class="fa fa-exclamation text-success"></i></td> <td><i class="fa fa-exclamation text-success"></i></td>
<td colspan="12"><?=gettext("No redirect"); ?></td> <td colspan="12"><?=gettext("No redirect"); ?></td>
</tr> </tr>
<tr> <tr>
<td><span class="glyphicon glyphicon-resize-horizontal text-success"></span></td> <td><span class="glyphicon glyphicon-resize-horizontal text-success"></span></td>
<td colspan="12"><?=gettext("linked rule");?></td> <td colspan="12"><?=gettext("linked rule");?></td>
</tr> </tr>
<tr> <tr>
<td><a><i class="fa fa-list"></i></a></td> <td><a><i class="fa fa-list"></i></a></td>
<td colspan="12"><?=gettext("Alias (click to view/edit)");?></td> <td colspan="12"><?=gettext("Alias (click to view/edit)");?></td>
</tr> </tr>
</tfoot> </tfoot>
</table> </table>
</div> </div>
</form> </form>
</div> </div>
</section> </section>
</div> </div>
</div> </div>
</section> </section>
<?php include("foot.inc"); ?> <?php include("foot.inc"); ?>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment