vpn_pppoe_edit.php 26.9 KB
Newer Older
Ad Schellevis's avatar
Ad Schellevis committed
1
<?php
2

Ad Schellevis's avatar
Ad Schellevis committed
3
/*
4
	Copyright (C) 2014-2015 Deciso B.V.
Ad Schellevis's avatar
Ad Schellevis committed
5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
	Copyright (C) 2005 Scott Ullrich (sullrich@gmail.com)
	Copyright (C) 2010 Ermal Luçi
	All rights reserved.

	Redistribution and use in source and binary forms, with or without
	modification, are permitted provided that the following conditions are met:

	1. Redistributions of source code must retain the above copyright notice,
	   this list of conditions and the following disclaimer.

	2. Redistributions in binary form must reproduce the above copyright
	   notice, this list of conditions and the following disclaimer in the
	   documentation and/or other materials provided with the distribution.

	THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
	INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
	AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
	AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
	OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
	SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
	INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
	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
	POSSIBILITY OF SUCH DAMAGE.
*/

31
require_once("guiconfig.inc");
Ad Schellevis's avatar
Ad Schellevis committed
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213
require_once("vpn.inc");

function vpn_pppoe_get_id() {
	global $config;

	$vpnid = 1;
	if (is_array($config['pppoes']['pppoe'])) {
		foreach ($config['pppoes']['pppoe'] as $pppoe) {
			if ($vpnid == $pppoe['pppoeid'])
				$vpnid++;
			else
				return $vpnid;
		}
	}

	return $vpnid;
}

if (!is_array($config['pppoes']['pppoe'])) {
	$config['pppoes']['pppoe'] = array();
}
$a_pppoes = &$config['pppoes']['pppoe'];

if (is_numericint($_GET['id']))
	$id = $_GET['id'];
if (isset($_POST['id']) && is_numericint($_POST['id']))
	$id = $_POST['id'];

if (isset($id) && $a_pppoes[$id]) {
	$pppoecfg =& $a_pppoes[$id];

	$pconfig['remoteip'] = $pppoecfg['remoteip'];
	$pconfig['localip'] = $pppoecfg['localip'];
	$pconfig['mode'] = $pppoecfg['mode'];
	$pconfig['interface'] = $pppoecfg['interface'];
	$pconfig['n_pppoe_units'] = $pppoecfg['n_pppoe_units'];
	$pconfig['pppoe_subnet'] = $pppoecfg['pppoe_subnet'];
	$pconfig['pppoe_dns1'] = $pppoecfg['dns1'];
	$pconfig['pppoe_dns2'] = $pppoecfg['dns2'];
	$pconfig['descr'] = $pppoecfg['descr'];
	$pconfig['username'] = $pppoecfg['username'];
	$pconfig['pppoeid'] = $pppoecfg['pppoeid'];
	if (is_array($pppoecfg['radius'])) {
		$pconfig['radacct_enable'] = isset($pppoecfg['radius']['accounting']);
		$pconfig['radiusissueips'] = isset($pppoecfg['radius']['radiusissueips']);
		if (is_array($pppoecfg['radius']['server'])) {
			$pconfig['radiusenable'] = isset($pppoecfg['radius']['server']['enable']);
			$pconfig['radiusserver'] = $pppoecfg['radius']['server']['ip'];
			$pconfig['radiusserverport'] = $pppoecfg['radius']['server']['port'];
			$pconfig['radiusserveracctport'] = $pppoecfg['radius']['server']['acctport'];
			$pconfig['radiussecret'] = $pppoecfg['radius']['server']['secret'];
		}
		if (is_array($pppoecfg['radius']['server2'])) {
			$pconfig['radiussecenable'] = isset($pppoecfg['radius']['server2']['enable']);
			$pconfig['radiusserver2'] = $pppoecfg['radius']['server2']['ip'];
			$pconfig['radiusserver2port'] = $pppoecfg['radius']['server2']['port'];
			$pconfig['radiusserver2acctport'] = $pppoecfg['radius']['server2']['acctport'];
			$pconfig['radiussecret2'] = $pppoecfg['radius']['server2']['secret2'];
		}
		$pconfig['radius_nasip'] = $pppoecfg['radius']['nasip'];
		$pconfig['radius_acct_update'] = $pppoecfg['radius']['acct_update'];
	}
}


if ($_POST) {

	unset($input_errors);
	$pconfig = $_POST;

	/* input validation */
	if ($_POST['mode'] == "server") {
		$reqdfields = explode(" ", "localip remoteip");
		$reqdfieldsn = array(gettext("Server address"),gettext("Remote start address"));

		if ($_POST['radiusenable']) {
			$reqdfields = array_merge($reqdfields, explode(" ", "radiusserver radiussecret"));
			$reqdfieldsn = array_merge($reqdfieldsn,
				array(gettext("RADIUS server address"),gettext("RADIUS shared secret")));
		}

		do_input_validation($_POST, $reqdfields, $reqdfieldsn, $input_errors);

		if (($_POST['localip'] && !is_ipaddr($_POST['localip'])))
			$input_errors[] = gettext("A valid server address must be specified.");
		if (($_POST['pppoe_subnet'] && !is_ipaddr($_POST['remoteip'])))
			$input_errors[] = gettext("A valid remote start address must be specified.");
		if (($_POST['radiusserver'] && !is_ipaddr($_POST['radiusserver'])))
			$input_errors[] = gettext("A valid RADIUS server address must be specified.");

		$_POST['remoteip'] = $pconfig['remoteip'] = gen_subnet($_POST['remoteip'], $_POST['pppoe_subnet']);
		$subnet_start = ip2ulong($_POST['remoteip']);
		$subnet_end = ip2ulong($_POST['remoteip']) + $_POST['pppoe_subnet'] - 1;
		if ((ip2ulong($_POST['localip']) >= $subnet_start) &&
		    (ip2ulong($_POST['localip']) <= $subnet_end))
			$input_errors[] = gettext("The specified server address lies in the remote subnet.");
		if ($_POST['localip'] == get_interface_ip($_POST['interface']))
			$input_errors[] = gettext("The specified server address is equal to an interface ip address.");

		for($x=0; $x<4999; $x++) {
			if ($_POST["username{$x}"]) {
				if (empty($_POST["password{$x}"]))
					$input_errors[] = sprintf(gettext("No password specified for username %s"),$_POST["username{$x}"]);
				if ($_POST["ip{$x}"] <> "" && !is_ipaddr($_POST["ip{$x}"]))
					$input_errors[] = sprintf(gettext("Incorrect ip address  specified for username %s"),$_POST["username{$x}"]);
			}
		}
	}

	if ($_POST['pppoeid'] && !is_numeric($_POST['pppoeid']))
		$input_errors[] = gettext("Wrong data submitted");

	if (!$input_errors) {
		$pppoecfg = array();

		$pppoecfg['remoteip'] = $_POST['remoteip'];
		$pppoecfg['localip'] = $_POST['localip'];
		$pppoecfg['mode'] = $_POST['mode'];
		$pppoecfg['interface'] = $_POST['interface'];
		$pppoecfg['n_pppoe_units'] = $_POST['n_pppoe_units'];
		$pppoecfg['pppoe_subnet'] = $_POST['pppoe_subnet'];
		$pppoecfg['descr'] = $_POST['descr'];
		if ($_POST['radiusserver'] || $_POST['radiusserver2']) {
			$pppoecfg['radius'] = array();

			$pppoecfg['radius']['nasip'] = $_POST['radius_nasip'];
			$pppoecfg['radius']['acct_update'] = $_POST['radius_acct_update'];
		}
		if ($_POST['radiusserver']) {
			$pppoecfg['radius']['server'] = array();

			$pppoecfg['radius']['server']['ip'] = $_POST['radiusserver'];
			$pppoecfg['radius']['server']['secret'] = $_POST['radiussecret'];
			$pppoecfg['radius']['server']['port'] = $_POST['radiusserverport'];
			$pppoecfg['radius']['server']['acctport'] = $_POST['radiusserveracctport'];
		}
		if ($_POST['radiusserver2']) {
			$pppoecfg['radius']['server2'] = array();

			$pppoecfg['radius']['server2']['ip'] = $_POST['radiusserver2'];
			$pppoecfg['radius']['server2']['secret2'] = $_POST['radiussecret2'];
			$pppoecfg['radius']['server2']['port'] = $_POST['radiusserver2port'];
			$pppoecfg['radius']['server2']['acctport'] = $_POST['radiusserver2acctport'];
		}

		if ($_POST['pppoe_dns1'] <> "")
			$pppoecfg['dns1'] = $_POST['pppoe_dns1'];

		if ($_POST['pppoe_dns2'] <> "")
			$pppoecfg['dns2'] = $_POST['pppoe_dns2'];

		if($_POST['radiusenable'] == "yes")
			$pppoecfg['radius']['server']['enable'] = true;

		if($_POST['radiussecenable'] == "yes")
			$pppoecfg['radius']['server2']['enable'] = true;

		if($_POST['radacct_enable'] == "yes")
			$pppoecfg['radius']['accounting'] = true;

		if($_POST['radiusissueips'] == "yes")
			$pppoecfg['radius']['radiusissueips'] = true;

		if($_POST['pppoeid'])
			$pppoecfg['pppoeid'] = $_POST['pppoeid'];
		else
			$pppoecfg['pppoeid'] = vpn_pppoe_get_id();

		$users = array();
		for($x=0; $x<4999; $x++) {
			if ($_POST["username{$x}"]) {
				$usernam = $_POST["username{$x}"] . ":" . base64_encode($_POST["password{$x}"]);
				if ($_POST["ip{$x}"])
					$usernam .= ":" . $_POST["ip{$x}"];
				$users[] = $usernam;
			}
		}
		if (count($users) > 0)
			$pppoecfg['username'] = implode(" ", $users);

		if (!isset($id))
			$id = count($a_pppoes);
214 215 216
		if (file_exists('/tmp/.vpn_pppoe.apply')) {
			$toapplylist = unserialize(file_get_contents('/tmp/.vpn_pppoe.apply'));
		} else {
Ad Schellevis's avatar
Ad Schellevis committed
217
			$toapplylist = array();
218
		}
Ad Schellevis's avatar
Ad Schellevis committed
219 220 221 222 223 224

		$toapplylist[] = $pppoecfg['pppoeid'];
		$a_pppoes[$id] = $pppoecfg;

		write_config();
		mark_subsystem_dirty('vpnpppoe');
225
		file_put_contents('/tmp/.vpn_pppoe.apply', serialize($toapplylist));
Ad Schellevis's avatar
Ad Schellevis committed
226 227 228 229 230 231 232 233 234 235 236
		header("Location: vpn_pppoe.php");
		exit;
	}
}

$pgtitle = array(gettext("Services"),gettext("PPPoE Server"), gettext("Edit"));
$shortcut_section = "pppoes";
include("head.inc");

?>

Ad Schellevis's avatar
Ad Schellevis committed
237
<body>
Ad Schellevis's avatar
Ad Schellevis committed
238 239
<?php include("fbegin.inc"); ?>

Ad Schellevis's avatar
Ad Schellevis committed
240
	<script type="text/javascript" src="/javascript/row_helper.js"></script>
241 242


Ad Schellevis's avatar
Ad Schellevis committed
243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342
<script type="text/javascript">
	//<![CDATA[
	rowname[0] = "username";
	rowtype[0] = "textbox";
	rowsize[0] = "20";

	rowname[1] = "password";
	rowtype[1] = "password";
	rowsize[1] = "20";

	rowname[2] = "ip";
	rowtype[2] = "textbox";
	rowsize[2] = "10";
	//]]>
</script>

<script type="text/javascript">
//<![CDATA[
function get_radio_value(obj)
{
	for (i = 0; i < obj.length; i++) {
		if (obj[i].checked)
			return obj[i].value;
	}
	return null;
}

function enable_change(enable_over) {
	if ((get_radio_value(document.iform.mode) == "server") || enable_over) {
		document.iform.remoteip.disabled = 0;
		document.iform.descr.disabled = 0;
		document.iform.localip.disabled = 0;
		document.iform.radiusenable.disabled = 0;
		document.iform.interface.disabled = 0;
		document.iform.n_pppoe_units.disabled = 0;
		document.iform.pppoe_subnet.disabled = 0;
		document.iform.pppoe_dns1.disabled = 0;
		document.iform.pppoe_dns2.disabled = 0;
		if (document.iform.radiusenable.checked || enable_over) {
			document.iform.radacct_enable.disabled = 0;
			document.iform.radiusserver.disabled = 0;
			document.iform.radiussecret.disabled = 0;
			document.iform.radiusserverport.disabled = 0;
			document.iform.radiusserveracctport.disabled = 0;
			document.iform.radiusissueips.disabled = 0;
			document.iform.radius_nasip.disabled = 0;
			document.iform.radiusissueips.disabled = 0;
			document.iform.radius_nasip.disabled = 0;
			document.iform.radius_acct_update.disabled = 0;
			document.iform.radiussecenable.disabled = 0;
			if (document.iform.radiussecenable.checked || enable_over) {
				document.iform.radiusserver2.disabled = 0;
				document.iform.radiussecret2.disabled = 0;
				document.iform.radiusserver2port.disabled = 0;
				document.iform.radiusserver2acctport.disabled = 0;
			} else {

				document.iform.radiusserver2.disabled = 1;
				document.iform.radiussecret2.disabled = 1;
				document.iform.radiusserver2port.disabled = 1;
				document.iform.radiusserver2acctport.disabled = 1;
			}
		} else {
			document.iform.radacct_enable.disabled = 1;
			document.iform.radiusserver.disabled = 1;
			document.iform.radiussecret.disabled = 1;
			document.iform.radiusserverport.disabled = 1;
			document.iform.radiusserveracctport.disabled = 1;
			document.iform.radiusissueips.disabled = 1;
			document.iform.radius_nasip.disabled = 1;
			document.iform.radius_acct_update.disabled = 1;
			document.iform.radiussecenable.disabled = 1;
		}
	} else {
		document.iform.interface.disabled = 1;
		document.iform.n_pppoe_units.disabled = 1;
		document.iform.pppoe_subnet.disabled = 1;
		document.iform.remoteip.disabled = 1;
		document.iform.descr.disabled = 1;
		document.iform.localip.disabled = 1;
		document.iform.pppoe_dns1.disabled = 1;
		document.iform.pppoe_dns2.disabled = 1;
		document.iform.radiusenable.disabled = 1;
		document.iform.radiussecenable.disabled = 1;
		document.iform.radacct_enable.disabled = 1;
		document.iform.radiusserver.disabled = 1;
		document.iform.radiussecret.disabled = 1;
		document.iform.radiusserverport.disabled = 1;
		document.iform.radiusserveracctport.disabled = 1;
		document.iform.radiusserver2.disabled = 1;
		document.iform.radiussecret2.disabled = 1;
		document.iform.radiusserver2port.disabled = 1;
		document.iform.radiusserver2acctport.disabled = 1;
		document.iform.radiusissueips.disabled = 1;
		document.iform.radius_nasip.disabled = 1;
		document.iform.radius_acct_update.disabled = 1;
	}
}
//]]>
</script>
Ad Schellevis's avatar
Ad Schellevis committed
343 344 345 346

	<section class="page-content-main">

		<div class="container-fluid">
347 348

			<div class="row">
Ad Schellevis's avatar
Ad Schellevis committed
349 350 351 352 353 354 355 356
				<?php
				if ($input_errors)
					print_input_errors($input_errors);
				if ($savemsg)
					print_info_box($savemsg);
				?>

			    <section class="col-xs-12">
357 358 359 360

				<div class="content-box">

		                        <form action="vpn_pppoe_edit.php" method="post" name="iform" id="iform">
Ad Schellevis's avatar
Ad Schellevis committed
361 362
									<input type='hidden' name='username' value='textbox' class="formfld unknown" />
									<input type='hidden' name='password' value='textbox' />
363 364 365 366 367
									<input type='hidden' name='ip' value='textbox' />

						<div class="table-responsive">
							<table class="table table-striped table-sort">

Ad Schellevis's avatar
Ad Schellevis committed
368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383
											<tr>
												<td height="16" colspan="2" class="listtopic" valign="top"><?php echo gettext("PPPoE server configuration"); ?></td>
											</tr>
											<tr>
												<td width="22%" valign="top" class="vtable">&nbsp;</td>
												<td width="78%" class="vtable">
													<input name="mode" type="radio" onclick="enable_change(false)" value="off" <?php if ($pconfig['mode'] != "server") echo "checked=\"checked\"";?> />
													<?=gettext("Off"); ?>
												</td>
											</tr>
											<tr>
												<td width="22%" valign="top" class="vtable">&nbsp;</td>
												<td width="78%" class="vtable">
													<input type="radio" name="mode" value="server" onclick="enable_change(false)" <?php if ($pconfig['mode'] == "server") echo "checked=\"checked\""; ?> />
													<?=gettext("Enable PPPoE server"); ?></td>
											</tr>
384

Ad Schellevis's avatar
Ad Schellevis committed
385 386 387
											<tr>
												<td width="22%" valign="top" class="vncell"><b><?=gettext("Interface"); ?></b></td>
												<td width="78%" valign="top" class="vtable">
388

Ad Schellevis's avatar
Ad Schellevis committed
389 390 391 392 393 394 395 396 397 398 399 400
													<select name="interface" class="formselect" id="interface">
						<?php
													$interfaces = get_configured_interface_with_descr();
													foreach ($interfaces as $iface => $ifacename):
						?>
														<option value="<?=$iface;?>" <?php if ($iface == $pconfig['interface']) echo "selected=\"selected\""; ?>>
															<?=htmlspecialchars($ifacename);?>
														</option>
						<?php
													endforeach;
						?>
													</select> <br />
401

Ad Schellevis's avatar
Ad Schellevis committed
402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615
												</td>
											</tr>
											<tr>
												<td width="22%" valign="top" class="vncellreq"><?=gettext("Subnet netmask"); ?></td>
												<td width="78%" class="vtable">
													<select id="pppoe_subnet" name="pppoe_subnet">
						<?php
													for($x=0; $x<33; $x++) {
														if($x == $pconfig['pppoe_subnet'])
															$selected = "selected=\"selected\"";
														else
															$selected = "";
														echo "<option value=\"{$x}\" {$selected}>{$x}</option>\n";
													}
						?>
													</select>
													<br /><?=gettext("Hint"); ?>: 24 <?=gettext("is"); ?> 255.255.255.0
												</td>
											</tr>
											<tr>
												<td width="22%" valign="top" class="vncellreq"><?=gettext("No. PPPoE users"); ?></td>
												<td width="78%" class="vtable">
													<select id="n_pppoe_units" name="n_pppoe_units">
						<?php
													for($x=0; $x<255; $x++) {
														if($x == $pconfig['n_pppoe_units'])
															$selected = "selected=\"selected\"";
														else
															$selected = "";
														echo "<option value=\"{$x}\" {$selected}>{$x}</option>\n";
													}
						?>
													</select>
													<br /><?=gettext("Hint: 10 is ten PPPoE clients"); ?>
												</td>
											</tr>
											<tr>
												<td width="22%" valign="top" class="vncellreq"><?=gettext("Server address"); ?></td>
												<td width="78%" class="vtable">
													<?=$mandfldhtml;?><input name="localip" type="text" class="formfld unknown" id="localip" size="20" value="<?=htmlspecialchars($pconfig['localip']);?>" />
													<br />
													<?=gettext("Enter the IP address the PPPoE server should give to clients for use as their \"gateway\""); ?>.
													<br />
													<?=gettext("Typically this is set to an unused IP just outside of the client range"); ?>.
													<br />
													<br />
													<?=gettext("NOTE: This should NOT be set to any IP address currently in use on this firewall"); ?>.</td>
											</tr>
											<tr>
												<td width="22%" valign="top" class="vncellreq"><?=gettext("Remote address range"); ?></td>
												<td width="78%" class="vtable">
													<?=$mandfldhtml;?><input name="remoteip" type="text" class="formfld unknown" id="remoteip" size="20" value="<?=htmlspecialchars($pconfig['remoteip']);?>" />
													<br />
													<?=gettext("Specify the starting address for the client IP address subnet"); ?>.<br />
												</td>
											</tr>
											<tr>
												<td width="22%" valign="top" class="vncell"><?=gettext("Description"); ?></td>
												<td width="78%" class="vtable">
													<?=$mandfldhtml;?><input name="descr" type="text" class="formfld unknown" id="descr" size="40" value="<?=htmlspecialchars($pconfig['descr']);?>" />
													<br />
												</td>
											</tr>
											<tr>
												<td width="22%" valign="top" class="vncell"><?=gettext("DNS servers"); ?></td>
												<td width="78%" class="vtable">
													<?=$mandfldhtml;?><input name="pppoe_dns1" type="text" class="formfld unknown" id="pppoe_dns1" size="20" value="<?=htmlspecialchars($pconfig['pppoe_dns1']);?>" />
													<br />
													<input name="pppoe_dns2" type="text" class="formfld unknown" id="pppoe_dns2" size="20" value="<?=htmlspecialchars($pconfig['pppoe_dns2']);?>" />
													<br />
													<?=gettext("If entered they will be given to all PPPoE clients, else LAN DNS and one WAN DNS will go to all clients"); ?><br />
												</td>
											</tr>
											<tr>
												<td width="22%" valign="top" class="vncell"><?=gettext("RADIUS"); ?></td>
												<td width="78%" class="vtable">
													<input name="radiusenable" type="checkbox" id="radiusenable" onclick="enable_change(false)" value="yes" <?php if ($pconfig['radiusenable']) echo "checked=\"checked\""; ?> />
													<strong><?=gettext("Use a RADIUS server for authentication"); ?><br />
													</strong><?=gettext("When set, all users will be authenticated using " .
													"the RADIUS server specified below. The local user database " .
													"will not be used"); ?>.<br />
													<br />
													<input name="radacct_enable" type="checkbox" id="radacct_enable" onclick="enable_change(false)" value="yes" <?php if ($pconfig['radacct_enable']) echo "checked=\"checked\""; ?> />
													<strong><?=gettext("Enable RADIUS accounting"); ?> <br />
														<br />
													</strong><?=gettext("Sends accounting packets to the RADIUS server"); ?>.<br />
													<input name="radiussecenable" type="checkbox" id="radiussecenable" onclick="enable_change(false)" value="yes" <?php if ($pconfig['radiussecenable']) echo "checked=\"checked\""; ?> />
													<strong><?=gettext("Use Backup RADIUS Server"); ?></strong><br />
													<?=gettext("When set, if primary server fails all requests will be sent via backup server"); ?></td>
											</tr>
											<tr>
												<td width="22%" valign="top" class="vncellreq"><?=gettext("NAS IP Address"); ?></td>
												<td width="78%" class="vtable">
													<?=$mandfldhtml;?><input name="radius_nasip" type="text" class="formfld unknown" id="radius_nasip" size="20" value="<?=htmlspecialchars($pconfig['radius_nasip']);?>" />
													<br /><?=gettext("RADIUS server NAS IP Address"); ?><br />
												</td>
											</tr>
											<tr>
												<td width="22%" valign="top" class="vncellreq"><?=gettext("RADIUS Accounting Update"); ?></td>
												<td width="78%" class="vtable">
													<?=$mandfldhtml;?><input name="radius_acct_update" type="text" class="formfld unknown" id="radius_acct_update" size="20" value="<?=htmlspecialchars($pconfig['radius_acct_update']);?>" />
													<br /><?=gettext("RADIUS accounting update period in seconds"); ?>
												</td>
											</tr>
											<tr>
												<td width="22%" valign="top" class="vncell"><?=gettext("RADIUS issued IPs"); ?></td>
												<td width="78%" valign="top" class="vtable">
													<input name="radiusissueips" value="yes" type="checkbox" class="formfld" id="radiusissueips" <?php if($pconfig['radiusissueips']) echo "checked=\"checked\""; ?> />
													<br /><?=gettext("Issue IP Addresses via RADIUS server"); ?>.</td>
											</tr>
											<tr>
												<td width="22%" valign="top" class="vncell"><?=gettext("RADIUS server Primary"); ?></td>
												<td width="78%" class="vtable">
													<input name="radiusserver" type="text" class="formfld unknown" id="radiusserver" size="20" value="<?=htmlspecialchars($pconfig['radiusserver']);?>" />
													<input name="radiusserverport" type="text" class="formfld unknown" id="radiusserverport" size="4" value="<?=htmlspecialchars($pconfig['radiusserverport']);?>" />
													<input name="radiusserveracctport" type="text" class="formfld unknown" id="radiusserveracctport" size="4" value="<?=htmlspecialchars($pconfig['radiusserveracctport']);?>" />
													<br /><?=gettext("Enter the IP address, authentication port and accounting port (optional) of the RADIUS server."); ?><br />
													<br /> <?=gettext("standard port 1812 and 1813 accounting"); ?></td>
											</tr>
											<tr>
												<td width="22%" valign="top" class="vncell"><?=gettext("RADIUS primary shared secret"); ?></td>
												<td width="78%" valign="top" class="vtable">
													<input name="radiussecret" type="password" class="formfld pwd" id="radiussecret" size="20" value="<?=htmlspecialchars($pconfig['radiussecret']);?>" />
													<br /><?=gettext("Enter the shared secret that will be used to authenticate " .
													"to the RADIUS server"); ?>.</td>
											</tr>
											<tr>
												<td width="22%" valign="top" class="vncell"><?=gettext("RADIUS server Secondary"); ?></td>
												<td width="78%" class="vtable">
													<input name="radiusserver2" type="text" class="formfld unknown" id="radiusserver2" size="20" value="<?=htmlspecialchars($pconfig['radiusserver2']);?>" />
													<input name="radiusserver2port" type="text" class="formfld unknown" id="radiusserver2port" size="4" value="<?=htmlspecialchars($pconfig['radiusserver2port']);?>" />
													<input name="radiusserver2acctport" type="text" class="formfld unknown" id="radiusserver2acctport" size="4" value="<?=htmlspecialchars($pconfig['radiusserver2acctport']);?>" />
													<br /><?=gettext("Enter the IP address, authentication port and accounting port (optional) of the backup RADIUS server."); ?><br />
													<br /> <?=gettext("standard port 1812 and 1813 accounting"); ?></td>
											</tr>
											<tr>
												<td width="22%" valign="top" class="vncell"><?=gettext("RADIUS secondary shared secret"); ?></td>
												<td width="78%" valign="top" class="vtable">
													<input name="radiussecret2" type="password" class="formfld pwd" id="radiussecret2" size="20" value="<?=htmlspecialchars($pconfig['radiussecret2']);?>" />
													<br />
													<?=gettext("Enter the shared secret that will be used to authenticate " .
													"to the RADIUS server"); ?>.</td>
											</tr>
											<tr>
												<td width="22%" valign="top" class="vncell"><div id="addressnetworkport"><?=gettext("User (s)");?></div></td>
												<td width="78%" class="vtable">
													<table id="usertable" summary="users">
														<tbody>
														<tr>
															<td><div id="onecolumn"><?=gettext("Username");?></div></td>
															<td><div id="twocolumn"><?=gettext("Password");?></div></td>
															<td><div id="thirdcolumn"><?=gettext("IP");?></div></td>
														</tr>
						<?php
												$counter = 0;
												$usernames = $pconfig['username'];
												if ($usernames <> ""):
													$item = explode(" ", $usernames);
													foreach($item as $ww):
														$wws = explode(":", $ww);
														$user = $wws[0];
														$passwd = base64_decode($wws[1]);
														$ip = $wws[2];
														$tracker = $counter;
						?>
														<tr>
															<td>
																<input name="username<?php echo $tracker; ?>" type="text" class="formfld unknown" id="username<?php echo $tracker; ?>" size="20" value="<?=htmlspecialchars($user);?>" />
															</td>
															<td>
																<input name="password<?php echo $tracker; ?>" type="password" class="formfld pwd" id="password<?php echo $tracker; ?>" size="20" value="<?=htmlspecialchars($passwd);?>" />
															</td>
															<td>
																<input name="ip<?php echo $tracker; ?>" type="text" class="formfld unknown" id="ip<?php echo $tracker; ?>" size="10" value="<?=htmlspecialchars($ip);?>" />
															</td>
															<td>
																<a onclick="removeRow(this); return false;" href="#" class="btn btn-default btn-xs"><span class="glyphicon glyphicon-remove"></span></a>
															</td>
														</tr>
						<?php
														$counter++;
													endforeach;
												endif;
						?>
														</tbody>
													</table>
													<a onclick="javascript:addRowTo('usertable'); return false;" href="#" class="btn btn-default btn-xs"><span class="glyphicon glyphicon-plus"></span></a>
												</td>
											</tr>
											<tr>
												<td height="16" colspan="2" valign="top"></td>
											</tr>
											<tr>
												<td width="22%" valign="top">&nbsp;</td>
												<td width="78%">
						<?php
												if (isset($id))
													echo "<input type=\"hidden\" name=\"id\" id=\"id\" value=\"" . htmlspecialchars($id, ENT_QUOTES | ENT_HTML401) . "\" />";
						?>
						<?php
												if (isset($pconfig['pppoeid']))
													echo "<input type=\"hidden\" name=\"pppoeid\" id=\"pppoeid\" value=\"{$pppoeid}\" />";
						?>
													<input name="Submit" type="submit" class="btn btn-primary" value="<?=gettext("Save"); ?>"  onclick="enable_change(true)" />
													<a href="vpn_pppoe.php"><input name="Cancel" type="button" class="btn btn-default" value="<?=gettext("Cancel"); ?>" /></a>
												</td>
											</tr>
											<tr>
												<td width="22%" valign="top">&nbsp;</td>
												<td width="78%"><span class="vexpl"><span class="red"><strong><?=gettext("Note"); ?>:<br />
														</strong></span><?=gettext("don't forget to add a firewall rule to permit " .
														"traffic from PPPoE clients"); ?>!</span></td>
											</tr>
										</table>
616
						</div>
Ad Schellevis's avatar
Ad Schellevis committed
617
		                        </form>
618
				</div>
Ad Schellevis's avatar
Ad Schellevis committed
619
			    </section>
Ad Schellevis's avatar
Ad Schellevis committed
620
			</div>
Ad Schellevis's avatar
Ad Schellevis committed
621 622
		</div>
	</section>
623

Ad Schellevis's avatar
Ad Schellevis committed
624 625 626 627 628 629 630 631 632 633
<script type="text/javascript">
	//<![CDATA[
	enable_change(false);

	field_counter_js = 3;
	rows = 1;
	totalrows = <?php echo $counter; ?>;
	loaded = <?php echo $counter; ?>;
	//]]>
</script>
634
<?php include("foot.inc"); ?>