| 1 |
589f92bb
|
gnhb
|
<?php
|
| 2 |
|
|
/* $Id$ */
|
| 3 |
|
|
/*
|
| 4 |
42809b4a
|
gnhb
|
interfaces_ppps.php
|
| 5 |
589f92bb
|
gnhb
|
part of m0n0wall (http://m0n0.ch/wall)
|
| 6 |
|
|
|
| 7 |
|
|
Copyright (C) 2003-2004 Manuel Kasper <mk@neon1.net>.
|
| 8 |
|
|
All rights reserved.
|
| 9 |
|
|
|
| 10 |
|
|
Redistribution and use in source and binary forms, with or without
|
| 11 |
|
|
modification, are permitted provided that the following conditions are met:
|
| 12 |
|
|
|
| 13 |
|
|
1. Redistributions of source code must retain the above copyright notice,
|
| 14 |
|
|
this list of conditions and the following disclaimer.
|
| 15 |
|
|
|
| 16 |
|
|
2. Redistributions in binary form must reproduce the above copyright
|
| 17 |
|
|
notice, this list of conditions and the following disclaimer in the
|
| 18 |
|
|
documentation and/or other materials provided with the distribution.
|
| 19 |
|
|
|
| 20 |
|
|
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
| 21 |
|
|
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
|
| 22 |
|
|
AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
| 23 |
|
|
AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
|
| 24 |
|
|
OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
| 25 |
|
|
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
| 26 |
|
|
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
| 27 |
|
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
| 28 |
|
|
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
| 29 |
|
|
POSSIBILITY OF SUCH DAMAGE.
|
| 30 |
|
|
*/
|
| 31 |
|
|
/*
|
| 32 |
|
|
pfSense_BUILDER_BINARIES: /sbin/ifconfig
|
| 33 |
|
|
pfSense_MODULE: interfaces
|
| 34 |
|
|
*/
|
| 35 |
|
|
|
| 36 |
|
|
##|+PRIV
|
| 37 |
42809b4a
|
gnhb
|
##|*IDENT=page-interfaces-ppps
|
| 38 |
|
|
##|*NAME=Interfaces: ppps page
|
| 39 |
|
|
##|*DESCR=Allow access to the 'Interfaces: ppps' page.
|
| 40 |
|
|
##|*MATCH=interfaces_ppps.php*
|
| 41 |
589f92bb
|
gnhb
|
##|-PRIV
|
| 42 |
|
|
|
| 43 |
|
|
require("guiconfig.inc");
|
| 44 |
cfb9eb9f
|
Carlos Eduardo Ramos
|
require_once("functions.inc");
|
| 45 |
589f92bb
|
gnhb
|
|
| 46 |
e51cea69
|
gnhb
|
if (!is_array($config['ppps']['ppp']))
|
| 47 |
|
|
$config['ppps']['ppp'] = array();
|
| 48 |
589f92bb
|
gnhb
|
|
| 49 |
e51cea69
|
gnhb
|
$a_ppps = &$config['ppps']['ppp'] ;
|
| 50 |
589f92bb
|
gnhb
|
|
| 51 |
e51cea69
|
gnhb
|
function ppp_inuse($num) {
|
| 52 |
42809b4a
|
gnhb
|
global $config, $g, $a_ppps;
|
| 53 |
|
|
$iflist = get_configured_interface_list(false, true);
|
| 54 |
|
|
foreach ($iflist as $if) {
|
| 55 |
d76c9298
|
Ermal
|
if ($config['interfaces'][$if]['if'] == $a_ppps[$num]['if'])
|
| 56 |
42809b4a
|
gnhb
|
return true;
|
| 57 |
|
|
}
|
| 58 |
|
|
return false;
|
| 59 |
589f92bb
|
gnhb
|
}
|
| 60 |
|
|
|
| 61 |
|
|
if ($_GET['act'] == "del") {
|
| 62 |
|
|
/* check if still in use */
|
| 63 |
e51cea69
|
gnhb
|
if (ppp_inuse($_GET['id'])) {
|
| 64 |
f2047bd0
|
Rafael Lucas
|
$input_errors[] = gettext("This point-to-point link cannot be deleted because it is still being used as an interface.");
|
| 65 |
589f92bb
|
gnhb
|
} else {
|
| 66 |
5c8e8a17
|
gnhb
|
unset($a_ppps[$_GET['id']]['pppoe-reset-type']);
|
| 67 |
|
|
handle_pppoe_reset($a_ppps[$_GET['id']]);
|
| 68 |
e51cea69
|
gnhb
|
unset($a_ppps[$_GET['id']]);
|
| 69 |
589f92bb
|
gnhb
|
write_config();
|
| 70 |
42809b4a
|
gnhb
|
header("Location: interfaces_ppps.php");
|
| 71 |
589f92bb
|
gnhb
|
exit;
|
| 72 |
|
|
}
|
| 73 |
|
|
}
|
| 74 |
|
|
|
| 75 |
f2047bd0
|
Rafael Lucas
|
$pgtitle = gettext("Interfaces: PPPs");
|
| 76 |
589f92bb
|
gnhb
|
include("head.inc");
|
| 77 |
|
|
|
| 78 |
|
|
?>
|
| 79 |
|
|
|
| 80 |
|
|
<body link="#0000CC" vlink="#0000CC" alink="#0000CC">
|
| 81 |
|
|
<?php include("fbegin.inc"); ?>
|
| 82 |
|
|
<?php if ($input_errors) print_input_errors($input_errors); ?>
|
| 83 |
|
|
<table width="100%" border="0" cellpadding="0" cellspacing="0">
|
| 84 |
|
|
<tr><td>
|
| 85 |
|
|
<?php
|
| 86 |
|
|
$tab_array = array();
|
| 87 |
f2047bd0
|
Rafael Lucas
|
$tab_array[0] = array(gettext("Interface assignments"), false, "interfaces_assign.php");
|
| 88 |
|
|
$tab_array[1] = array(gettext("Interface Groups"), false, "interfaces_groups.php");
|
| 89 |
|
|
$tab_array[2] = array(gettext("Wireless"), false, "interfaces_wireless.php");
|
| 90 |
|
|
$tab_array[3] = array(gettext("VLANs"), false, "interfaces_vlan.php");
|
| 91 |
|
|
$tab_array[4] = array(gettext("QinQs"), false, "interfaces_qinq.php");
|
| 92 |
|
|
$tab_array[5] = array(gettext("PPPs"), true, "interfaces_ppps.php");
|
| 93 |
|
|
$tab_array[6] = array(gettext("GRE"), false, "interfaces_gre.php");
|
| 94 |
|
|
$tab_array[7] = array(gettext("GIF"), false, "interfaces_gif.php");
|
| 95 |
|
|
$tab_array[8] = array(gettext("Bridges"), false, "interfaces_bridge.php");
|
| 96 |
|
|
$tab_array[9] = array(gettext("LAGG"), false, "interfaces_lagg.php");
|
| 97 |
589f92bb
|
gnhb
|
display_top_tabs($tab_array);
|
| 98 |
|
|
?>
|
| 99 |
|
|
</td></tr>
|
| 100 |
|
|
<tr>
|
| 101 |
|
|
<td>
|
| 102 |
|
|
<div id="mainarea">
|
| 103 |
|
|
<table class="tabcont" width="100%" border="0" cellpadding="0" cellspacing="0">
|
| 104 |
|
|
<tr>
|
| 105 |
f2047bd0
|
Rafael Lucas
|
<td width="20%" class="listhdrr"><?=gettext("Interface");?></td>
|
| 106 |
|
|
<td width="20%" class="listhdrr"><?=gettext("Interface(s)/Port(s)");?></td>
|
| 107 |
|
|
<td width="40%" class="listhdr"><?=gettext("Description");?></td>
|
| 108 |
589f92bb
|
gnhb
|
<td width="10%" class="list"></td>
|
| 109 |
|
|
</tr>
|
| 110 |
e51cea69
|
gnhb
|
<?php $i = 0; foreach ($a_ppps as $id => $ppp): ?>
|
| 111 |
42809b4a
|
gnhb
|
<tr ondblclick="document.location='interfaces_ppps_edit.php?id=<?=$i;?>'">
|
| 112 |
e51cea69
|
gnhb
|
<td class="listr">
|
| 113 |
e5d558bf
|
gnhb
|
<?=htmlspecialchars($ppp['if']);?>
|
| 114 |
589f92bb
|
gnhb
|
</td>
|
| 115 |
|
|
<td class="listr">
|
| 116 |
64b4be44
|
Ermal
|
<?php
|
| 117 |
|
|
$portlist = explode(",", $ppp['ports']);
|
| 118 |
|
|
foreach ($portlist as $portid => $port) {
|
| 119 |
69c1b043
|
gnhb
|
if ($port != get_real_interface($port) && $ppp['type'] != "ppp")
|
| 120 |
64b4be44
|
Ermal
|
$portlist[$portid] = convert_friendly_interface_to_friendly_descr($port);
|
| 121 |
|
|
}
|
| 122 |
|
|
echo htmlspecialchars(implode(",", $portlist));
|
| 123 |
|
|
?>
|
| 124 |
589f92bb
|
gnhb
|
</td>
|
| 125 |
|
|
<td class="listbg">
|
| 126 |
e51cea69
|
gnhb
|
<?=htmlspecialchars($ppp['descr']);?>
|
| 127 |
589f92bb
|
gnhb
|
</td>
|
| 128 |
42809b4a
|
gnhb
|
<td valign="middle" nowrap class="list"> <a href="interfaces_ppps_edit.php?id=<?=$i;?>"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_e.gif" width="17" height="17" border="0"></a>
|
| 129 |
6b1bac0a
|
Vinicius Coque
|
<a href="interfaces_ppps.php?act=del&id=<?=$i;?>" onclick="return confirm('<?=gettext("Do you really want to delete this PPP interface?");?>')"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_x.gif" width="17" height="17" border="0"></a></td>
|
| 130 |
589f92bb
|
gnhb
|
</tr>
|
| 131 |
|
|
<?php $i++; endforeach; ?>
|
| 132 |
|
|
<tr>
|
| 133 |
|
|
<td class="list" colspan="3"> </td>
|
| 134 |
42809b4a
|
gnhb
|
<td class="list"> <a href="interfaces_ppps_edit.php"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_plus.gif" width="17" height="17" border="0"></a></td>
|
| 135 |
589f92bb
|
gnhb
|
</tr>
|
| 136 |
|
|
</table>
|
| 137 |
|
|
</div>
|
| 138 |
|
|
</td>
|
| 139 |
|
|
</tr>
|
| 140 |
|
|
</table>
|
| 141 |
|
|
<?php include("fend.inc"); ?>
|
| 142 |
|
|
</body>
|
| 143 |
|
|
</html>
|