vpn_ipsec_mobile.php 24.8 KB
Newer Older
Ad Schellevis's avatar
Ad Schellevis committed
1 2
<?php
/*
3
	Copyright (C) 2014-2015 Deciso B.V.
Ad Schellevis's avatar
Ad Schellevis committed
4 5
	Copyright (C) 2008 Shrew Soft Inc
	All rights reserved.
6

Ad Schellevis's avatar
Ad Schellevis committed
7 8
	Redistribution and use in source and binary forms, with or without
	modification, are permitted provided that the following conditions are met:
9

Ad Schellevis's avatar
Ad Schellevis committed
10 11
	1. Redistributions of source code must retain the above copyright notice,
	   this list of conditions and the following disclaimer.
12

Ad Schellevis's avatar
Ad Schellevis committed
13 14 15
	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.
16

Ad Schellevis's avatar
Ad Schellevis committed
17 18 19 20 21 22 23 24 25 26 27 28
	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.
*/

29
require("functions.inc");
Ad Schellevis's avatar
Ad Schellevis committed
30 31 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
require("guiconfig.inc");
require_once("ipsec.inc");
require_once("vpn.inc");

if (!is_array($config['ipsec']['phase1']))
	$config['ipsec']['phase1'] = array();

$a_phase1 = &$config['ipsec']['phase1'];

if (!is_array($config['ipsec']['client']))
	$config['ipsec']['client'] = array();

$a_client = &$config['ipsec']['client'];

if (count($a_client)) {

	$pconfig['enable'] = $a_client['enable'];

	$pconfig['user_source'] = $a_client['user_source'];
	$pconfig['group_source'] = $a_client['group_source'];

	$pconfig['pool_address'] = $a_client['pool_address'];
	$pconfig['pool_netbits'] = $a_client['pool_netbits'];
	$pconfig['net_list'] = $a_client['net_list'];
	$pconfig['save_passwd'] = $a_client['save_passwd'];
	$pconfig['dns_domain'] = $a_client['dns_domain'];
	$pconfig['dns_split'] = $a_client['dns_split'];
	$pconfig['dns_server1'] = $a_client['dns_server1'];
	$pconfig['dns_server2'] = $a_client['dns_server2'];
	$pconfig['dns_server3'] = $a_client['dns_server3'];
	$pconfig['dns_server4'] = $a_client['dns_server4'];
	$pconfig['wins_server1'] = $a_client['wins_server1'];
	$pconfig['wins_server2'] = $a_client['wins_server2'];
	$pconfig['pfs_group'] = $a_client['pfs_group'];
	$pconfig['login_banner'] = $a_client['login_banner'];

	if (isset($pconfig['enable']))
		$pconfig['enable'] = true;

	if ($pconfig['pool_address']&&$pconfig['pool_netbits'])
		$pconfig['pool_enable'] = true;
	else
		$pconfig['pool_netbits'] = 24;

	if (isset($pconfig['net_list']))
		$pconfig['net_list_enable'] = true;

	if (isset($pconfig['save_passwd']))
		$pconfig['save_passwd_enable'] = true;

	if ($pconfig['dns_domain'])
		$pconfig['dns_domain_enable'] = true;

	if ($pconfig['dns_split'])
		$pconfig['dns_split_enable'] = true;

	if ($pconfig['dns_server1']||$pconfig['dns_server2']||$pconfig['dns_server3']||$pconfig['dns_server4'])
		$pconfig['dns_server_enable'] = true;

	if ($pconfig['wins_server1']||$pconfig['wins_server2'])
		$pconfig['wins_server_enable'] = true;

	if (isset($pconfig['pfs_group']))
		$pconfig['pfs_group_enable'] = true;

	if ($pconfig['login_banner'])
		$pconfig['login_banner_enable'] = true;
}

if ($_POST['create']) {
	header("Location: vpn_ipsec_phase1.php?mobile=true");
}

if ($_POST['apply']) {
	$retval = 0;
	$retval = vpn_ipsec_configure();
	$savemsg = get_std_save_message($retval);
	if ($retval >= 0)
		if (is_subsystem_dirty('ipsec'))
			clear_subsystem_dirty('ipsec');
}

if ($_POST['submit']) {

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

	/* input consolidation */

119

Ad Schellevis's avatar
Ad Schellevis committed
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

	/* input validation */

	$reqdfields = explode(" ", "user_source group_source");
	$reqdfieldsn =  array(gettext("User Authentication Source"),gettext("Group Authentication Source"));

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

	if ($pconfig['pool_enable'])
		if (!is_ipaddr($pconfig['pool_address']))
			$input_errors[] = gettext("A valid IP address for 'Virtual Address Pool Network' must be specified.");

	if ($pconfig['dns_domain_enable'])
		if (!is_domain($pconfig['dns_domain']))
			$input_errors[] = gettext("A valid value for 'DNS Default Domain' must be specified.");

	if ($pconfig['dns_split_enable']) {
		if (!empty($pconfig['dns_split'])) {
			$domain_array=preg_split("/[ ,]+/",$pconfig['dns_split']);
			foreach ($domain_array as $curdomain) {
				if (!is_domain($curdomain)) {
					$input_errors[] = gettext("A valid split DNS domain list must be specified.");
					break;
				}
			}
		}
	}

	if ($pconfig['dns_server_enable']) {
		if (!$pconfig['dns_server1'] && !$pconfig['dns_server2'] &&
			!$pconfig['dns_server3'] && !$pconfig['dns_server4'] )
			$input_errors[] = gettext("At least one DNS server must be specified to enable the DNS Server option.");
		if ($pconfig['dns_server1'] && !is_ipaddr($pconfig['dns_server1']))
			$input_errors[] = gettext("A valid IP address for 'DNS Server #1' must be specified.");
		if ($pconfig['dns_server2'] && !is_ipaddr($pconfig['dns_server2']))
			$input_errors[] = gettext("A valid IP address for 'DNS Server #2' must be specified.");
		if ($pconfig['dns_server3'] && !is_ipaddr($pconfig['dns_server3']))
			$input_errors[] = gettext("A valid IP address for 'DNS Server #3' must be specified.");
		if ($pconfig['dns_server4'] && !is_ipaddr($pconfig['dns_server4']))
			$input_errors[] = gettext("A valid IP address for 'DNS Server #4' must be specified.");
	}

	if ($pconfig['wins_server_enable']) {
		if (!$pconfig['wins_server1'] && !$pconfig['wins_server2'])
			$input_errors[] = gettext("At least one WINS server must be specified to enable the DNS Server option.");
		if ($pconfig['wins_server1'] && !is_ipaddr($pconfig['wins_server1']))
			$input_errors[] = gettext("A valid IP address for 'WINS Server #1' must be specified.");
		if ($pconfig['wins_server2'] && !is_ipaddr($pconfig['wins_server2']))
			$input_errors[] = gettext("A valid IP address for 'WINS Server #2' must be specified.");
	}

	if ($pconfig['login_banner_enable'])
		if (!strlen($pconfig['login_banner']))
			$input_errors[] = gettext("A valid value for 'Login Banner' must be specified.");

	if (!$input_errors) {
		$client = array();
177

Ad Schellevis's avatar
Ad Schellevis committed
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 214 215 216 217 218 219 220 221 222
		if ($pconfig['enable'])
			$client['enable'] = true;

		if (!empty($pconfig['user_source']))
			$client['user_source'] = implode(",", $pconfig['user_source']);
		$client['group_source'] = $pconfig['group_source'];

		if ($pconfig['pool_enable']) {
			$client['pool_address'] = $pconfig['pool_address'];
			$client['pool_netbits'] = $pconfig['pool_netbits'];
		}

		if ($pconfig['net_list_enable'])
			$client['net_list'] = true;

		if ($pconfig['save_passwd_enable'])
			$client['save_passwd'] = true;

		if ($pconfig['dns_domain_enable'])
			$client['dns_domain'] = $pconfig['dns_domain'];

		if ($pconfig['dns_split_enable'])
			$client['dns_split'] = $pconfig['dns_split'];

		if ($pconfig['dns_server_enable']) {
			$client['dns_server1'] = $pconfig['dns_server1'];
			$client['dns_server2'] = $pconfig['dns_server2'];
			$client['dns_server3'] = $pconfig['dns_server3'];
			$client['dns_server4'] = $pconfig['dns_server4'];
		}

		if ($pconfig['wins_server_enable']) {
			$client['wins_server1'] = $pconfig['wins_server1'];
			$client['wins_server2'] = $pconfig['wins_server2'];
		}

		if ($pconfig['pfs_group_enable'])
			$client['pfs_group'] = $pconfig['pfs_group'];

		if ($pconfig['login_banner_enable'])
			$client['login_banner'] = $pconfig['login_banner'];

//		$echo "login banner = {$pconfig['login_banner']}";

		$a_client = $client;
223

Ad Schellevis's avatar
Ad Schellevis committed
224 225
		write_config();
		mark_subsystem_dirty('ipsec');
226

Ad Schellevis's avatar
Ad Schellevis committed
227 228 229 230 231 232 233 234 235 236 237
		header("Location: vpn_ipsec_mobile.php");
		exit;
	}
}

$pgtitle = array(gettext("VPN"),gettext("IPsec"),gettext("Mobile"));
$shortcut_section = "ipsec";

include("head.inc");
?>

238
<body>
Ad Schellevis's avatar
Ad Schellevis committed
239 240 241 242 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

<script type="text/javascript">
//<![CDATA[

function pool_change() {

	if (document.iform.pool_enable.checked) {
		document.iform.pool_address.disabled = 0;
		document.iform.pool_netbits.disabled = 0;
	} else {
		document.iform.pool_address.disabled = 1;
		document.iform.pool_netbits.disabled = 1;
	}
}

function dns_domain_change() {

	if (document.iform.dns_domain_enable.checked)
		document.iform.dns_domain.disabled = 0;
	else
		document.iform.dns_domain.disabled = 1;
}

function dns_split_change() {

	if (document.iform.dns_split_enable.checked)
		document.iform.dns_split.disabled = 0;
	else
		document.iform.dns_split.disabled = 1;
}

function dns_server_change() {

	if (document.iform.dns_server_enable.checked) {
		document.iform.dns_server1.disabled = 0;
		document.iform.dns_server2.disabled = 0;
		document.iform.dns_server3.disabled = 0;
		document.iform.dns_server4.disabled = 0;
	} else {
		document.iform.dns_server1.disabled = 1;
		document.iform.dns_server2.disabled = 1;
		document.iform.dns_server3.disabled = 1;
		document.iform.dns_server4.disabled = 1;
	}
}

function wins_server_change() {

	if (document.iform.wins_server_enable.checked) {
		document.iform.wins_server1.disabled = 0;
		document.iform.wins_server2.disabled = 0;
	} else {
		document.iform.wins_server1.disabled = 1;
		document.iform.wins_server2.disabled = 1;
	}
}

function pfs_group_change() {

	if (document.iform.pfs_group_enable.checked)
		document.iform.pfs_group.disabled = 0;
	else
		document.iform.pfs_group.disabled = 1;
}

function login_banner_change() {

	if (document.iform.login_banner_enable.checked)
		document.iform.login_banner.disabled = 0;
	else
		document.iform.login_banner.disabled = 1;
}

//]]>
</script>

315
<?php include("fbegin.inc"); ?>
Ad Schellevis's avatar
Ad Schellevis committed
316 317


318
	<section class="page-content-main">
319
		<div class="container-fluid">
320
			<div class="row">
321

322 323 324 325 326 327 328 329 330 331 332 333 334 335
				<?php
					if ($savemsg)
						print_info_box($savemsg);
					if (isset($config['ipsec']['enable']) && is_subsystem_dirty('ipsec'))
						print_info_box_np(gettext("The IPsec tunnel configuration has been changed") . ".<br />" . gettext("You must apply the changes in order for them to take effect."));
					foreach ($a_phase1 as $ph1ent)
						if (isset($ph1ent['mobile']))
							$ph1found = true;
					if ($pconfig['enable'] && !$ph1found)
						print_info_box_np(gettext("Support for IPsec Mobile clients is enabled but a Phase1 definition was not found") . ".<br />" . gettext("Please click Create to define one."),gettext("create"),gettext("Create Phase1"));
					if ($input_errors)
						print_input_errors($input_errors);
				?>

336

337
			    <section class="col-xs-12">
338 339 340 341 342

				<? $active_tab = "/vpn_ipsec_mobile.php"; include('vpn_ipsec_tabs.php'); ?>

					<div class="tab-content content-box col-xs-12">

343 344 345
							 <form action="vpn_ipsec_mobile.php" method="post" name="iform" id="iform">

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

348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365


									<tr>
										<td width="22%" valign="top" class="vncellreq"><?=gettext("IKE Extensions"); ?></td>
										<td width="78%" class="vtable">
											<table border="0" cellspacing="2" cellpadding="0" summary="ike extensions">
												<tr>
													<td>
														<?php set_checked($pconfig['enable'],$chk); ?>
														<input name="enable" type="checkbox" id="enable" value="yes" <?=$chk;?> />
													</td>
													<td>
														<strong><?=gettext("Enable IPsec Mobile Client Support"); ?></strong>
													</td>
												</tr>
											</table>
										</td>
									</tr>
Ad Schellevis's avatar
Ad Schellevis committed
366
									</tbody>
367 368 369 370
								</table>

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

Ad Schellevis's avatar
Ad Schellevis committed
371 372
                                    <thead>
                                        <tr>
373
							<th colspan="2" class="listtopic"><?=gettext("Extended Authentication (Xauth)"); ?></th>
Ad Schellevis's avatar
Ad Schellevis committed
374 375
                                        </tr>
                                    </thead>
376 377 378

								<tbody>

379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406
									<tr>
										<td width="22%" valign="top" class="vncellreq"><?=gettext("User Authentication"); ?></td>
										<td width="78%" class="vtable">
											<?=gettext("Source"); ?>:&nbsp;&nbsp;
											<select name="user_source[]" class="form-control" id="user_source" multiple="multiple" size="3">
											<?php
												$authmodes = explode(",", $pconfig['user_source']);
												$auth_servers = auth_get_authserver_list();
												foreach ($auth_servers as $auth_server) {
													$selected = "";
													if (in_array($auth_server['name'], $authmodes))
														$selected = "selected=\"selected\"";
													echo "<option value='{$auth_server['name']}' {$selected}>{$auth_server['name']}</option>\n";
												}
											?>
											</select>
										</td>
									</tr>
									<tr>
										<td width="22%" valign="top" class="vncellreq"><?=gettext("Group Authentication"); ?></td>
										<td width="78%" class="vtable">
											<?=gettext("Source"); ?>:&nbsp;&nbsp;
											<select name="group_source" class="form-control" id="group_source">
												<option value="none"><?=gettext("none"); ?></option>
												<option value="system" <?php if ($pconfig['group_source'] == "system") echo "selected=\"selected\""; ?> ><?=gettext("system"); ?></option>
											</select>
										</td>
									</tr>
Ad Schellevis's avatar
Ad Schellevis committed
407
									</tbody>
408 409 410 411
								</table>

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

Ad Schellevis's avatar
Ad Schellevis committed
412 413
                                    <thead>
                                        <tr>
414
							<th colspan="2" class="listtopic"><?=gettext("Client Configuration (mode-cfg)"); ?></th>
Ad Schellevis's avatar
Ad Schellevis committed
415 416
                                        </tr>
                                    </thead>
417 418 419 420

								<tbody>

									<tr>
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
										<td width="22%" valign="top" class="vncell"><?=gettext("Virtual Address Pool"); ?></td>
										<td width="78%" class="vtable">
											<table border="0" cellspacing="2" cellpadding="0" summary="enable pool">
												<tr>
													<td>
														<?php set_checked($pconfig['pool_enable'],$chk); ?>
														<input name="pool_enable" type="checkbox" id="pool_enable" value="yes" <?=$chk;?> onclick="pool_change()" />
													</td>
													<td>
														<?=gettext("Provide a virtual IP address to clients"); ?><br />
													</td>
												</tr>
											</table>
											<table border="0" cellspacing="2" cellpadding="0" summary="virtual address pool">
												<tr>
													<td>
														<?=gettext("Network"); ?>:&nbsp;
														<input name="pool_address" type="text" class="form-control unknown" id="pool_address" size="20" value="<?=htmlspecialchars($pconfig['pool_address']);?>" />
														/
														<select name="pool_netbits" class="form-control" id="pool_netbits">
															<?php for ($i = 32; $i >= 0; $i--): ?>
															<option value="<?=$i;?>" <?php if ($i == $pconfig['pool_netbits']) echo "selected=\"selected\""; ?>>
																<?=$i;?>
															</option>
															<?php endfor; ?>
														</select>
													</td>
												</tr>
											</table>
										</td>
									</tr>
									<tr>
										<td width="22%" valign="top" class="vncell"><?=gettext("Network List"); ?></td>
										<td width="78%" class="vtable">
											<table border="0" cellspacing="2" cellpadding="0" summary="network list">
												<tr>
													<td>
														<?php set_checked($pconfig['net_list_enable'],$chk); ?>
														<input name="net_list_enable" type="checkbox" id="net_list_enable" value="yes" <?=$chk;?> />
													</td>
													<td>
														<?=gettext("Provide a list of accessible networks to clients"); ?><br />
													</td>
												</tr>
											</table>
										</td>
									</tr>
									<tr>
										<td width="22%" valign="top" class="vncell"><?=gettext("Save Xauth Password"); ?></td>
										<td width="78%" class="vtable">
											<table border="0" cellspacing="2" cellpadding="0" summary="password">
												<tr>
													<td>
														<?php set_checked($pconfig['save_passwd_enable'],$chk); ?>
														<input name="save_passwd_enable" type="checkbox" id="save_passwd_enable" value="yes" <?=$chk;?> />
													</td>
													<td>
														<?=gettext("Allow clients to save Xauth passwords (Cisco VPN client only)."); ?><br />
														<?=gettext("NOTE: With iPhone clients, this does not work when deployed via the iPhone configuration utility, only by manual entry."); ?><br />
													</td>
												</tr>
											</table>
										</td>
									</tr>
485
									<tr>
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
										<td width="22%" valign="top" class="vncell"><?=gettext("DNS Default Domain"); ?></td>
										<td width="78%" class="vtable">
											<table border="0" cellspacing="2" cellpadding="0" summary="enable dns default domain">
												<tr>
													<td>
														<?php set_checked($pconfig['dns_domain_enable'],$chk); ?>
														<input name="dns_domain_enable" type="checkbox" id="dns_domain_enable" value="yes" <?=$chk;?> onclick="dns_domain_change()" />
													</td>
													<td>
														<?=gettext("Provide a default domain name to clients"); ?><br />
													</td>
												</tr>
											</table>
											<table border="0" cellspacing="2" cellpadding="0" summary="dns default domain">
												<tr>
													<td>
														<input name="dns_domain" type="text" class="form-control unknown" id="dns_domain" size="30" value="<?=htmlspecialchars($pconfig['dns_domain']);?>" />
													</td>
												</tr>
											</table>
										</td>
									</tr>
									<tr>
										<td width="22%" valign="top" class="vncell"><?=gettext("Split DNS"); ?></td>
										<td width="78%" class="vtable">
											<table border="0" cellspacing="2" cellpadding="0" summary="enable split dns">
												<tr>
													<td>
														<?php set_checked($pconfig['dns_split_enable'],$chk); ?>
														<input name="dns_split_enable" type="checkbox" id="dns_split_enable" value="yes" <?=$chk;?> onclick="dns_split_change()" />
													</td>
													<td>
														<?=gettext("Provide a list of split DNS domain names to clients. Enter a comma separated list."); ?><br />
														<?=gettext("NOTE: If left blank, and a default domain is set, it will be used for this value."); ?>
													</td>
												</tr>
											</table>
											<table border="0" cellspacing="2" cellpadding="0" summary="split dns">
												<tr>
													<td>
														<input name="dns_split" type="text" class="form-control unknown" id="dns_split" size="30" value="<?=htmlspecialchars($pconfig['dns_split']);?>" />
													</td>
												</tr>
											</table>
										</td>
									</tr>
532
									<tr>
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
										<td width="22%" valign="top" class="vncell"><?=gettext("DNS Servers"); ?></td>
										<td width="78%" class="vtable">
											<table border="0" cellspacing="2" cellpadding="0" summary="enable dns servers">
												<tr>
													<td>
														<?php set_checked($pconfig['dns_server_enable'],$chk); ?>
														<input name="dns_server_enable" type="checkbox" id="dns_server_enable" value="yes" <?=$chk;?> onclick="dns_server_change()" />
													</td>
													<td>
														<?=gettext("Provide a DNS server list to clients"); ?><br />
													</td>
												</tr>
											</table>
											<table border="0" cellspacing="2" cellpadding="0" summary="dns servers">
												<tr>
													<td>
														<?=gettext("Server"); ?> #1:&nbsp;
														<input name="dns_server1" type="text" class="form-control unknown" id="dns_server1" size="20" value="<?=htmlspecialchars($pconfig['dns_server1']);?>" />
													</td>
												</tr>
												<tr>
													<td>
														<?=gettext("Server"); ?> #2:&nbsp;
														<input name="dns_server2" type="text" class="form-control unknown" id="dns_server2" size="20" value="<?=htmlspecialchars($pconfig['dns_server2']);?>" />
													</td>
												</tr>
												<tr>
													<td>
														<?=gettext("Server"); ?> #3:&nbsp;
														<input name="dns_server3" type="text" class="form-control unknown" id="dns_server3" size="20" value="<?=htmlspecialchars($pconfig['dns_server3']);?>" />
													</td>
												</tr>
												<tr>
													<td>
														<?=gettext("Server"); ?> #4:&nbsp;
														<input name="dns_server4" type="text" class="form-control unknown" id="dns_server4" size="20" value="<?=htmlspecialchars($pconfig['dns_server4']);?>" />
													</td>
												</tr>
											</table>
										</td>
									</tr>
574
									<tr>
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 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633
										<td width="22%" valign="top" class="vncell"><?=gettext("WINS Servers"); ?></td>
										<td width="78%" class="vtable">
											<table border="0" cellspacing="2" cellpadding="0" summary="enable wins servers">
												<tr>
													<td>
														<?php set_checked($pconfig['wins_server_enable'],$chk); ?>
														<input name="wins_server_enable" type="checkbox" id="wins_server_enable" value="yes" <?=$chk;?> onclick="wins_server_change()" />
													</td>
													<td>
														<?=gettext("Provide a WINS server list to clients"); ?><br />
													</td>
												</tr>
											</table>
											<table border="0" cellspacing="2" cellpadding="0" summary="wins servers">
												<tr>
													<td>
														<?=gettext("Server"); ?> #1:&nbsp;
														<input name="wins_server1" type="text" class="form-control unknown" id="wins_server1" size="20" value="<?=htmlspecialchars($pconfig['wins_server1']);?>" />
													</td>
												</tr>
												<tr>
													<td>
														<?=gettext("Server"); ?> #2:&nbsp;
														<input name="wins_server2" type="text" class="form-control unknown" id="wins_server2" size="20" value="<?=htmlspecialchars($pconfig['wins_server2']);?>" />
													</td>
												</tr>
											</table>
										</td>
									</tr>
									<tr>
										<td width="22%" valign="top" class="vncell"><?=gettext("Phase2 PFS Group"); ?></td>
										<td width="78%" class="vtable">
											<table border="0" cellspacing="2" cellpadding="0" summary="enable pfs group">
												<tr>
													<td>
														<?php set_checked($pconfig['pfs_group_enable'],$chk); ?>
														<input name="pfs_group_enable" type="checkbox" id="pfs_group_enable" value="yes" <?=$chk;?> onclick="pfs_group_change()" />
													</td>
													<td>
														<?=gettext("Provide the Phase2 PFS group to clients ( overrides all mobile phase2 settings )"); ?><br />
													</td>
												</tr>
											</table>
											<table border="0" cellspacing="2" cellpadding="0" summary="phase-2 pfs group">
												<tr>
													<td>
														<?=gettext("Group"); ?>:&nbsp;&nbsp;
														<select name="pfs_group" class="form-control" id="pfs_group">
														<?php foreach ($p2_pfskeygroups as $keygroup => $keygroupname): ?>
															<option value="<?=$keygroup;?>" <?php if ($pconfig['pfs_group'] == $keygroup) echo "selected=\"selected\""; ?>>
																<?=htmlspecialchars($keygroupname);?>
															</option>
														<?php endforeach; ?>
														</select>
													</td>
												</tr>
											</table>
										</td>
									</tr>
634
									<tr>
635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664
										<td width="22%" valign="top" class="vncell"><?=gettext("Login Banner"); ?></td>
										<td width="78%" class="vtable">
											<table border="0" cellspacing="2" cellpadding="0" summary="enable login banner">
												<tr>
													<td>
														<?php set_checked($pconfig['login_banner_enable'],$chk); ?>
														<input name="login_banner_enable" type="checkbox" id="login_banner_enable" value="yes" <?=$chk;?> onclick="login_banner_change()" />
													</td>
													<td>
														<?=gettext("Provide a login banner to clients"); ?><br />
													</td>
												</tr>
											</table>
											<table border="0" cellspacing="2" cellpadding="0" summary="banner">
												<tr>
													<td>
														<?php $banner = htmlspecialchars($pconfig['login_banner']); ?>
														<textarea name="login_banner" cols="65" rows="7" id="login_banner" class="formpre"><?=htmlspecialchars($banner);?></textarea>
													</td>
												</tr>
											</table>
										</td>
									</tr>
									<tr>
										<td width="22%" valign="top">&nbsp;</td>
										<td width="78%">
											<input name="submit" type="submit" class="btn btn-primary" value="<?=gettext("Save"); ?>" />
										</td>
									</tr>
								</table>
665

666 667 668 669
							 </div>
							 </form>
					</div>
			    </section>
Ad Schellevis's avatar
Ad Schellevis committed
670
			</div>
671 672
		</div>
	</section>
673

Ad Schellevis's avatar
Ad Schellevis committed
674 675 676 677 678 679 680 681 682 683 684
<script type="text/javascript">
//<![CDATA[
pool_change();
dns_domain_change();
dns_split_change();
dns_server_change();
wins_server_change();
pfs_group_change();
login_banner_change();
//]]>
</script>
685
<?php include("foot.inc"); ?>
Ad Schellevis's avatar
Ad Schellevis committed
686 687 688 689 690 691 692 693 694 695 696 697 698

<?php

/* local utility functions */

function set_checked($var,& $chk) {
	if($var)
		$chk = "checked=\"checked\"";
	else
		$chk = "";
}

?>