Project

General

Profile

Download (5.97 KB) Statistics
| Branch: | Tag: | Revision:
1 94be2ccf Ermal Luçi
<?php
2
/* $Id$ */
3
/*
4
	interfaces_lagg.php
5
6
	Copyright (C) 2008 Ermal Lu?i
7
	All rights reserved.
8
9
	Redistribution and use in source and binary forms, with or without
10
	modification, are permitted provided that the following conditions are met:
11
12
	1. Redistributions of source code must retain the above copyright notice,
13
	   this list of conditions and the following disclaimer.
14
15
	2. Redistributions in binary form must reproduce the above copyright
16
	   notice, this list of conditions and the following disclaimer in the
17
	   documentation and/or other materials provided with the distribution.
18
19
	THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
20
	INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
21
	AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
22
	AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
23
	OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24
	SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25
	INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26
	CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27
	ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28
	POSSIBILITY OF SUCH DAMAGE.
29
*/
30 7ac5a4cb Scott Ullrich
/*
31
	pfSense_BUILDER_BINARIES:	/sbin/ifconfig
32
	pfSense_MODULE:	interfaces
33
*/
34
35
##|+PRIV
36
##|*IDENT=page-interfacess-lagg
37
##|*NAME=Interfaces: LAGG: page
38
##|*DESCR=Edit Interface LAGG
39
##|*MATCH=interfaces_lagg.php*
40
##|-PRIV
41 94be2ccf Ermal Luçi
42
require("guiconfig.inc");
43
44
if (!is_array($config['laggs']['lagg']))
45
	$config['laggs']['lagg'] = array();
46
47
$a_laggs = &$config['laggs']['lagg'] ;
48
49
function lagg_inuse($num) {
50 67b6de9e Ermal Lu?i
	global $config, $a_laggs;
51 94be2ccf Ermal Luçi
52
	$iflist = get_configured_interface_list(false, true);
53
	foreach ($iflist as $if) {
54 2eedb548 Ermal Luçi
		if ($config['interfaces'][$if]['if'] == $a_laggs[$num]['laggif'])
55 94be2ccf Ermal Luçi
			return true;
56
	}
57
58 67b6de9e Ermal Lu?i
	if (is_array($config['vlans']['vlan']) && count($config['vlans']['vlan'])) {
59
                foreach ($config['vlans']['vlan'] as $vlan) {
60
                        if($vlan['if'] == $a_laggs[$num]['laggif'])
61
				return true;
62
                }
63
        }
64 94be2ccf Ermal Luçi
	return false;
65
}
66
67
if ($_GET['act'] == "del") {
68 0e22dda5 Ermal
        if (!isset($_GET['id']))
69
                $input_errors[] = getext("Wrong parameters supplied");
70
        else if (empty($a_laggs[$_GET['id']]))
71
                $input_errors[] = getext("Wrong index supplied");
72 94be2ccf Ermal Luçi
	/* check if still in use */
73 0e22dda5 Ermal
	else if (lagg_inuse($_GET['id'])) {
74 b705a25b Carlos Eduardo Ramos
		$input_errors[] = gettext("This LAGG interface cannot be deleted because it is still being used.");
75 94be2ccf Ermal Luçi
	} else {
76 67b6de9e Ermal Lu?i
		mwexec_bg("/sbin/ifconfig " . $a_laggs[$_GET['id']]['laggif'] . " destroy");
77 94be2ccf Ermal Luçi
		unset($a_laggs[$_GET['id']]);
78
79
		write_config();
80
81
		header("Location: interfaces_lagg.php");
82
		exit;
83
	}
84
}
85
86 b705a25b Carlos Eduardo Ramos
$pgtitle = array(gettext("Interfaces"),gettext("LAGG"));
87 b32dd0a6 jim-p
$shortcut_section = "interfaces";
88 94be2ccf Ermal Luçi
include("head.inc");
89
90
?>
91
92
<body link="#0000CC" vlink="#0000CC" alink="#0000CC">
93
<?php include("fbegin.inc"); ?>
94
<?php if ($input_errors) print_input_errors($input_errors); ?>
95
<table width="100%" border="0" cellpadding="0" cellspacing="0">
96
  <tr><td>
97
<?php
98
	$tab_array = array();
99 b705a25b Carlos Eduardo Ramos
	$tab_array[0] = array(gettext("Interface assignments"), false, "interfaces_assign.php");
100
	$tab_array[1] = array(gettext("Interface Groups"), false, "interfaces_groups.php");
101
	$tab_array[2] = array(gettext("Wireless"), false, "interfaces_wireless.php");
102 77621e7a Carlos Eduardo Ramos
	$tab_array[3] = array(gettext("VLANs"), false, "interfaces_vlan.php");
103
	$tab_array[4] = array(gettext("QinQs"), false, "interfaces_qinq.php");
104
	$tab_array[5] = array(gettext("PPPs"), false, "interfaces_ppps.php");
105
	$tab_array[6] = array(gettext("GRE"), false, "interfaces_gre.php");
106
	$tab_array[7] = array(gettext("GIF"), false, "interfaces_gif.php");
107 b705a25b Carlos Eduardo Ramos
	$tab_array[8] = array(gettext("Bridges"), false, "interfaces_bridge.php");
108 77621e7a Carlos Eduardo Ramos
	$tab_array[9] = array(gettext("LAGG"), true, "interfaces_lagg.php");
109 94be2ccf Ermal Luçi
	display_top_tabs($tab_array);
110
?>
111
  </td></tr>
112
  <tr>
113
    <td>
114
	<div id="mainarea">
115
	<table class="tabcont" width="100%" border="0" cellpadding="0" cellspacing="0">
116
                <tr>
117 b705a25b Carlos Eduardo Ramos
                  <td width="20%" class="listhdrr"><?=gettext("Interface"); ?></td>
118
                  <td width="20%" class="listhdrr"><?=gettext("Members"); ?></td>
119
                  <td width="50%" class="listhdr"><?=gettext("Description"); ?></td>
120 94be2ccf Ermal Luçi
                  <td width="10%" class="list"></td>
121
				</tr>
122
			  <?php $i = 0; foreach ($a_laggs as $lagg): ?>
123 fd22be34 Ermal Lu?i
                <tr  ondblclick="document.location='interfaces_lagg_edit.php?id=<?=$i;?>'">
124 94be2ccf Ermal Luçi
                  <td class="listlr">
125 6c6a618a Ermal Luçi
					<?=htmlspecialchars(strtoupper($lagg['laggif']));?>
126 94be2ccf Ermal Luçi
                  </td>
127
                  <td class="listr">
128
					<?=htmlspecialchars($lagg['members']);?>
129
                  </td>
130
                  <td class="listbg">
131
                    <?=htmlspecialchars($lagg['descr']);?>&nbsp;
132
                  </td>
133
                  <td valign="middle" nowrap class="list"> <a href="interfaces_lagg_edit.php?id=<?=$i;?>"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_e.gif" width="17" height="17" border="0"></a>
134 22a11a58 Larry Gilbert
                     &nbsp;<a href="interfaces_lagg.php?act=del&id=<?=$i;?>" onclick="return confirm('Do you really want to delete this LAGG interface?')"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_x.gif" width="17" height="17" border="0"></a></td>
135 94be2ccf Ermal Luçi
				</tr>
136
			  <?php $i++; endforeach; ?>
137
                <tr>
138
                  <td class="list" colspan="3">&nbsp;</td>
139
                  <td class="list"> <a href="interfaces_lagg_edit.php"><img src="./themes/<?= $g['theme']; ?>/images/icons/icon_plus.gif" width="17" height="17" border="0"></a></td>
140
				</tr>
141
				<tr>
142
				<td colspan="3" class="list"><p class="vexpl"><span class="red"><strong>
143 0952c85b Vinicius Coque
				  <?=gettext("Note:"); ?><br>
144 94be2ccf Ermal Luçi
				  </strong></span>
145 0952c85b Vinicius Coque
				  <?=gettext("LAGG allows for link aggregation, bonding and fault tolerance. Only unassigned interfaces can be added to LAGG."); ?>
146 94be2ccf Ermal Luçi
				  </td>
147
				<td class="list">&nbsp;</td>
148
				</tr>
149
              </table>
150
	      </div>
151
	</td>
152
	</tr>
153
</table>
154
<?php include("fend.inc"); ?>
155
</body>
156
</html>